@sortipei/api-contracts 0.1.29 → 0.1.31

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.
@@ -0,0 +1,957 @@
1
+ import { z } from 'zod';
2
+ export declare const AppStartedStatisticSchema: z.ZodObject<{
3
+ data: z.ZodObject<{
4
+ userId: z.ZodBranded<z.ZodString, "UserId">;
5
+ }, "strip", z.ZodTypeAny, {
6
+ userId: string & z.BRAND<"UserId">;
7
+ }, {
8
+ userId: string;
9
+ }>;
10
+ time: z.ZodString;
11
+ type: z.ZodLiteral<"app-started">;
12
+ }, "strip", z.ZodTypeAny, {
13
+ type: "app-started";
14
+ data: {
15
+ userId: string & z.BRAND<"UserId">;
16
+ };
17
+ time: string;
18
+ }, {
19
+ type: "app-started";
20
+ data: {
21
+ userId: string;
22
+ };
23
+ time: string;
24
+ }>;
25
+ export declare const EventDisplayedStatisticSchema: z.ZodObject<{
26
+ data: z.ZodObject<{
27
+ userId: z.ZodBranded<z.ZodString, "UserId">;
28
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
29
+ }, "strip", z.ZodTypeAny, {
30
+ userId: string & z.BRAND<"UserId">;
31
+ eventId: string & z.BRAND<"EventId">;
32
+ }, {
33
+ userId: string;
34
+ eventId: string;
35
+ }>;
36
+ time: z.ZodString;
37
+ type: z.ZodLiteral<"event-displayed">;
38
+ }, "strip", z.ZodTypeAny, {
39
+ type: "event-displayed";
40
+ data: {
41
+ userId: string & z.BRAND<"UserId">;
42
+ eventId: string & z.BRAND<"EventId">;
43
+ };
44
+ time: string;
45
+ }, {
46
+ type: "event-displayed";
47
+ data: {
48
+ userId: string;
49
+ eventId: string;
50
+ };
51
+ time: string;
52
+ }>;
53
+ export declare const OrganizerDisplayedStatisticSchema: z.ZodObject<{
54
+ data: z.ZodObject<{
55
+ userId: z.ZodBranded<z.ZodString, "UserId">;
56
+ organizerId: z.ZodBranded<z.ZodString, "OrganizerId">;
57
+ }, "strip", z.ZodTypeAny, {
58
+ userId: string & z.BRAND<"UserId">;
59
+ organizerId: string & z.BRAND<"OrganizerId">;
60
+ }, {
61
+ userId: string;
62
+ organizerId: string;
63
+ }>;
64
+ time: z.ZodString;
65
+ type: z.ZodLiteral<"organizer-displayed">;
66
+ }, "strip", z.ZodTypeAny, {
67
+ type: "organizer-displayed";
68
+ data: {
69
+ userId: string & z.BRAND<"UserId">;
70
+ organizerId: string & z.BRAND<"OrganizerId">;
71
+ };
72
+ time: string;
73
+ }, {
74
+ type: "organizer-displayed";
75
+ data: {
76
+ userId: string;
77
+ organizerId: string;
78
+ };
79
+ time: string;
80
+ }>;
81
+ export declare const EventAddedToFavoritesStatisticSchema: z.ZodObject<{
82
+ data: z.ZodObject<{
83
+ userId: z.ZodBranded<z.ZodString, "UserId">;
84
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
85
+ }, "strip", z.ZodTypeAny, {
86
+ userId: string & z.BRAND<"UserId">;
87
+ eventId: string & z.BRAND<"EventId">;
88
+ }, {
89
+ userId: string;
90
+ eventId: string;
91
+ }>;
92
+ time: z.ZodString;
93
+ type: z.ZodLiteral<"event-added-to-favorites">;
94
+ }, "strip", z.ZodTypeAny, {
95
+ type: "event-added-to-favorites";
96
+ data: {
97
+ userId: string & z.BRAND<"UserId">;
98
+ eventId: string & z.BRAND<"EventId">;
99
+ };
100
+ time: string;
101
+ }, {
102
+ type: "event-added-to-favorites";
103
+ data: {
104
+ userId: string;
105
+ eventId: string;
106
+ };
107
+ time: string;
108
+ }>;
109
+ export declare const EventAddedToCalendarStatisticSchema: z.ZodObject<{
110
+ data: z.ZodObject<{
111
+ userId: z.ZodBranded<z.ZodString, "UserId">;
112
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
113
+ }, "strip", z.ZodTypeAny, {
114
+ userId: string & z.BRAND<"UserId">;
115
+ eventId: string & z.BRAND<"EventId">;
116
+ }, {
117
+ userId: string;
118
+ eventId: string;
119
+ }>;
120
+ time: z.ZodString;
121
+ type: z.ZodLiteral<"event-added-to-calendar">;
122
+ }, "strip", z.ZodTypeAny, {
123
+ type: "event-added-to-calendar";
124
+ data: {
125
+ userId: string & z.BRAND<"UserId">;
126
+ eventId: string & z.BRAND<"EventId">;
127
+ };
128
+ time: string;
129
+ }, {
130
+ type: "event-added-to-calendar";
131
+ data: {
132
+ userId: string;
133
+ eventId: string;
134
+ };
135
+ time: string;
136
+ }>;
137
+ export declare const EventSharedStatisticSchema: z.ZodObject<{
138
+ data: z.ZodObject<{
139
+ userId: z.ZodBranded<z.ZodString, "UserId">;
140
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
141
+ }, "strip", z.ZodTypeAny, {
142
+ userId: string & z.BRAND<"UserId">;
143
+ eventId: string & z.BRAND<"EventId">;
144
+ }, {
145
+ userId: string;
146
+ eventId: string;
147
+ }>;
148
+ time: z.ZodString;
149
+ type: z.ZodLiteral<"event-shared">;
150
+ }, "strip", z.ZodTypeAny, {
151
+ type: "event-shared";
152
+ data: {
153
+ userId: string & z.BRAND<"UserId">;
154
+ eventId: string & z.BRAND<"EventId">;
155
+ };
156
+ time: string;
157
+ }, {
158
+ type: "event-shared";
159
+ data: {
160
+ userId: string;
161
+ eventId: string;
162
+ };
163
+ time: string;
164
+ }>;
165
+ export declare const EventTicketsClickedStatisticsSchema: z.ZodObject<{
166
+ data: z.ZodObject<{
167
+ userId: z.ZodBranded<z.ZodString, "UserId">;
168
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
169
+ }, "strip", z.ZodTypeAny, {
170
+ userId: string & z.BRAND<"UserId">;
171
+ eventId: string & z.BRAND<"EventId">;
172
+ }, {
173
+ userId: string;
174
+ eventId: string;
175
+ }>;
176
+ time: z.ZodString;
177
+ type: z.ZodLiteral<"event-tickets-clicked">;
178
+ }, "strip", z.ZodTypeAny, {
179
+ type: "event-tickets-clicked";
180
+ data: {
181
+ userId: string & z.BRAND<"UserId">;
182
+ eventId: string & z.BRAND<"EventId">;
183
+ };
184
+ time: string;
185
+ }, {
186
+ type: "event-tickets-clicked";
187
+ data: {
188
+ userId: string;
189
+ eventId: string;
190
+ };
191
+ time: string;
192
+ }>;
193
+ export declare const EventSeeMoreClickedStatisticsSchema: z.ZodObject<{
194
+ data: z.ZodObject<{
195
+ userId: z.ZodBranded<z.ZodString, "UserId">;
196
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
197
+ }, "strip", z.ZodTypeAny, {
198
+ userId: string & z.BRAND<"UserId">;
199
+ eventId: string & z.BRAND<"EventId">;
200
+ }, {
201
+ userId: string;
202
+ eventId: string;
203
+ }>;
204
+ time: z.ZodString;
205
+ type: z.ZodLiteral<"event-see-more-clicked">;
206
+ }, "strip", z.ZodTypeAny, {
207
+ type: "event-see-more-clicked";
208
+ data: {
209
+ userId: string & z.BRAND<"UserId">;
210
+ eventId: string & z.BRAND<"EventId">;
211
+ };
212
+ time: string;
213
+ }, {
214
+ type: "event-see-more-clicked";
215
+ data: {
216
+ userId: string;
217
+ eventId: string;
218
+ };
219
+ time: string;
220
+ }>;
221
+ export declare const RegionFilterAppliedStatisticSchema: z.ZodObject<{
222
+ data: z.ZodObject<{
223
+ region: z.ZodNativeEnum<typeof import("./event").Region>;
224
+ userId: z.ZodBranded<z.ZodString, "UserId">;
225
+ }, "strip", z.ZodTypeAny, {
226
+ userId: string & z.BRAND<"UserId">;
227
+ region: import("./event").Region;
228
+ }, {
229
+ userId: string;
230
+ region: import("./event").Region;
231
+ }>;
232
+ time: z.ZodString;
233
+ type: z.ZodLiteral<"region-filter-applied">;
234
+ }, "strip", z.ZodTypeAny, {
235
+ type: "region-filter-applied";
236
+ data: {
237
+ userId: string & z.BRAND<"UserId">;
238
+ region: import("./event").Region;
239
+ };
240
+ time: string;
241
+ }, {
242
+ type: "region-filter-applied";
243
+ data: {
244
+ userId: string;
245
+ region: import("./event").Region;
246
+ };
247
+ time: string;
248
+ }>;
249
+ export declare const FreeFilterAppliedStatisticSchema: z.ZodObject<{
250
+ data: z.ZodObject<{
251
+ userId: z.ZodBranded<z.ZodString, "UserId">;
252
+ }, "strip", z.ZodTypeAny, {
253
+ userId: string & z.BRAND<"UserId">;
254
+ }, {
255
+ userId: string;
256
+ }>;
257
+ time: z.ZodString;
258
+ type: z.ZodLiteral<"free-filter-applied">;
259
+ }, "strip", z.ZodTypeAny, {
260
+ type: "free-filter-applied";
261
+ data: {
262
+ userId: string & z.BRAND<"UserId">;
263
+ };
264
+ time: string;
265
+ }, {
266
+ type: "free-filter-applied";
267
+ data: {
268
+ userId: string;
269
+ };
270
+ time: string;
271
+ }>;
272
+ export declare const CategoryFilterAppliedStatisticSchema: z.ZodObject<{
273
+ data: z.ZodObject<{
274
+ category: z.ZodNativeEnum<typeof import("./event").Category>;
275
+ userId: z.ZodBranded<z.ZodString, "UserId">;
276
+ }, "strip", z.ZodTypeAny, {
277
+ userId: string & z.BRAND<"UserId">;
278
+ category: import("./event").Category;
279
+ }, {
280
+ userId: string;
281
+ category: import("./event").Category;
282
+ }>;
283
+ time: z.ZodString;
284
+ type: z.ZodLiteral<"category-filter-applied">;
285
+ }, "strip", z.ZodTypeAny, {
286
+ type: "category-filter-applied";
287
+ data: {
288
+ userId: string & z.BRAND<"UserId">;
289
+ category: import("./event").Category;
290
+ };
291
+ time: string;
292
+ }, {
293
+ type: "category-filter-applied";
294
+ data: {
295
+ userId: string;
296
+ category: import("./event").Category;
297
+ };
298
+ time: string;
299
+ }>;
300
+ export declare const DateFilterAppliedStatisticSchema: z.ZodObject<{
301
+ data: z.ZodObject<{
302
+ startTime: z.ZodString;
303
+ endTime: z.ZodString;
304
+ userId: z.ZodBranded<z.ZodString, "UserId">;
305
+ }, "strip", z.ZodTypeAny, {
306
+ userId: string & z.BRAND<"UserId">;
307
+ startTime: string;
308
+ endTime: string;
309
+ }, {
310
+ userId: string;
311
+ startTime: string;
312
+ endTime: string;
313
+ }>;
314
+ time: z.ZodString;
315
+ type: z.ZodLiteral<"date-filter-applied">;
316
+ }, "strip", z.ZodTypeAny, {
317
+ type: "date-filter-applied";
318
+ data: {
319
+ userId: string & z.BRAND<"UserId">;
320
+ startTime: string;
321
+ endTime: string;
322
+ };
323
+ time: string;
324
+ }, {
325
+ type: "date-filter-applied";
326
+ data: {
327
+ userId: string;
328
+ startTime: string;
329
+ endTime: string;
330
+ };
331
+ time: string;
332
+ }>;
333
+ export declare const StatisticSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
334
+ data: z.ZodObject<{
335
+ userId: z.ZodBranded<z.ZodString, "UserId">;
336
+ }, "strip", z.ZodTypeAny, {
337
+ userId: string & z.BRAND<"UserId">;
338
+ }, {
339
+ userId: string;
340
+ }>;
341
+ time: z.ZodString;
342
+ type: z.ZodLiteral<"app-started">;
343
+ }, "strip", z.ZodTypeAny, {
344
+ type: "app-started";
345
+ data: {
346
+ userId: string & z.BRAND<"UserId">;
347
+ };
348
+ time: string;
349
+ }, {
350
+ type: "app-started";
351
+ data: {
352
+ userId: string;
353
+ };
354
+ time: string;
355
+ }>, z.ZodObject<{
356
+ data: z.ZodObject<{
357
+ userId: z.ZodBranded<z.ZodString, "UserId">;
358
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
359
+ }, "strip", z.ZodTypeAny, {
360
+ userId: string & z.BRAND<"UserId">;
361
+ eventId: string & z.BRAND<"EventId">;
362
+ }, {
363
+ userId: string;
364
+ eventId: string;
365
+ }>;
366
+ time: z.ZodString;
367
+ type: z.ZodLiteral<"event-added-to-favorites">;
368
+ }, "strip", z.ZodTypeAny, {
369
+ type: "event-added-to-favorites";
370
+ data: {
371
+ userId: string & z.BRAND<"UserId">;
372
+ eventId: string & z.BRAND<"EventId">;
373
+ };
374
+ time: string;
375
+ }, {
376
+ type: "event-added-to-favorites";
377
+ data: {
378
+ userId: string;
379
+ eventId: string;
380
+ };
381
+ time: string;
382
+ }>, z.ZodObject<{
383
+ data: z.ZodObject<{
384
+ userId: z.ZodBranded<z.ZodString, "UserId">;
385
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
386
+ }, "strip", z.ZodTypeAny, {
387
+ userId: string & z.BRAND<"UserId">;
388
+ eventId: string & z.BRAND<"EventId">;
389
+ }, {
390
+ userId: string;
391
+ eventId: string;
392
+ }>;
393
+ time: z.ZodString;
394
+ type: z.ZodLiteral<"event-shared">;
395
+ }, "strip", z.ZodTypeAny, {
396
+ type: "event-shared";
397
+ data: {
398
+ userId: string & z.BRAND<"UserId">;
399
+ eventId: string & z.BRAND<"EventId">;
400
+ };
401
+ time: string;
402
+ }, {
403
+ type: "event-shared";
404
+ data: {
405
+ userId: string;
406
+ eventId: string;
407
+ };
408
+ time: string;
409
+ }>, z.ZodObject<{
410
+ data: z.ZodObject<{
411
+ userId: z.ZodBranded<z.ZodString, "UserId">;
412
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
413
+ }, "strip", z.ZodTypeAny, {
414
+ userId: string & z.BRAND<"UserId">;
415
+ eventId: string & z.BRAND<"EventId">;
416
+ }, {
417
+ userId: string;
418
+ eventId: string;
419
+ }>;
420
+ time: z.ZodString;
421
+ type: z.ZodLiteral<"event-tickets-clicked">;
422
+ }, "strip", z.ZodTypeAny, {
423
+ type: "event-tickets-clicked";
424
+ data: {
425
+ userId: string & z.BRAND<"UserId">;
426
+ eventId: string & z.BRAND<"EventId">;
427
+ };
428
+ time: string;
429
+ }, {
430
+ type: "event-tickets-clicked";
431
+ data: {
432
+ userId: string;
433
+ eventId: string;
434
+ };
435
+ time: string;
436
+ }>, z.ZodObject<{
437
+ data: z.ZodObject<{
438
+ userId: z.ZodBranded<z.ZodString, "UserId">;
439
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
440
+ }, "strip", z.ZodTypeAny, {
441
+ userId: string & z.BRAND<"UserId">;
442
+ eventId: string & z.BRAND<"EventId">;
443
+ }, {
444
+ userId: string;
445
+ eventId: string;
446
+ }>;
447
+ time: z.ZodString;
448
+ type: z.ZodLiteral<"event-see-more-clicked">;
449
+ }, "strip", z.ZodTypeAny, {
450
+ type: "event-see-more-clicked";
451
+ data: {
452
+ userId: string & z.BRAND<"UserId">;
453
+ eventId: string & z.BRAND<"EventId">;
454
+ };
455
+ time: string;
456
+ }, {
457
+ type: "event-see-more-clicked";
458
+ data: {
459
+ userId: string;
460
+ eventId: string;
461
+ };
462
+ time: string;
463
+ }>, z.ZodObject<{
464
+ data: z.ZodObject<{
465
+ region: z.ZodNativeEnum<typeof import("./event").Region>;
466
+ userId: z.ZodBranded<z.ZodString, "UserId">;
467
+ }, "strip", z.ZodTypeAny, {
468
+ userId: string & z.BRAND<"UserId">;
469
+ region: import("./event").Region;
470
+ }, {
471
+ userId: string;
472
+ region: import("./event").Region;
473
+ }>;
474
+ time: z.ZodString;
475
+ type: z.ZodLiteral<"region-filter-applied">;
476
+ }, "strip", z.ZodTypeAny, {
477
+ type: "region-filter-applied";
478
+ data: {
479
+ userId: string & z.BRAND<"UserId">;
480
+ region: import("./event").Region;
481
+ };
482
+ time: string;
483
+ }, {
484
+ type: "region-filter-applied";
485
+ data: {
486
+ userId: string;
487
+ region: import("./event").Region;
488
+ };
489
+ time: string;
490
+ }>, z.ZodObject<{
491
+ data: z.ZodObject<{
492
+ userId: z.ZodBranded<z.ZodString, "UserId">;
493
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
494
+ }, "strip", z.ZodTypeAny, {
495
+ userId: string & z.BRAND<"UserId">;
496
+ eventId: string & z.BRAND<"EventId">;
497
+ }, {
498
+ userId: string;
499
+ eventId: string;
500
+ }>;
501
+ time: z.ZodString;
502
+ type: z.ZodLiteral<"event-displayed">;
503
+ }, "strip", z.ZodTypeAny, {
504
+ type: "event-displayed";
505
+ data: {
506
+ userId: string & z.BRAND<"UserId">;
507
+ eventId: string & z.BRAND<"EventId">;
508
+ };
509
+ time: string;
510
+ }, {
511
+ type: "event-displayed";
512
+ data: {
513
+ userId: string;
514
+ eventId: string;
515
+ };
516
+ time: string;
517
+ }>, z.ZodObject<{
518
+ data: z.ZodObject<{
519
+ userId: z.ZodBranded<z.ZodString, "UserId">;
520
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
521
+ }, "strip", z.ZodTypeAny, {
522
+ userId: string & z.BRAND<"UserId">;
523
+ eventId: string & z.BRAND<"EventId">;
524
+ }, {
525
+ userId: string;
526
+ eventId: string;
527
+ }>;
528
+ time: z.ZodString;
529
+ type: z.ZodLiteral<"event-added-to-favorites">;
530
+ }, "strip", z.ZodTypeAny, {
531
+ type: "event-added-to-favorites";
532
+ data: {
533
+ userId: string & z.BRAND<"UserId">;
534
+ eventId: string & z.BRAND<"EventId">;
535
+ };
536
+ time: string;
537
+ }, {
538
+ type: "event-added-to-favorites";
539
+ data: {
540
+ userId: string;
541
+ eventId: string;
542
+ };
543
+ time: string;
544
+ }>, z.ZodObject<{
545
+ data: z.ZodObject<{
546
+ userId: z.ZodBranded<z.ZodString, "UserId">;
547
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
548
+ }, "strip", z.ZodTypeAny, {
549
+ userId: string & z.BRAND<"UserId">;
550
+ eventId: string & z.BRAND<"EventId">;
551
+ }, {
552
+ userId: string;
553
+ eventId: string;
554
+ }>;
555
+ time: z.ZodString;
556
+ type: z.ZodLiteral<"event-shared">;
557
+ }, "strip", z.ZodTypeAny, {
558
+ type: "event-shared";
559
+ data: {
560
+ userId: string & z.BRAND<"UserId">;
561
+ eventId: string & z.BRAND<"EventId">;
562
+ };
563
+ time: string;
564
+ }, {
565
+ type: "event-shared";
566
+ data: {
567
+ userId: string;
568
+ eventId: string;
569
+ };
570
+ time: string;
571
+ }>, z.ZodObject<{
572
+ data: z.ZodObject<{
573
+ userId: z.ZodBranded<z.ZodString, "UserId">;
574
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
575
+ }, "strip", z.ZodTypeAny, {
576
+ userId: string & z.BRAND<"UserId">;
577
+ eventId: string & z.BRAND<"EventId">;
578
+ }, {
579
+ userId: string;
580
+ eventId: string;
581
+ }>;
582
+ time: z.ZodString;
583
+ type: z.ZodLiteral<"event-tickets-clicked">;
584
+ }, "strip", z.ZodTypeAny, {
585
+ type: "event-tickets-clicked";
586
+ data: {
587
+ userId: string & z.BRAND<"UserId">;
588
+ eventId: string & z.BRAND<"EventId">;
589
+ };
590
+ time: string;
591
+ }, {
592
+ type: "event-tickets-clicked";
593
+ data: {
594
+ userId: string;
595
+ eventId: string;
596
+ };
597
+ time: string;
598
+ }>, z.ZodObject<{
599
+ data: z.ZodObject<{
600
+ userId: z.ZodBranded<z.ZodString, "UserId">;
601
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
602
+ }, "strip", z.ZodTypeAny, {
603
+ userId: string & z.BRAND<"UserId">;
604
+ eventId: string & z.BRAND<"EventId">;
605
+ }, {
606
+ userId: string;
607
+ eventId: string;
608
+ }>;
609
+ time: z.ZodString;
610
+ type: z.ZodLiteral<"event-see-more-clicked">;
611
+ }, "strip", z.ZodTypeAny, {
612
+ type: "event-see-more-clicked";
613
+ data: {
614
+ userId: string & z.BRAND<"UserId">;
615
+ eventId: string & z.BRAND<"EventId">;
616
+ };
617
+ time: string;
618
+ }, {
619
+ type: "event-see-more-clicked";
620
+ data: {
621
+ userId: string;
622
+ eventId: string;
623
+ };
624
+ time: string;
625
+ }>, z.ZodObject<{
626
+ data: z.ZodObject<{
627
+ userId: z.ZodBranded<z.ZodString, "UserId">;
628
+ }, "strip", z.ZodTypeAny, {
629
+ userId: string & z.BRAND<"UserId">;
630
+ }, {
631
+ userId: string;
632
+ }>;
633
+ time: z.ZodString;
634
+ type: z.ZodLiteral<"app-started">;
635
+ }, "strip", z.ZodTypeAny, {
636
+ type: "app-started";
637
+ data: {
638
+ userId: string & z.BRAND<"UserId">;
639
+ };
640
+ time: string;
641
+ }, {
642
+ type: "app-started";
643
+ data: {
644
+ userId: string;
645
+ };
646
+ time: string;
647
+ }>, z.ZodObject<{
648
+ data: z.ZodObject<{
649
+ userId: z.ZodBranded<z.ZodString, "UserId">;
650
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
651
+ }, "strip", z.ZodTypeAny, {
652
+ userId: string & z.BRAND<"UserId">;
653
+ eventId: string & z.BRAND<"EventId">;
654
+ }, {
655
+ userId: string;
656
+ eventId: string;
657
+ }>;
658
+ time: z.ZodString;
659
+ type: z.ZodLiteral<"event-displayed">;
660
+ }, "strip", z.ZodTypeAny, {
661
+ type: "event-displayed";
662
+ data: {
663
+ userId: string & z.BRAND<"UserId">;
664
+ eventId: string & z.BRAND<"EventId">;
665
+ };
666
+ time: string;
667
+ }, {
668
+ type: "event-displayed";
669
+ data: {
670
+ userId: string;
671
+ eventId: string;
672
+ };
673
+ time: string;
674
+ }>, z.ZodObject<{
675
+ data: z.ZodObject<{
676
+ userId: z.ZodBranded<z.ZodString, "UserId">;
677
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
678
+ }, "strip", z.ZodTypeAny, {
679
+ userId: string & z.BRAND<"UserId">;
680
+ eventId: string & z.BRAND<"EventId">;
681
+ }, {
682
+ userId: string;
683
+ eventId: string;
684
+ }>;
685
+ time: z.ZodString;
686
+ type: z.ZodLiteral<"event-added-to-favorites">;
687
+ }, "strip", z.ZodTypeAny, {
688
+ type: "event-added-to-favorites";
689
+ data: {
690
+ userId: string & z.BRAND<"UserId">;
691
+ eventId: string & z.BRAND<"EventId">;
692
+ };
693
+ time: string;
694
+ }, {
695
+ type: "event-added-to-favorites";
696
+ data: {
697
+ userId: string;
698
+ eventId: string;
699
+ };
700
+ time: string;
701
+ }>, z.ZodObject<{
702
+ data: z.ZodObject<{
703
+ userId: z.ZodBranded<z.ZodString, "UserId">;
704
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
705
+ }, "strip", z.ZodTypeAny, {
706
+ userId: string & z.BRAND<"UserId">;
707
+ eventId: string & z.BRAND<"EventId">;
708
+ }, {
709
+ userId: string;
710
+ eventId: string;
711
+ }>;
712
+ time: z.ZodString;
713
+ type: z.ZodLiteral<"event-shared">;
714
+ }, "strip", z.ZodTypeAny, {
715
+ type: "event-shared";
716
+ data: {
717
+ userId: string & z.BRAND<"UserId">;
718
+ eventId: string & z.BRAND<"EventId">;
719
+ };
720
+ time: string;
721
+ }, {
722
+ type: "event-shared";
723
+ data: {
724
+ userId: string;
725
+ eventId: string;
726
+ };
727
+ time: string;
728
+ }>, z.ZodObject<{
729
+ data: z.ZodObject<{
730
+ userId: z.ZodBranded<z.ZodString, "UserId">;
731
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
732
+ }, "strip", z.ZodTypeAny, {
733
+ userId: string & z.BRAND<"UserId">;
734
+ eventId: string & z.BRAND<"EventId">;
735
+ }, {
736
+ userId: string;
737
+ eventId: string;
738
+ }>;
739
+ time: z.ZodString;
740
+ type: z.ZodLiteral<"event-tickets-clicked">;
741
+ }, "strip", z.ZodTypeAny, {
742
+ type: "event-tickets-clicked";
743
+ data: {
744
+ userId: string & z.BRAND<"UserId">;
745
+ eventId: string & z.BRAND<"EventId">;
746
+ };
747
+ time: string;
748
+ }, {
749
+ type: "event-tickets-clicked";
750
+ data: {
751
+ userId: string;
752
+ eventId: string;
753
+ };
754
+ time: string;
755
+ }>, z.ZodObject<{
756
+ data: z.ZodObject<{
757
+ userId: z.ZodBranded<z.ZodString, "UserId">;
758
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
759
+ }, "strip", z.ZodTypeAny, {
760
+ userId: string & z.BRAND<"UserId">;
761
+ eventId: string & z.BRAND<"EventId">;
762
+ }, {
763
+ userId: string;
764
+ eventId: string;
765
+ }>;
766
+ time: z.ZodString;
767
+ type: z.ZodLiteral<"event-see-more-clicked">;
768
+ }, "strip", z.ZodTypeAny, {
769
+ type: "event-see-more-clicked";
770
+ data: {
771
+ userId: string & z.BRAND<"UserId">;
772
+ eventId: string & z.BRAND<"EventId">;
773
+ };
774
+ time: string;
775
+ }, {
776
+ type: "event-see-more-clicked";
777
+ data: {
778
+ userId: string;
779
+ eventId: string;
780
+ };
781
+ time: string;
782
+ }>, z.ZodObject<{
783
+ data: z.ZodObject<{
784
+ region: z.ZodNativeEnum<typeof import("./event").Region>;
785
+ userId: z.ZodBranded<z.ZodString, "UserId">;
786
+ }, "strip", z.ZodTypeAny, {
787
+ userId: string & z.BRAND<"UserId">;
788
+ region: import("./event").Region;
789
+ }, {
790
+ userId: string;
791
+ region: import("./event").Region;
792
+ }>;
793
+ time: z.ZodString;
794
+ type: z.ZodLiteral<"region-filter-applied">;
795
+ }, "strip", z.ZodTypeAny, {
796
+ type: "region-filter-applied";
797
+ data: {
798
+ userId: string & z.BRAND<"UserId">;
799
+ region: import("./event").Region;
800
+ };
801
+ time: string;
802
+ }, {
803
+ type: "region-filter-applied";
804
+ data: {
805
+ userId: string;
806
+ region: import("./event").Region;
807
+ };
808
+ time: string;
809
+ }>, z.ZodObject<{
810
+ data: z.ZodObject<{
811
+ userId: z.ZodBranded<z.ZodString, "UserId">;
812
+ }, "strip", z.ZodTypeAny, {
813
+ userId: string & z.BRAND<"UserId">;
814
+ }, {
815
+ userId: string;
816
+ }>;
817
+ time: z.ZodString;
818
+ type: z.ZodLiteral<"free-filter-applied">;
819
+ }, "strip", z.ZodTypeAny, {
820
+ type: "free-filter-applied";
821
+ data: {
822
+ userId: string & z.BRAND<"UserId">;
823
+ };
824
+ time: string;
825
+ }, {
826
+ type: "free-filter-applied";
827
+ data: {
828
+ userId: string;
829
+ };
830
+ time: string;
831
+ }>, z.ZodObject<{
832
+ data: z.ZodObject<{
833
+ category: z.ZodNativeEnum<typeof import("./event").Category>;
834
+ userId: z.ZodBranded<z.ZodString, "UserId">;
835
+ }, "strip", z.ZodTypeAny, {
836
+ userId: string & z.BRAND<"UserId">;
837
+ category: import("./event").Category;
838
+ }, {
839
+ userId: string;
840
+ category: import("./event").Category;
841
+ }>;
842
+ time: z.ZodString;
843
+ type: z.ZodLiteral<"category-filter-applied">;
844
+ }, "strip", z.ZodTypeAny, {
845
+ type: "category-filter-applied";
846
+ data: {
847
+ userId: string & z.BRAND<"UserId">;
848
+ category: import("./event").Category;
849
+ };
850
+ time: string;
851
+ }, {
852
+ type: "category-filter-applied";
853
+ data: {
854
+ userId: string;
855
+ category: import("./event").Category;
856
+ };
857
+ time: string;
858
+ }>, z.ZodObject<{
859
+ data: z.ZodObject<{
860
+ startTime: z.ZodString;
861
+ endTime: z.ZodString;
862
+ userId: z.ZodBranded<z.ZodString, "UserId">;
863
+ }, "strip", z.ZodTypeAny, {
864
+ userId: string & z.BRAND<"UserId">;
865
+ startTime: string;
866
+ endTime: string;
867
+ }, {
868
+ userId: string;
869
+ startTime: string;
870
+ endTime: string;
871
+ }>;
872
+ time: z.ZodString;
873
+ type: z.ZodLiteral<"date-filter-applied">;
874
+ }, "strip", z.ZodTypeAny, {
875
+ type: "date-filter-applied";
876
+ data: {
877
+ userId: string & z.BRAND<"UserId">;
878
+ startTime: string;
879
+ endTime: string;
880
+ };
881
+ time: string;
882
+ }, {
883
+ type: "date-filter-applied";
884
+ data: {
885
+ userId: string;
886
+ startTime: string;
887
+ endTime: string;
888
+ };
889
+ time: string;
890
+ }>, z.ZodObject<{
891
+ data: z.ZodObject<{
892
+ userId: z.ZodBranded<z.ZodString, "UserId">;
893
+ eventId: z.ZodBranded<z.ZodString, "EventId">;
894
+ }, "strip", z.ZodTypeAny, {
895
+ userId: string & z.BRAND<"UserId">;
896
+ eventId: string & z.BRAND<"EventId">;
897
+ }, {
898
+ userId: string;
899
+ eventId: string;
900
+ }>;
901
+ time: z.ZodString;
902
+ type: z.ZodLiteral<"event-added-to-calendar">;
903
+ }, "strip", z.ZodTypeAny, {
904
+ type: "event-added-to-calendar";
905
+ data: {
906
+ userId: string & z.BRAND<"UserId">;
907
+ eventId: string & z.BRAND<"EventId">;
908
+ };
909
+ time: string;
910
+ }, {
911
+ type: "event-added-to-calendar";
912
+ data: {
913
+ userId: string;
914
+ eventId: string;
915
+ };
916
+ time: string;
917
+ }>, z.ZodObject<{
918
+ data: z.ZodObject<{
919
+ userId: z.ZodBranded<z.ZodString, "UserId">;
920
+ organizerId: z.ZodBranded<z.ZodString, "OrganizerId">;
921
+ }, "strip", z.ZodTypeAny, {
922
+ userId: string & z.BRAND<"UserId">;
923
+ organizerId: string & z.BRAND<"OrganizerId">;
924
+ }, {
925
+ userId: string;
926
+ organizerId: string;
927
+ }>;
928
+ time: z.ZodString;
929
+ type: z.ZodLiteral<"organizer-displayed">;
930
+ }, "strip", z.ZodTypeAny, {
931
+ type: "organizer-displayed";
932
+ data: {
933
+ userId: string & z.BRAND<"UserId">;
934
+ organizerId: string & z.BRAND<"OrganizerId">;
935
+ };
936
+ time: string;
937
+ }, {
938
+ type: "organizer-displayed";
939
+ data: {
940
+ userId: string;
941
+ organizerId: string;
942
+ };
943
+ time: string;
944
+ }>]>;
945
+ export type AppStartedStatistic = z.infer<typeof AppStartedStatisticSchema>;
946
+ export type CategoryFilterAppliedStatistic = z.infer<typeof CategoryFilterAppliedStatisticSchema>;
947
+ export type DateFilterAppliedStatistic = z.infer<typeof DateFilterAppliedStatisticSchema>;
948
+ export type EventAddedToFavoritesStatistic = z.infer<typeof EventAddedToFavoritesStatisticSchema>;
949
+ export type EventDisplayedStatistic = z.infer<typeof EventDisplayedStatisticSchema>;
950
+ export type EventSeeMoreClickedStatistics = z.infer<typeof EventSeeMoreClickedStatisticsSchema>;
951
+ export type EventSharedStatistic = z.infer<typeof EventSharedStatisticSchema>;
952
+ export type EventTicketsClickedStatistics = z.infer<typeof EventTicketsClickedStatisticsSchema>;
953
+ export type FreeFilterAppliedStatistic = z.infer<typeof FreeFilterAppliedStatisticSchema>;
954
+ export type OrganizerDisplayedStatistic = z.infer<typeof OrganizerDisplayedStatisticSchema>;
955
+ export type RegionFilterAppliedStatistic = z.infer<typeof RegionFilterAppliedStatisticSchema>;
956
+ export type Statistic = z.infer<typeof StatisticSchema>;
957
+ //# sourceMappingURL=stats.d.ts.map