# Environment constants QA_ENVIRONMENT = "qa" PROD_ENVIRONMENT = "prod" # Brand constants DEFAULT_BRAND = "theorchard" # Common headers HEADER_CORRELATION_ID = "Correlation-Id" ORCHARD_REQUESTOR_SERVICE = "Orchard-Requestor-Service" # Orchard profile headers HEADER_ORCHARD_PROFILE_TYPE = "Orchard-Profile-Type" HEADER_ORCHARD_PROFILE_ID = "Orchard-Profile-Id" HEADER_ORCHARD_PROFILE_UUID = "Orchard-Profile-UUID" # Orchard identity headers HEADER_ORCHARD_IDENTITY_ID = "Orchard-Identity-Id" HEADER_ORCHARD_IDENTITY_UUID = "Orchard-Identity-UUID" # JWT constants JWT_USER_METADATA = "https://grass.theorchard.com/user_metadata" JWT_INTERNAL_EMPLOYEE = "https://grass.theorchard.com/internal_employee" JWT_BRAND = "https://grass.theorchard.com/brand" CLAIM_ORCHARD_IDENTITY_ID = "orchardIdentityId" # Fan Response JWT audiences FAN_RESPONSE_QA_AUDIENCE = "https://qa-fan-response-jwt-authorizer" FAN_RESPONSE_PROD_AUDIENCE = "https://prod-fan-response-jwt-authorizer"