"""Constants relating to catalog ingestion.""" from ddex_ingester_common.constants.ddex_providers import AWAL DDEX_FORMAT = 'ddex' DDEX_PROVIDER_TO_SOURCE_ID = { AWAL: 2, } SUCCESS = 'Success' FAILURE = 'Failure' WARNING = 'Warning' REJECT = 'Reject' INSERT_ACTION = 'insert' UPDATE_ACTION = 'update' DELETE_ACTION = 'delete' ARTWORK_ENTITY_TYPE = 'artwork' AUDIO_FILE_ENTITY_TYPE = 'audio-file' VIDEO_FILE_ENTITY_TYPE = 'video-file' PROJECT_ENTITY_TYPE = 'project' PRODUCT_ENTITY_TYPE = 'product' TRACK_ENTITY_TYPE = 'track'