expo-backend-types 0.35.0-EXPO-322-ExpoBackend-Rol-de-expoTickets.1 → 0.35.0-EXPO-322-ExpoBackend-Rol-de-expoTickets.2

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 (67) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -8
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -4
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -8
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
  8. package/dist/src/event/dto/create-event.dto.d.ts +10 -10
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +3 -3
  10. package/dist/src/event/dto/event-tickets.dto.js +5 -2
  11. package/dist/src/event/dto/get-active-events.dto.d.ts +14 -14
  12. package/dist/src/event/dto/get-all-event.dto.d.ts +616 -0
  13. package/dist/src/event/dto/get-all-event.dto.js +29 -8
  14. package/dist/src/event/dto/get-by-id-event.dto.d.ts +317 -10
  15. package/dist/src/event/dto/get-by-id-event.dto.js +4 -0
  16. package/dist/src/event/dto/update-event.dto.d.ts +26 -20
  17. package/dist/src/event/dto/update-event.dto.js +1 -0
  18. package/dist/src/i18n/es.d.ts +14 -0
  19. package/dist/src/i18n/es.js +14 -0
  20. package/dist/src/i18n/es.js.map +1 -1
  21. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +104 -0
  22. package/dist/src/mi-expo/dto/get-invitations.dto.js +24 -0
  23. package/dist/src/mi-expo/dto/get-me.dto.d.ts +18 -0
  24. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +22 -0
  25. package/dist/src/mi-expo/dto/login.dto.d.ts +23 -0
  26. package/dist/src/mi-expo/dto/update-me.dto.d.ts +18 -0
  27. package/dist/src/mi-expo/exports.d.ts +1 -0
  28. package/dist/src/mi-expo/exports.js +1 -0
  29. package/dist/src/otp/dto/verify-otp.dto.d.ts +22 -0
  30. package/dist/src/profile/dto/create-profile.dto.d.ts +28 -0
  31. package/dist/src/profile/dto/delete-profile.dto.d.ts +18 -0
  32. package/dist/src/profile/dto/find-all-profile.dto.d.ts +22 -0
  33. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +40 -0
  34. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +18 -0
  35. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +18 -0
  36. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +22 -0
  37. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +57 -1
  38. package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -0
  39. package/dist/src/profile/dto/find-trash.dto.d.ts +7 -0
  40. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +22 -0
  41. package/dist/src/profile/dto/profile.dto.d.ts +9 -0
  42. package/dist/src/profile/dto/update-profile.dto.d.ts +18 -0
  43. package/dist/src/schema/profile.schema.d.ts +9 -0
  44. package/dist/src/schema/profile.schema.js +2 -0
  45. package/dist/src/tag/dto/massive-allocation.dto.d.ts +22 -0
  46. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +22 -0
  47. package/dist/src/ticket/dto/create-ticket.dto.d.ts +158 -4
  48. package/dist/src/ticket/dto/create-ticket.dto.js +10 -2
  49. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +372 -0
  50. package/dist/src/ticket/dto/find-by-event-ticket.dto.js +2 -0
  51. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +372 -0
  52. package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -0
  53. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +372 -0
  54. package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +2 -0
  55. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +331 -0
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.js +19 -0
  57. package/dist/src/ticket/exports.d.ts +1 -0
  58. package/dist/src/ticket/exports.js +1 -0
  59. package/dist/types/prisma-schema/edge.js +7 -4
  60. package/dist/types/prisma-schema/index-browser.js +4 -1
  61. package/dist/types/prisma-schema/index.d.ts +587 -48
  62. package/dist/types/prisma-schema/index.js +7 -4
  63. package/dist/types/prisma-schema/package.json +1 -1
  64. package/dist/types/prisma-schema/schema.prisma +9 -1
  65. package/dist/types/prisma-schema/wasm.js +4 -1
  66. package/dist/types/schema.d.ts +342 -10
  67. package/package.json +1 -1
@@ -108,6 +108,78 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
108
108
  tagConfirmedId: string;
109
109
  supraEventId: string | null;
110
110
  }>, "many">;
111
+ tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
112
+ id: z.ZodString;
113
+ name: z.ZodString;
114
+ groupId: z.ZodString;
115
+ type: z.ZodNativeEnum<{
116
+ PROFILE: "PROFILE";
117
+ EVENT: "EVENT";
118
+ PARTICIPANT: "PARTICIPANT";
119
+ NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
120
+ }>;
121
+ created_at: z.ZodDate;
122
+ updated_at: z.ZodDate;
123
+ }, "id" | "name" | "type">, {
124
+ group: z.ZodObject<Pick<{
125
+ id: z.ZodString;
126
+ name: z.ZodString;
127
+ color: z.ZodString;
128
+ isExclusive: z.ZodBoolean;
129
+ created_at: z.ZodDate;
130
+ updated_at: z.ZodDate;
131
+ }, "id" | "name" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
132
+ id: string;
133
+ name: string;
134
+ color: string;
135
+ isExclusive: boolean;
136
+ }, {
137
+ id: string;
138
+ name: string;
139
+ color: string;
140
+ isExclusive: boolean;
141
+ }>;
142
+ }>, "strip", z.ZodTypeAny, {
143
+ id: string;
144
+ name: string;
145
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
146
+ group: {
147
+ id: string;
148
+ name: string;
149
+ color: string;
150
+ isExclusive: boolean;
151
+ };
152
+ }, {
153
+ id: string;
154
+ name: string;
155
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
156
+ group: {
157
+ id: string;
158
+ name: string;
159
+ color: string;
160
+ isExclusive: boolean;
161
+ };
162
+ }>, "many">;
163
+ eventTickets: z.ZodArray<z.ZodObject<Pick<{
164
+ id: z.ZodString;
165
+ amount: z.ZodNullable<z.ZodNumber>;
166
+ type: z.ZodNativeEnum<{
167
+ PARTICIPANT: "PARTICIPANT";
168
+ STAFF: "STAFF";
169
+ SPECTATOR: "SPECTATOR";
170
+ }>;
171
+ price: z.ZodNullable<z.ZodNumber>;
172
+ }, "id" | "type" | "amount" | "price">, "strip", z.ZodTypeAny, {
173
+ id: string;
174
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
175
+ amount: number | null;
176
+ price: number | null;
177
+ }, {
178
+ id: string;
179
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
180
+ amount: number | null;
181
+ price: number | null;
182
+ }>, "many">;
111
183
  }>, "strip", z.ZodTypeAny, {
112
184
  location: string;
113
185
  id: string;
@@ -118,6 +190,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
118
190
  created_at: Date;
119
191
  updated_at: Date;
120
192
  active: boolean;
193
+ tags: {
194
+ id: string;
195
+ name: string;
196
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
197
+ group: {
198
+ id: string;
199
+ name: string;
200
+ color: string;
201
+ isExclusive: boolean;
202
+ };
203
+ }[];
121
204
  folderId: string | null;
122
205
  tagAssistedId: string;
123
206
  tagConfirmedId: string;
@@ -137,6 +220,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
137
220
  tagConfirmedId: string;
138
221
  supraEventId: string | null;
139
222
  }[];
223
+ eventTickets: {
224
+ id: string;
225
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
226
+ amount: number | null;
227
+ price: number | null;
228
+ }[];
140
229
  supraEvent: {
141
230
  location: string;
142
231
  id: string;
@@ -162,6 +251,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
162
251
  created_at: Date;
163
252
  updated_at: Date;
164
253
  active: boolean;
254
+ tags: {
255
+ id: string;
256
+ name: string;
257
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
258
+ group: {
259
+ id: string;
260
+ name: string;
261
+ color: string;
262
+ isExclusive: boolean;
263
+ };
264
+ }[];
165
265
  folderId: string | null;
166
266
  tagAssistedId: string;
167
267
  tagConfirmedId: string;
@@ -181,6 +281,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
181
281
  tagConfirmedId: string;
182
282
  supraEventId: string | null;
183
283
  }[];
284
+ eventTickets: {
285
+ id: string;
286
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
287
+ amount: number | null;
288
+ price: number | null;
289
+ }[];
184
290
  supraEvent: {
185
291
  location: string;
186
292
  id: string;
@@ -213,6 +319,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
213
319
  created_at: Date;
214
320
  updated_at: Date;
215
321
  active: boolean;
322
+ tags: {
323
+ id: string;
324
+ name: string;
325
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
326
+ group: {
327
+ id: string;
328
+ name: string;
329
+ color: string;
330
+ isExclusive: boolean;
331
+ };
332
+ }[];
216
333
  folderId: string | null;
217
334
  tagAssistedId: string;
218
335
  tagConfirmedId: string;
@@ -232,6 +349,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
232
349
  tagConfirmedId: string;
233
350
  supraEventId: string | null;
234
351
  }[];
352
+ eventTickets: {
353
+ id: string;
354
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
355
+ amount: number | null;
356
+ price: number | null;
357
+ }[];
235
358
  supraEvent: {
236
359
  location: string;
237
360
  id: string;
@@ -264,6 +387,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
264
387
  created_at: Date;
265
388
  updated_at: Date;
266
389
  active: boolean;
390
+ tags: {
391
+ id: string;
392
+ name: string;
393
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
394
+ group: {
395
+ id: string;
396
+ name: string;
397
+ color: string;
398
+ isExclusive: boolean;
399
+ };
400
+ }[];
267
401
  folderId: string | null;
268
402
  tagAssistedId: string;
269
403
  tagConfirmedId: string;
@@ -283,6 +417,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
283
417
  tagConfirmedId: string;
284
418
  supraEventId: string | null;
285
419
  }[];
420
+ eventTickets: {
421
+ id: string;
422
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
423
+ amount: number | null;
424
+ price: number | null;
425
+ }[];
286
426
  supraEvent: {
287
427
  location: string;
288
428
  id: string;
@@ -401,6 +541,78 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
401
541
  tagConfirmedId: string;
402
542
  supraEventId: string | null;
403
543
  }>, "many">;
544
+ tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
545
+ id: z.ZodString;
546
+ name: z.ZodString;
547
+ groupId: z.ZodString;
548
+ type: z.ZodNativeEnum<{
549
+ PROFILE: "PROFILE";
550
+ EVENT: "EVENT";
551
+ PARTICIPANT: "PARTICIPANT";
552
+ NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
553
+ }>;
554
+ created_at: z.ZodDate;
555
+ updated_at: z.ZodDate;
556
+ }, "id" | "name" | "type">, {
557
+ group: z.ZodObject<Pick<{
558
+ id: z.ZodString;
559
+ name: z.ZodString;
560
+ color: z.ZodString;
561
+ isExclusive: z.ZodBoolean;
562
+ created_at: z.ZodDate;
563
+ updated_at: z.ZodDate;
564
+ }, "id" | "name" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
565
+ id: string;
566
+ name: string;
567
+ color: string;
568
+ isExclusive: boolean;
569
+ }, {
570
+ id: string;
571
+ name: string;
572
+ color: string;
573
+ isExclusive: boolean;
574
+ }>;
575
+ }>, "strip", z.ZodTypeAny, {
576
+ id: string;
577
+ name: string;
578
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
579
+ group: {
580
+ id: string;
581
+ name: string;
582
+ color: string;
583
+ isExclusive: boolean;
584
+ };
585
+ }, {
586
+ id: string;
587
+ name: string;
588
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
589
+ group: {
590
+ id: string;
591
+ name: string;
592
+ color: string;
593
+ isExclusive: boolean;
594
+ };
595
+ }>, "many">;
596
+ eventTickets: z.ZodArray<z.ZodObject<Pick<{
597
+ id: z.ZodString;
598
+ amount: z.ZodNullable<z.ZodNumber>;
599
+ type: z.ZodNativeEnum<{
600
+ PARTICIPANT: "PARTICIPANT";
601
+ STAFF: "STAFF";
602
+ SPECTATOR: "SPECTATOR";
603
+ }>;
604
+ price: z.ZodNullable<z.ZodNumber>;
605
+ }, "id" | "type" | "amount" | "price">, "strip", z.ZodTypeAny, {
606
+ id: string;
607
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
608
+ amount: number | null;
609
+ price: number | null;
610
+ }, {
611
+ id: string;
612
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
613
+ amount: number | null;
614
+ price: number | null;
615
+ }>, "many">;
404
616
  }>, "strip", z.ZodTypeAny, {
405
617
  location: string;
406
618
  id: string;
@@ -411,6 +623,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
411
623
  created_at: Date;
412
624
  updated_at: Date;
413
625
  active: boolean;
626
+ tags: {
627
+ id: string;
628
+ name: string;
629
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
630
+ group: {
631
+ id: string;
632
+ name: string;
633
+ color: string;
634
+ isExclusive: boolean;
635
+ };
636
+ }[];
414
637
  folderId: string | null;
415
638
  tagAssistedId: string;
416
639
  tagConfirmedId: string;
@@ -430,6 +653,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
430
653
  tagConfirmedId: string;
431
654
  supraEventId: string | null;
432
655
  }[];
656
+ eventTickets: {
657
+ id: string;
658
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
659
+ amount: number | null;
660
+ price: number | null;
661
+ }[];
433
662
  supraEvent: {
434
663
  location: string;
435
664
  id: string;
@@ -455,6 +684,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
455
684
  created_at: Date;
456
685
  updated_at: Date;
457
686
  active: boolean;
687
+ tags: {
688
+ id: string;
689
+ name: string;
690
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
691
+ group: {
692
+ id: string;
693
+ name: string;
694
+ color: string;
695
+ isExclusive: boolean;
696
+ };
697
+ }[];
458
698
  folderId: string | null;
459
699
  tagAssistedId: string;
460
700
  tagConfirmedId: string;
@@ -474,6 +714,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
474
714
  tagConfirmedId: string;
475
715
  supraEventId: string | null;
476
716
  }[];
717
+ eventTickets: {
718
+ id: string;
719
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
720
+ amount: number | null;
721
+ price: number | null;
722
+ }[];
477
723
  supraEvent: {
478
724
  location: string;
479
725
  id: string;
@@ -507,6 +753,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
507
753
  created_at: Date;
508
754
  updated_at: Date;
509
755
  active: boolean;
756
+ tags: {
757
+ id: string;
758
+ name: string;
759
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
760
+ group: {
761
+ id: string;
762
+ name: string;
763
+ color: string;
764
+ isExclusive: boolean;
765
+ };
766
+ }[];
510
767
  folderId: string | null;
511
768
  tagAssistedId: string;
512
769
  tagConfirmedId: string;
@@ -526,6 +783,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
526
783
  tagConfirmedId: string;
527
784
  supraEventId: string | null;
528
785
  }[];
786
+ eventTickets: {
787
+ id: string;
788
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
789
+ amount: number | null;
790
+ price: number | null;
791
+ }[];
529
792
  supraEvent: {
530
793
  location: string;
531
794
  id: string;
@@ -553,6 +816,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
553
816
  created_at: Date;
554
817
  updated_at: Date;
555
818
  active: boolean;
819
+ tags: {
820
+ id: string;
821
+ name: string;
822
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
823
+ group: {
824
+ id: string;
825
+ name: string;
826
+ color: string;
827
+ isExclusive: boolean;
828
+ };
829
+ }[];
556
830
  folderId: string | null;
557
831
  tagAssistedId: string;
558
832
  tagConfirmedId: string;
@@ -572,6 +846,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
572
846
  tagConfirmedId: string;
573
847
  supraEventId: string | null;
574
848
  }[];
849
+ eventTickets: {
850
+ id: string;
851
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
852
+ amount: number | null;
853
+ price: number | null;
854
+ }[];
575
855
  supraEvent: {
576
856
  location: string;
577
857
  id: string;
@@ -605,6 +885,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
605
885
  created_at: Date;
606
886
  updated_at: Date;
607
887
  active: boolean;
888
+ tags: {
889
+ id: string;
890
+ name: string;
891
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
892
+ group: {
893
+ id: string;
894
+ name: string;
895
+ color: string;
896
+ isExclusive: boolean;
897
+ };
898
+ }[];
608
899
  folderId: string | null;
609
900
  tagAssistedId: string;
610
901
  tagConfirmedId: string;
@@ -624,6 +915,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
624
915
  tagConfirmedId: string;
625
916
  supraEventId: string | null;
626
917
  }[];
918
+ eventTickets: {
919
+ id: string;
920
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
921
+ amount: number | null;
922
+ price: number | null;
923
+ }[];
627
924
  supraEvent: {
628
925
  location: string;
629
926
  id: string;
@@ -651,6 +948,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
651
948
  created_at: Date;
652
949
  updated_at: Date;
653
950
  active: boolean;
951
+ tags: {
952
+ id: string;
953
+ name: string;
954
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
955
+ group: {
956
+ id: string;
957
+ name: string;
958
+ color: string;
959
+ isExclusive: boolean;
960
+ };
961
+ }[];
654
962
  folderId: string | null;
655
963
  tagAssistedId: string;
656
964
  tagConfirmedId: string;
@@ -670,6 +978,12 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
670
978
  tagConfirmedId: string;
671
979
  supraEventId: string | null;
672
980
  }[];
981
+ eventTickets: {
982
+ id: string;
983
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
984
+ amount: number | null;
985
+ price: number | null;
986
+ }[];
673
987
  supraEvent: {
674
988
  location: string;
675
989
  id: string;
@@ -794,6 +1108,72 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
794
1108
  tagConfirmedId: string;
795
1109
  supraEventId: string | null;
796
1110
  }>, "many">;
1111
+ tags: z.ZodArray<z.ZodObject<{
1112
+ id: z.ZodString;
1113
+ name: z.ZodString;
1114
+ type: z.ZodNativeEnum<{
1115
+ PROFILE: "PROFILE";
1116
+ EVENT: "EVENT";
1117
+ PARTICIPANT: "PARTICIPANT";
1118
+ NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
1119
+ }>;
1120
+ group: z.ZodObject<{
1121
+ id: z.ZodString;
1122
+ name: z.ZodString;
1123
+ color: z.ZodString;
1124
+ isExclusive: z.ZodBoolean;
1125
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
1126
+ id: string;
1127
+ name: string;
1128
+ color: string;
1129
+ isExclusive: boolean;
1130
+ }, {
1131
+ id: string;
1132
+ name: string;
1133
+ color: string;
1134
+ isExclusive: boolean;
1135
+ }>;
1136
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
1137
+ id: string;
1138
+ name: string;
1139
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1140
+ group: {
1141
+ id: string;
1142
+ name: string;
1143
+ color: string;
1144
+ isExclusive: boolean;
1145
+ };
1146
+ }, {
1147
+ id: string;
1148
+ name: string;
1149
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1150
+ group: {
1151
+ id: string;
1152
+ name: string;
1153
+ color: string;
1154
+ isExclusive: boolean;
1155
+ };
1156
+ }>, "many">;
1157
+ eventTickets: z.ZodArray<z.ZodObject<{
1158
+ id: z.ZodString;
1159
+ type: z.ZodNativeEnum<{
1160
+ PARTICIPANT: "PARTICIPANT";
1161
+ STAFF: "STAFF";
1162
+ SPECTATOR: "SPECTATOR";
1163
+ }>;
1164
+ amount: z.ZodNullable<z.ZodNumber>;
1165
+ price: z.ZodNullable<z.ZodNumber>;
1166
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
1167
+ id: string;
1168
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1169
+ amount: number | null;
1170
+ price: number | null;
1171
+ }, {
1172
+ id: string;
1173
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1174
+ amount: number | null;
1175
+ price: number | null;
1176
+ }>, "many">;
797
1177
  }, z.UnknownKeysParam, z.ZodTypeAny, {
798
1178
  location: string;
799
1179
  id: string;
@@ -804,6 +1184,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
804
1184
  created_at: string;
805
1185
  updated_at: string;
806
1186
  active: boolean;
1187
+ tags: {
1188
+ id: string;
1189
+ name: string;
1190
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1191
+ group: {
1192
+ id: string;
1193
+ name: string;
1194
+ color: string;
1195
+ isExclusive: boolean;
1196
+ };
1197
+ }[];
807
1198
  folderId: string | null;
808
1199
  tagAssistedId: string;
809
1200
  tagConfirmedId: string;
@@ -823,6 +1214,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
823
1214
  tagConfirmedId: string;
824
1215
  supraEventId: string | null;
825
1216
  }[];
1217
+ eventTickets: {
1218
+ id: string;
1219
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1220
+ amount: number | null;
1221
+ price: number | null;
1222
+ }[];
826
1223
  supraEvent: {
827
1224
  location: string;
828
1225
  id: string;
@@ -848,6 +1245,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
848
1245
  created_at: string;
849
1246
  updated_at: string;
850
1247
  active: boolean;
1248
+ tags: {
1249
+ id: string;
1250
+ name: string;
1251
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1252
+ group: {
1253
+ id: string;
1254
+ name: string;
1255
+ color: string;
1256
+ isExclusive: boolean;
1257
+ };
1258
+ }[];
851
1259
  folderId: string | null;
852
1260
  tagAssistedId: string;
853
1261
  tagConfirmedId: string;
@@ -867,6 +1275,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
867
1275
  tagConfirmedId: string;
868
1276
  supraEventId: string | null;
869
1277
  }[];
1278
+ eventTickets: {
1279
+ id: string;
1280
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1281
+ amount: number | null;
1282
+ price: number | null;
1283
+ }[];
870
1284
  supraEvent: {
871
1285
  location: string;
872
1286
  id: string;
@@ -899,6 +1313,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
899
1313
  created_at: string;
900
1314
  updated_at: string;
901
1315
  active: boolean;
1316
+ tags: {
1317
+ id: string;
1318
+ name: string;
1319
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1320
+ group: {
1321
+ id: string;
1322
+ name: string;
1323
+ color: string;
1324
+ isExclusive: boolean;
1325
+ };
1326
+ }[];
902
1327
  folderId: string | null;
903
1328
  tagAssistedId: string;
904
1329
  tagConfirmedId: string;
@@ -918,6 +1343,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
918
1343
  tagConfirmedId: string;
919
1344
  supraEventId: string | null;
920
1345
  }[];
1346
+ eventTickets: {
1347
+ id: string;
1348
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1349
+ amount: number | null;
1350
+ price: number | null;
1351
+ }[];
921
1352
  supraEvent: {
922
1353
  location: string;
923
1354
  id: string;
@@ -950,6 +1381,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
950
1381
  created_at: string;
951
1382
  updated_at: string;
952
1383
  active: boolean;
1384
+ tags: {
1385
+ id: string;
1386
+ name: string;
1387
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1388
+ group: {
1389
+ id: string;
1390
+ name: string;
1391
+ color: string;
1392
+ isExclusive: boolean;
1393
+ };
1394
+ }[];
953
1395
  folderId: string | null;
954
1396
  tagAssistedId: string;
955
1397
  tagConfirmedId: string;
@@ -969,6 +1411,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
969
1411
  tagConfirmedId: string;
970
1412
  supraEventId: string | null;
971
1413
  }[];
1414
+ eventTickets: {
1415
+ id: string;
1416
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1417
+ amount: number | null;
1418
+ price: number | null;
1419
+ }[];
972
1420
  supraEvent: {
973
1421
  location: string;
974
1422
  id: string;
@@ -1086,6 +1534,72 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1086
1534
  tagConfirmedId: string;
1087
1535
  supraEventId: string | null;
1088
1536
  }>, "many">;
1537
+ tags: z.ZodArray<z.ZodObject<{
1538
+ id: z.ZodString;
1539
+ name: z.ZodString;
1540
+ type: z.ZodNativeEnum<{
1541
+ PROFILE: "PROFILE";
1542
+ EVENT: "EVENT";
1543
+ PARTICIPANT: "PARTICIPANT";
1544
+ NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
1545
+ }>;
1546
+ group: z.ZodObject<{
1547
+ id: z.ZodString;
1548
+ name: z.ZodString;
1549
+ color: z.ZodString;
1550
+ isExclusive: z.ZodBoolean;
1551
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
1552
+ id: string;
1553
+ name: string;
1554
+ color: string;
1555
+ isExclusive: boolean;
1556
+ }, {
1557
+ id: string;
1558
+ name: string;
1559
+ color: string;
1560
+ isExclusive: boolean;
1561
+ }>;
1562
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
1563
+ id: string;
1564
+ name: string;
1565
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1566
+ group: {
1567
+ id: string;
1568
+ name: string;
1569
+ color: string;
1570
+ isExclusive: boolean;
1571
+ };
1572
+ }, {
1573
+ id: string;
1574
+ name: string;
1575
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1576
+ group: {
1577
+ id: string;
1578
+ name: string;
1579
+ color: string;
1580
+ isExclusive: boolean;
1581
+ };
1582
+ }>, "many">;
1583
+ eventTickets: z.ZodArray<z.ZodObject<{
1584
+ id: z.ZodString;
1585
+ type: z.ZodNativeEnum<{
1586
+ PARTICIPANT: "PARTICIPANT";
1587
+ STAFF: "STAFF";
1588
+ SPECTATOR: "SPECTATOR";
1589
+ }>;
1590
+ amount: z.ZodNullable<z.ZodNumber>;
1591
+ price: z.ZodNullable<z.ZodNumber>;
1592
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
1593
+ id: string;
1594
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1595
+ amount: number | null;
1596
+ price: number | null;
1597
+ }, {
1598
+ id: string;
1599
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1600
+ amount: number | null;
1601
+ price: number | null;
1602
+ }>, "many">;
1089
1603
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1090
1604
  location: string;
1091
1605
  id: string;
@@ -1096,6 +1610,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1096
1610
  created_at: string;
1097
1611
  updated_at: string;
1098
1612
  active: boolean;
1613
+ tags: {
1614
+ id: string;
1615
+ name: string;
1616
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1617
+ group: {
1618
+ id: string;
1619
+ name: string;
1620
+ color: string;
1621
+ isExclusive: boolean;
1622
+ };
1623
+ }[];
1099
1624
  folderId: string | null;
1100
1625
  tagAssistedId: string;
1101
1626
  tagConfirmedId: string;
@@ -1115,6 +1640,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1115
1640
  tagConfirmedId: string;
1116
1641
  supraEventId: string | null;
1117
1642
  }[];
1643
+ eventTickets: {
1644
+ id: string;
1645
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1646
+ amount: number | null;
1647
+ price: number | null;
1648
+ }[];
1118
1649
  supraEvent: {
1119
1650
  location: string;
1120
1651
  id: string;
@@ -1140,6 +1671,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1140
1671
  created_at: string;
1141
1672
  updated_at: string;
1142
1673
  active: boolean;
1674
+ tags: {
1675
+ id: string;
1676
+ name: string;
1677
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1678
+ group: {
1679
+ id: string;
1680
+ name: string;
1681
+ color: string;
1682
+ isExclusive: boolean;
1683
+ };
1684
+ }[];
1143
1685
  folderId: string | null;
1144
1686
  tagAssistedId: string;
1145
1687
  tagConfirmedId: string;
@@ -1159,6 +1701,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1159
1701
  tagConfirmedId: string;
1160
1702
  supraEventId: string | null;
1161
1703
  }[];
1704
+ eventTickets: {
1705
+ id: string;
1706
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1707
+ amount: number | null;
1708
+ price: number | null;
1709
+ }[];
1162
1710
  supraEvent: {
1163
1711
  location: string;
1164
1712
  id: string;
@@ -1192,6 +1740,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1192
1740
  created_at: string;
1193
1741
  updated_at: string;
1194
1742
  active: boolean;
1743
+ tags: {
1744
+ id: string;
1745
+ name: string;
1746
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1747
+ group: {
1748
+ id: string;
1749
+ name: string;
1750
+ color: string;
1751
+ isExclusive: boolean;
1752
+ };
1753
+ }[];
1195
1754
  folderId: string | null;
1196
1755
  tagAssistedId: string;
1197
1756
  tagConfirmedId: string;
@@ -1211,6 +1770,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1211
1770
  tagConfirmedId: string;
1212
1771
  supraEventId: string | null;
1213
1772
  }[];
1773
+ eventTickets: {
1774
+ id: string;
1775
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1776
+ amount: number | null;
1777
+ price: number | null;
1778
+ }[];
1214
1779
  supraEvent: {
1215
1780
  location: string;
1216
1781
  id: string;
@@ -1238,6 +1803,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1238
1803
  created_at: string;
1239
1804
  updated_at: string;
1240
1805
  active: boolean;
1806
+ tags: {
1807
+ id: string;
1808
+ name: string;
1809
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1810
+ group: {
1811
+ id: string;
1812
+ name: string;
1813
+ color: string;
1814
+ isExclusive: boolean;
1815
+ };
1816
+ }[];
1241
1817
  folderId: string | null;
1242
1818
  tagAssistedId: string;
1243
1819
  tagConfirmedId: string;
@@ -1257,6 +1833,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1257
1833
  tagConfirmedId: string;
1258
1834
  supraEventId: string | null;
1259
1835
  }[];
1836
+ eventTickets: {
1837
+ id: string;
1838
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1839
+ amount: number | null;
1840
+ price: number | null;
1841
+ }[];
1260
1842
  supraEvent: {
1261
1843
  location: string;
1262
1844
  id: string;
@@ -1290,6 +1872,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1290
1872
  created_at: string;
1291
1873
  updated_at: string;
1292
1874
  active: boolean;
1875
+ tags: {
1876
+ id: string;
1877
+ name: string;
1878
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1879
+ group: {
1880
+ id: string;
1881
+ name: string;
1882
+ color: string;
1883
+ isExclusive: boolean;
1884
+ };
1885
+ }[];
1293
1886
  folderId: string | null;
1294
1887
  tagAssistedId: string;
1295
1888
  tagConfirmedId: string;
@@ -1309,6 +1902,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1309
1902
  tagConfirmedId: string;
1310
1903
  supraEventId: string | null;
1311
1904
  }[];
1905
+ eventTickets: {
1906
+ id: string;
1907
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1908
+ amount: number | null;
1909
+ price: number | null;
1910
+ }[];
1312
1911
  supraEvent: {
1313
1912
  location: string;
1314
1913
  id: string;
@@ -1336,6 +1935,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1336
1935
  created_at: string;
1337
1936
  updated_at: string;
1338
1937
  active: boolean;
1938
+ tags: {
1939
+ id: string;
1940
+ name: string;
1941
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1942
+ group: {
1943
+ id: string;
1944
+ name: string;
1945
+ color: string;
1946
+ isExclusive: boolean;
1947
+ };
1948
+ }[];
1339
1949
  folderId: string | null;
1340
1950
  tagAssistedId: string;
1341
1951
  tagConfirmedId: string;
@@ -1355,6 +1965,12 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1355
1965
  tagConfirmedId: string;
1356
1966
  supraEventId: string | null;
1357
1967
  }[];
1968
+ eventTickets: {
1969
+ id: string;
1970
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1971
+ amount: number | null;
1972
+ price: number | null;
1973
+ }[];
1358
1974
  supraEvent: {
1359
1975
  location: string;
1360
1976
  id: string;