-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathconstants.d.ts
More file actions
37 lines (37 loc) · 1.18 KB
/
constants.d.ts
File metadata and controls
37 lines (37 loc) · 1.18 KB
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
declare namespace _default {
const DEFAULT_INSTANCE: string;
const API_VERSION: number;
const MAX_STRING_LENGTH: number;
const MAX_PROPERTY_KEYS: number;
const IDENTIFY_EVENT: string;
const GROUP_IDENTIFY_EVENT: string;
const LAST_EVENT_ID: string;
const LAST_EVENT_TIME: string;
const LAST_IDENTIFY_ID: string;
const LAST_SEQUENCE_NUMBER: string;
const SESSION_ID: string;
const DEVICE_ID: string;
const OPT_OUT: string;
const USER_ID: string;
const COOKIE_TEST_PREFIX: string;
const COOKIE_PREFIX: string;
const STORAGE_DEFAULT: string;
const STORAGE_COOKIES: string;
const STORAGE_NONE: string;
const STORAGE_LOCAL: string;
const STORAGE_SESSION: string;
const REVENUE_EVENT: string;
const REVENUE_PRODUCT_ID: string;
const REVENUE_QUANTITY: string;
const REVENUE_PRICE: string;
const REVENUE_REVENUE_TYPE: string;
const AMP_DEVICE_ID_PARAM: string;
const REFERRER: string;
const UTM_SOURCE: string;
const UTM_MEDIUM: string;
const UTM_CAMPAIGN: string;
const UTM_TERM: string;
const UTM_CONTENT: string;
const ATTRIBUTION_EVENT: string;
}
export default _default;