-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommon.d.ts
226 lines (212 loc) · 4.37 KB
/
common.d.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// declare interface SegmentGroupProtocol { }
// declare interface SegmentIdentifyProtocol { }
declare type SegmentIdentify = {
traits: SegmentIdentifyTraits
// userId: string
}
declare type SegmentIdentifyEvent = SegmentIdentify & {
channel?: string
projectId?: string
version?: number
writeKey?: string
type: 'identify'
} & SegmentProcessedEvent
declare type SegmentIdentifyTraits = {
address?: {
city?: string
country?: string
postalCode?: string
state?: string
street?: string
}
age?: number
avatar?: string
birthday?: Date
company?: {
name?: string
id?: string | number
industry?: string
employee_count?: number
plan?: string
}
createdAt?: Date
description?: string
email?: string
firstName?: string
gender?: string
id?: string
lastName?: string
name?: string
phone?: string
title?: string
username?: string
website?: string
} & SegmentIdentifyProtocol
declare type SegmentGroup = {
groupId: string
traits?: SegmentGroupTraits
}
declare type SegmentGroupEvent = SegmentGroup & {
type: 'group'
} & SegmentProcessedEvent
declare type SegmentGroupTraits = {
address?: {
city?: string
country?: string
postalCode?: string
state?: string
street?: string
}
avatar?: string
createdAt?: Date
description?: string
email?: string
employees?: string
id?: string
industry?: string
name?: string
phone?: string
website?: string
plan?: string
} & SegmentGroupProtocol
declare type SegmentTrackObject<E extends SegmentEvents> = {
event: E
properties: SegmentTrackProtocol<E>
}
declare type SegmentTrackEvent = {
type: 'track'
} & SegmentTrackProtocolUnion & SegmentProcessedEvent
declare type SegmentAlias = {
previousId: string
userId?: string
}
declare type SegmentAliasEvent = SegmentAlias & {
type: 'alias'
} & SegmentProcessedEvent
declare type SegmentPage = {
name?: string
properties?: SegmentPageProperties
}
declare type SegmentPageEvent = SegmentPage & {
type: 'page'
} & SegmentProcessedEvent
declare type SegmentPageProperties = {
name?: string
path?: string
referrer?: string
search?: string
title?: string
url?: string
keywords?: string[]
} & { [p: string]: any }
declare type SegmentScreen = {
name?: string
properties?: SegmentScreenProperties
}
declare type SegmentScreenEvent = SegmentScreen & {
type: 'screen'
} & SegmentProcessedEvent
declare type SegmentScreenProperties = {
name?: string
} & { [p: string]: any }
declare type SegmentOptions = {
context?: SegmentContext
integrations?: { [p: string]: boolean | { all: boolean } } // TODO! This isn't technically correct
} & SegmentId
declare type SegmentId = {
anonymousId: string
userId?: string
} | {
anonymousId?: string
userId: string
}
declare type SegmentProcessedEvent = SegmentOptions & {
messageId: string
receivedAt: string
sentAt: string | null
timestamp: string
originalTimestamp: string
}
declare type SegmentSettings = { [s: string]: undefined | string | boolean | string[] | { [k: string]: string } }
declare type SegmentExternalIds = {
collection: 'users',
encoding: 'none',
type: string,
id: string
}[]
declare type SegmentContext = {
externalIds?: SegmentExternalIds
active?: boolean
app?: {
name: string
version: string
build: string
namespace: string
}
campaign?: {
name: string
source: string
medium: string
term: string
content: string
}
device?: {
id: string
advertisingId: string
adTrackingEnabled: boolean
manufacturer: string
model: string
name: string
type: string
token: string
}
ip?: string
library?: {
name: string
version: string
}
personas?: {
computation_class: string
computation_key: string
computation_id: string
namespace: string
space_id: string
}
locale?: string
location?: {
city: string
country: string
latitude: number
longitude: number
speed: number
}
network?: {
bluetooth: boolean
carrier: string
cellular: boolean
wifi: boolean
}
os?: {
name: string
version: string
}
page?: {
path: string
referrer: string
search: string
title: string
url: string
}
referrer?: {
id: string
type: string
}
screen?: {
width: number
height: number
density: number
}
groupId?: string
timezone?: string
userAgent?: string
}