@react-native-firebase/analytics 23.7.0 → 23.8.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.
Files changed (132) hide show
  1. package/dist/commonjs/index.js +38 -0
  2. package/dist/commonjs/index.js.map +1 -0
  3. package/dist/commonjs/modular.js +613 -0
  4. package/dist/commonjs/modular.js.map +1 -0
  5. package/dist/commonjs/namespaced.js +441 -0
  6. package/dist/commonjs/namespaced.js.map +1 -0
  7. package/dist/commonjs/package.json +1 -0
  8. package/dist/commonjs/struct.js +54 -0
  9. package/dist/commonjs/struct.js.map +1 -0
  10. package/dist/commonjs/structs.js +214 -0
  11. package/dist/commonjs/structs.js.map +1 -0
  12. package/dist/commonjs/types/analytics.js +79 -0
  13. package/dist/commonjs/types/analytics.js.map +1 -0
  14. package/dist/commonjs/types/web.js +2 -0
  15. package/dist/commonjs/types/web.js.map +1 -0
  16. package/dist/commonjs/version.js +9 -0
  17. package/dist/commonjs/version.js.map +1 -0
  18. package/dist/commonjs/web/RNFBAnalyticsModule.android.js +9 -0
  19. package/dist/commonjs/web/RNFBAnalyticsModule.android.js.map +1 -0
  20. package/dist/commonjs/web/RNFBAnalyticsModule.ios.js +9 -0
  21. package/dist/commonjs/web/RNFBAnalyticsModule.ios.js.map +1 -0
  22. package/dist/commonjs/web/RNFBAnalyticsModule.js +119 -0
  23. package/dist/commonjs/web/RNFBAnalyticsModule.js.map +1 -0
  24. package/dist/commonjs/web/api.js +294 -0
  25. package/dist/commonjs/web/api.js.map +1 -0
  26. package/{ios/RNFBAnalytics/RNFBAnalyticsModule.h → dist/module/index.js} +10 -6
  27. package/dist/module/index.js.map +1 -0
  28. package/{lib/modular/index.js → dist/module/modular.js} +43 -161
  29. package/dist/module/modular.js.map +1 -0
  30. package/dist/module/namespaced.js +438 -0
  31. package/dist/module/namespaced.js.map +1 -0
  32. package/dist/module/package.json +1 -0
  33. package/{lib → dist/module}/struct.js +12 -14
  34. package/dist/module/struct.js.map +1 -0
  35. package/dist/module/structs.js +210 -0
  36. package/dist/module/structs.js.map +1 -0
  37. package/dist/module/types/analytics.js +75 -0
  38. package/dist/module/types/analytics.js.map +1 -0
  39. package/dist/module/types/web.js +2 -0
  40. package/dist/module/types/web.js.map +1 -0
  41. package/dist/module/version.js +5 -0
  42. package/dist/module/version.js.map +1 -0
  43. package/dist/module/web/RNFBAnalyticsModule.android.js +6 -0
  44. package/dist/module/web/RNFBAnalyticsModule.android.js.map +1 -0
  45. package/dist/module/web/RNFBAnalyticsModule.ios.js +6 -0
  46. package/dist/module/web/RNFBAnalyticsModule.ios.js.map +1 -0
  47. package/{lib → dist/module}/web/RNFBAnalyticsModule.js +17 -21
  48. package/dist/module/web/RNFBAnalyticsModule.js.map +1 -0
  49. package/{lib → dist/module}/web/api.js +34 -77
  50. package/dist/module/web/api.js.map +1 -0
  51. package/dist/typescript/commonjs/lib/index.d.ts +5 -0
  52. package/dist/typescript/commonjs/lib/index.d.ts.map +1 -0
  53. package/dist/typescript/commonjs/lib/modular.d.ts +476 -0
  54. package/dist/typescript/commonjs/lib/modular.d.ts.map +1 -0
  55. package/dist/typescript/commonjs/lib/namespaced.d.ts +12 -0
  56. package/dist/typescript/commonjs/lib/namespaced.d.ts.map +1 -0
  57. package/dist/typescript/commonjs/lib/struct.d.ts +3 -0
  58. package/dist/typescript/commonjs/lib/struct.d.ts.map +1 -0
  59. package/dist/typescript/commonjs/lib/structs.d.ts +1155 -0
  60. package/dist/typescript/commonjs/lib/structs.d.ts.map +1 -0
  61. package/dist/typescript/commonjs/lib/types/analytics.d.ts +944 -0
  62. package/dist/typescript/commonjs/lib/types/analytics.d.ts.map +1 -0
  63. package/dist/typescript/commonjs/lib/types/web.d.ts +36 -0
  64. package/dist/typescript/commonjs/lib/types/web.d.ts.map +1 -0
  65. package/dist/typescript/commonjs/lib/version.d.ts +2 -0
  66. package/dist/typescript/commonjs/lib/version.d.ts.map +1 -0
  67. package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.android.d.ts +3 -0
  68. package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.android.d.ts.map +1 -0
  69. package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.d.ts +9 -0
  70. package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.d.ts.map +1 -0
  71. package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.ios.d.ts +3 -0
  72. package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.ios.d.ts.map +1 -0
  73. package/dist/typescript/commonjs/lib/web/api.d.ts +37 -0
  74. package/dist/typescript/commonjs/lib/web/api.d.ts.map +1 -0
  75. package/dist/typescript/commonjs/package.json +1 -0
  76. package/dist/typescript/module/lib/index.d.ts +5 -0
  77. package/dist/typescript/module/lib/index.d.ts.map +1 -0
  78. package/dist/typescript/module/lib/modular.d.ts +476 -0
  79. package/dist/typescript/module/lib/modular.d.ts.map +1 -0
  80. package/dist/typescript/module/lib/namespaced.d.ts +12 -0
  81. package/dist/typescript/module/lib/namespaced.d.ts.map +1 -0
  82. package/dist/typescript/module/lib/struct.d.ts +3 -0
  83. package/dist/typescript/module/lib/struct.d.ts.map +1 -0
  84. package/dist/typescript/module/lib/structs.d.ts +1155 -0
  85. package/dist/typescript/module/lib/structs.d.ts.map +1 -0
  86. package/dist/typescript/module/lib/types/analytics.d.ts +944 -0
  87. package/dist/typescript/module/lib/types/analytics.d.ts.map +1 -0
  88. package/dist/typescript/module/lib/types/web.d.ts +36 -0
  89. package/dist/typescript/module/lib/types/web.d.ts.map +1 -0
  90. package/dist/typescript/module/lib/version.d.ts +2 -0
  91. package/dist/typescript/module/lib/version.d.ts.map +1 -0
  92. package/dist/typescript/module/lib/web/RNFBAnalyticsModule.android.d.ts +3 -0
  93. package/dist/typescript/module/lib/web/RNFBAnalyticsModule.android.d.ts.map +1 -0
  94. package/dist/typescript/module/lib/web/RNFBAnalyticsModule.d.ts +9 -0
  95. package/dist/typescript/module/lib/web/RNFBAnalyticsModule.d.ts.map +1 -0
  96. package/dist/typescript/module/lib/web/RNFBAnalyticsModule.ios.d.ts +3 -0
  97. package/dist/typescript/module/lib/web/RNFBAnalyticsModule.ios.d.ts.map +1 -0
  98. package/dist/typescript/module/lib/web/api.d.ts +37 -0
  99. package/dist/typescript/module/lib/web/api.d.ts.map +1 -0
  100. package/dist/typescript/module/package.json +1 -0
  101. package/lib/index.ts +73 -0
  102. package/lib/modular.ts +1026 -0
  103. package/lib/{index.js → namespaced.ts} +145 -72
  104. package/lib/struct.ts +61 -0
  105. package/lib/{structs.js → structs.ts} +3 -3
  106. package/lib/types/analytics.ts +1078 -0
  107. package/lib/types/web.ts +56 -0
  108. package/lib/version.ts +2 -0
  109. package/lib/web/RNFBAnalyticsModule.android.ts +3 -0
  110. package/lib/web/RNFBAnalyticsModule.ios.ts +3 -0
  111. package/lib/web/RNFBAnalyticsModule.ts +135 -0
  112. package/lib/web/api.ts +366 -0
  113. package/package.json +61 -7
  114. package/CHANGELOG.md +0 -1085
  115. package/RNFBAnalytics.podspec +0 -71
  116. package/android/.editorconfig +0 -10
  117. package/android/build.gradle +0 -177
  118. package/android/lint.xml +0 -5
  119. package/android/settings.gradle +0 -1
  120. package/android/src/main/AndroidManifest.xml +0 -21
  121. package/android/src/main/java/io/invertase/firebase/analytics/UniversalFirebaseAnalyticsModule.java +0 -141
  122. package/android/src/reactnative/AndroidManifest.xml +0 -2
  123. package/android/src/reactnative/java/io/invertase/firebase/analytics/ReactNativeFirebaseAnalyticsModule.java +0 -213
  124. package/android/src/reactnative/java/io/invertase/firebase/analytics/ReactNativeFirebaseAnalyticsPackage.java +0 -41
  125. package/ios/RNFBAnalytics/RNFBAnalyticsModule.m +0 -268
  126. package/ios/RNFBAnalytics.xcodeproj/project.pbxproj +0 -349
  127. package/ios/RNFBAnalytics.xcodeproj/xcshareddata/IDETemplateMacros.plist +0 -24
  128. package/lib/index.d.ts +0 -1903
  129. package/lib/modular/index.d.ts +0 -1267
  130. package/lib/version.js +0 -2
  131. package/lib/web/RNFBAnalyticsModule.android.js +0 -2
  132. package/lib/web/RNFBAnalyticsModule.ios.js +0 -2
@@ -0,0 +1,1155 @@
1
+ export declare const ScreenView: import("superstruct").Struct<{
2
+ screen_name?: string | undefined;
3
+ screen_class?: string | undefined;
4
+ }, {
5
+ screen_class: import("superstruct").Struct<string | undefined, null>;
6
+ screen_name: import("superstruct").Struct<string | undefined, null>;
7
+ }>;
8
+ export declare const AddPaymentInfo: import("superstruct").Struct<{
9
+ coupon?: string | undefined;
10
+ currency?: string | undefined;
11
+ value?: number | undefined;
12
+ items?: {
13
+ item_brand?: string | undefined;
14
+ item_id?: string | undefined;
15
+ item_name?: string | undefined;
16
+ item_category?: string | undefined;
17
+ item_category2?: string | undefined;
18
+ item_category3?: string | undefined;
19
+ item_category4?: string | undefined;
20
+ item_category5?: string | undefined;
21
+ item_list_id?: string | undefined;
22
+ item_list_name?: string | undefined;
23
+ item_variant?: string | undefined;
24
+ quantity?: number | undefined;
25
+ price?: number | undefined;
26
+ item_location_id?: string | undefined;
27
+ }[] | undefined;
28
+ payment_type?: string | undefined;
29
+ }, {
30
+ items: import("superstruct").Struct<{
31
+ item_brand?: string | undefined;
32
+ item_id?: string | undefined;
33
+ item_name?: string | undefined;
34
+ item_category?: string | undefined;
35
+ item_category2?: string | undefined;
36
+ item_category3?: string | undefined;
37
+ item_category4?: string | undefined;
38
+ item_category5?: string | undefined;
39
+ item_list_id?: string | undefined;
40
+ item_list_name?: string | undefined;
41
+ item_variant?: string | undefined;
42
+ quantity?: number | undefined;
43
+ price?: number | undefined;
44
+ item_location_id?: string | undefined;
45
+ }[] | undefined, import("superstruct").Struct<{
46
+ item_brand?: string | undefined;
47
+ item_id?: string | undefined;
48
+ item_name?: string | undefined;
49
+ item_category?: string | undefined;
50
+ item_category2?: string | undefined;
51
+ item_category3?: string | undefined;
52
+ item_category4?: string | undefined;
53
+ item_category5?: string | undefined;
54
+ item_list_id?: string | undefined;
55
+ item_list_name?: string | undefined;
56
+ item_variant?: string | undefined;
57
+ quantity?: number | undefined;
58
+ price?: number | undefined;
59
+ item_location_id?: string | undefined;
60
+ }, {
61
+ item_brand: import("superstruct").Struct<string | undefined, null>;
62
+ item_id: import("superstruct").Struct<string | undefined, null>;
63
+ item_name: import("superstruct").Struct<string | undefined, null>;
64
+ item_category: import("superstruct").Struct<string | undefined, null>;
65
+ item_category2: import("superstruct").Struct<string | undefined, null>;
66
+ item_category3: import("superstruct").Struct<string | undefined, null>;
67
+ item_category4: import("superstruct").Struct<string | undefined, null>;
68
+ item_category5: import("superstruct").Struct<string | undefined, null>;
69
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
70
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
71
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
72
+ item_variant: import("superstruct").Struct<string | undefined, null>;
73
+ quantity: import("superstruct").Struct<number | undefined, null>;
74
+ price: import("superstruct").Struct<number | undefined, null>;
75
+ }>>;
76
+ value: import("superstruct").Struct<number | undefined, null>;
77
+ currency: import("superstruct").Struct<string | undefined, null>;
78
+ coupon: import("superstruct").Struct<string | undefined, null>;
79
+ payment_type: import("superstruct").Struct<string | undefined, null>;
80
+ }>;
81
+ export declare const AddShippingInfo: import("superstruct").Struct<{
82
+ coupon?: string | undefined;
83
+ currency?: string | undefined;
84
+ value?: number | undefined;
85
+ items?: {
86
+ item_brand?: string | undefined;
87
+ item_id?: string | undefined;
88
+ item_name?: string | undefined;
89
+ item_category?: string | undefined;
90
+ item_category2?: string | undefined;
91
+ item_category3?: string | undefined;
92
+ item_category4?: string | undefined;
93
+ item_category5?: string | undefined;
94
+ item_list_id?: string | undefined;
95
+ item_list_name?: string | undefined;
96
+ item_variant?: string | undefined;
97
+ quantity?: number | undefined;
98
+ price?: number | undefined;
99
+ item_location_id?: string | undefined;
100
+ }[] | undefined;
101
+ shipping_tier?: string | undefined;
102
+ }, {
103
+ items: import("superstruct").Struct<{
104
+ item_brand?: string | undefined;
105
+ item_id?: string | undefined;
106
+ item_name?: string | undefined;
107
+ item_category?: string | undefined;
108
+ item_category2?: string | undefined;
109
+ item_category3?: string | undefined;
110
+ item_category4?: string | undefined;
111
+ item_category5?: string | undefined;
112
+ item_list_id?: string | undefined;
113
+ item_list_name?: string | undefined;
114
+ item_variant?: string | undefined;
115
+ quantity?: number | undefined;
116
+ price?: number | undefined;
117
+ item_location_id?: string | undefined;
118
+ }[] | undefined, import("superstruct").Struct<{
119
+ item_brand?: string | undefined;
120
+ item_id?: string | undefined;
121
+ item_name?: string | undefined;
122
+ item_category?: string | undefined;
123
+ item_category2?: string | undefined;
124
+ item_category3?: string | undefined;
125
+ item_category4?: string | undefined;
126
+ item_category5?: string | undefined;
127
+ item_list_id?: string | undefined;
128
+ item_list_name?: string | undefined;
129
+ item_variant?: string | undefined;
130
+ quantity?: number | undefined;
131
+ price?: number | undefined;
132
+ item_location_id?: string | undefined;
133
+ }, {
134
+ item_brand: import("superstruct").Struct<string | undefined, null>;
135
+ item_id: import("superstruct").Struct<string | undefined, null>;
136
+ item_name: import("superstruct").Struct<string | undefined, null>;
137
+ item_category: import("superstruct").Struct<string | undefined, null>;
138
+ item_category2: import("superstruct").Struct<string | undefined, null>;
139
+ item_category3: import("superstruct").Struct<string | undefined, null>;
140
+ item_category4: import("superstruct").Struct<string | undefined, null>;
141
+ item_category5: import("superstruct").Struct<string | undefined, null>;
142
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
143
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
144
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
145
+ item_variant: import("superstruct").Struct<string | undefined, null>;
146
+ quantity: import("superstruct").Struct<number | undefined, null>;
147
+ price: import("superstruct").Struct<number | undefined, null>;
148
+ }>>;
149
+ value: import("superstruct").Struct<number | undefined, null>;
150
+ currency: import("superstruct").Struct<string | undefined, null>;
151
+ coupon: import("superstruct").Struct<string | undefined, null>;
152
+ shipping_tier: import("superstruct").Struct<string | undefined, null>;
153
+ }>;
154
+ export declare const AddToCart: import("superstruct").Struct<{
155
+ currency?: string | undefined;
156
+ value?: number | undefined;
157
+ items?: {
158
+ item_brand?: string | undefined;
159
+ item_id?: string | undefined;
160
+ item_name?: string | undefined;
161
+ item_category?: string | undefined;
162
+ item_category2?: string | undefined;
163
+ item_category3?: string | undefined;
164
+ item_category4?: string | undefined;
165
+ item_category5?: string | undefined;
166
+ item_list_id?: string | undefined;
167
+ item_list_name?: string | undefined;
168
+ item_variant?: string | undefined;
169
+ quantity?: number | undefined;
170
+ price?: number | undefined;
171
+ item_location_id?: string | undefined;
172
+ }[] | undefined;
173
+ }, {
174
+ items: import("superstruct").Struct<{
175
+ item_brand?: string | undefined;
176
+ item_id?: string | undefined;
177
+ item_name?: string | undefined;
178
+ item_category?: string | undefined;
179
+ item_category2?: string | undefined;
180
+ item_category3?: string | undefined;
181
+ item_category4?: string | undefined;
182
+ item_category5?: string | undefined;
183
+ item_list_id?: string | undefined;
184
+ item_list_name?: string | undefined;
185
+ item_variant?: string | undefined;
186
+ quantity?: number | undefined;
187
+ price?: number | undefined;
188
+ item_location_id?: string | undefined;
189
+ }[] | undefined, import("superstruct").Struct<{
190
+ item_brand?: string | undefined;
191
+ item_id?: string | undefined;
192
+ item_name?: string | undefined;
193
+ item_category?: string | undefined;
194
+ item_category2?: string | undefined;
195
+ item_category3?: string | undefined;
196
+ item_category4?: string | undefined;
197
+ item_category5?: string | undefined;
198
+ item_list_id?: string | undefined;
199
+ item_list_name?: string | undefined;
200
+ item_variant?: string | undefined;
201
+ quantity?: number | undefined;
202
+ price?: number | undefined;
203
+ item_location_id?: string | undefined;
204
+ }, {
205
+ item_brand: import("superstruct").Struct<string | undefined, null>;
206
+ item_id: import("superstruct").Struct<string | undefined, null>;
207
+ item_name: import("superstruct").Struct<string | undefined, null>;
208
+ item_category: import("superstruct").Struct<string | undefined, null>;
209
+ item_category2: import("superstruct").Struct<string | undefined, null>;
210
+ item_category3: import("superstruct").Struct<string | undefined, null>;
211
+ item_category4: import("superstruct").Struct<string | undefined, null>;
212
+ item_category5: import("superstruct").Struct<string | undefined, null>;
213
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
214
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
215
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
216
+ item_variant: import("superstruct").Struct<string | undefined, null>;
217
+ quantity: import("superstruct").Struct<number | undefined, null>;
218
+ price: import("superstruct").Struct<number | undefined, null>;
219
+ }>>;
220
+ value: import("superstruct").Struct<number | undefined, null>;
221
+ currency: import("superstruct").Struct<string | undefined, null>;
222
+ }>;
223
+ export declare const AddToWishlist: import("superstruct").Struct<{
224
+ currency?: string | undefined;
225
+ value?: number | undefined;
226
+ items?: {
227
+ item_brand?: string | undefined;
228
+ item_id?: string | undefined;
229
+ item_name?: string | undefined;
230
+ item_category?: string | undefined;
231
+ item_category2?: string | undefined;
232
+ item_category3?: string | undefined;
233
+ item_category4?: string | undefined;
234
+ item_category5?: string | undefined;
235
+ item_list_id?: string | undefined;
236
+ item_list_name?: string | undefined;
237
+ item_variant?: string | undefined;
238
+ quantity?: number | undefined;
239
+ price?: number | undefined;
240
+ item_location_id?: string | undefined;
241
+ }[] | undefined;
242
+ }, {
243
+ items: import("superstruct").Struct<{
244
+ item_brand?: string | undefined;
245
+ item_id?: string | undefined;
246
+ item_name?: string | undefined;
247
+ item_category?: string | undefined;
248
+ item_category2?: string | undefined;
249
+ item_category3?: string | undefined;
250
+ item_category4?: string | undefined;
251
+ item_category5?: string | undefined;
252
+ item_list_id?: string | undefined;
253
+ item_list_name?: string | undefined;
254
+ item_variant?: string | undefined;
255
+ quantity?: number | undefined;
256
+ price?: number | undefined;
257
+ item_location_id?: string | undefined;
258
+ }[] | undefined, import("superstruct").Struct<{
259
+ item_brand?: string | undefined;
260
+ item_id?: string | undefined;
261
+ item_name?: string | undefined;
262
+ item_category?: string | undefined;
263
+ item_category2?: string | undefined;
264
+ item_category3?: string | undefined;
265
+ item_category4?: string | undefined;
266
+ item_category5?: string | undefined;
267
+ item_list_id?: string | undefined;
268
+ item_list_name?: string | undefined;
269
+ item_variant?: string | undefined;
270
+ quantity?: number | undefined;
271
+ price?: number | undefined;
272
+ item_location_id?: string | undefined;
273
+ }, {
274
+ item_brand: import("superstruct").Struct<string | undefined, null>;
275
+ item_id: import("superstruct").Struct<string | undefined, null>;
276
+ item_name: import("superstruct").Struct<string | undefined, null>;
277
+ item_category: import("superstruct").Struct<string | undefined, null>;
278
+ item_category2: import("superstruct").Struct<string | undefined, null>;
279
+ item_category3: import("superstruct").Struct<string | undefined, null>;
280
+ item_category4: import("superstruct").Struct<string | undefined, null>;
281
+ item_category5: import("superstruct").Struct<string | undefined, null>;
282
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
283
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
284
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
285
+ item_variant: import("superstruct").Struct<string | undefined, null>;
286
+ quantity: import("superstruct").Struct<number | undefined, null>;
287
+ price: import("superstruct").Struct<number | undefined, null>;
288
+ }>>;
289
+ value: import("superstruct").Struct<number | undefined, null>;
290
+ currency: import("superstruct").Struct<string | undefined, null>;
291
+ }>;
292
+ export declare const BeginCheckout: import("superstruct").Struct<{
293
+ coupon?: string | undefined;
294
+ currency?: string | undefined;
295
+ value?: number | undefined;
296
+ items?: {
297
+ item_brand?: string | undefined;
298
+ item_id?: string | undefined;
299
+ item_name?: string | undefined;
300
+ item_category?: string | undefined;
301
+ item_category2?: string | undefined;
302
+ item_category3?: string | undefined;
303
+ item_category4?: string | undefined;
304
+ item_category5?: string | undefined;
305
+ item_list_id?: string | undefined;
306
+ item_list_name?: string | undefined;
307
+ item_variant?: string | undefined;
308
+ quantity?: number | undefined;
309
+ price?: number | undefined;
310
+ item_location_id?: string | undefined;
311
+ }[] | undefined;
312
+ }, {
313
+ items: import("superstruct").Struct<{
314
+ item_brand?: string | undefined;
315
+ item_id?: string | undefined;
316
+ item_name?: string | undefined;
317
+ item_category?: string | undefined;
318
+ item_category2?: string | undefined;
319
+ item_category3?: string | undefined;
320
+ item_category4?: string | undefined;
321
+ item_category5?: string | undefined;
322
+ item_list_id?: string | undefined;
323
+ item_list_name?: string | undefined;
324
+ item_variant?: string | undefined;
325
+ quantity?: number | undefined;
326
+ price?: number | undefined;
327
+ item_location_id?: string | undefined;
328
+ }[] | undefined, import("superstruct").Struct<{
329
+ item_brand?: string | undefined;
330
+ item_id?: string | undefined;
331
+ item_name?: string | undefined;
332
+ item_category?: string | undefined;
333
+ item_category2?: string | undefined;
334
+ item_category3?: string | undefined;
335
+ item_category4?: string | undefined;
336
+ item_category5?: string | undefined;
337
+ item_list_id?: string | undefined;
338
+ item_list_name?: string | undefined;
339
+ item_variant?: string | undefined;
340
+ quantity?: number | undefined;
341
+ price?: number | undefined;
342
+ item_location_id?: string | undefined;
343
+ }, {
344
+ item_brand: import("superstruct").Struct<string | undefined, null>;
345
+ item_id: import("superstruct").Struct<string | undefined, null>;
346
+ item_name: import("superstruct").Struct<string | undefined, null>;
347
+ item_category: import("superstruct").Struct<string | undefined, null>;
348
+ item_category2: import("superstruct").Struct<string | undefined, null>;
349
+ item_category3: import("superstruct").Struct<string | undefined, null>;
350
+ item_category4: import("superstruct").Struct<string | undefined, null>;
351
+ item_category5: import("superstruct").Struct<string | undefined, null>;
352
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
353
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
354
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
355
+ item_variant: import("superstruct").Struct<string | undefined, null>;
356
+ quantity: import("superstruct").Struct<number | undefined, null>;
357
+ price: import("superstruct").Struct<number | undefined, null>;
358
+ }>>;
359
+ value: import("superstruct").Struct<number | undefined, null>;
360
+ currency: import("superstruct").Struct<string | undefined, null>;
361
+ coupon: import("superstruct").Struct<string | undefined, null>;
362
+ }>;
363
+ export declare const CampaignDetails: import("superstruct").Struct<{
364
+ source: string;
365
+ medium: string;
366
+ campaign: string;
367
+ term?: string | undefined;
368
+ content?: string | undefined;
369
+ aclid?: string | undefined;
370
+ cp1?: string | undefined;
371
+ }, {
372
+ source: import("superstruct").Struct<string, null>;
373
+ medium: import("superstruct").Struct<string, null>;
374
+ campaign: import("superstruct").Struct<string, null>;
375
+ term: import("superstruct").Struct<string | undefined, null>;
376
+ content: import("superstruct").Struct<string | undefined, null>;
377
+ aclid: import("superstruct").Struct<string | undefined, null>;
378
+ cp1: import("superstruct").Struct<string | undefined, null>;
379
+ }>;
380
+ export declare const EarnVirtualCurrency: import("superstruct").Struct<{
381
+ value: number;
382
+ virtual_currency_name: string;
383
+ }, {
384
+ virtual_currency_name: import("superstruct").Struct<string, null>;
385
+ value: import("superstruct").Struct<number, null>;
386
+ }>;
387
+ export declare const GenerateLead: import("superstruct").Struct<{
388
+ currency?: string | undefined;
389
+ value?: number | undefined;
390
+ }, {
391
+ currency: import("superstruct").Struct<string | undefined, null>;
392
+ value: import("superstruct").Struct<number | undefined, null>;
393
+ }>;
394
+ export declare const JoinGroup: import("superstruct").Struct<{
395
+ group_id: string;
396
+ }, {
397
+ group_id: import("superstruct").Struct<string, null>;
398
+ }>;
399
+ export declare const LevelEnd: import("superstruct").Struct<{
400
+ level: number;
401
+ success?: string | undefined;
402
+ }, {
403
+ level: import("superstruct").Struct<number, null>;
404
+ success: import("superstruct").Struct<string | undefined, null>;
405
+ }>;
406
+ export declare const LevelStart: import("superstruct").Struct<{
407
+ level: number;
408
+ }, {
409
+ level: import("superstruct").Struct<number, null>;
410
+ }>;
411
+ export declare const LevelUp: import("superstruct").Struct<{
412
+ level: number;
413
+ character?: string | undefined;
414
+ }, {
415
+ level: import("superstruct").Struct<number, null>;
416
+ character: import("superstruct").Struct<string | undefined, null>;
417
+ }>;
418
+ export declare const Login: import("superstruct").Struct<{
419
+ method: string;
420
+ }, {
421
+ method: import("superstruct").Struct<string, null>;
422
+ }>;
423
+ export declare const PostScore: import("superstruct").Struct<{
424
+ score: number;
425
+ level?: number | undefined;
426
+ character?: string | undefined;
427
+ }, {
428
+ score: import("superstruct").Struct<number, null>;
429
+ level: import("superstruct").Struct<number | undefined, null>;
430
+ character: import("superstruct").Struct<string | undefined, null>;
431
+ }>;
432
+ export declare const Refund: import("superstruct").Struct<{
433
+ affiliation?: string | undefined;
434
+ coupon?: string | undefined;
435
+ currency?: string | undefined;
436
+ value?: number | undefined;
437
+ items?: {
438
+ item_brand?: string | undefined;
439
+ item_id?: string | undefined;
440
+ item_name?: string | undefined;
441
+ item_category?: string | undefined;
442
+ item_category2?: string | undefined;
443
+ item_category3?: string | undefined;
444
+ item_category4?: string | undefined;
445
+ item_category5?: string | undefined;
446
+ item_list_id?: string | undefined;
447
+ item_list_name?: string | undefined;
448
+ item_variant?: string | undefined;
449
+ quantity?: number | undefined;
450
+ price?: number | undefined;
451
+ item_location_id?: string | undefined;
452
+ }[] | undefined;
453
+ shipping?: number | undefined;
454
+ tax?: number | undefined;
455
+ transaction_id?: string | undefined;
456
+ }, {
457
+ affiliation: import("superstruct").Struct<string | undefined, null>;
458
+ coupon: import("superstruct").Struct<string | undefined, null>;
459
+ currency: import("superstruct").Struct<string | undefined, null>;
460
+ items: import("superstruct").Struct<{
461
+ item_brand?: string | undefined;
462
+ item_id?: string | undefined;
463
+ item_name?: string | undefined;
464
+ item_category?: string | undefined;
465
+ item_category2?: string | undefined;
466
+ item_category3?: string | undefined;
467
+ item_category4?: string | undefined;
468
+ item_category5?: string | undefined;
469
+ item_list_id?: string | undefined;
470
+ item_list_name?: string | undefined;
471
+ item_variant?: string | undefined;
472
+ quantity?: number | undefined;
473
+ price?: number | undefined;
474
+ item_location_id?: string | undefined;
475
+ }[] | undefined, import("superstruct").Struct<{
476
+ item_brand?: string | undefined;
477
+ item_id?: string | undefined;
478
+ item_name?: string | undefined;
479
+ item_category?: string | undefined;
480
+ item_category2?: string | undefined;
481
+ item_category3?: string | undefined;
482
+ item_category4?: string | undefined;
483
+ item_category5?: string | undefined;
484
+ item_list_id?: string | undefined;
485
+ item_list_name?: string | undefined;
486
+ item_variant?: string | undefined;
487
+ quantity?: number | undefined;
488
+ price?: number | undefined;
489
+ item_location_id?: string | undefined;
490
+ }, {
491
+ item_brand: import("superstruct").Struct<string | undefined, null>;
492
+ item_id: import("superstruct").Struct<string | undefined, null>;
493
+ item_name: import("superstruct").Struct<string | undefined, null>;
494
+ item_category: import("superstruct").Struct<string | undefined, null>;
495
+ item_category2: import("superstruct").Struct<string | undefined, null>;
496
+ item_category3: import("superstruct").Struct<string | undefined, null>;
497
+ item_category4: import("superstruct").Struct<string | undefined, null>;
498
+ item_category5: import("superstruct").Struct<string | undefined, null>;
499
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
500
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
501
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
502
+ item_variant: import("superstruct").Struct<string | undefined, null>;
503
+ quantity: import("superstruct").Struct<number | undefined, null>;
504
+ price: import("superstruct").Struct<number | undefined, null>;
505
+ }>>;
506
+ shipping: import("superstruct").Struct<number | undefined, null>;
507
+ tax: import("superstruct").Struct<number | undefined, null>;
508
+ value: import("superstruct").Struct<number | undefined, null>;
509
+ transaction_id: import("superstruct").Struct<string | undefined, null>;
510
+ }>;
511
+ export declare const Purchase: import("superstruct").Struct<{
512
+ affiliation?: string | undefined;
513
+ coupon?: string | undefined;
514
+ currency?: string | undefined;
515
+ value?: number | undefined;
516
+ items?: {
517
+ item_brand?: string | undefined;
518
+ item_id?: string | undefined;
519
+ item_name?: string | undefined;
520
+ item_category?: string | undefined;
521
+ item_category2?: string | undefined;
522
+ item_category3?: string | undefined;
523
+ item_category4?: string | undefined;
524
+ item_category5?: string | undefined;
525
+ item_list_id?: string | undefined;
526
+ item_list_name?: string | undefined;
527
+ item_variant?: string | undefined;
528
+ quantity?: number | undefined;
529
+ price?: number | undefined;
530
+ item_location_id?: string | undefined;
531
+ }[] | undefined;
532
+ shipping?: number | undefined;
533
+ tax?: number | undefined;
534
+ transaction_id?: string | undefined;
535
+ }, {
536
+ affiliation: import("superstruct").Struct<string | undefined, null>;
537
+ coupon: import("superstruct").Struct<string | undefined, null>;
538
+ currency: import("superstruct").Struct<string | undefined, null>;
539
+ items: import("superstruct").Struct<{
540
+ item_brand?: string | undefined;
541
+ item_id?: string | undefined;
542
+ item_name?: string | undefined;
543
+ item_category?: string | undefined;
544
+ item_category2?: string | undefined;
545
+ item_category3?: string | undefined;
546
+ item_category4?: string | undefined;
547
+ item_category5?: string | undefined;
548
+ item_list_id?: string | undefined;
549
+ item_list_name?: string | undefined;
550
+ item_variant?: string | undefined;
551
+ quantity?: number | undefined;
552
+ price?: number | undefined;
553
+ item_location_id?: string | undefined;
554
+ }[] | undefined, import("superstruct").Struct<{
555
+ item_brand?: string | undefined;
556
+ item_id?: string | undefined;
557
+ item_name?: string | undefined;
558
+ item_category?: string | undefined;
559
+ item_category2?: string | undefined;
560
+ item_category3?: string | undefined;
561
+ item_category4?: string | undefined;
562
+ item_category5?: string | undefined;
563
+ item_list_id?: string | undefined;
564
+ item_list_name?: string | undefined;
565
+ item_variant?: string | undefined;
566
+ quantity?: number | undefined;
567
+ price?: number | undefined;
568
+ item_location_id?: string | undefined;
569
+ }, {
570
+ item_brand: import("superstruct").Struct<string | undefined, null>;
571
+ item_id: import("superstruct").Struct<string | undefined, null>;
572
+ item_name: import("superstruct").Struct<string | undefined, null>;
573
+ item_category: import("superstruct").Struct<string | undefined, null>;
574
+ item_category2: import("superstruct").Struct<string | undefined, null>;
575
+ item_category3: import("superstruct").Struct<string | undefined, null>;
576
+ item_category4: import("superstruct").Struct<string | undefined, null>;
577
+ item_category5: import("superstruct").Struct<string | undefined, null>;
578
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
579
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
580
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
581
+ item_variant: import("superstruct").Struct<string | undefined, null>;
582
+ quantity: import("superstruct").Struct<number | undefined, null>;
583
+ price: import("superstruct").Struct<number | undefined, null>;
584
+ }>>;
585
+ shipping: import("superstruct").Struct<number | undefined, null>;
586
+ tax: import("superstruct").Struct<number | undefined, null>;
587
+ value: import("superstruct").Struct<number | undefined, null>;
588
+ transaction_id: import("superstruct").Struct<string | undefined, null>;
589
+ }>;
590
+ export declare const RemoveFromCart: import("superstruct").Struct<{
591
+ currency?: string | undefined;
592
+ value?: number | undefined;
593
+ items?: {
594
+ item_brand?: string | undefined;
595
+ item_id?: string | undefined;
596
+ item_name?: string | undefined;
597
+ item_category?: string | undefined;
598
+ item_category2?: string | undefined;
599
+ item_category3?: string | undefined;
600
+ item_category4?: string | undefined;
601
+ item_category5?: string | undefined;
602
+ item_list_id?: string | undefined;
603
+ item_list_name?: string | undefined;
604
+ item_variant?: string | undefined;
605
+ quantity?: number | undefined;
606
+ price?: number | undefined;
607
+ item_location_id?: string | undefined;
608
+ }[] | undefined;
609
+ }, {
610
+ currency: import("superstruct").Struct<string | undefined, null>;
611
+ items: import("superstruct").Struct<{
612
+ item_brand?: string | undefined;
613
+ item_id?: string | undefined;
614
+ item_name?: string | undefined;
615
+ item_category?: string | undefined;
616
+ item_category2?: string | undefined;
617
+ item_category3?: string | undefined;
618
+ item_category4?: string | undefined;
619
+ item_category5?: string | undefined;
620
+ item_list_id?: string | undefined;
621
+ item_list_name?: string | undefined;
622
+ item_variant?: string | undefined;
623
+ quantity?: number | undefined;
624
+ price?: number | undefined;
625
+ item_location_id?: string | undefined;
626
+ }[] | undefined, import("superstruct").Struct<{
627
+ item_brand?: string | undefined;
628
+ item_id?: string | undefined;
629
+ item_name?: string | undefined;
630
+ item_category?: string | undefined;
631
+ item_category2?: string | undefined;
632
+ item_category3?: string | undefined;
633
+ item_category4?: string | undefined;
634
+ item_category5?: string | undefined;
635
+ item_list_id?: string | undefined;
636
+ item_list_name?: string | undefined;
637
+ item_variant?: string | undefined;
638
+ quantity?: number | undefined;
639
+ price?: number | undefined;
640
+ item_location_id?: string | undefined;
641
+ }, {
642
+ item_brand: import("superstruct").Struct<string | undefined, null>;
643
+ item_id: import("superstruct").Struct<string | undefined, null>;
644
+ item_name: import("superstruct").Struct<string | undefined, null>;
645
+ item_category: import("superstruct").Struct<string | undefined, null>;
646
+ item_category2: import("superstruct").Struct<string | undefined, null>;
647
+ item_category3: import("superstruct").Struct<string | undefined, null>;
648
+ item_category4: import("superstruct").Struct<string | undefined, null>;
649
+ item_category5: import("superstruct").Struct<string | undefined, null>;
650
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
651
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
652
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
653
+ item_variant: import("superstruct").Struct<string | undefined, null>;
654
+ quantity: import("superstruct").Struct<number | undefined, null>;
655
+ price: import("superstruct").Struct<number | undefined, null>;
656
+ }>>;
657
+ value: import("superstruct").Struct<number | undefined, null>;
658
+ }>;
659
+ export declare const Search: import("superstruct").Struct<{
660
+ search_term: string;
661
+ start_date: unknown;
662
+ end_date: unknown;
663
+ origin?: string | undefined;
664
+ number_of_nights?: number | undefined;
665
+ number_of_rooms?: number | undefined;
666
+ number_of_passengers?: number | undefined;
667
+ destination?: string | undefined;
668
+ travel_class?: string | undefined;
669
+ }, {
670
+ search_term: import("superstruct").Struct<string, null>;
671
+ number_of_nights: import("superstruct").Struct<number | undefined, null>;
672
+ number_of_rooms: import("superstruct").Struct<number | undefined, null>;
673
+ number_of_passengers: import("superstruct").Struct<number | undefined, null>;
674
+ origin: import("superstruct").Struct<string | undefined, null>;
675
+ destination: import("superstruct").Struct<string | undefined, null>;
676
+ start_date: import("superstruct").Struct<unknown, null>;
677
+ end_date: import("superstruct").Struct<unknown, null>;
678
+ travel_class: import("superstruct").Struct<string | undefined, null>;
679
+ }>;
680
+ export declare const SelectContent: import("superstruct").Struct<{
681
+ item_id: string;
682
+ content_type: string;
683
+ }, {
684
+ content_type: import("superstruct").Struct<string, null>;
685
+ item_id: import("superstruct").Struct<string, null>;
686
+ }>;
687
+ export declare const SelectItem: import("superstruct").Struct<{
688
+ item_list_id?: string | undefined;
689
+ item_list_name?: string | undefined;
690
+ items?: {
691
+ item_brand?: string | undefined;
692
+ item_id?: string | undefined;
693
+ item_name?: string | undefined;
694
+ item_category?: string | undefined;
695
+ item_category2?: string | undefined;
696
+ item_category3?: string | undefined;
697
+ item_category4?: string | undefined;
698
+ item_category5?: string | undefined;
699
+ item_list_id?: string | undefined;
700
+ item_list_name?: string | undefined;
701
+ item_variant?: string | undefined;
702
+ quantity?: number | undefined;
703
+ price?: number | undefined;
704
+ item_location_id?: string | undefined;
705
+ }[] | undefined;
706
+ content_type?: string | undefined;
707
+ }, {
708
+ items: import("superstruct").Struct<{
709
+ item_brand?: string | undefined;
710
+ item_id?: string | undefined;
711
+ item_name?: string | undefined;
712
+ item_category?: string | undefined;
713
+ item_category2?: string | undefined;
714
+ item_category3?: string | undefined;
715
+ item_category4?: string | undefined;
716
+ item_category5?: string | undefined;
717
+ item_list_id?: string | undefined;
718
+ item_list_name?: string | undefined;
719
+ item_variant?: string | undefined;
720
+ quantity?: number | undefined;
721
+ price?: number | undefined;
722
+ item_location_id?: string | undefined;
723
+ }[] | undefined, import("superstruct").Struct<{
724
+ item_brand?: string | undefined;
725
+ item_id?: string | undefined;
726
+ item_name?: string | undefined;
727
+ item_category?: string | undefined;
728
+ item_category2?: string | undefined;
729
+ item_category3?: string | undefined;
730
+ item_category4?: string | undefined;
731
+ item_category5?: string | undefined;
732
+ item_list_id?: string | undefined;
733
+ item_list_name?: string | undefined;
734
+ item_variant?: string | undefined;
735
+ quantity?: number | undefined;
736
+ price?: number | undefined;
737
+ item_location_id?: string | undefined;
738
+ }, {
739
+ item_brand: import("superstruct").Struct<string | undefined, null>;
740
+ item_id: import("superstruct").Struct<string | undefined, null>;
741
+ item_name: import("superstruct").Struct<string | undefined, null>;
742
+ item_category: import("superstruct").Struct<string | undefined, null>;
743
+ item_category2: import("superstruct").Struct<string | undefined, null>;
744
+ item_category3: import("superstruct").Struct<string | undefined, null>;
745
+ item_category4: import("superstruct").Struct<string | undefined, null>;
746
+ item_category5: import("superstruct").Struct<string | undefined, null>;
747
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
748
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
749
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
750
+ item_variant: import("superstruct").Struct<string | undefined, null>;
751
+ quantity: import("superstruct").Struct<number | undefined, null>;
752
+ price: import("superstruct").Struct<number | undefined, null>;
753
+ }>>;
754
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
755
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
756
+ content_type: import("superstruct").Struct<string | undefined, null>;
757
+ }>;
758
+ export declare const SelectPromotion: import("superstruct").Struct<{
759
+ creative_name: string;
760
+ creative_slot: string;
761
+ promotion_id: string;
762
+ promotion_name: string;
763
+ location_id: string;
764
+ items?: {
765
+ item_brand?: string | undefined;
766
+ item_id?: string | undefined;
767
+ item_name?: string | undefined;
768
+ item_category?: string | undefined;
769
+ item_category2?: string | undefined;
770
+ item_category3?: string | undefined;
771
+ item_category4?: string | undefined;
772
+ item_category5?: string | undefined;
773
+ item_list_id?: string | undefined;
774
+ item_list_name?: string | undefined;
775
+ item_variant?: string | undefined;
776
+ quantity?: number | undefined;
777
+ price?: number | undefined;
778
+ item_location_id?: string | undefined;
779
+ }[] | undefined;
780
+ }, {
781
+ creative_name: import("superstruct").Struct<string, null>;
782
+ creative_slot: import("superstruct").Struct<string, null>;
783
+ items: import("superstruct").Struct<{
784
+ item_brand?: string | undefined;
785
+ item_id?: string | undefined;
786
+ item_name?: string | undefined;
787
+ item_category?: string | undefined;
788
+ item_category2?: string | undefined;
789
+ item_category3?: string | undefined;
790
+ item_category4?: string | undefined;
791
+ item_category5?: string | undefined;
792
+ item_list_id?: string | undefined;
793
+ item_list_name?: string | undefined;
794
+ item_variant?: string | undefined;
795
+ quantity?: number | undefined;
796
+ price?: number | undefined;
797
+ item_location_id?: string | undefined;
798
+ }[] | undefined, import("superstruct").Struct<{
799
+ item_brand?: string | undefined;
800
+ item_id?: string | undefined;
801
+ item_name?: string | undefined;
802
+ item_category?: string | undefined;
803
+ item_category2?: string | undefined;
804
+ item_category3?: string | undefined;
805
+ item_category4?: string | undefined;
806
+ item_category5?: string | undefined;
807
+ item_list_id?: string | undefined;
808
+ item_list_name?: string | undefined;
809
+ item_variant?: string | undefined;
810
+ quantity?: number | undefined;
811
+ price?: number | undefined;
812
+ item_location_id?: string | undefined;
813
+ }, {
814
+ item_brand: import("superstruct").Struct<string | undefined, null>;
815
+ item_id: import("superstruct").Struct<string | undefined, null>;
816
+ item_name: import("superstruct").Struct<string | undefined, null>;
817
+ item_category: import("superstruct").Struct<string | undefined, null>;
818
+ item_category2: import("superstruct").Struct<string | undefined, null>;
819
+ item_category3: import("superstruct").Struct<string | undefined, null>;
820
+ item_category4: import("superstruct").Struct<string | undefined, null>;
821
+ item_category5: import("superstruct").Struct<string | undefined, null>;
822
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
823
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
824
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
825
+ item_variant: import("superstruct").Struct<string | undefined, null>;
826
+ quantity: import("superstruct").Struct<number | undefined, null>;
827
+ price: import("superstruct").Struct<number | undefined, null>;
828
+ }>>;
829
+ location_id: import("superstruct").Struct<string, null>;
830
+ promotion_id: import("superstruct").Struct<string, null>;
831
+ promotion_name: import("superstruct").Struct<string, null>;
832
+ }>;
833
+ export declare const SetCheckoutOption: import("superstruct").Struct<{
834
+ checkout_step?: number | undefined;
835
+ checkout_option?: string | undefined;
836
+ }, {
837
+ checkout_step: import("superstruct").Struct<number | undefined, null>;
838
+ checkout_option: import("superstruct").Struct<string | undefined, null>;
839
+ }>;
840
+ export declare const Share: import("superstruct").Struct<{
841
+ item_id: string;
842
+ content_type: string;
843
+ method: string;
844
+ }, {
845
+ content_type: import("superstruct").Struct<string, null>;
846
+ item_id: import("superstruct").Struct<string, null>;
847
+ method: import("superstruct").Struct<string, null>;
848
+ }>;
849
+ export declare const SignUp: import("superstruct").Struct<{
850
+ method: string;
851
+ }, {
852
+ method: import("superstruct").Struct<string, null>;
853
+ }>;
854
+ export declare const SpendVirtualCurrency: import("superstruct").Struct<{
855
+ item_name: string;
856
+ value: number;
857
+ virtual_currency_name: string;
858
+ }, {
859
+ item_name: import("superstruct").Struct<string, null>;
860
+ virtual_currency_name: import("superstruct").Struct<string, null>;
861
+ value: import("superstruct").Struct<number, null>;
862
+ }>;
863
+ export declare const UnlockAchievement: import("superstruct").Struct<{
864
+ achievement_id: string;
865
+ }, {
866
+ achievement_id: import("superstruct").Struct<string, null>;
867
+ }>;
868
+ export declare const ViewCart: import("superstruct").Struct<{
869
+ currency?: string | undefined;
870
+ value?: number | undefined;
871
+ items?: {
872
+ item_brand?: string | undefined;
873
+ item_id?: string | undefined;
874
+ item_name?: string | undefined;
875
+ item_category?: string | undefined;
876
+ item_category2?: string | undefined;
877
+ item_category3?: string | undefined;
878
+ item_category4?: string | undefined;
879
+ item_category5?: string | undefined;
880
+ item_list_id?: string | undefined;
881
+ item_list_name?: string | undefined;
882
+ item_variant?: string | undefined;
883
+ quantity?: number | undefined;
884
+ price?: number | undefined;
885
+ item_location_id?: string | undefined;
886
+ }[] | undefined;
887
+ }, {
888
+ currency: import("superstruct").Struct<string | undefined, null>;
889
+ items: import("superstruct").Struct<{
890
+ item_brand?: string | undefined;
891
+ item_id?: string | undefined;
892
+ item_name?: string | undefined;
893
+ item_category?: string | undefined;
894
+ item_category2?: string | undefined;
895
+ item_category3?: string | undefined;
896
+ item_category4?: string | undefined;
897
+ item_category5?: string | undefined;
898
+ item_list_id?: string | undefined;
899
+ item_list_name?: string | undefined;
900
+ item_variant?: string | undefined;
901
+ quantity?: number | undefined;
902
+ price?: number | undefined;
903
+ item_location_id?: string | undefined;
904
+ }[] | undefined, import("superstruct").Struct<{
905
+ item_brand?: string | undefined;
906
+ item_id?: string | undefined;
907
+ item_name?: string | undefined;
908
+ item_category?: string | undefined;
909
+ item_category2?: string | undefined;
910
+ item_category3?: string | undefined;
911
+ item_category4?: string | undefined;
912
+ item_category5?: string | undefined;
913
+ item_list_id?: string | undefined;
914
+ item_list_name?: string | undefined;
915
+ item_variant?: string | undefined;
916
+ quantity?: number | undefined;
917
+ price?: number | undefined;
918
+ item_location_id?: string | undefined;
919
+ }, {
920
+ item_brand: import("superstruct").Struct<string | undefined, null>;
921
+ item_id: import("superstruct").Struct<string | undefined, null>;
922
+ item_name: import("superstruct").Struct<string | undefined, null>;
923
+ item_category: import("superstruct").Struct<string | undefined, null>;
924
+ item_category2: import("superstruct").Struct<string | undefined, null>;
925
+ item_category3: import("superstruct").Struct<string | undefined, null>;
926
+ item_category4: import("superstruct").Struct<string | undefined, null>;
927
+ item_category5: import("superstruct").Struct<string | undefined, null>;
928
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
929
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
930
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
931
+ item_variant: import("superstruct").Struct<string | undefined, null>;
932
+ quantity: import("superstruct").Struct<number | undefined, null>;
933
+ price: import("superstruct").Struct<number | undefined, null>;
934
+ }>>;
935
+ value: import("superstruct").Struct<number | undefined, null>;
936
+ }>;
937
+ export declare const ViewItem: import("superstruct").Struct<{
938
+ currency?: string | undefined;
939
+ value?: number | undefined;
940
+ items?: {
941
+ item_brand?: string | undefined;
942
+ item_id?: string | undefined;
943
+ item_name?: string | undefined;
944
+ item_category?: string | undefined;
945
+ item_category2?: string | undefined;
946
+ item_category3?: string | undefined;
947
+ item_category4?: string | undefined;
948
+ item_category5?: string | undefined;
949
+ item_list_id?: string | undefined;
950
+ item_list_name?: string | undefined;
951
+ item_variant?: string | undefined;
952
+ quantity?: number | undefined;
953
+ price?: number | undefined;
954
+ item_location_id?: string | undefined;
955
+ }[] | undefined;
956
+ }, {
957
+ currency: import("superstruct").Struct<string | undefined, null>;
958
+ items: import("superstruct").Struct<{
959
+ item_brand?: string | undefined;
960
+ item_id?: string | undefined;
961
+ item_name?: string | undefined;
962
+ item_category?: string | undefined;
963
+ item_category2?: string | undefined;
964
+ item_category3?: string | undefined;
965
+ item_category4?: string | undefined;
966
+ item_category5?: string | undefined;
967
+ item_list_id?: string | undefined;
968
+ item_list_name?: string | undefined;
969
+ item_variant?: string | undefined;
970
+ quantity?: number | undefined;
971
+ price?: number | undefined;
972
+ item_location_id?: string | undefined;
973
+ }[] | undefined, import("superstruct").Struct<{
974
+ item_brand?: string | undefined;
975
+ item_id?: string | undefined;
976
+ item_name?: string | undefined;
977
+ item_category?: string | undefined;
978
+ item_category2?: string | undefined;
979
+ item_category3?: string | undefined;
980
+ item_category4?: string | undefined;
981
+ item_category5?: string | undefined;
982
+ item_list_id?: string | undefined;
983
+ item_list_name?: string | undefined;
984
+ item_variant?: string | undefined;
985
+ quantity?: number | undefined;
986
+ price?: number | undefined;
987
+ item_location_id?: string | undefined;
988
+ }, {
989
+ item_brand: import("superstruct").Struct<string | undefined, null>;
990
+ item_id: import("superstruct").Struct<string | undefined, null>;
991
+ item_name: import("superstruct").Struct<string | undefined, null>;
992
+ item_category: import("superstruct").Struct<string | undefined, null>;
993
+ item_category2: import("superstruct").Struct<string | undefined, null>;
994
+ item_category3: import("superstruct").Struct<string | undefined, null>;
995
+ item_category4: import("superstruct").Struct<string | undefined, null>;
996
+ item_category5: import("superstruct").Struct<string | undefined, null>;
997
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
998
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
999
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
1000
+ item_variant: import("superstruct").Struct<string | undefined, null>;
1001
+ quantity: import("superstruct").Struct<number | undefined, null>;
1002
+ price: import("superstruct").Struct<number | undefined, null>;
1003
+ }>>;
1004
+ value: import("superstruct").Struct<number | undefined, null>;
1005
+ }>;
1006
+ export declare const ViewItemList: import("superstruct").Struct<{
1007
+ item_list_id?: string | undefined;
1008
+ item_list_name?: string | undefined;
1009
+ items?: {
1010
+ item_brand?: string | undefined;
1011
+ item_id?: string | undefined;
1012
+ item_name?: string | undefined;
1013
+ item_category?: string | undefined;
1014
+ item_category2?: string | undefined;
1015
+ item_category3?: string | undefined;
1016
+ item_category4?: string | undefined;
1017
+ item_category5?: string | undefined;
1018
+ item_list_id?: string | undefined;
1019
+ item_list_name?: string | undefined;
1020
+ item_variant?: string | undefined;
1021
+ quantity?: number | undefined;
1022
+ price?: number | undefined;
1023
+ item_location_id?: string | undefined;
1024
+ }[] | undefined;
1025
+ }, {
1026
+ items: import("superstruct").Struct<{
1027
+ item_brand?: string | undefined;
1028
+ item_id?: string | undefined;
1029
+ item_name?: string | undefined;
1030
+ item_category?: string | undefined;
1031
+ item_category2?: string | undefined;
1032
+ item_category3?: string | undefined;
1033
+ item_category4?: string | undefined;
1034
+ item_category5?: string | undefined;
1035
+ item_list_id?: string | undefined;
1036
+ item_list_name?: string | undefined;
1037
+ item_variant?: string | undefined;
1038
+ quantity?: number | undefined;
1039
+ price?: number | undefined;
1040
+ item_location_id?: string | undefined;
1041
+ }[] | undefined, import("superstruct").Struct<{
1042
+ item_brand?: string | undefined;
1043
+ item_id?: string | undefined;
1044
+ item_name?: string | undefined;
1045
+ item_category?: string | undefined;
1046
+ item_category2?: string | undefined;
1047
+ item_category3?: string | undefined;
1048
+ item_category4?: string | undefined;
1049
+ item_category5?: string | undefined;
1050
+ item_list_id?: string | undefined;
1051
+ item_list_name?: string | undefined;
1052
+ item_variant?: string | undefined;
1053
+ quantity?: number | undefined;
1054
+ price?: number | undefined;
1055
+ item_location_id?: string | undefined;
1056
+ }, {
1057
+ item_brand: import("superstruct").Struct<string | undefined, null>;
1058
+ item_id: import("superstruct").Struct<string | undefined, null>;
1059
+ item_name: import("superstruct").Struct<string | undefined, null>;
1060
+ item_category: import("superstruct").Struct<string | undefined, null>;
1061
+ item_category2: import("superstruct").Struct<string | undefined, null>;
1062
+ item_category3: import("superstruct").Struct<string | undefined, null>;
1063
+ item_category4: import("superstruct").Struct<string | undefined, null>;
1064
+ item_category5: import("superstruct").Struct<string | undefined, null>;
1065
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
1066
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
1067
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
1068
+ item_variant: import("superstruct").Struct<string | undefined, null>;
1069
+ quantity: import("superstruct").Struct<number | undefined, null>;
1070
+ price: import("superstruct").Struct<number | undefined, null>;
1071
+ }>>;
1072
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
1073
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
1074
+ }>;
1075
+ export declare const ViewPromotion: import("superstruct").Struct<{
1076
+ creative_name?: string | undefined;
1077
+ creative_slot?: string | undefined;
1078
+ promotion_id?: string | undefined;
1079
+ promotion_name?: string | undefined;
1080
+ location_id?: string | undefined;
1081
+ items?: {
1082
+ item_brand?: string | undefined;
1083
+ item_id?: string | undefined;
1084
+ item_name?: string | undefined;
1085
+ item_category?: string | undefined;
1086
+ item_category2?: string | undefined;
1087
+ item_category3?: string | undefined;
1088
+ item_category4?: string | undefined;
1089
+ item_category5?: string | undefined;
1090
+ item_list_id?: string | undefined;
1091
+ item_list_name?: string | undefined;
1092
+ item_variant?: string | undefined;
1093
+ quantity?: number | undefined;
1094
+ price?: number | undefined;
1095
+ item_location_id?: string | undefined;
1096
+ }[] | undefined;
1097
+ }, {
1098
+ items: import("superstruct").Struct<{
1099
+ item_brand?: string | undefined;
1100
+ item_id?: string | undefined;
1101
+ item_name?: string | undefined;
1102
+ item_category?: string | undefined;
1103
+ item_category2?: string | undefined;
1104
+ item_category3?: string | undefined;
1105
+ item_category4?: string | undefined;
1106
+ item_category5?: string | undefined;
1107
+ item_list_id?: string | undefined;
1108
+ item_list_name?: string | undefined;
1109
+ item_variant?: string | undefined;
1110
+ quantity?: number | undefined;
1111
+ price?: number | undefined;
1112
+ item_location_id?: string | undefined;
1113
+ }[] | undefined, import("superstruct").Struct<{
1114
+ item_brand?: string | undefined;
1115
+ item_id?: string | undefined;
1116
+ item_name?: string | undefined;
1117
+ item_category?: string | undefined;
1118
+ item_category2?: string | undefined;
1119
+ item_category3?: string | undefined;
1120
+ item_category4?: string | undefined;
1121
+ item_category5?: string | undefined;
1122
+ item_list_id?: string | undefined;
1123
+ item_list_name?: string | undefined;
1124
+ item_variant?: string | undefined;
1125
+ quantity?: number | undefined;
1126
+ price?: number | undefined;
1127
+ item_location_id?: string | undefined;
1128
+ }, {
1129
+ item_brand: import("superstruct").Struct<string | undefined, null>;
1130
+ item_id: import("superstruct").Struct<string | undefined, null>;
1131
+ item_name: import("superstruct").Struct<string | undefined, null>;
1132
+ item_category: import("superstruct").Struct<string | undefined, null>;
1133
+ item_category2: import("superstruct").Struct<string | undefined, null>;
1134
+ item_category3: import("superstruct").Struct<string | undefined, null>;
1135
+ item_category4: import("superstruct").Struct<string | undefined, null>;
1136
+ item_category5: import("superstruct").Struct<string | undefined, null>;
1137
+ item_list_id: import("superstruct").Struct<string | undefined, null>;
1138
+ item_list_name: import("superstruct").Struct<string | undefined, null>;
1139
+ item_location_id: import("superstruct").Struct<string | undefined, null>;
1140
+ item_variant: import("superstruct").Struct<string | undefined, null>;
1141
+ quantity: import("superstruct").Struct<number | undefined, null>;
1142
+ price: import("superstruct").Struct<number | undefined, null>;
1143
+ }>>;
1144
+ location_id: import("superstruct").Struct<string | undefined, null>;
1145
+ creative_name: import("superstruct").Struct<string | undefined, null>;
1146
+ creative_slot: import("superstruct").Struct<string | undefined, null>;
1147
+ promotion_id: import("superstruct").Struct<string | undefined, null>;
1148
+ promotion_name: import("superstruct").Struct<string | undefined, null>;
1149
+ }>;
1150
+ export declare const ViewSearchResults: import("superstruct").Struct<{
1151
+ search_term: string;
1152
+ }, {
1153
+ search_term: import("superstruct").Struct<string, null>;
1154
+ }>;
1155
+ //# sourceMappingURL=structs.d.ts.map