-
Notifications
You must be signed in to change notification settings - Fork 24
/
constants.ts
44 lines (42 loc) · 1.63 KB
/
constants.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Common config properties
export const GROUP_ID = 'groupId';
export const EXPIRY = 'expiry';
// Config properties for Edgeworkers
export const EDGEWORKER_ID = 'edgeworkerId';
export const EDGEWORKER_NAME = 'edgeworkerName';
export const GROUP_NAME = 'groupName';
export const RESOURCE_TIER_ID = 'resourceTierId';
export const CONTRACT_ID = 'contractId';
export const VERSION_ID = 'versionId';
export const ACTIVATION_ID = 'activationId';
export const ACTIVE = 'activeOnNetwork';
export const REPORT_ID = 'reportId';
export const BUNDLE_PATH = 'bundlePath';
export const WORKING_DIRECTORY = 'workingDirectory';
export const DOWNLOAD_PATH = 'downloadPath';
export const NETWORK = 'network';
export const ACL_PATH = 'aclPath';
export const URL_PATH = 'urlPath';
export const FORMAT = 'format';
export const START_DATE = 'startDate';
export const END_DATE = 'endDate';
export const STATUS = 'status';
export const EVENT_HANDLERS = 'eventHandlers';
export const PINNED_ONLY = 'pinnedOnly';
export const CURRENTLY_PINNED = 'currentlyPinned';
export const NOTE = 'note';
export const ACTIVE_VERSIONS = 'activeVersions';
export const CURRENTLY_PINNED_REVISIONS = 'currentlyPinnedRevisions';
// Config properties for EdgeKV
export const ENVIRONMENT = 'environment';
export const NAMESPACE = 'namespace';
export const ITEM_ID = 'itemId';
export const SANDBOX_ID = 'sandboxId';
export const ORDER_BY = 'orderBy';
export const MAX_ITEMS = 'maxItems';
export const RETENTION = 'retention';
export const GEO_LOCATION = 'geoLocation';
export const STAGING = 'staging';
export const PRODUCTION = 'production';
export const EW_IDS = 'ewIds';
export const SAVE_PATH = 'savePath';