"""Constants for headers.""" # Headers for an Abacus admin with full access. ADMIN_HEADERS = { 'Content-Type': 'application/json', 'Orchard-Requestor-Service': 'graphql-abacus', 'Orchard-Identity-Id': 'd5ca8ac3-7e51-4793-8775-50d11282504c', 'Orchard-Profile-Type': 'AbacusProfile', 'Orchard-Profile-Id': '35109', 'Orchard-Roles': 'administrator' } # Headers for a LabelProfile with access to Vendor 7123 LABEL_HEADERS = { 'Content-Type': 'application/json', 'Orchard-Requestor-Service': 'graphql-abacus', 'Orchard-Profile-Type': 'LabelProfile', 'Orchard-Profile-Id': '10049279', 'Orchard-Roles': 'administrator' } # Headers for a MoneyhubProfile with access to Vendor 35598 MONEYHUB_HEADERS = { 'Content-Type': 'application/json', 'Orchard-Requestor-Service': 'graphql-abacus', 'Orchard-Profile-Type': 'MoneyhubProfile', 'Orchard-Profile-Id': '132415', 'Orchard-Roles': 'accounting', }