"""Constants for ows-images microservice interaction.""" # Microservice names. OWS_PRODUCT_PHYSICAL = 'ows-product-physical' OWS_PROJECT_MANAGER = 'ows-project-manager' OWS_ARTIST = 'ows-artist' OWS_PRICING = 'ows-pricing' OWS_PRODUCT_CONFIG = 'ows-product-configuration' OWS_FEATURES = 'ows-features' APPLICATION_NAME = 'daemon-label-copy-export' OWS_ASSETS_SERVICE_NAME = 'ows-assets' PROJECT_NAME = 'project_name' PROJECT_CODE = 'project_code' DESCRIPTION = 'description' PROJECT_HIGHLIGHTS = 'project_highlights' UPC = 'upc' GENRE_ID = 'genre_id' GENRE_NAME = 'genre_name' SUBGENRE_ID = 'subgenre_id' SUBGENRE_NAME = 'subgenre_name' IMAGE_PATH = 'image_path' PATH = 'path' PACKAGING_ID = 'packaging_id' PACKAGING = 'packaging' ARTIST_ID = 'artist_id' PROJECT_ARTIST = 'project_artist' NAME = 'name' DISTRIBUTION_FORMAT_NAME = 'distribution_format_name' PERFORMER = 'performer' ORCHARD_PRICING_TIER_ID = 'orchard_pricing_tier_id' PRODUCT_DATA_KEYS = ( 'product_name', 'product_code', 'upc', 'artist_is_individual', 'label', 'version', 'explicit', 'product_type', 'release_status', 'sale_start_date', 'release_date', 'embargo_date', 'format', 'units_per_set', 'value_adds', 'initial_stock', 'box_lot', 'wholesale_price', 'pricing', 'discount', 'pline', 'cline', 'exclusive_for', 'exportable', 'product_highlights', 'primary_artist', 'production_notes', 'manufacturing_obligation', ) DEFAULT_PHYSICAL_PRICING_TIER = { 'name': 'Custom : Please Talk To Your Label Manager', 'orchard_pricing_tier_id': 39}