expo-backend-types 0.49.0-EXPO-354-ExpoBackend-Agregado-de-producciones-en-prisma.2 → 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.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.
Files changed (48) hide show
  1. package/dist/src/account/dto/get-global-filter.dto.d.ts +8 -10
  2. package/dist/src/account/dto/get-me.dto.d.ts +16 -20
  3. package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -10
  4. package/dist/src/event/dto/get-all-event.dto.d.ts +232 -236
  5. package/dist/src/event/dto/get-all-event.dto.js +1 -1
  6. package/dist/src/event/dto/get-all-statistics.dto.d.ts +281 -0
  7. package/dist/src/event/dto/get-all-statistics.dto.js +36 -0
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +126 -136
  9. package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
  10. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +396 -0
  11. package/dist/src/event/dto/get-statistics-by-id-event.dto.js +34 -0
  12. package/dist/src/event/dto/update-event.dto.d.ts +8 -10
  13. package/dist/src/exports.d.ts +0 -1
  14. package/dist/src/exports.js +0 -1
  15. package/dist/src/i18n/es.d.ts +4 -15
  16. package/dist/src/i18n/es.js +4 -15
  17. package/dist/src/i18n/es.js.map +1 -1
  18. package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -14
  19. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -24
  20. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -10
  21. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -14
  22. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -14
  23. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -14
  24. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -7
  25. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -6
  26. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -10
  27. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -10
  28. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -6
  29. package/dist/src/tag/dto/tag.dto.d.ts +4 -6
  30. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -7
  31. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -14
  32. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -14
  33. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -10
  34. package/dist/types/prisma-schema/edge.js +5 -32
  35. package/dist/types/prisma-schema/index-browser.js +2 -29
  36. package/dist/types/prisma-schema/index.d.ts +6857 -11425
  37. package/dist/types/prisma-schema/index.js +5 -32
  38. package/dist/types/prisma-schema/package.json +1 -1
  39. package/dist/types/prisma-schema/schema.prisma +4 -54
  40. package/dist/types/prisma-schema/wasm.js +2 -29
  41. package/dist/types/schema.d.ts +140 -28
  42. package/package.json +1 -1
  43. package/dist/src/production/dto/production.dto.d.ts +0 -20
  44. package/dist/src/production/dto/production.dto.js +0 -21
  45. package/dist/src/production/exports.d.ts +0 -1
  46. package/dist/src/production/exports.js +0 -18
  47. package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +0 -27
  48. package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +0 -22
@@ -108,7 +108,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
108
108
  tagConfirmedId: string;
109
109
  supraEventId: string | null;
110
110
  }>, "many">;
111
- profileTags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
111
+ tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
112
112
  id: z.ZodString;
113
113
  name: z.ZodString;
114
114
  groupId: z.ZodString;
@@ -117,7 +117,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
117
117
  EVENT: "EVENT";
118
118
  PARTICIPANT: "PARTICIPANT";
119
119
  NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
120
- PRODUCTION_ROLE: "PRODUCTION_ROLE";
121
120
  }>;
122
121
  created_at: z.ZodDate;
123
122
  updated_at: z.ZodDate;
@@ -143,7 +142,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
143
142
  }>, "strip", z.ZodTypeAny, {
144
143
  id: string;
145
144
  name: string;
146
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
145
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
147
146
  group: {
148
147
  id: string;
149
148
  name: string;
@@ -153,7 +152,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
153
152
  }, {
154
153
  id: string;
155
154
  name: string;
156
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
155
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
157
156
  group: {
158
157
  id: string;
159
158
  name: string;
@@ -201,6 +200,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
201
200
  created_at: Date;
202
201
  updated_at: Date;
203
202
  active: boolean;
203
+ tags: {
204
+ id: string;
205
+ name: string;
206
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
207
+ group: {
208
+ id: string;
209
+ name: string;
210
+ color: string;
211
+ isExclusive: boolean;
212
+ };
213
+ }[];
204
214
  folderId: string | null;
205
215
  tagAssistedId: string;
206
216
  tagConfirmedId: string;
@@ -241,17 +251,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
241
251
  tagConfirmedId: string;
242
252
  supraEventId: string | null;
243
253
  } | null;
244
- profileTags: {
245
- id: string;
246
- name: string;
247
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
248
- group: {
249
- id: string;
250
- name: string;
251
- color: string;
252
- isExclusive: boolean;
253
- };
254
- }[];
255
254
  }, {
256
255
  location: string;
257
256
  id: string;
@@ -262,6 +261,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
262
261
  created_at: Date;
263
262
  updated_at: Date;
264
263
  active: boolean;
264
+ tags: {
265
+ id: string;
266
+ name: string;
267
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
268
+ group: {
269
+ id: string;
270
+ name: string;
271
+ color: string;
272
+ isExclusive: boolean;
273
+ };
274
+ }[];
265
275
  folderId: string | null;
266
276
  tagAssistedId: string;
267
277
  tagConfirmedId: string;
@@ -302,17 +312,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
302
312
  tagConfirmedId: string;
303
313
  supraEventId: string | null;
304
314
  } | null;
305
- profileTags: {
306
- id: string;
307
- name: string;
308
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
309
- group: {
310
- id: string;
311
- name: string;
312
- color: string;
313
- isExclusive: boolean;
314
- };
315
- }[];
316
315
  }>, "many">;
317
316
  }>, "strip", z.ZodTypeAny, {
318
317
  id: string;
@@ -330,6 +329,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
330
329
  created_at: Date;
331
330
  updated_at: Date;
332
331
  active: boolean;
332
+ tags: {
333
+ id: string;
334
+ name: string;
335
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
336
+ group: {
337
+ id: string;
338
+ name: string;
339
+ color: string;
340
+ isExclusive: boolean;
341
+ };
342
+ }[];
333
343
  folderId: string | null;
334
344
  tagAssistedId: string;
335
345
  tagConfirmedId: string;
@@ -370,17 +380,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
370
380
  tagConfirmedId: string;
371
381
  supraEventId: string | null;
372
382
  } | null;
373
- profileTags: {
374
- id: string;
375
- name: string;
376
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
377
- group: {
378
- id: string;
379
- name: string;
380
- color: string;
381
- isExclusive: boolean;
382
- };
383
- }[];
384
383
  }[];
385
384
  }, {
386
385
  id: string;
@@ -398,6 +397,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
398
397
  created_at: Date;
399
398
  updated_at: Date;
400
399
  active: boolean;
400
+ tags: {
401
+ id: string;
402
+ name: string;
403
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
404
+ group: {
405
+ id: string;
406
+ name: string;
407
+ color: string;
408
+ isExclusive: boolean;
409
+ };
410
+ }[];
401
411
  folderId: string | null;
402
412
  tagAssistedId: string;
403
413
  tagConfirmedId: string;
@@ -438,17 +448,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
438
448
  tagConfirmedId: string;
439
449
  supraEventId: string | null;
440
450
  } | null;
441
- profileTags: {
442
- id: string;
443
- name: string;
444
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
445
- group: {
446
- id: string;
447
- name: string;
448
- color: string;
449
- isExclusive: boolean;
450
- };
451
- }[];
452
451
  }[];
453
452
  }>, "many">;
454
453
  withoutFolder: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
@@ -552,7 +551,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
552
551
  tagConfirmedId: string;
553
552
  supraEventId: string | null;
554
553
  }>, "many">;
555
- profileTags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
554
+ tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
556
555
  id: z.ZodString;
557
556
  name: z.ZodString;
558
557
  groupId: z.ZodString;
@@ -561,7 +560,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
561
560
  EVENT: "EVENT";
562
561
  PARTICIPANT: "PARTICIPANT";
563
562
  NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
564
- PRODUCTION_ROLE: "PRODUCTION_ROLE";
565
563
  }>;
566
564
  created_at: z.ZodDate;
567
565
  updated_at: z.ZodDate;
@@ -587,7 +585,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
587
585
  }>, "strip", z.ZodTypeAny, {
588
586
  id: string;
589
587
  name: string;
590
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
588
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
591
589
  group: {
592
590
  id: string;
593
591
  name: string;
@@ -597,7 +595,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
597
595
  }, {
598
596
  id: string;
599
597
  name: string;
600
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
598
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
601
599
  group: {
602
600
  id: string;
603
601
  name: string;
@@ -645,6 +643,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
645
643
  created_at: Date;
646
644
  updated_at: Date;
647
645
  active: boolean;
646
+ tags: {
647
+ id: string;
648
+ name: string;
649
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
650
+ group: {
651
+ id: string;
652
+ name: string;
653
+ color: string;
654
+ isExclusive: boolean;
655
+ };
656
+ }[];
648
657
  folderId: string | null;
649
658
  tagAssistedId: string;
650
659
  tagConfirmedId: string;
@@ -685,17 +694,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
685
694
  tagConfirmedId: string;
686
695
  supraEventId: string | null;
687
696
  } | null;
688
- profileTags: {
689
- id: string;
690
- name: string;
691
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
692
- group: {
693
- id: string;
694
- name: string;
695
- color: string;
696
- isExclusive: boolean;
697
- };
698
- }[];
699
697
  }, {
700
698
  location: string;
701
699
  id: string;
@@ -706,6 +704,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
706
704
  created_at: Date;
707
705
  updated_at: Date;
708
706
  active: boolean;
707
+ tags: {
708
+ id: string;
709
+ name: string;
710
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
711
+ group: {
712
+ id: string;
713
+ name: string;
714
+ color: string;
715
+ isExclusive: boolean;
716
+ };
717
+ }[];
709
718
  folderId: string | null;
710
719
  tagAssistedId: string;
711
720
  tagConfirmedId: string;
@@ -746,17 +755,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
746
755
  tagConfirmedId: string;
747
756
  supraEventId: string | null;
748
757
  } | null;
749
- profileTags: {
750
- id: string;
751
- name: string;
752
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
753
- group: {
754
- id: string;
755
- name: string;
756
- color: string;
757
- isExclusive: boolean;
758
- };
759
- }[];
760
758
  }>, "many">;
761
759
  }, "strip", z.ZodTypeAny, {
762
760
  folders: {
@@ -775,6 +773,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
775
773
  created_at: Date;
776
774
  updated_at: Date;
777
775
  active: boolean;
776
+ tags: {
777
+ id: string;
778
+ name: string;
779
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
780
+ group: {
781
+ id: string;
782
+ name: string;
783
+ color: string;
784
+ isExclusive: boolean;
785
+ };
786
+ }[];
778
787
  folderId: string | null;
779
788
  tagAssistedId: string;
780
789
  tagConfirmedId: string;
@@ -815,17 +824,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
815
824
  tagConfirmedId: string;
816
825
  supraEventId: string | null;
817
826
  } | null;
818
- profileTags: {
819
- id: string;
820
- name: string;
821
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
822
- group: {
823
- id: string;
824
- name: string;
825
- color: string;
826
- isExclusive: boolean;
827
- };
828
- }[];
829
827
  }[];
830
828
  }[];
831
829
  withoutFolder: {
@@ -838,6 +836,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
838
836
  created_at: Date;
839
837
  updated_at: Date;
840
838
  active: boolean;
839
+ tags: {
840
+ id: string;
841
+ name: string;
842
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
843
+ group: {
844
+ id: string;
845
+ name: string;
846
+ color: string;
847
+ isExclusive: boolean;
848
+ };
849
+ }[];
841
850
  folderId: string | null;
842
851
  tagAssistedId: string;
843
852
  tagConfirmedId: string;
@@ -878,17 +887,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
878
887
  tagConfirmedId: string;
879
888
  supraEventId: string | null;
880
889
  } | null;
881
- profileTags: {
882
- id: string;
883
- name: string;
884
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
885
- group: {
886
- id: string;
887
- name: string;
888
- color: string;
889
- isExclusive: boolean;
890
- };
891
- }[];
892
890
  }[];
893
891
  }, {
894
892
  folders: {
@@ -907,6 +905,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
907
905
  created_at: Date;
908
906
  updated_at: Date;
909
907
  active: boolean;
908
+ tags: {
909
+ id: string;
910
+ name: string;
911
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
912
+ group: {
913
+ id: string;
914
+ name: string;
915
+ color: string;
916
+ isExclusive: boolean;
917
+ };
918
+ }[];
910
919
  folderId: string | null;
911
920
  tagAssistedId: string;
912
921
  tagConfirmedId: string;
@@ -947,17 +956,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
947
956
  tagConfirmedId: string;
948
957
  supraEventId: string | null;
949
958
  } | null;
950
- profileTags: {
951
- id: string;
952
- name: string;
953
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
954
- group: {
955
- id: string;
956
- name: string;
957
- color: string;
958
- isExclusive: boolean;
959
- };
960
- }[];
961
959
  }[];
962
960
  }[];
963
961
  withoutFolder: {
@@ -970,6 +968,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
970
968
  created_at: Date;
971
969
  updated_at: Date;
972
970
  active: boolean;
971
+ tags: {
972
+ id: string;
973
+ name: string;
974
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
975
+ group: {
976
+ id: string;
977
+ name: string;
978
+ color: string;
979
+ isExclusive: boolean;
980
+ };
981
+ }[];
973
982
  folderId: string | null;
974
983
  tagAssistedId: string;
975
984
  tagConfirmedId: string;
@@ -1010,17 +1019,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
1010
1019
  tagConfirmedId: string;
1011
1020
  supraEventId: string | null;
1012
1021
  } | null;
1013
- profileTags: {
1014
- id: string;
1015
- name: string;
1016
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1017
- group: {
1018
- id: string;
1019
- name: string;
1020
- color: string;
1021
- isExclusive: boolean;
1022
- };
1023
- }[];
1024
1022
  }[];
1025
1023
  }>;
1026
1024
  declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -1130,7 +1128,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1130
1128
  tagConfirmedId: string;
1131
1129
  supraEventId: string | null;
1132
1130
  }>, "many">;
1133
- profileTags: z.ZodArray<z.ZodObject<{
1131
+ tags: z.ZodArray<z.ZodObject<{
1134
1132
  id: z.ZodString;
1135
1133
  name: z.ZodString;
1136
1134
  type: z.ZodNativeEnum<{
@@ -1138,7 +1136,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1138
1136
  EVENT: "EVENT";
1139
1137
  PARTICIPANT: "PARTICIPANT";
1140
1138
  NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
1141
- PRODUCTION_ROLE: "PRODUCTION_ROLE";
1142
1139
  }>;
1143
1140
  group: z.ZodObject<{
1144
1141
  id: z.ZodString;
@@ -1159,7 +1156,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1159
1156
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1160
1157
  id: string;
1161
1158
  name: string;
1162
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1159
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1163
1160
  group: {
1164
1161
  id: string;
1165
1162
  name: string;
@@ -1169,7 +1166,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1169
1166
  }, {
1170
1167
  id: string;
1171
1168
  name: string;
1172
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1169
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1173
1170
  group: {
1174
1171
  id: string;
1175
1172
  name: string;
@@ -1217,6 +1214,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1217
1214
  created_at: string;
1218
1215
  updated_at: string;
1219
1216
  active: boolean;
1217
+ tags: {
1218
+ id: string;
1219
+ name: string;
1220
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1221
+ group: {
1222
+ id: string;
1223
+ name: string;
1224
+ color: string;
1225
+ isExclusive: boolean;
1226
+ };
1227
+ }[];
1220
1228
  folderId: string | null;
1221
1229
  tagAssistedId: string;
1222
1230
  tagConfirmedId: string;
@@ -1257,17 +1265,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1257
1265
  tagConfirmedId: string;
1258
1266
  supraEventId: string | null;
1259
1267
  } | null;
1260
- profileTags: {
1261
- id: string;
1262
- name: string;
1263
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1264
- group: {
1265
- id: string;
1266
- name: string;
1267
- color: string;
1268
- isExclusive: boolean;
1269
- };
1270
- }[];
1271
1268
  }, {
1272
1269
  location: string;
1273
1270
  id: string;
@@ -1278,6 +1275,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1278
1275
  created_at: string;
1279
1276
  updated_at: string;
1280
1277
  active: boolean;
1278
+ tags: {
1279
+ id: string;
1280
+ name: string;
1281
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1282
+ group: {
1283
+ id: string;
1284
+ name: string;
1285
+ color: string;
1286
+ isExclusive: boolean;
1287
+ };
1288
+ }[];
1281
1289
  folderId: string | null;
1282
1290
  tagAssistedId: string;
1283
1291
  tagConfirmedId: string;
@@ -1318,17 +1326,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1318
1326
  tagConfirmedId: string;
1319
1327
  supraEventId: string | null;
1320
1328
  } | null;
1321
- profileTags: {
1322
- id: string;
1323
- name: string;
1324
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1325
- group: {
1326
- id: string;
1327
- name: string;
1328
- color: string;
1329
- isExclusive: boolean;
1330
- };
1331
- }[];
1332
1329
  }>, "many">;
1333
1330
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1334
1331
  id: string;
@@ -1346,6 +1343,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1346
1343
  created_at: string;
1347
1344
  updated_at: string;
1348
1345
  active: boolean;
1346
+ tags: {
1347
+ id: string;
1348
+ name: string;
1349
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1350
+ group: {
1351
+ id: string;
1352
+ name: string;
1353
+ color: string;
1354
+ isExclusive: boolean;
1355
+ };
1356
+ }[];
1349
1357
  folderId: string | null;
1350
1358
  tagAssistedId: string;
1351
1359
  tagConfirmedId: string;
@@ -1386,17 +1394,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1386
1394
  tagConfirmedId: string;
1387
1395
  supraEventId: string | null;
1388
1396
  } | null;
1389
- profileTags: {
1390
- id: string;
1391
- name: string;
1392
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1393
- group: {
1394
- id: string;
1395
- name: string;
1396
- color: string;
1397
- isExclusive: boolean;
1398
- };
1399
- }[];
1400
1397
  }[];
1401
1398
  }, {
1402
1399
  id: string;
@@ -1414,6 +1411,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1414
1411
  created_at: string;
1415
1412
  updated_at: string;
1416
1413
  active: boolean;
1414
+ tags: {
1415
+ id: string;
1416
+ name: string;
1417
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1418
+ group: {
1419
+ id: string;
1420
+ name: string;
1421
+ color: string;
1422
+ isExclusive: boolean;
1423
+ };
1424
+ }[];
1417
1425
  folderId: string | null;
1418
1426
  tagAssistedId: string;
1419
1427
  tagConfirmedId: string;
@@ -1454,17 +1462,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1454
1462
  tagConfirmedId: string;
1455
1463
  supraEventId: string | null;
1456
1464
  } | null;
1457
- profileTags: {
1458
- id: string;
1459
- name: string;
1460
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1461
- group: {
1462
- id: string;
1463
- name: string;
1464
- color: string;
1465
- isExclusive: boolean;
1466
- };
1467
- }[];
1468
1465
  }[];
1469
1466
  }>, "many">;
1470
1467
  withoutFolder: z.ZodArray<z.ZodObject<{
@@ -1567,7 +1564,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1567
1564
  tagConfirmedId: string;
1568
1565
  supraEventId: string | null;
1569
1566
  }>, "many">;
1570
- profileTags: z.ZodArray<z.ZodObject<{
1567
+ tags: z.ZodArray<z.ZodObject<{
1571
1568
  id: z.ZodString;
1572
1569
  name: z.ZodString;
1573
1570
  type: z.ZodNativeEnum<{
@@ -1575,7 +1572,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1575
1572
  EVENT: "EVENT";
1576
1573
  PARTICIPANT: "PARTICIPANT";
1577
1574
  NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
1578
- PRODUCTION_ROLE: "PRODUCTION_ROLE";
1579
1575
  }>;
1580
1576
  group: z.ZodObject<{
1581
1577
  id: z.ZodString;
@@ -1596,7 +1592,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1596
1592
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1597
1593
  id: string;
1598
1594
  name: string;
1599
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1595
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1600
1596
  group: {
1601
1597
  id: string;
1602
1598
  name: string;
@@ -1606,7 +1602,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1606
1602
  }, {
1607
1603
  id: string;
1608
1604
  name: string;
1609
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1605
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1610
1606
  group: {
1611
1607
  id: string;
1612
1608
  name: string;
@@ -1654,6 +1650,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1654
1650
  created_at: string;
1655
1651
  updated_at: string;
1656
1652
  active: boolean;
1653
+ tags: {
1654
+ id: string;
1655
+ name: string;
1656
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1657
+ group: {
1658
+ id: string;
1659
+ name: string;
1660
+ color: string;
1661
+ isExclusive: boolean;
1662
+ };
1663
+ }[];
1657
1664
  folderId: string | null;
1658
1665
  tagAssistedId: string;
1659
1666
  tagConfirmedId: string;
@@ -1694,17 +1701,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1694
1701
  tagConfirmedId: string;
1695
1702
  supraEventId: string | null;
1696
1703
  } | null;
1697
- profileTags: {
1698
- id: string;
1699
- name: string;
1700
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1701
- group: {
1702
- id: string;
1703
- name: string;
1704
- color: string;
1705
- isExclusive: boolean;
1706
- };
1707
- }[];
1708
1704
  }, {
1709
1705
  location: string;
1710
1706
  id: string;
@@ -1715,6 +1711,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1715
1711
  created_at: string;
1716
1712
  updated_at: string;
1717
1713
  active: boolean;
1714
+ tags: {
1715
+ id: string;
1716
+ name: string;
1717
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1718
+ group: {
1719
+ id: string;
1720
+ name: string;
1721
+ color: string;
1722
+ isExclusive: boolean;
1723
+ };
1724
+ }[];
1718
1725
  folderId: string | null;
1719
1726
  tagAssistedId: string;
1720
1727
  tagConfirmedId: string;
@@ -1755,17 +1762,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1755
1762
  tagConfirmedId: string;
1756
1763
  supraEventId: string | null;
1757
1764
  } | null;
1758
- profileTags: {
1759
- id: string;
1760
- name: string;
1761
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1762
- group: {
1763
- id: string;
1764
- name: string;
1765
- color: string;
1766
- isExclusive: boolean;
1767
- };
1768
- }[];
1769
1765
  }>, "many">;
1770
1766
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1771
1767
  folders: {
@@ -1784,6 +1780,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1784
1780
  created_at: string;
1785
1781
  updated_at: string;
1786
1782
  active: boolean;
1783
+ tags: {
1784
+ id: string;
1785
+ name: string;
1786
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1787
+ group: {
1788
+ id: string;
1789
+ name: string;
1790
+ color: string;
1791
+ isExclusive: boolean;
1792
+ };
1793
+ }[];
1787
1794
  folderId: string | null;
1788
1795
  tagAssistedId: string;
1789
1796
  tagConfirmedId: string;
@@ -1824,17 +1831,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1824
1831
  tagConfirmedId: string;
1825
1832
  supraEventId: string | null;
1826
1833
  } | null;
1827
- profileTags: {
1828
- id: string;
1829
- name: string;
1830
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1831
- group: {
1832
- id: string;
1833
- name: string;
1834
- color: string;
1835
- isExclusive: boolean;
1836
- };
1837
- }[];
1838
1834
  }[];
1839
1835
  }[];
1840
1836
  withoutFolder: {
@@ -1847,6 +1843,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1847
1843
  created_at: string;
1848
1844
  updated_at: string;
1849
1845
  active: boolean;
1846
+ tags: {
1847
+ id: string;
1848
+ name: string;
1849
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1850
+ group: {
1851
+ id: string;
1852
+ name: string;
1853
+ color: string;
1854
+ isExclusive: boolean;
1855
+ };
1856
+ }[];
1850
1857
  folderId: string | null;
1851
1858
  tagAssistedId: string;
1852
1859
  tagConfirmedId: string;
@@ -1887,17 +1894,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1887
1894
  tagConfirmedId: string;
1888
1895
  supraEventId: string | null;
1889
1896
  } | null;
1890
- profileTags: {
1891
- id: string;
1892
- name: string;
1893
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1894
- group: {
1895
- id: string;
1896
- name: string;
1897
- color: string;
1898
- isExclusive: boolean;
1899
- };
1900
- }[];
1901
1897
  }[];
1902
1898
  }, {
1903
1899
  folders: {
@@ -1916,6 +1912,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1916
1912
  created_at: string;
1917
1913
  updated_at: string;
1918
1914
  active: boolean;
1915
+ tags: {
1916
+ id: string;
1917
+ name: string;
1918
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1919
+ group: {
1920
+ id: string;
1921
+ name: string;
1922
+ color: string;
1923
+ isExclusive: boolean;
1924
+ };
1925
+ }[];
1919
1926
  folderId: string | null;
1920
1927
  tagAssistedId: string;
1921
1928
  tagConfirmedId: string;
@@ -1956,17 +1963,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1956
1963
  tagConfirmedId: string;
1957
1964
  supraEventId: string | null;
1958
1965
  } | null;
1959
- profileTags: {
1960
- id: string;
1961
- name: string;
1962
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
1963
- group: {
1964
- id: string;
1965
- name: string;
1966
- color: string;
1967
- isExclusive: boolean;
1968
- };
1969
- }[];
1970
1966
  }[];
1971
1967
  }[];
1972
1968
  withoutFolder: {
@@ -1979,6 +1975,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
1979
1975
  created_at: string;
1980
1976
  updated_at: string;
1981
1977
  active: boolean;
1978
+ tags: {
1979
+ id: string;
1980
+ name: string;
1981
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
1982
+ group: {
1983
+ id: string;
1984
+ name: string;
1985
+ color: string;
1986
+ isExclusive: boolean;
1987
+ };
1988
+ }[];
1982
1989
  folderId: string | null;
1983
1990
  tagAssistedId: string;
1984
1991
  tagConfirmedId: string;
@@ -2019,17 +2026,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
2019
2026
  tagConfirmedId: string;
2020
2027
  supraEventId: string | null;
2021
2028
  } | null;
2022
- profileTags: {
2023
- id: string;
2024
- name: string;
2025
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
2026
- group: {
2027
- id: string;
2028
- name: string;
2029
- color: string;
2030
- isExclusive: boolean;
2031
- };
2032
- }[];
2033
2029
  }[];
2034
2030
  }>>;
2035
2031
  export declare class GetAllEventsResponseDto extends GetAllEventsResponseDto_base {