@segment/analytics-browser-actions-reddit-pixel 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/dist/cjs/fields.d.ts +8 -0
- package/dist/cjs/fields.js +473 -0
- package/dist/cjs/fields.js.map +1 -0
- package/dist/cjs/generated-types.d.ts +4 -0
- package/dist/cjs/generated-types.js +3 -0
- package/dist/cjs/generated-types.js.map +1 -0
- package/dist/cjs/index.d.ts +11 -0
- package/dist/cjs/index.js +140 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/init-pixel.d.ts +1 -0
- package/dist/cjs/init-pixel.js +30 -0
- package/dist/cjs/init-pixel.js.map +1 -0
- package/dist/cjs/reportCustomWebEvent/generated-types.d.ts +25 -0
- package/dist/cjs/reportCustomWebEvent/generated-types.js +3 -0
- package/dist/cjs/reportCustomWebEvent/generated-types.js.map +1 -0
- package/dist/cjs/reportCustomWebEvent/index.d.ts +6 -0
- package/dist/cjs/reportCustomWebEvent/index.js +24 -0
- package/dist/cjs/reportCustomWebEvent/index.js.map +1 -0
- package/dist/cjs/reportWebEvent/generated-types.d.ts +25 -0
- package/dist/cjs/reportWebEvent/generated-types.js +3 -0
- package/dist/cjs/reportWebEvent/generated-types.js.map +1 -0
- package/dist/cjs/reportWebEvent/index.d.ts +6 -0
- package/dist/cjs/reportWebEvent/index.js +24 -0
- package/dist/cjs/reportWebEvent/index.js.map +1 -0
- package/dist/cjs/types.d.ts +26 -0
- package/dist/cjs/types.js +3 -0
- package/dist/cjs/types.js.map +1 -0
- package/dist/cjs/utils.d.ts +6 -0
- package/dist/cjs/utils.js +36 -0
- package/dist/cjs/utils.js.map +1 -0
- package/dist/esm/fields.d.ts +8 -0
- package/dist/esm/fields.js +470 -0
- package/dist/esm/fields.js.map +1 -0
- package/dist/esm/generated-types.d.ts +4 -0
- package/dist/esm/generated-types.js +2 -0
- package/dist/esm/generated-types.js.map +1 -0
- package/dist/esm/index.d.ts +11 -0
- package/dist/esm/index.js +136 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/init-pixel.d.ts +1 -0
- package/dist/esm/init-pixel.js +26 -0
- package/dist/esm/init-pixel.js.map +1 -0
- package/dist/esm/reportCustomWebEvent/generated-types.d.ts +25 -0
- package/dist/esm/reportCustomWebEvent/generated-types.js +2 -0
- package/dist/esm/reportCustomWebEvent/generated-types.js.map +1 -0
- package/dist/esm/reportCustomWebEvent/index.d.ts +6 -0
- package/dist/esm/reportCustomWebEvent/index.js +22 -0
- package/dist/esm/reportCustomWebEvent/index.js.map +1 -0
- package/dist/esm/reportWebEvent/generated-types.d.ts +25 -0
- package/dist/esm/reportWebEvent/generated-types.js +2 -0
- package/dist/esm/reportWebEvent/generated-types.js.map +1 -0
- package/dist/esm/reportWebEvent/index.d.ts +6 -0
- package/dist/esm/reportWebEvent/index.js +22 -0
- package/dist/esm/reportWebEvent/index.js.map +1 -0
- package/dist/esm/types.d.ts +26 -0
- package/dist/esm/types.js +2 -0
- package/dist/esm/types.js.map +1 -0
- package/dist/esm/utils.d.ts +6 -0
- package/dist/esm/utils.js +31 -0
- package/dist/esm/utils.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +24 -0
- package/src/__tests__/index.test.ts +300 -0
- package/src/fields.ts +484 -0
- package/src/generated-types.ts +12 -0
- package/src/index.ts +154 -0
- package/src/init-pixel.ts +31 -0
- package/src/reportCustomWebEvent/generated-types.ts +84 -0
- package/src/reportCustomWebEvent/index.ts +27 -0
- package/src/reportWebEvent/generated-types.ts +84 -0
- package/src/reportWebEvent/index.ts +27 -0
- package/src/types.ts +30 -0
- package/src/utils.ts +40 -0
- package/tsconfig.json +9 -0
|
@@ -0,0 +1,470 @@
|
|
|
1
|
+
export const custom_event_name = {
|
|
2
|
+
label: 'Custom Event Name',
|
|
3
|
+
description: 'A custom event name that can be passed when tracking_type is set to "Custom". All UTF-8 characters are accepted and custom_event_name must be at most 64 characters long.',
|
|
4
|
+
type: 'string',
|
|
5
|
+
required: true
|
|
6
|
+
};
|
|
7
|
+
export const tracking_type = {
|
|
8
|
+
label: 'Tracking Type',
|
|
9
|
+
description: "One of Reddit Pixel's standard conversion event types. To send a Custom event to Reddit use the Custom Event Action instead.",
|
|
10
|
+
type: 'string',
|
|
11
|
+
required: true,
|
|
12
|
+
choices: [
|
|
13
|
+
{ label: 'Page Visit', value: 'PageVisit' },
|
|
14
|
+
{ label: 'View Content', value: 'ViewContent' },
|
|
15
|
+
{ label: 'Search', value: 'Search' },
|
|
16
|
+
{ label: 'Add to Cart', value: 'AddToCart' },
|
|
17
|
+
{ label: 'Add to Wishlist', value: 'AddToWishlist' },
|
|
18
|
+
{ label: 'Purchase', value: 'Purchase' },
|
|
19
|
+
{ label: 'Lead', value: 'Lead' },
|
|
20
|
+
{ label: 'Sign Up', value: 'SignUp' }
|
|
21
|
+
]
|
|
22
|
+
};
|
|
23
|
+
export const conversion_id = {
|
|
24
|
+
label: 'Conversion ID',
|
|
25
|
+
description: 'The unique conversion ID that corresponds to a distinct conversion event. This is used for deduplication. If you are using both Reddit Pixel and CAPI integrations, this field is required in order to dedupe the same events across both sources.',
|
|
26
|
+
type: 'string',
|
|
27
|
+
required: false,
|
|
28
|
+
default: { '@path': '$.messageId' }
|
|
29
|
+
};
|
|
30
|
+
export const event_metadata = {
|
|
31
|
+
label: 'Event Metadata',
|
|
32
|
+
description: 'The metadata associated with the conversion event.',
|
|
33
|
+
type: 'object',
|
|
34
|
+
required: false,
|
|
35
|
+
depends_on: {
|
|
36
|
+
match: 'any',
|
|
37
|
+
conditions: [
|
|
38
|
+
{
|
|
39
|
+
fieldKey: 'tracking_type',
|
|
40
|
+
operator: 'is',
|
|
41
|
+
value: 'AddToCart'
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
fieldKey: 'tracking_type',
|
|
45
|
+
operator: 'is',
|
|
46
|
+
value: 'AddToWishlist'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
fieldKey: 'tracking_type',
|
|
50
|
+
operator: 'is',
|
|
51
|
+
value: 'Purchase'
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
fieldKey: 'tracking_type',
|
|
55
|
+
operator: 'is',
|
|
56
|
+
value: 'Lead'
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
fieldKey: 'tracking_type',
|
|
60
|
+
operator: 'is',
|
|
61
|
+
value: 'SignUp'
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
properties: {
|
|
66
|
+
currency: {
|
|
67
|
+
label: 'Currency',
|
|
68
|
+
description: 'The currency for the value provided. This must be a three-character ISO 4217 currency code. This should only be set for revenue-related events.',
|
|
69
|
+
type: 'string',
|
|
70
|
+
choices: [
|
|
71
|
+
{ label: 'AUD - Australian Dollar', value: 'AUD' },
|
|
72
|
+
{ label: 'CAD - Canadian Dollar', value: 'CAD' },
|
|
73
|
+
{ label: 'EUR - Euro', value: 'EUR' },
|
|
74
|
+
{ label: 'GBP - Pound Sterling', value: 'GBP' },
|
|
75
|
+
{ label: 'NZD - New Zealand Dollar', value: 'NZD' },
|
|
76
|
+
{ label: 'USD - US Dollar', value: 'USD' }
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
itemCount: {
|
|
80
|
+
label: 'Item Count',
|
|
81
|
+
description: 'The number of items in the event. This should only be set for revenue-related events.',
|
|
82
|
+
type: 'integer'
|
|
83
|
+
},
|
|
84
|
+
value: {
|
|
85
|
+
label: 'Value Decimal',
|
|
86
|
+
description: 'The value of the transaction in the base unit of the currency. This should only be set for revenue-related events.',
|
|
87
|
+
type: 'number'
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
default: {
|
|
91
|
+
currency: {
|
|
92
|
+
'@path': '$.properties.currency'
|
|
93
|
+
},
|
|
94
|
+
itemCount: {
|
|
95
|
+
'@path': '$.properties.quantity'
|
|
96
|
+
},
|
|
97
|
+
value: {
|
|
98
|
+
'@if': {
|
|
99
|
+
exists: { '@path': '$.properties.revenue' },
|
|
100
|
+
then: { '@path': '$.properties.revenue' },
|
|
101
|
+
else: { '@path': '$.properties.total' }
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
export const products = {
|
|
107
|
+
label: 'Products',
|
|
108
|
+
description: 'The products associated with the conversion event.',
|
|
109
|
+
type: 'object',
|
|
110
|
+
required: false,
|
|
111
|
+
multiple: true,
|
|
112
|
+
properties: {
|
|
113
|
+
category: {
|
|
114
|
+
label: 'Category',
|
|
115
|
+
description: 'The category the product.',
|
|
116
|
+
type: 'string',
|
|
117
|
+
required: false
|
|
118
|
+
},
|
|
119
|
+
id: {
|
|
120
|
+
label: 'Product ID',
|
|
121
|
+
description: 'The ID representing the product in a catalog',
|
|
122
|
+
type: 'string',
|
|
123
|
+
required: false
|
|
124
|
+
},
|
|
125
|
+
name: {
|
|
126
|
+
label: 'Product Name',
|
|
127
|
+
description: 'The name of the product',
|
|
128
|
+
type: 'string',
|
|
129
|
+
required: false
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
default: {
|
|
133
|
+
'@arrayPath': [
|
|
134
|
+
'$.properties.products',
|
|
135
|
+
{
|
|
136
|
+
category: { '@path': '$.category' },
|
|
137
|
+
id: { '@path': '$.product_id' },
|
|
138
|
+
name: { '@path': '$.name' }
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
};
|
|
143
|
+
export const user = {
|
|
144
|
+
label: 'User',
|
|
145
|
+
description: 'The identifying user parameters associated with the conversion event.',
|
|
146
|
+
type: 'object',
|
|
147
|
+
required: false,
|
|
148
|
+
properties: {
|
|
149
|
+
advertising_id: {
|
|
150
|
+
label: 'Advertising ID',
|
|
151
|
+
description: 'The mobile advertising ID for the user. This can be the iOS IDFA, Android AAID.',
|
|
152
|
+
type: 'string'
|
|
153
|
+
},
|
|
154
|
+
device_type: {
|
|
155
|
+
label: 'Device Type',
|
|
156
|
+
description: 'The type of mobile device. e.g. iOS or Android.',
|
|
157
|
+
type: 'string'
|
|
158
|
+
},
|
|
159
|
+
email: {
|
|
160
|
+
label: 'Email',
|
|
161
|
+
description: 'The email address of the user.',
|
|
162
|
+
type: 'string'
|
|
163
|
+
},
|
|
164
|
+
externalId: {
|
|
165
|
+
label: 'External ID',
|
|
166
|
+
description: 'An advertiser-assigned persistent identifier for the user.',
|
|
167
|
+
type: 'string'
|
|
168
|
+
},
|
|
169
|
+
phoneNumber: {
|
|
170
|
+
label: 'Phone Number',
|
|
171
|
+
description: 'The phone number of the user in E.164 standard format.',
|
|
172
|
+
type: 'string'
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
default: {
|
|
176
|
+
advertising_id: { '@path': '$.context.device.advertisingId' },
|
|
177
|
+
device_type: { '@path': '$.context.device.type' },
|
|
178
|
+
email: {
|
|
179
|
+
'@if': {
|
|
180
|
+
exists: { '@path': '$.context.traits.email' },
|
|
181
|
+
then: { '@path': '$.context.traits.email' },
|
|
182
|
+
else: { '@path': '$.properties.email' }
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
externalId: {
|
|
186
|
+
'@if': {
|
|
187
|
+
exists: { '@path': '$.userId' },
|
|
188
|
+
then: { '@path': '$.userId' },
|
|
189
|
+
else: { '@path': '$.anonymousId' }
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
phoneNumber: {
|
|
193
|
+
'@if': {
|
|
194
|
+
exists: { '@path': '$.properties.phone' },
|
|
195
|
+
then: { '@path': '$.properties.phone' },
|
|
196
|
+
else: { '@path': '$.context.traits.phone' }
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
};
|
|
201
|
+
export const data_processing_options = {
|
|
202
|
+
label: 'Data Processing Options',
|
|
203
|
+
description: 'A structure of data processing options to specify the processing type for the event. This is only used for LDU - when the LDU flag is enabled, it may impact campaign performance and limit the size of targetable audiences.',
|
|
204
|
+
type: 'object',
|
|
205
|
+
required: false,
|
|
206
|
+
additionalProperties: false,
|
|
207
|
+
defaultObjectUI: 'keyvalue',
|
|
208
|
+
properties: {
|
|
209
|
+
country: {
|
|
210
|
+
label: 'Country',
|
|
211
|
+
description: 'Country Code of the user. We support ISO 3166-1 alpha-2 country code.',
|
|
212
|
+
type: 'string',
|
|
213
|
+
choices: [
|
|
214
|
+
{ label: 'AD - Andorra', value: 'AD' },
|
|
215
|
+
{ label: 'AE - United Arab Emirates', value: 'AE' },
|
|
216
|
+
{ label: 'AF - Afghanistan', value: 'AF' },
|
|
217
|
+
{ label: 'AG - Antigua and Barbuda', value: 'AG' },
|
|
218
|
+
{ label: 'AI - Anguilla', value: 'AI' },
|
|
219
|
+
{ label: 'AL - Albania', value: 'AL' },
|
|
220
|
+
{ label: 'AM - Armenia', value: 'AM' },
|
|
221
|
+
{ label: 'AO - Angola', value: 'AO' },
|
|
222
|
+
{ label: 'AQ - Antarctica', value: 'AQ' },
|
|
223
|
+
{ label: 'AR - Argentina', value: 'AR' },
|
|
224
|
+
{ label: 'AS - American Samoa', value: 'AS' },
|
|
225
|
+
{ label: 'AT - Austria', value: 'AT' },
|
|
226
|
+
{ label: 'AU - Australia', value: 'AU' },
|
|
227
|
+
{ label: 'AW - Aruba', value: 'AW' },
|
|
228
|
+
{ label: 'AX - Åland Islands', value: 'AX' },
|
|
229
|
+
{ label: 'AZ - Azerbaijan', value: 'AZ' },
|
|
230
|
+
{ label: 'BA - Bosnia and Herzegovina', value: 'BA' },
|
|
231
|
+
{ label: 'BB - Barbados', value: 'BB' },
|
|
232
|
+
{ label: 'BD - Bangladesh', value: 'BD' },
|
|
233
|
+
{ label: 'BE - Belgium', value: 'BE' },
|
|
234
|
+
{ label: 'BF - Burkina Faso', value: 'BF' },
|
|
235
|
+
{ label: 'BG - Bulgaria', value: 'BG' },
|
|
236
|
+
{ label: 'BH - Bahrain', value: 'BH' },
|
|
237
|
+
{ label: 'BI - Burundi', value: 'BI' },
|
|
238
|
+
{ label: 'BJ - Benin', value: 'BJ' },
|
|
239
|
+
{ label: 'BL - Saint Barthélemy', value: 'BL' },
|
|
240
|
+
{ label: 'BM - Bermuda', value: 'BM' },
|
|
241
|
+
{ label: 'BN - Brunei Darussalam', value: 'BN' },
|
|
242
|
+
{ label: 'BO - Bolivia (Plurinational State of)', value: 'BO' },
|
|
243
|
+
{ label: 'BQ - Bonaire, Sint Eustatius and Saba', value: 'BQ' },
|
|
244
|
+
{ label: 'BR - Brazil', value: 'BR' },
|
|
245
|
+
{ label: 'BS - Bahamas', value: 'BS' },
|
|
246
|
+
{ label: 'BT - Bhutan', value: 'BT' },
|
|
247
|
+
{ label: 'BV - Bouvet Island', value: 'BV' },
|
|
248
|
+
{ label: 'BW - Botswana', value: 'BW' },
|
|
249
|
+
{ label: 'BY - Belarus', value: 'BY' },
|
|
250
|
+
{ label: 'BZ - Belize', value: 'BZ' },
|
|
251
|
+
{ label: 'CA - Canada', value: 'CA' },
|
|
252
|
+
{ label: 'CC - Cocos (Keeling) Islands', value: 'CC' },
|
|
253
|
+
{ label: 'CD - Congo, Democratic Republic of the', value: 'CD' },
|
|
254
|
+
{ label: 'CF - Central African Republic', value: 'CF' },
|
|
255
|
+
{ label: 'CG - Congo', value: 'CG' },
|
|
256
|
+
{ label: 'CH - Switzerland', value: 'CH' },
|
|
257
|
+
{ label: "CI - Côte d'Ivoire", value: 'CI' },
|
|
258
|
+
{ label: 'CK - Cook Islands', value: 'CK' },
|
|
259
|
+
{ label: 'CL - Chile', value: 'CL' },
|
|
260
|
+
{ label: 'CM - Cameroon', value: 'CM' },
|
|
261
|
+
{ label: 'CN - China', value: 'CN' },
|
|
262
|
+
{ label: 'CO - Colombia', value: 'CO' },
|
|
263
|
+
{ label: 'CR - Costa Rica', value: 'CR' },
|
|
264
|
+
{ label: 'CU - Cuba', value: 'CU' },
|
|
265
|
+
{ label: 'CV - Cabo Verde', value: 'CV' },
|
|
266
|
+
{ label: 'CW - Curaçao', value: 'CW' },
|
|
267
|
+
{ label: 'CX - Christmas Island', value: 'CX' },
|
|
268
|
+
{ label: 'CY - Cyprus', value: 'CY' },
|
|
269
|
+
{ label: 'CZ - Czechia', value: 'CZ' },
|
|
270
|
+
{ label: 'DE - Germany', value: 'DE' },
|
|
271
|
+
{ label: 'DJ - Djibouti', value: 'DJ' },
|
|
272
|
+
{ label: 'DK - Denmark', value: 'DK' },
|
|
273
|
+
{ label: 'DM - Dominica', value: 'DM' },
|
|
274
|
+
{ label: 'DO - Dominican Republic', value: 'DO' },
|
|
275
|
+
{ label: 'DZ - Algeria', value: 'DZ' },
|
|
276
|
+
{ label: 'EC - Ecuador', value: 'EC' },
|
|
277
|
+
{ label: 'EE - Estonia', value: 'EE' },
|
|
278
|
+
{ label: 'EG - Egypt', value: 'EG' },
|
|
279
|
+
{ label: 'EH - Western Sahara', value: 'EH' },
|
|
280
|
+
{ label: 'ER - Eritrea', value: 'ER' },
|
|
281
|
+
{ label: 'ES - Spain', value: 'ES' },
|
|
282
|
+
{ label: 'ET - Ethiopia', value: 'ET' },
|
|
283
|
+
{ label: 'FI - Finland', value: 'FI' },
|
|
284
|
+
{ label: 'FJ - Fiji', value: 'FJ' },
|
|
285
|
+
{ label: 'FK - Falkland Islands (Malvinas)', value: 'FK' },
|
|
286
|
+
{ label: 'FM - Micronesia (Federated States of)', value: 'FM' },
|
|
287
|
+
{ label: 'FO - Faroe Islands', value: 'FO' },
|
|
288
|
+
{ label: 'FR - France', value: 'FR' },
|
|
289
|
+
{ label: 'GA - Gabon', value: 'GA' },
|
|
290
|
+
{ label: 'GB - United Kingdom of Great Britain and Northern Ireland', value: 'GB' },
|
|
291
|
+
{ label: 'GD - Grenada', value: 'GD' },
|
|
292
|
+
{ label: 'GE - Georgia', value: 'GE' },
|
|
293
|
+
{ label: 'GF - French Guiana', value: 'GF' },
|
|
294
|
+
{ label: 'GG - Guernsey', value: 'GG' },
|
|
295
|
+
{ label: 'GH - Ghana', value: 'GH' },
|
|
296
|
+
{ label: 'GI - Gibraltar', value: 'GI' },
|
|
297
|
+
{ label: 'GL - Greenland', value: 'GL' },
|
|
298
|
+
{ label: 'GM - Gambia', value: 'GM' },
|
|
299
|
+
{ label: 'GN - Guinea', value: 'GN' },
|
|
300
|
+
{ label: 'GP - Guadeloupe', value: 'GP' },
|
|
301
|
+
{ label: 'GQ - Equatorial Guinea', value: 'GQ' },
|
|
302
|
+
{ label: 'GR - Greece', value: 'GR' },
|
|
303
|
+
{ label: 'GT - Guatemala', value: 'GT' },
|
|
304
|
+
{ label: 'GU - Guam', value: 'GU' },
|
|
305
|
+
{ label: 'GW - Guinea-Bissau', value: 'GW' },
|
|
306
|
+
{ label: 'GY - Guyana', value: 'GY' },
|
|
307
|
+
{ label: 'HK - Hong Kong', value: 'HK' },
|
|
308
|
+
{ label: 'HM - Heard Island and McDonald Islands', value: 'HM' },
|
|
309
|
+
{ label: 'HN - Honduras', value: 'HN' },
|
|
310
|
+
{ label: 'HR - Croatia', value: 'HR' },
|
|
311
|
+
{ label: 'HT - Haiti', value: 'HT' },
|
|
312
|
+
{ label: 'HU - Hungary', value: 'HU' },
|
|
313
|
+
{ label: 'ID - Indonesia', value: 'ID' },
|
|
314
|
+
{ label: 'IE - Ireland', value: 'IE' },
|
|
315
|
+
{ label: 'IL - Israel', value: 'IL' },
|
|
316
|
+
{ label: 'IM - Isle of Man', value: 'IM' },
|
|
317
|
+
{ label: 'IN - India', value: 'IN' },
|
|
318
|
+
{ label: 'IO - British Indian Ocean Territory', value: 'IO' },
|
|
319
|
+
{ label: 'IQ - Iraq', value: 'IQ' },
|
|
320
|
+
{ label: 'IR - Iran (Islamic Republic of)', value: 'IR' },
|
|
321
|
+
{ label: 'IS - Iceland', value: 'IS' },
|
|
322
|
+
{ label: 'IT - Italy', value: 'IT' },
|
|
323
|
+
{ label: 'JE - Jersey', value: 'JE' },
|
|
324
|
+
{ label: 'JM - Jamaica', value: 'JM' },
|
|
325
|
+
{ label: 'JO - Jordan', value: 'JO' },
|
|
326
|
+
{ label: 'JP - Japan', value: 'JP' },
|
|
327
|
+
{ label: 'KE - Kenya', value: 'KE' },
|
|
328
|
+
{ label: 'KG - Kyrgyzstan', value: 'KG' },
|
|
329
|
+
{ label: 'KH - Cambodia', value: 'KH' },
|
|
330
|
+
{ label: 'KI - Kiribati', value: 'KI' },
|
|
331
|
+
{ label: 'KM - Comoros', value: 'KM' },
|
|
332
|
+
{ label: 'KN - Saint Kitts and Nevis', value: 'KN' },
|
|
333
|
+
{ label: "KP - Korea (Democratic People's Republic of)", value: 'KP' },
|
|
334
|
+
{ label: 'KR - Korea, Republic of', value: 'KR' },
|
|
335
|
+
{ label: 'KW - Kuwait', value: 'KW' },
|
|
336
|
+
{ label: 'KY - Cayman Islands', value: 'KY' },
|
|
337
|
+
{ label: 'KZ - Kazakhstan', value: 'KZ' },
|
|
338
|
+
{ label: "LA - Lao People's Democratic Republic", value: 'LA' },
|
|
339
|
+
{ label: 'LB - Lebanon', value: 'LB' },
|
|
340
|
+
{ label: 'LC - Saint Lucia', value: 'LC' },
|
|
341
|
+
{ label: 'LI - Liechtenstein', value: 'LI' },
|
|
342
|
+
{ label: 'LK - Sri Lanka', value: 'LK' },
|
|
343
|
+
{ label: 'LR - Liberia', value: 'LR' },
|
|
344
|
+
{ label: 'LS - Lesotho', value: 'LS' },
|
|
345
|
+
{ label: 'LT - Lithuania', value: 'LT' },
|
|
346
|
+
{ label: 'LU - Luxembourg', value: 'LU' },
|
|
347
|
+
{ label: 'LV - Latvia', value: 'LV' },
|
|
348
|
+
{ label: 'LY - Libya', value: 'LY' },
|
|
349
|
+
{ label: 'MA - Morocco', value: 'MA' },
|
|
350
|
+
{ label: 'MC - Monaco', value: 'MC' },
|
|
351
|
+
{ label: 'MD - Moldova (Republic of)', value: 'MD' },
|
|
352
|
+
{ label: 'ME - Montenegro', value: 'ME' },
|
|
353
|
+
{ label: 'MF - Saint Martin (French part)', value: 'MF' },
|
|
354
|
+
{ label: 'MG - Madagascar', value: 'MG' },
|
|
355
|
+
{ label: 'MH - Marshall Islands', value: 'MH' },
|
|
356
|
+
{ label: 'MK - North Macedonia', value: 'MK' },
|
|
357
|
+
{ label: 'ML - Mali', value: 'ML' },
|
|
358
|
+
{ label: 'MM - Myanmar', value: 'MM' },
|
|
359
|
+
{ label: 'MN - Mongolia', value: 'MN' },
|
|
360
|
+
{ label: 'MO - Macao', value: 'MO' },
|
|
361
|
+
{ label: 'MP - Northern Mariana Islands', value: 'MP' },
|
|
362
|
+
{ label: 'MQ - Martinique', value: 'MQ' },
|
|
363
|
+
{ label: 'MR - Mauritania', value: 'MR' },
|
|
364
|
+
{ label: 'MS - Montserrat', value: 'MS' },
|
|
365
|
+
{ label: 'MT - Malta', value: 'MT' },
|
|
366
|
+
{ label: 'MU - Mauritius', value: 'MU' },
|
|
367
|
+
{ label: 'MV - Maldives', value: 'MV' },
|
|
368
|
+
{ label: 'MW - Malawi', value: 'MW' },
|
|
369
|
+
{ label: 'MX - Mexico', value: 'MX' },
|
|
370
|
+
{ label: 'MY - Malaysia', value: 'MY' },
|
|
371
|
+
{ label: 'MZ - Mozambique', value: 'MZ' },
|
|
372
|
+
{ label: 'NA - Namibia', value: 'NA' },
|
|
373
|
+
{ label: 'NC - New Caledonia', value: 'NC' },
|
|
374
|
+
{ label: 'NE - Niger', value: 'NE' },
|
|
375
|
+
{ label: 'NF - Norfolk Island', value: 'NF' },
|
|
376
|
+
{ label: 'NG - Nigeria', value: 'NG' },
|
|
377
|
+
{ label: 'NI - Nicaragua', value: 'NI' },
|
|
378
|
+
{ label: 'NL - Netherlands', value: 'NL' },
|
|
379
|
+
{ label: 'NO - Norway', value: 'NO' },
|
|
380
|
+
{ label: 'NP - Nepal', value: 'NP' },
|
|
381
|
+
{ label: 'NR - Nauru', value: 'NR' },
|
|
382
|
+
{ label: 'NU - Niue', value: 'NU' },
|
|
383
|
+
{ label: 'NZ - New Zealand', value: 'NZ' },
|
|
384
|
+
{ label: 'OM - Oman', value: 'OM' },
|
|
385
|
+
{ label: 'PA - Panama', value: 'PA' },
|
|
386
|
+
{ label: 'PE - Peru', value: 'PE' },
|
|
387
|
+
{ label: 'PF - French Polynesia', value: 'PF' },
|
|
388
|
+
{ label: 'PG - Papua New Guinea', value: 'PG' },
|
|
389
|
+
{ label: 'PH - Philippines', value: 'PH' },
|
|
390
|
+
{ label: 'PK - Pakistan', value: 'PK' },
|
|
391
|
+
{ label: 'PL - Poland', value: 'PL' },
|
|
392
|
+
{ label: 'PM - Saint Pierre and Miquelon', value: 'PM' },
|
|
393
|
+
{ label: 'PN - Pitcairn', value: 'PN' },
|
|
394
|
+
{ label: 'PR - Puerto Rico', value: 'PR' },
|
|
395
|
+
{ label: 'PT - Portugal', value: 'PT' },
|
|
396
|
+
{ label: 'PW - Palau', value: 'PW' },
|
|
397
|
+
{ label: 'PY - Paraguay', value: 'PY' },
|
|
398
|
+
{ label: 'QA - Qatar', value: 'QA' },
|
|
399
|
+
{ label: 'RE - Réunion', value: 'RE' },
|
|
400
|
+
{ label: 'RO - Romania', value: 'RO' },
|
|
401
|
+
{ label: 'RS - Serbia', value: 'RS' },
|
|
402
|
+
{ label: 'RU - Russian Federation', value: 'RU' },
|
|
403
|
+
{ label: 'RW - Rwanda', value: 'RW' },
|
|
404
|
+
{ label: 'SA - Saudi Arabia', value: 'SA' },
|
|
405
|
+
{ label: 'SB - Solomon Islands', value: 'SB' },
|
|
406
|
+
{ label: 'SC - Seychelles', value: 'SC' },
|
|
407
|
+
{ label: 'SD - Sudan', value: 'SD' },
|
|
408
|
+
{ label: 'SE - Sweden', value: 'SE' },
|
|
409
|
+
{ label: 'SG - Singapore', value: 'SG' },
|
|
410
|
+
{ label: 'SH - Saint Helena', value: 'SH' },
|
|
411
|
+
{ label: 'SI - Slovenia', value: 'SI' },
|
|
412
|
+
{ label: 'SJ - Svalbard and Jan Mayen', value: 'SJ' },
|
|
413
|
+
{ label: 'SK - Slovakia', value: 'SK' },
|
|
414
|
+
{ label: 'SL - Sierra Leone', value: 'SL' },
|
|
415
|
+
{ label: 'SM - San Marino', value: 'SM' },
|
|
416
|
+
{ label: 'SN - Senegal', value: 'SN' },
|
|
417
|
+
{ label: 'SO - Somalia', value: 'SO' },
|
|
418
|
+
{ label: 'SR - Suriname', value: 'SR' },
|
|
419
|
+
{ label: 'SS - South Sudan', value: 'SS' },
|
|
420
|
+
{ label: 'ST - São Tomé and Príncipe', value: 'ST' },
|
|
421
|
+
{ label: 'SV - El Salvador', value: 'SV' },
|
|
422
|
+
{ label: 'SX - Sint Maarten (Dutch part)', value: 'SX' },
|
|
423
|
+
{ label: 'SY - Syrian Arab Republic', value: 'SY' },
|
|
424
|
+
{ label: 'SZ - Eswatini', value: 'SZ' },
|
|
425
|
+
{ label: 'TC - Turks and Caicos Islands', value: 'TC' },
|
|
426
|
+
{ label: 'TD - Chad', value: 'TD' },
|
|
427
|
+
{ label: 'TF - French Southern Territories', value: 'TF' },
|
|
428
|
+
{ label: 'TG - Togo', value: 'TG' },
|
|
429
|
+
{ label: 'TH - Thailand', value: 'TH' },
|
|
430
|
+
{ label: 'TJ - Tajikistan', value: 'TJ' },
|
|
431
|
+
{ label: 'TK - Tokelau', value: 'TK' },
|
|
432
|
+
{ label: 'TL - Timor-Leste', value: 'TL' },
|
|
433
|
+
{ label: 'TM - Turkmenistan', value: 'TM' },
|
|
434
|
+
{ label: 'TN - Tunisia', value: 'TN' },
|
|
435
|
+
{ label: 'TO - Tonga', value: 'TO' },
|
|
436
|
+
{ label: 'TR - Turkey', value: 'TR' },
|
|
437
|
+
{ label: 'TT - Trinidad and Tobago', value: 'TT' },
|
|
438
|
+
{ label: 'TV - Tuvalu', value: 'TV' },
|
|
439
|
+
{ label: 'TZ - Tanzania, United Republic of', value: 'TZ' },
|
|
440
|
+
{ label: 'UA - Ukraine', value: 'UA' },
|
|
441
|
+
{ label: 'UG - Uganda', value: 'UG' },
|
|
442
|
+
{ label: 'UM - United States Minor Outlying Islands', value: 'UM' },
|
|
443
|
+
{ label: 'UN - United Nations', value: 'UN' },
|
|
444
|
+
{ label: 'US - United States of America', value: 'US' },
|
|
445
|
+
{ label: 'UY - Uruguay', value: 'UY' },
|
|
446
|
+
{ label: 'UZ - Uzbekistan', value: 'UZ' },
|
|
447
|
+
{ label: 'VA - Holy See', value: 'VA' },
|
|
448
|
+
{ label: 'VC - Saint Vincent and the Grenadines', value: 'VC' },
|
|
449
|
+
{ label: 'VE - Venezuela (Bolivarian Republic of)', value: 'VE' },
|
|
450
|
+
{ label: 'VG - Virgin Islands (British)', value: 'VG' },
|
|
451
|
+
{ label: 'VI - Virgin Islands (U.S.)', value: 'VI' },
|
|
452
|
+
{ label: 'VN - Viet Nam', value: 'VN' },
|
|
453
|
+
{ label: 'VU - Vanuatu', value: 'VU' },
|
|
454
|
+
{ label: 'WF - Wallis and Futuna', value: 'WF' },
|
|
455
|
+
{ label: 'WS - Samoa', value: 'WS' },
|
|
456
|
+
{ label: 'YE - Yemen', value: 'YE' },
|
|
457
|
+
{ label: 'YT - Mayotte', value: 'YT' },
|
|
458
|
+
{ label: 'ZA - South Africa', value: 'ZA' },
|
|
459
|
+
{ label: 'ZM - Zambia', value: 'ZM' },
|
|
460
|
+
{ label: 'ZW - Zimbabwe', value: 'ZW' }
|
|
461
|
+
]
|
|
462
|
+
},
|
|
463
|
+
region: {
|
|
464
|
+
label: 'Region',
|
|
465
|
+
description: 'Region Code of the user. We support ISO 3166-2 region code, ex: "US-CA, US-NY, etc." or just the region code without country prefix, e.g. "CA, NY, etc.". This is only used for LDU - when the LDU flag is enabled, it may impact campaign performance and limit the size of targetable audiences.',
|
|
466
|
+
type: 'string'
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
};
|
|
470
|
+
//# sourceMappingURL=fields.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fields.js","sourceRoot":"","sources":["../../src/fields.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generated-types.js","sourceRoot":"","sources":["../../src/generated-types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Settings } from './generated-types';
|
|
2
|
+
import type { BrowserDestinationDefinition } from '@segment/browser-destination-runtime/types';
|
|
3
|
+
import { RedditPixel } from './types';
|
|
4
|
+
declare global {
|
|
5
|
+
interface Window {
|
|
6
|
+
rdt: RedditPixel;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export declare const destination: BrowserDestinationDefinition<Settings, RedditPixel>;
|
|
10
|
+
declare const _default: import("@segment/browser-destination-runtime/types").PluginFactory;
|
|
11
|
+
export default _default;
|