@sortipei/api-contracts 0.2.4 → 0.2.6
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/dist/V1/api/ad.d.ts +28 -28
- package/dist/V1/api/event.d.ts +71 -60
- package/dist/V1/api/event.d.ts.map +1 -1
- package/dist/V1/api/import-reminder.d.ts +52 -0
- package/dist/V1/api/import-reminder.d.ts.map +1 -0
- package/dist/V1/api/index.d.ts +1 -0
- package/dist/V1/api/index.d.ts.map +1 -1
- package/dist/V1/api/organizer.d.ts +2 -2
- package/dist/V1/api/statistics.d.ts +106 -106
- package/dist/V1/external/partial-imported-event.d.ts +23 -23
- package/dist/flavors.d.ts +3 -0
- package/dist/flavors.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -5,12 +5,12 @@ export declare const TopEventDTOSchema: z.ZodObject<{
|
|
|
5
5
|
eventId: z.ZodBranded<z.ZodString, "EventId">;
|
|
6
6
|
eventTitle: z.ZodString;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
|
-
eventId: string & z.BRAND<"EventId">;
|
|
9
8
|
count: number;
|
|
9
|
+
eventId: string & z.BRAND<"EventId">;
|
|
10
10
|
eventTitle: string;
|
|
11
11
|
}, {
|
|
12
|
-
eventId: string;
|
|
13
12
|
count: number;
|
|
13
|
+
eventId: string;
|
|
14
14
|
eventTitle: string;
|
|
15
15
|
}>;
|
|
16
16
|
export declare const AdStatDTOSchema: z.ZodObject<{
|
|
@@ -71,12 +71,12 @@ export declare const GlobalStatsDTOSchema: z.ZodObject<{
|
|
|
71
71
|
eventId: z.ZodBranded<z.ZodString, "EventId">;
|
|
72
72
|
eventTitle: z.ZodString;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
|
-
eventId: string & z.BRAND<"EventId">;
|
|
75
74
|
count: number;
|
|
75
|
+
eventId: string & z.BRAND<"EventId">;
|
|
76
76
|
eventTitle: string;
|
|
77
77
|
}, {
|
|
78
|
-
eventId: string;
|
|
79
78
|
count: number;
|
|
79
|
+
eventId: string;
|
|
80
80
|
eventTitle: string;
|
|
81
81
|
}>, "many">;
|
|
82
82
|
topUpcomingAddedToFavoritesEvents: z.ZodArray<z.ZodObject<{
|
|
@@ -84,12 +84,12 @@ export declare const GlobalStatsDTOSchema: z.ZodObject<{
|
|
|
84
84
|
eventId: z.ZodBranded<z.ZodString, "EventId">;
|
|
85
85
|
eventTitle: z.ZodString;
|
|
86
86
|
}, "strip", z.ZodTypeAny, {
|
|
87
|
-
eventId: string & z.BRAND<"EventId">;
|
|
88
87
|
count: number;
|
|
88
|
+
eventId: string & z.BRAND<"EventId">;
|
|
89
89
|
eventTitle: string;
|
|
90
90
|
}, {
|
|
91
|
-
eventId: string;
|
|
92
91
|
count: number;
|
|
92
|
+
eventId: string;
|
|
93
93
|
eventTitle: string;
|
|
94
94
|
}>, "many">;
|
|
95
95
|
topUpcomingViewedEvents: z.ZodArray<z.ZodObject<{
|
|
@@ -97,12 +97,12 @@ export declare const GlobalStatsDTOSchema: z.ZodObject<{
|
|
|
97
97
|
eventId: z.ZodBranded<z.ZodString, "EventId">;
|
|
98
98
|
eventTitle: z.ZodString;
|
|
99
99
|
}, "strip", z.ZodTypeAny, {
|
|
100
|
-
eventId: string & z.BRAND<"EventId">;
|
|
101
100
|
count: number;
|
|
101
|
+
eventId: string & z.BRAND<"EventId">;
|
|
102
102
|
eventTitle: string;
|
|
103
103
|
}, {
|
|
104
|
-
eventId: string;
|
|
105
104
|
count: number;
|
|
105
|
+
eventId: string;
|
|
106
106
|
eventTitle: string;
|
|
107
107
|
}>, "many">;
|
|
108
108
|
topViewedEvents: z.ZodArray<z.ZodObject<{
|
|
@@ -110,12 +110,12 @@ export declare const GlobalStatsDTOSchema: z.ZodObject<{
|
|
|
110
110
|
eventId: z.ZodBranded<z.ZodString, "EventId">;
|
|
111
111
|
eventTitle: z.ZodString;
|
|
112
112
|
}, "strip", z.ZodTypeAny, {
|
|
113
|
-
eventId: string & z.BRAND<"EventId">;
|
|
114
113
|
count: number;
|
|
114
|
+
eventId: string & z.BRAND<"EventId">;
|
|
115
115
|
eventTitle: string;
|
|
116
116
|
}, {
|
|
117
|
-
eventId: string;
|
|
118
117
|
count: number;
|
|
118
|
+
eventId: string;
|
|
119
119
|
eventTitle: string;
|
|
120
120
|
}>, "many">;
|
|
121
121
|
totalAddedToCalendar: z.ZodNumber;
|
|
@@ -134,23 +134,23 @@ export declare const GlobalStatsDTOSchema: z.ZodObject<{
|
|
|
134
134
|
presentOrFutureEventsCount: number;
|
|
135
135
|
sharedEventsCount: number;
|
|
136
136
|
topAddedToFavoritesEvents: {
|
|
137
|
-
eventId: string & z.BRAND<"EventId">;
|
|
138
137
|
count: number;
|
|
138
|
+
eventId: string & z.BRAND<"EventId">;
|
|
139
139
|
eventTitle: string;
|
|
140
140
|
}[];
|
|
141
141
|
topUpcomingAddedToFavoritesEvents: {
|
|
142
|
-
eventId: string & z.BRAND<"EventId">;
|
|
143
142
|
count: number;
|
|
143
|
+
eventId: string & z.BRAND<"EventId">;
|
|
144
144
|
eventTitle: string;
|
|
145
145
|
}[];
|
|
146
146
|
topUpcomingViewedEvents: {
|
|
147
|
-
eventId: string & z.BRAND<"EventId">;
|
|
148
147
|
count: number;
|
|
148
|
+
eventId: string & z.BRAND<"EventId">;
|
|
149
149
|
eventTitle: string;
|
|
150
150
|
}[];
|
|
151
151
|
topViewedEvents: {
|
|
152
|
-
eventId: string & z.BRAND<"EventId">;
|
|
153
152
|
count: number;
|
|
153
|
+
eventId: string & z.BRAND<"EventId">;
|
|
154
154
|
eventTitle: string;
|
|
155
155
|
}[];
|
|
156
156
|
totalAddedToCalendar: number;
|
|
@@ -169,23 +169,23 @@ export declare const GlobalStatsDTOSchema: z.ZodObject<{
|
|
|
169
169
|
presentOrFutureEventsCount: number;
|
|
170
170
|
sharedEventsCount: number;
|
|
171
171
|
topAddedToFavoritesEvents: {
|
|
172
|
-
eventId: string;
|
|
173
172
|
count: number;
|
|
173
|
+
eventId: string;
|
|
174
174
|
eventTitle: string;
|
|
175
175
|
}[];
|
|
176
176
|
topUpcomingAddedToFavoritesEvents: {
|
|
177
|
-
eventId: string;
|
|
178
177
|
count: number;
|
|
178
|
+
eventId: string;
|
|
179
179
|
eventTitle: string;
|
|
180
180
|
}[];
|
|
181
181
|
topUpcomingViewedEvents: {
|
|
182
|
-
eventId: string;
|
|
183
182
|
count: number;
|
|
183
|
+
eventId: string;
|
|
184
184
|
eventTitle: string;
|
|
185
185
|
}[];
|
|
186
186
|
topViewedEvents: {
|
|
187
|
-
eventId: string;
|
|
188
187
|
count: number;
|
|
188
|
+
eventId: string;
|
|
189
189
|
eventTitle: string;
|
|
190
190
|
}[];
|
|
191
191
|
totalAddedToCalendar: number;
|
|
@@ -205,30 +205,30 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
205
205
|
adTitle: z.ZodString;
|
|
206
206
|
userId: z.ZodString;
|
|
207
207
|
}, "strip", z.ZodTypeAny, {
|
|
208
|
-
userId: string;
|
|
209
208
|
adId: string;
|
|
210
209
|
adTitle: string;
|
|
211
|
-
}, {
|
|
212
210
|
userId: string;
|
|
211
|
+
}, {
|
|
213
212
|
adId: string;
|
|
214
213
|
adTitle: string;
|
|
214
|
+
userId: string;
|
|
215
215
|
}>;
|
|
216
216
|
time: z.ZodString;
|
|
217
217
|
type: z.ZodLiteral<"ad-pressed">;
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
type: "ad-pressed";
|
|
220
220
|
data: {
|
|
221
|
-
userId: string;
|
|
222
221
|
adId: string;
|
|
223
222
|
adTitle: string;
|
|
223
|
+
userId: string;
|
|
224
224
|
};
|
|
225
225
|
time: string;
|
|
226
226
|
}, {
|
|
227
227
|
type: "ad-pressed";
|
|
228
228
|
data: {
|
|
229
|
-
userId: string;
|
|
230
229
|
adId: string;
|
|
231
230
|
adTitle: string;
|
|
231
|
+
userId: string;
|
|
232
232
|
};
|
|
233
233
|
time: string;
|
|
234
234
|
}>, z.ZodObject<{
|
|
@@ -255,14 +255,14 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
255
255
|
time: string;
|
|
256
256
|
}>, z.ZodObject<{
|
|
257
257
|
data: z.ZodObject<{
|
|
258
|
-
category: z.ZodNativeEnum<typeof import(
|
|
258
|
+
category: z.ZodNativeEnum<typeof import("../../shared").Category>;
|
|
259
259
|
userId: z.ZodString;
|
|
260
260
|
}, "strip", z.ZodTypeAny, {
|
|
261
261
|
userId: string;
|
|
262
|
-
category: import(
|
|
262
|
+
category: import("../../shared").Category;
|
|
263
263
|
}, {
|
|
264
264
|
userId: string;
|
|
265
|
-
category: import(
|
|
265
|
+
category: import("../../shared").Category;
|
|
266
266
|
}>;
|
|
267
267
|
time: z.ZodString;
|
|
268
268
|
type: z.ZodLiteral<"category-filter-applied">;
|
|
@@ -270,14 +270,14 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
270
270
|
type: "category-filter-applied";
|
|
271
271
|
data: {
|
|
272
272
|
userId: string;
|
|
273
|
-
category: import(
|
|
273
|
+
category: import("../../shared").Category;
|
|
274
274
|
};
|
|
275
275
|
time: string;
|
|
276
276
|
}, {
|
|
277
277
|
type: "category-filter-applied";
|
|
278
278
|
data: {
|
|
279
279
|
userId: string;
|
|
280
|
-
category: import(
|
|
280
|
+
category: import("../../shared").Category;
|
|
281
281
|
};
|
|
282
282
|
time: string;
|
|
283
283
|
}>, z.ZodObject<{
|
|
@@ -317,26 +317,26 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
317
317
|
userId: z.ZodString;
|
|
318
318
|
eventId: z.ZodString;
|
|
319
319
|
}, "strip", z.ZodTypeAny, {
|
|
320
|
-
userId: string;
|
|
321
320
|
eventId: string;
|
|
322
|
-
}, {
|
|
323
321
|
userId: string;
|
|
322
|
+
}, {
|
|
324
323
|
eventId: string;
|
|
324
|
+
userId: string;
|
|
325
325
|
}>;
|
|
326
326
|
time: z.ZodString;
|
|
327
327
|
type: z.ZodLiteral<"event-added-to-calendar">;
|
|
328
328
|
}, "strip", z.ZodTypeAny, {
|
|
329
329
|
type: "event-added-to-calendar";
|
|
330
330
|
data: {
|
|
331
|
-
userId: string;
|
|
332
331
|
eventId: string;
|
|
332
|
+
userId: string;
|
|
333
333
|
};
|
|
334
334
|
time: string;
|
|
335
335
|
}, {
|
|
336
336
|
type: "event-added-to-calendar";
|
|
337
337
|
data: {
|
|
338
|
-
userId: string;
|
|
339
338
|
eventId: string;
|
|
339
|
+
userId: string;
|
|
340
340
|
};
|
|
341
341
|
time: string;
|
|
342
342
|
}>, z.ZodObject<{
|
|
@@ -344,26 +344,26 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
344
344
|
userId: z.ZodString;
|
|
345
345
|
eventId: z.ZodString;
|
|
346
346
|
}, "strip", z.ZodTypeAny, {
|
|
347
|
-
userId: string;
|
|
348
347
|
eventId: string;
|
|
349
|
-
}, {
|
|
350
348
|
userId: string;
|
|
349
|
+
}, {
|
|
351
350
|
eventId: string;
|
|
351
|
+
userId: string;
|
|
352
352
|
}>;
|
|
353
353
|
time: z.ZodString;
|
|
354
354
|
type: z.ZodLiteral<"event-added-to-favorites">;
|
|
355
355
|
}, "strip", z.ZodTypeAny, {
|
|
356
356
|
type: "event-added-to-favorites";
|
|
357
357
|
data: {
|
|
358
|
-
userId: string;
|
|
359
358
|
eventId: string;
|
|
359
|
+
userId: string;
|
|
360
360
|
};
|
|
361
361
|
time: string;
|
|
362
362
|
}, {
|
|
363
363
|
type: "event-added-to-favorites";
|
|
364
364
|
data: {
|
|
365
|
-
userId: string;
|
|
366
365
|
eventId: string;
|
|
366
|
+
userId: string;
|
|
367
367
|
};
|
|
368
368
|
time: string;
|
|
369
369
|
}>, z.ZodObject<{
|
|
@@ -371,26 +371,26 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
371
371
|
userId: z.ZodString;
|
|
372
372
|
eventId: z.ZodString;
|
|
373
373
|
}, "strip", z.ZodTypeAny, {
|
|
374
|
-
userId: string;
|
|
375
374
|
eventId: string;
|
|
376
|
-
}, {
|
|
377
375
|
userId: string;
|
|
376
|
+
}, {
|
|
378
377
|
eventId: string;
|
|
378
|
+
userId: string;
|
|
379
379
|
}>;
|
|
380
380
|
time: z.ZodString;
|
|
381
381
|
type: z.ZodLiteral<"event-displayed">;
|
|
382
382
|
}, "strip", z.ZodTypeAny, {
|
|
383
383
|
type: "event-displayed";
|
|
384
384
|
data: {
|
|
385
|
-
userId: string;
|
|
386
385
|
eventId: string;
|
|
386
|
+
userId: string;
|
|
387
387
|
};
|
|
388
388
|
time: string;
|
|
389
389
|
}, {
|
|
390
390
|
type: "event-displayed";
|
|
391
391
|
data: {
|
|
392
|
-
userId: string;
|
|
393
392
|
eventId: string;
|
|
393
|
+
userId: string;
|
|
394
394
|
};
|
|
395
395
|
time: string;
|
|
396
396
|
}>, z.ZodObject<{
|
|
@@ -398,26 +398,26 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
398
398
|
userId: z.ZodString;
|
|
399
399
|
eventId: z.ZodString;
|
|
400
400
|
}, "strip", z.ZodTypeAny, {
|
|
401
|
-
userId: string;
|
|
402
401
|
eventId: string;
|
|
403
|
-
}, {
|
|
404
402
|
userId: string;
|
|
403
|
+
}, {
|
|
405
404
|
eventId: string;
|
|
405
|
+
userId: string;
|
|
406
406
|
}>;
|
|
407
407
|
time: z.ZodString;
|
|
408
408
|
type: z.ZodLiteral<"event-see-more-clicked">;
|
|
409
409
|
}, "strip", z.ZodTypeAny, {
|
|
410
410
|
type: "event-see-more-clicked";
|
|
411
411
|
data: {
|
|
412
|
-
userId: string;
|
|
413
412
|
eventId: string;
|
|
413
|
+
userId: string;
|
|
414
414
|
};
|
|
415
415
|
time: string;
|
|
416
416
|
}, {
|
|
417
417
|
type: "event-see-more-clicked";
|
|
418
418
|
data: {
|
|
419
|
-
userId: string;
|
|
420
419
|
eventId: string;
|
|
420
|
+
userId: string;
|
|
421
421
|
};
|
|
422
422
|
time: string;
|
|
423
423
|
}>, z.ZodObject<{
|
|
@@ -425,26 +425,26 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
425
425
|
userId: z.ZodString;
|
|
426
426
|
eventId: z.ZodString;
|
|
427
427
|
}, "strip", z.ZodTypeAny, {
|
|
428
|
-
userId: string;
|
|
429
428
|
eventId: string;
|
|
430
|
-
}, {
|
|
431
429
|
userId: string;
|
|
430
|
+
}, {
|
|
432
431
|
eventId: string;
|
|
432
|
+
userId: string;
|
|
433
433
|
}>;
|
|
434
434
|
time: z.ZodString;
|
|
435
435
|
type: z.ZodLiteral<"event-shared">;
|
|
436
436
|
}, "strip", z.ZodTypeAny, {
|
|
437
437
|
type: "event-shared";
|
|
438
438
|
data: {
|
|
439
|
-
userId: string;
|
|
440
439
|
eventId: string;
|
|
440
|
+
userId: string;
|
|
441
441
|
};
|
|
442
442
|
time: string;
|
|
443
443
|
}, {
|
|
444
444
|
type: "event-shared";
|
|
445
445
|
data: {
|
|
446
|
-
userId: string;
|
|
447
446
|
eventId: string;
|
|
447
|
+
userId: string;
|
|
448
448
|
};
|
|
449
449
|
time: string;
|
|
450
450
|
}>, z.ZodObject<{
|
|
@@ -452,26 +452,26 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
452
452
|
userId: z.ZodString;
|
|
453
453
|
eventId: z.ZodString;
|
|
454
454
|
}, "strip", z.ZodTypeAny, {
|
|
455
|
-
userId: string;
|
|
456
455
|
eventId: string;
|
|
457
|
-
}, {
|
|
458
456
|
userId: string;
|
|
457
|
+
}, {
|
|
459
458
|
eventId: string;
|
|
459
|
+
userId: string;
|
|
460
460
|
}>;
|
|
461
461
|
time: z.ZodString;
|
|
462
462
|
type: z.ZodLiteral<"event-tickets-clicked">;
|
|
463
463
|
}, "strip", z.ZodTypeAny, {
|
|
464
464
|
type: "event-tickets-clicked";
|
|
465
465
|
data: {
|
|
466
|
-
userId: string;
|
|
467
466
|
eventId: string;
|
|
467
|
+
userId: string;
|
|
468
468
|
};
|
|
469
469
|
time: string;
|
|
470
470
|
}, {
|
|
471
471
|
type: "event-tickets-clicked";
|
|
472
472
|
data: {
|
|
473
|
-
userId: string;
|
|
474
473
|
eventId: string;
|
|
474
|
+
userId: string;
|
|
475
475
|
};
|
|
476
476
|
time: string;
|
|
477
477
|
}>, z.ZodObject<{
|
|
@@ -547,14 +547,14 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
547
547
|
time: string;
|
|
548
548
|
}>, z.ZodObject<{
|
|
549
549
|
data: z.ZodObject<{
|
|
550
|
-
regions: z.ZodArray<z.ZodNativeEnum<typeof import(
|
|
550
|
+
regions: z.ZodArray<z.ZodNativeEnum<typeof import("../../shared").Region>, "many">;
|
|
551
551
|
userId: z.ZodString;
|
|
552
552
|
}, "strip", z.ZodTypeAny, {
|
|
553
553
|
userId: string;
|
|
554
|
-
regions: import(
|
|
554
|
+
regions: import("../../shared").Region[];
|
|
555
555
|
}, {
|
|
556
556
|
userId: string;
|
|
557
|
-
regions: import(
|
|
557
|
+
regions: import("../../shared").Region[];
|
|
558
558
|
}>;
|
|
559
559
|
time: z.ZodString;
|
|
560
560
|
type: z.ZodLiteral<"region-filter-applied">;
|
|
@@ -562,212 +562,212 @@ export declare const SaveStatisticDTOSchema: z.ZodObject<{
|
|
|
562
562
|
type: "region-filter-applied";
|
|
563
563
|
data: {
|
|
564
564
|
userId: string;
|
|
565
|
-
regions: import(
|
|
565
|
+
regions: import("../../shared").Region[];
|
|
566
566
|
};
|
|
567
567
|
time: string;
|
|
568
568
|
}, {
|
|
569
569
|
type: "region-filter-applied";
|
|
570
570
|
data: {
|
|
571
571
|
userId: string;
|
|
572
|
-
regions: import(
|
|
572
|
+
regions: import("../../shared").Region[];
|
|
573
573
|
};
|
|
574
574
|
time: string;
|
|
575
575
|
}>]>;
|
|
576
576
|
}, "strip", z.ZodTypeAny, {
|
|
577
577
|
statistic: {
|
|
578
|
-
type: "
|
|
578
|
+
type: "ad-pressed";
|
|
579
579
|
data: {
|
|
580
|
+
adId: string;
|
|
581
|
+
adTitle: string;
|
|
580
582
|
userId: string;
|
|
581
583
|
};
|
|
582
584
|
time: string;
|
|
583
585
|
} | {
|
|
584
|
-
type: "
|
|
586
|
+
type: "app-started";
|
|
585
587
|
data: {
|
|
586
588
|
userId: string;
|
|
587
|
-
eventId: string;
|
|
588
589
|
};
|
|
589
590
|
time: string;
|
|
590
591
|
} | {
|
|
591
|
-
type: "
|
|
592
|
+
type: "category-filter-applied";
|
|
592
593
|
data: {
|
|
593
594
|
userId: string;
|
|
594
|
-
|
|
595
|
+
category: import("../../shared").Category;
|
|
595
596
|
};
|
|
596
597
|
time: string;
|
|
597
598
|
} | {
|
|
598
|
-
type: "
|
|
599
|
+
type: "date-filter-applied";
|
|
599
600
|
data: {
|
|
600
601
|
userId: string;
|
|
601
|
-
|
|
602
|
+
startTime: string;
|
|
603
|
+
endTime: string;
|
|
602
604
|
};
|
|
603
605
|
time: string;
|
|
604
606
|
} | {
|
|
605
607
|
type: "event-added-to-calendar";
|
|
606
608
|
data: {
|
|
607
|
-
userId: string;
|
|
608
609
|
eventId: string;
|
|
610
|
+
userId: string;
|
|
609
611
|
};
|
|
610
612
|
time: string;
|
|
611
613
|
} | {
|
|
612
|
-
type: "event-
|
|
614
|
+
type: "event-added-to-favorites";
|
|
613
615
|
data: {
|
|
614
|
-
userId: string;
|
|
615
616
|
eventId: string;
|
|
617
|
+
userId: string;
|
|
616
618
|
};
|
|
617
619
|
time: string;
|
|
618
620
|
} | {
|
|
619
|
-
type: "event-
|
|
621
|
+
type: "event-displayed";
|
|
620
622
|
data: {
|
|
621
|
-
userId: string;
|
|
622
623
|
eventId: string;
|
|
624
|
+
userId: string;
|
|
623
625
|
};
|
|
624
626
|
time: string;
|
|
625
627
|
} | {
|
|
626
628
|
type: "event-see-more-clicked";
|
|
627
629
|
data: {
|
|
628
|
-
userId: string;
|
|
629
630
|
eventId: string;
|
|
631
|
+
userId: string;
|
|
630
632
|
};
|
|
631
633
|
time: string;
|
|
632
634
|
} | {
|
|
633
|
-
type: "
|
|
635
|
+
type: "event-shared";
|
|
634
636
|
data: {
|
|
637
|
+
eventId: string;
|
|
635
638
|
userId: string;
|
|
636
|
-
regions: import('../../shared').Region[];
|
|
637
639
|
};
|
|
638
640
|
time: string;
|
|
639
641
|
} | {
|
|
640
|
-
type: "
|
|
642
|
+
type: "event-tickets-clicked";
|
|
641
643
|
data: {
|
|
644
|
+
eventId: string;
|
|
642
645
|
userId: string;
|
|
643
646
|
};
|
|
644
647
|
time: string;
|
|
645
648
|
} | {
|
|
646
|
-
type: "
|
|
649
|
+
type: "free-filter-applied";
|
|
647
650
|
data: {
|
|
648
651
|
userId: string;
|
|
649
|
-
category: import('../../shared').Category;
|
|
650
652
|
};
|
|
651
653
|
time: string;
|
|
652
654
|
} | {
|
|
653
|
-
type: "
|
|
655
|
+
type: "old-times-filter-applied";
|
|
654
656
|
data: {
|
|
655
657
|
userId: string;
|
|
656
|
-
startTime: string;
|
|
657
|
-
endTime: string;
|
|
658
658
|
};
|
|
659
659
|
time: string;
|
|
660
660
|
} | {
|
|
661
|
-
type: "
|
|
661
|
+
type: "organizer-displayed";
|
|
662
662
|
data: {
|
|
663
663
|
userId: string;
|
|
664
|
+
organizerId: string;
|
|
664
665
|
};
|
|
665
666
|
time: string;
|
|
666
667
|
} | {
|
|
667
|
-
type: "
|
|
668
|
+
type: "region-filter-applied";
|
|
668
669
|
data: {
|
|
669
670
|
userId: string;
|
|
670
|
-
|
|
671
|
-
adTitle: string;
|
|
671
|
+
regions: import("../../shared").Region[];
|
|
672
672
|
};
|
|
673
673
|
time: string;
|
|
674
674
|
};
|
|
675
675
|
}, {
|
|
676
676
|
statistic: {
|
|
677
|
-
type: "
|
|
677
|
+
type: "ad-pressed";
|
|
678
678
|
data: {
|
|
679
|
+
adId: string;
|
|
680
|
+
adTitle: string;
|
|
679
681
|
userId: string;
|
|
680
682
|
};
|
|
681
683
|
time: string;
|
|
682
684
|
} | {
|
|
683
|
-
type: "
|
|
685
|
+
type: "app-started";
|
|
684
686
|
data: {
|
|
685
687
|
userId: string;
|
|
686
|
-
eventId: string;
|
|
687
688
|
};
|
|
688
689
|
time: string;
|
|
689
690
|
} | {
|
|
690
|
-
type: "
|
|
691
|
+
type: "category-filter-applied";
|
|
691
692
|
data: {
|
|
692
693
|
userId: string;
|
|
693
|
-
|
|
694
|
+
category: import("../../shared").Category;
|
|
694
695
|
};
|
|
695
696
|
time: string;
|
|
696
697
|
} | {
|
|
697
|
-
type: "
|
|
698
|
+
type: "date-filter-applied";
|
|
698
699
|
data: {
|
|
699
700
|
userId: string;
|
|
700
|
-
|
|
701
|
+
startTime: string;
|
|
702
|
+
endTime: string;
|
|
701
703
|
};
|
|
702
704
|
time: string;
|
|
703
705
|
} | {
|
|
704
706
|
type: "event-added-to-calendar";
|
|
705
707
|
data: {
|
|
706
|
-
userId: string;
|
|
707
708
|
eventId: string;
|
|
709
|
+
userId: string;
|
|
708
710
|
};
|
|
709
711
|
time: string;
|
|
710
712
|
} | {
|
|
711
|
-
type: "event-
|
|
713
|
+
type: "event-added-to-favorites";
|
|
712
714
|
data: {
|
|
713
|
-
userId: string;
|
|
714
715
|
eventId: string;
|
|
716
|
+
userId: string;
|
|
715
717
|
};
|
|
716
718
|
time: string;
|
|
717
719
|
} | {
|
|
718
|
-
type: "event-
|
|
720
|
+
type: "event-displayed";
|
|
719
721
|
data: {
|
|
720
|
-
userId: string;
|
|
721
722
|
eventId: string;
|
|
723
|
+
userId: string;
|
|
722
724
|
};
|
|
723
725
|
time: string;
|
|
724
726
|
} | {
|
|
725
727
|
type: "event-see-more-clicked";
|
|
726
728
|
data: {
|
|
727
|
-
userId: string;
|
|
728
729
|
eventId: string;
|
|
730
|
+
userId: string;
|
|
729
731
|
};
|
|
730
732
|
time: string;
|
|
731
733
|
} | {
|
|
732
|
-
type: "
|
|
734
|
+
type: "event-shared";
|
|
733
735
|
data: {
|
|
736
|
+
eventId: string;
|
|
734
737
|
userId: string;
|
|
735
|
-
regions: import('../../shared').Region[];
|
|
736
738
|
};
|
|
737
739
|
time: string;
|
|
738
740
|
} | {
|
|
739
|
-
type: "
|
|
741
|
+
type: "event-tickets-clicked";
|
|
740
742
|
data: {
|
|
743
|
+
eventId: string;
|
|
741
744
|
userId: string;
|
|
742
745
|
};
|
|
743
746
|
time: string;
|
|
744
747
|
} | {
|
|
745
|
-
type: "
|
|
748
|
+
type: "free-filter-applied";
|
|
746
749
|
data: {
|
|
747
750
|
userId: string;
|
|
748
|
-
category: import('../../shared').Category;
|
|
749
751
|
};
|
|
750
752
|
time: string;
|
|
751
753
|
} | {
|
|
752
|
-
type: "
|
|
754
|
+
type: "old-times-filter-applied";
|
|
753
755
|
data: {
|
|
754
756
|
userId: string;
|
|
755
|
-
startTime: string;
|
|
756
|
-
endTime: string;
|
|
757
757
|
};
|
|
758
758
|
time: string;
|
|
759
759
|
} | {
|
|
760
|
-
type: "
|
|
760
|
+
type: "organizer-displayed";
|
|
761
761
|
data: {
|
|
762
762
|
userId: string;
|
|
763
|
+
organizerId: string;
|
|
763
764
|
};
|
|
764
765
|
time: string;
|
|
765
766
|
} | {
|
|
766
|
-
type: "
|
|
767
|
+
type: "region-filter-applied";
|
|
767
768
|
data: {
|
|
768
769
|
userId: string;
|
|
769
|
-
|
|
770
|
-
adTitle: string;
|
|
770
|
+
regions: import("../../shared").Region[];
|
|
771
771
|
};
|
|
772
772
|
time: string;
|
|
773
773
|
};
|