"""Constants for lambda function.""" # allowed file types in order of preference ALLOWED_ASSET_TYPES = [ 'flac', 'wav' ] TIK_TOK_STORENAME = 'TikTok (Audio Fingerprinting)' TIK_TOK_SHORT_STORENAME = 'tiktok' # Ineligible delivery reasons NO_ELIGIBLE_ASSETS = 'no_eligible_assets' NO_ASSETS = 'no_assets' NOT_IN_REGISTRY = 'not_in_registry' NO_POLICIES = 'no_monetize_or_block_policies' NO_S3_VERSION = 'no_s3_version' PROHIBITED_ATTRIBUTE = 'prohibited_attribute' INVALID_FINGERPRINT_RULE = 'invalid_fingerprint_rule' EVENTS_BATCH_SIZE = 10 # Attributes that prohibit delivery or force a takedown. # These lists will be populated once specific attributes have been defined. PROHIBITED_AUDIO_ATTRIBUTES: list[str] = [] PROHIBITED_RIGHTS_ATTRIBUTES: list[str] = []