expo-backend-types 0.52.0-EXPO-343-Quique-Wolff.1 → 0.52.0-EXPO-343-Quique-Wolff.3
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/src/account/dto/get-global-filter.dto.d.ts +10 -8
- package/dist/src/account/dto/get-me.dto.d.ts +20 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +10 -8
- package/dist/src/event/dto/create-event.dto.d.ts +21 -4
- package/dist/src/event/dto/create-event.dto.js +1 -1
- package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
- package/dist/src/event/dto/event-tickets.dto.js +18 -8
- package/dist/src/event/dto/get-active-events.dto.d.ts +23 -3
- package/dist/src/event/dto/get-all-event.dto.d.ts +284 -240
- package/dist/src/event/dto/get-all-event.dto.js +3 -3
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +373 -0
- package/dist/src/event/dto/get-all-statistics.dto.js +40 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +159 -129
- package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +303 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.js +40 -0
- package/dist/src/event/dto/update-event.dto.d.ts +87 -47
- package/dist/src/event/dto/update-event.dto.js +2 -4
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +65 -1
- package/dist/src/i18n/es.js +67 -1
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/production/dto/create-production.dto.d.ts +41 -0
- package/dist/src/production/dto/create-production.dto.js +18 -0
- package/dist/src/production/dto/create-role.dto.d.ts +86 -0
- package/dist/src/production/dto/create-role.dto.js +16 -0
- package/dist/src/production/dto/delete-production.dto.d.ts +41 -0
- package/dist/src/production/dto/delete-production.dto.js +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +451 -0
- package/dist/src/production/dto/get-all-production.dto.js +21 -0
- package/dist/src/production/dto/production.dto.d.ts +20 -0
- package/dist/src/production/dto/production.dto.js +21 -0
- package/dist/src/production/dto/update-production.dto.d.ts +63 -0
- package/dist/src/production/dto/update-production.dto.js +19 -0
- package/dist/src/production/exports.d.ts +6 -0
- package/dist/src/production/exports.js +23 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.d.ts +80 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.js +16 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +563 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.js +21 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +27 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +22 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +390 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.js +15 -0
- package/dist/src/production-affiliation-request/exports.d.ts +4 -0
- package/dist/src/production-affiliation-request/exports.js +21 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +24 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +14 -12
- package/dist/src/tag/dto/create-tag.dto.d.ts +41 -9
- package/dist/src/tag/dto/create-tag.dto.js +6 -5
- package/dist/src/tag/dto/delete-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +7 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +10 -8
- package/dist/types/prisma-schema/edge.js +32 -5
- package/dist/types/prisma-schema/index-browser.js +29 -2
- package/dist/types/prisma-schema/index.d.ts +11960 -6876
- package/dist/types/prisma-schema/index.js +32 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +56 -4
- package/dist/types/prisma-schema/wasm.js +29 -2
- package/dist/types/schema.d.ts +785 -79
- package/package.json +2 -1
@@ -129,7 +129,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
129
129
|
tagConfirmedId: string;
|
130
130
|
supraEventId: string | null;
|
131
131
|
}>, "many">;
|
132
|
-
|
132
|
+
profileTags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
133
133
|
id: z.ZodString;
|
134
134
|
name: z.ZodString;
|
135
135
|
groupId: z.ZodString;
|
@@ -138,6 +138,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
138
138
|
EVENT: "EVENT";
|
139
139
|
PARTICIPANT: "PARTICIPANT";
|
140
140
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
141
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
141
142
|
}>;
|
142
143
|
created_at: z.ZodDate;
|
143
144
|
updated_at: z.ZodDate;
|
@@ -163,7 +164,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
163
164
|
}>, "strip", z.ZodTypeAny, {
|
164
165
|
id: string;
|
165
166
|
name: string;
|
166
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
167
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
167
168
|
group: {
|
168
169
|
id: string;
|
169
170
|
name: string;
|
@@ -173,7 +174,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
173
174
|
}, {
|
174
175
|
id: string;
|
175
176
|
name: string;
|
176
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
177
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
177
178
|
group: {
|
178
179
|
id: string;
|
179
180
|
name: string;
|
@@ -181,7 +182,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
181
182
|
isExclusive: boolean;
|
182
183
|
};
|
183
184
|
}>, "many">;
|
184
|
-
eventTickets: z.ZodArray<z.ZodObject<Pick<{
|
185
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
185
186
|
id: z.ZodString;
|
186
187
|
amount: z.ZodNullable<z.ZodNumber>;
|
187
188
|
type: z.ZodNativeEnum<{
|
@@ -200,6 +201,16 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
200
201
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
201
202
|
amount: number | null;
|
202
203
|
price: number | null;
|
204
|
+
}>, {
|
205
|
+
id: string;
|
206
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
207
|
+
amount: number | null;
|
208
|
+
price: number | null;
|
209
|
+
}, {
|
210
|
+
id: string;
|
211
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
212
|
+
amount: number | null;
|
213
|
+
price: number | null;
|
203
214
|
}>, "many">;
|
204
215
|
}>, "strip", z.ZodTypeAny, {
|
205
216
|
description: string | null;
|
@@ -212,17 +223,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
212
223
|
created_at: Date;
|
213
224
|
updated_at: Date;
|
214
225
|
active: boolean;
|
215
|
-
tags: {
|
216
|
-
id: string;
|
217
|
-
name: string;
|
218
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
219
|
-
group: {
|
220
|
-
id: string;
|
221
|
-
name: string;
|
222
|
-
color: string;
|
223
|
-
isExclusive: boolean;
|
224
|
-
};
|
225
|
-
}[];
|
226
226
|
mainPictureUrl: string | null;
|
227
227
|
bannerUrl: string | null;
|
228
228
|
folderId: string | null;
|
@@ -271,6 +271,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
271
271
|
tagConfirmedId: string;
|
272
272
|
supraEventId: string | null;
|
273
273
|
} | null;
|
274
|
+
profileTags: {
|
275
|
+
id: string;
|
276
|
+
name: string;
|
277
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
278
|
+
group: {
|
279
|
+
id: string;
|
280
|
+
name: string;
|
281
|
+
color: string;
|
282
|
+
isExclusive: boolean;
|
283
|
+
};
|
284
|
+
}[];
|
274
285
|
}, {
|
275
286
|
description: string | null;
|
276
287
|
location: string;
|
@@ -282,17 +293,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
282
293
|
created_at: Date;
|
283
294
|
updated_at: Date;
|
284
295
|
active: boolean;
|
285
|
-
tags: {
|
286
|
-
id: string;
|
287
|
-
name: string;
|
288
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
289
|
-
group: {
|
290
|
-
id: string;
|
291
|
-
name: string;
|
292
|
-
color: string;
|
293
|
-
isExclusive: boolean;
|
294
|
-
};
|
295
|
-
}[];
|
296
296
|
mainPictureUrl: string | null;
|
297
297
|
bannerUrl: string | null;
|
298
298
|
folderId: string | null;
|
@@ -341,6 +341,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
341
341
|
tagConfirmedId: string;
|
342
342
|
supraEventId: string | null;
|
343
343
|
} | null;
|
344
|
+
profileTags: {
|
345
|
+
id: string;
|
346
|
+
name: string;
|
347
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
348
|
+
group: {
|
349
|
+
id: string;
|
350
|
+
name: string;
|
351
|
+
color: string;
|
352
|
+
isExclusive: boolean;
|
353
|
+
};
|
354
|
+
}[];
|
344
355
|
}>, "many">;
|
345
356
|
}>, "strip", z.ZodTypeAny, {
|
346
357
|
id: string;
|
@@ -359,17 +370,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
359
370
|
created_at: Date;
|
360
371
|
updated_at: Date;
|
361
372
|
active: boolean;
|
362
|
-
tags: {
|
363
|
-
id: string;
|
364
|
-
name: string;
|
365
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
366
|
-
group: {
|
367
|
-
id: string;
|
368
|
-
name: string;
|
369
|
-
color: string;
|
370
|
-
isExclusive: boolean;
|
371
|
-
};
|
372
|
-
}[];
|
373
373
|
mainPictureUrl: string | null;
|
374
374
|
bannerUrl: string | null;
|
375
375
|
folderId: string | null;
|
@@ -418,6 +418,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
418
418
|
tagConfirmedId: string;
|
419
419
|
supraEventId: string | null;
|
420
420
|
} | null;
|
421
|
+
profileTags: {
|
422
|
+
id: string;
|
423
|
+
name: string;
|
424
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
425
|
+
group: {
|
426
|
+
id: string;
|
427
|
+
name: string;
|
428
|
+
color: string;
|
429
|
+
isExclusive: boolean;
|
430
|
+
};
|
431
|
+
}[];
|
421
432
|
}[];
|
422
433
|
}, {
|
423
434
|
id: string;
|
@@ -436,17 +447,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
436
447
|
created_at: Date;
|
437
448
|
updated_at: Date;
|
438
449
|
active: boolean;
|
439
|
-
tags: {
|
440
|
-
id: string;
|
441
|
-
name: string;
|
442
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
443
|
-
group: {
|
444
|
-
id: string;
|
445
|
-
name: string;
|
446
|
-
color: string;
|
447
|
-
isExclusive: boolean;
|
448
|
-
};
|
449
|
-
}[];
|
450
450
|
mainPictureUrl: string | null;
|
451
451
|
bannerUrl: string | null;
|
452
452
|
folderId: string | null;
|
@@ -495,6 +495,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
495
495
|
tagConfirmedId: string;
|
496
496
|
supraEventId: string | null;
|
497
497
|
} | null;
|
498
|
+
profileTags: {
|
499
|
+
id: string;
|
500
|
+
name: string;
|
501
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
502
|
+
group: {
|
503
|
+
id: string;
|
504
|
+
name: string;
|
505
|
+
color: string;
|
506
|
+
isExclusive: boolean;
|
507
|
+
};
|
508
|
+
}[];
|
498
509
|
}[];
|
499
510
|
}>, "many">;
|
500
511
|
withoutFolder: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
@@ -619,7 +630,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
619
630
|
tagConfirmedId: string;
|
620
631
|
supraEventId: string | null;
|
621
632
|
}>, "many">;
|
622
|
-
|
633
|
+
profileTags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
623
634
|
id: z.ZodString;
|
624
635
|
name: z.ZodString;
|
625
636
|
groupId: z.ZodString;
|
@@ -628,6 +639,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
628
639
|
EVENT: "EVENT";
|
629
640
|
PARTICIPANT: "PARTICIPANT";
|
630
641
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
642
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
631
643
|
}>;
|
632
644
|
created_at: z.ZodDate;
|
633
645
|
updated_at: z.ZodDate;
|
@@ -653,7 +665,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
653
665
|
}>, "strip", z.ZodTypeAny, {
|
654
666
|
id: string;
|
655
667
|
name: string;
|
656
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
668
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
657
669
|
group: {
|
658
670
|
id: string;
|
659
671
|
name: string;
|
@@ -663,7 +675,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
663
675
|
}, {
|
664
676
|
id: string;
|
665
677
|
name: string;
|
666
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
678
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
667
679
|
group: {
|
668
680
|
id: string;
|
669
681
|
name: string;
|
@@ -671,7 +683,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
671
683
|
isExclusive: boolean;
|
672
684
|
};
|
673
685
|
}>, "many">;
|
674
|
-
eventTickets: z.ZodArray<z.ZodObject<Pick<{
|
686
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
675
687
|
id: z.ZodString;
|
676
688
|
amount: z.ZodNullable<z.ZodNumber>;
|
677
689
|
type: z.ZodNativeEnum<{
|
@@ -690,6 +702,16 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
690
702
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
691
703
|
amount: number | null;
|
692
704
|
price: number | null;
|
705
|
+
}>, {
|
706
|
+
id: string;
|
707
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
708
|
+
amount: number | null;
|
709
|
+
price: number | null;
|
710
|
+
}, {
|
711
|
+
id: string;
|
712
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
713
|
+
amount: number | null;
|
714
|
+
price: number | null;
|
693
715
|
}>, "many">;
|
694
716
|
}>, "strip", z.ZodTypeAny, {
|
695
717
|
description: string | null;
|
@@ -702,17 +724,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
702
724
|
created_at: Date;
|
703
725
|
updated_at: Date;
|
704
726
|
active: boolean;
|
705
|
-
tags: {
|
706
|
-
id: string;
|
707
|
-
name: string;
|
708
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
709
|
-
group: {
|
710
|
-
id: string;
|
711
|
-
name: string;
|
712
|
-
color: string;
|
713
|
-
isExclusive: boolean;
|
714
|
-
};
|
715
|
-
}[];
|
716
727
|
mainPictureUrl: string | null;
|
717
728
|
bannerUrl: string | null;
|
718
729
|
folderId: string | null;
|
@@ -761,6 +772,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
761
772
|
tagConfirmedId: string;
|
762
773
|
supraEventId: string | null;
|
763
774
|
} | null;
|
775
|
+
profileTags: {
|
776
|
+
id: string;
|
777
|
+
name: string;
|
778
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
779
|
+
group: {
|
780
|
+
id: string;
|
781
|
+
name: string;
|
782
|
+
color: string;
|
783
|
+
isExclusive: boolean;
|
784
|
+
};
|
785
|
+
}[];
|
764
786
|
}, {
|
765
787
|
description: string | null;
|
766
788
|
location: string;
|
@@ -772,17 +794,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
772
794
|
created_at: Date;
|
773
795
|
updated_at: Date;
|
774
796
|
active: boolean;
|
775
|
-
tags: {
|
776
|
-
id: string;
|
777
|
-
name: string;
|
778
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
779
|
-
group: {
|
780
|
-
id: string;
|
781
|
-
name: string;
|
782
|
-
color: string;
|
783
|
-
isExclusive: boolean;
|
784
|
-
};
|
785
|
-
}[];
|
786
797
|
mainPictureUrl: string | null;
|
787
798
|
bannerUrl: string | null;
|
788
799
|
folderId: string | null;
|
@@ -831,6 +842,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
831
842
|
tagConfirmedId: string;
|
832
843
|
supraEventId: string | null;
|
833
844
|
} | null;
|
845
|
+
profileTags: {
|
846
|
+
id: string;
|
847
|
+
name: string;
|
848
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
849
|
+
group: {
|
850
|
+
id: string;
|
851
|
+
name: string;
|
852
|
+
color: string;
|
853
|
+
isExclusive: boolean;
|
854
|
+
};
|
855
|
+
}[];
|
834
856
|
}>, "many">;
|
835
857
|
}, "strip", z.ZodTypeAny, {
|
836
858
|
folders: {
|
@@ -850,17 +872,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
850
872
|
created_at: Date;
|
851
873
|
updated_at: Date;
|
852
874
|
active: boolean;
|
853
|
-
tags: {
|
854
|
-
id: string;
|
855
|
-
name: string;
|
856
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
857
|
-
group: {
|
858
|
-
id: string;
|
859
|
-
name: string;
|
860
|
-
color: string;
|
861
|
-
isExclusive: boolean;
|
862
|
-
};
|
863
|
-
}[];
|
864
875
|
mainPictureUrl: string | null;
|
865
876
|
bannerUrl: string | null;
|
866
877
|
folderId: string | null;
|
@@ -909,6 +920,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
909
920
|
tagConfirmedId: string;
|
910
921
|
supraEventId: string | null;
|
911
922
|
} | null;
|
923
|
+
profileTags: {
|
924
|
+
id: string;
|
925
|
+
name: string;
|
926
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
927
|
+
group: {
|
928
|
+
id: string;
|
929
|
+
name: string;
|
930
|
+
color: string;
|
931
|
+
isExclusive: boolean;
|
932
|
+
};
|
933
|
+
}[];
|
912
934
|
}[];
|
913
935
|
}[];
|
914
936
|
withoutFolder: {
|
@@ -922,17 +944,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
922
944
|
created_at: Date;
|
923
945
|
updated_at: Date;
|
924
946
|
active: boolean;
|
925
|
-
tags: {
|
926
|
-
id: string;
|
927
|
-
name: string;
|
928
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
929
|
-
group: {
|
930
|
-
id: string;
|
931
|
-
name: string;
|
932
|
-
color: string;
|
933
|
-
isExclusive: boolean;
|
934
|
-
};
|
935
|
-
}[];
|
936
947
|
mainPictureUrl: string | null;
|
937
948
|
bannerUrl: string | null;
|
938
949
|
folderId: string | null;
|
@@ -981,6 +992,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
981
992
|
tagConfirmedId: string;
|
982
993
|
supraEventId: string | null;
|
983
994
|
} | null;
|
995
|
+
profileTags: {
|
996
|
+
id: string;
|
997
|
+
name: string;
|
998
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
999
|
+
group: {
|
1000
|
+
id: string;
|
1001
|
+
name: string;
|
1002
|
+
color: string;
|
1003
|
+
isExclusive: boolean;
|
1004
|
+
};
|
1005
|
+
}[];
|
984
1006
|
}[];
|
985
1007
|
}, {
|
986
1008
|
folders: {
|
@@ -1000,17 +1022,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1000
1022
|
created_at: Date;
|
1001
1023
|
updated_at: Date;
|
1002
1024
|
active: boolean;
|
1003
|
-
tags: {
|
1004
|
-
id: string;
|
1005
|
-
name: string;
|
1006
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1007
|
-
group: {
|
1008
|
-
id: string;
|
1009
|
-
name: string;
|
1010
|
-
color: string;
|
1011
|
-
isExclusive: boolean;
|
1012
|
-
};
|
1013
|
-
}[];
|
1014
1025
|
mainPictureUrl: string | null;
|
1015
1026
|
bannerUrl: string | null;
|
1016
1027
|
folderId: string | null;
|
@@ -1059,6 +1070,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1059
1070
|
tagConfirmedId: string;
|
1060
1071
|
supraEventId: string | null;
|
1061
1072
|
} | null;
|
1073
|
+
profileTags: {
|
1074
|
+
id: string;
|
1075
|
+
name: string;
|
1076
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1077
|
+
group: {
|
1078
|
+
id: string;
|
1079
|
+
name: string;
|
1080
|
+
color: string;
|
1081
|
+
isExclusive: boolean;
|
1082
|
+
};
|
1083
|
+
}[];
|
1062
1084
|
}[];
|
1063
1085
|
}[];
|
1064
1086
|
withoutFolder: {
|
@@ -1072,17 +1094,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1072
1094
|
created_at: Date;
|
1073
1095
|
updated_at: Date;
|
1074
1096
|
active: boolean;
|
1075
|
-
tags: {
|
1076
|
-
id: string;
|
1077
|
-
name: string;
|
1078
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1079
|
-
group: {
|
1080
|
-
id: string;
|
1081
|
-
name: string;
|
1082
|
-
color: string;
|
1083
|
-
isExclusive: boolean;
|
1084
|
-
};
|
1085
|
-
}[];
|
1086
1097
|
mainPictureUrl: string | null;
|
1087
1098
|
bannerUrl: string | null;
|
1088
1099
|
folderId: string | null;
|
@@ -1131,6 +1142,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1131
1142
|
tagConfirmedId: string;
|
1132
1143
|
supraEventId: string | null;
|
1133
1144
|
} | null;
|
1145
|
+
profileTags: {
|
1146
|
+
id: string;
|
1147
|
+
name: string;
|
1148
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1149
|
+
group: {
|
1150
|
+
id: string;
|
1151
|
+
name: string;
|
1152
|
+
color: string;
|
1153
|
+
isExclusive: boolean;
|
1154
|
+
};
|
1155
|
+
}[];
|
1134
1156
|
}[];
|
1135
1157
|
}>;
|
1136
1158
|
declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -1261,7 +1283,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1261
1283
|
tagConfirmedId: string;
|
1262
1284
|
supraEventId: string | null;
|
1263
1285
|
}>, "many">;
|
1264
|
-
|
1286
|
+
profileTags: z.ZodArray<z.ZodObject<{
|
1265
1287
|
id: z.ZodString;
|
1266
1288
|
name: z.ZodString;
|
1267
1289
|
type: z.ZodNativeEnum<{
|
@@ -1269,6 +1291,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1269
1291
|
EVENT: "EVENT";
|
1270
1292
|
PARTICIPANT: "PARTICIPANT";
|
1271
1293
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
1294
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
1272
1295
|
}>;
|
1273
1296
|
group: z.ZodObject<{
|
1274
1297
|
id: z.ZodString;
|
@@ -1289,7 +1312,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1289
1312
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1290
1313
|
id: string;
|
1291
1314
|
name: string;
|
1292
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1315
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1293
1316
|
group: {
|
1294
1317
|
id: string;
|
1295
1318
|
name: string;
|
@@ -1299,7 +1322,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1299
1322
|
}, {
|
1300
1323
|
id: string;
|
1301
1324
|
name: string;
|
1302
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1325
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1303
1326
|
group: {
|
1304
1327
|
id: string;
|
1305
1328
|
name: string;
|
@@ -1307,16 +1330,26 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1307
1330
|
isExclusive: boolean;
|
1308
1331
|
};
|
1309
1332
|
}>, "many">;
|
1310
|
-
eventTickets: z.ZodArray<z.ZodObject<{
|
1333
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
1311
1334
|
id: z.ZodString;
|
1335
|
+
amount: z.ZodNullable<z.ZodNumber>;
|
1312
1336
|
type: z.ZodNativeEnum<{
|
1313
1337
|
PARTICIPANT: "PARTICIPANT";
|
1314
1338
|
STAFF: "STAFF";
|
1315
1339
|
SPECTATOR: "SPECTATOR";
|
1316
1340
|
}>;
|
1317
|
-
amount: z.ZodNullable<z.ZodNumber>;
|
1318
1341
|
price: z.ZodNullable<z.ZodNumber>;
|
1319
|
-
},
|
1342
|
+
}, "id" | "type" | "amount" | "price">, "strip", z.ZodTypeAny, {
|
1343
|
+
id: string;
|
1344
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1345
|
+
amount: number | null;
|
1346
|
+
price: number | null;
|
1347
|
+
}, {
|
1348
|
+
id: string;
|
1349
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1350
|
+
amount: number | null;
|
1351
|
+
price: number | null;
|
1352
|
+
}>, {
|
1320
1353
|
id: string;
|
1321
1354
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1322
1355
|
amount: number | null;
|
@@ -1338,17 +1371,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1338
1371
|
created_at: string;
|
1339
1372
|
updated_at: string;
|
1340
1373
|
active: boolean;
|
1341
|
-
tags: {
|
1342
|
-
id: string;
|
1343
|
-
name: string;
|
1344
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1345
|
-
group: {
|
1346
|
-
id: string;
|
1347
|
-
name: string;
|
1348
|
-
color: string;
|
1349
|
-
isExclusive: boolean;
|
1350
|
-
};
|
1351
|
-
}[];
|
1352
1374
|
mainPictureUrl: string | null;
|
1353
1375
|
bannerUrl: string | null;
|
1354
1376
|
folderId: string | null;
|
@@ -1397,6 +1419,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1397
1419
|
tagConfirmedId: string;
|
1398
1420
|
supraEventId: string | null;
|
1399
1421
|
} | null;
|
1422
|
+
profileTags: {
|
1423
|
+
id: string;
|
1424
|
+
name: string;
|
1425
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1426
|
+
group: {
|
1427
|
+
id: string;
|
1428
|
+
name: string;
|
1429
|
+
color: string;
|
1430
|
+
isExclusive: boolean;
|
1431
|
+
};
|
1432
|
+
}[];
|
1400
1433
|
}, {
|
1401
1434
|
description: string | null;
|
1402
1435
|
location: string;
|
@@ -1408,17 +1441,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1408
1441
|
created_at: string;
|
1409
1442
|
updated_at: string;
|
1410
1443
|
active: boolean;
|
1411
|
-
tags: {
|
1412
|
-
id: string;
|
1413
|
-
name: string;
|
1414
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1415
|
-
group: {
|
1416
|
-
id: string;
|
1417
|
-
name: string;
|
1418
|
-
color: string;
|
1419
|
-
isExclusive: boolean;
|
1420
|
-
};
|
1421
|
-
}[];
|
1422
1444
|
mainPictureUrl: string | null;
|
1423
1445
|
bannerUrl: string | null;
|
1424
1446
|
folderId: string | null;
|
@@ -1467,6 +1489,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1467
1489
|
tagConfirmedId: string;
|
1468
1490
|
supraEventId: string | null;
|
1469
1491
|
} | null;
|
1492
|
+
profileTags: {
|
1493
|
+
id: string;
|
1494
|
+
name: string;
|
1495
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1496
|
+
group: {
|
1497
|
+
id: string;
|
1498
|
+
name: string;
|
1499
|
+
color: string;
|
1500
|
+
isExclusive: boolean;
|
1501
|
+
};
|
1502
|
+
}[];
|
1470
1503
|
}>, "many">;
|
1471
1504
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1472
1505
|
id: string;
|
@@ -1485,17 +1518,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1485
1518
|
created_at: string;
|
1486
1519
|
updated_at: string;
|
1487
1520
|
active: boolean;
|
1488
|
-
tags: {
|
1489
|
-
id: string;
|
1490
|
-
name: string;
|
1491
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1492
|
-
group: {
|
1493
|
-
id: string;
|
1494
|
-
name: string;
|
1495
|
-
color: string;
|
1496
|
-
isExclusive: boolean;
|
1497
|
-
};
|
1498
|
-
}[];
|
1499
1521
|
mainPictureUrl: string | null;
|
1500
1522
|
bannerUrl: string | null;
|
1501
1523
|
folderId: string | null;
|
@@ -1544,6 +1566,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1544
1566
|
tagConfirmedId: string;
|
1545
1567
|
supraEventId: string | null;
|
1546
1568
|
} | null;
|
1569
|
+
profileTags: {
|
1570
|
+
id: string;
|
1571
|
+
name: string;
|
1572
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1573
|
+
group: {
|
1574
|
+
id: string;
|
1575
|
+
name: string;
|
1576
|
+
color: string;
|
1577
|
+
isExclusive: boolean;
|
1578
|
+
};
|
1579
|
+
}[];
|
1547
1580
|
}[];
|
1548
1581
|
}, {
|
1549
1582
|
id: string;
|
@@ -1562,17 +1595,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1562
1595
|
created_at: string;
|
1563
1596
|
updated_at: string;
|
1564
1597
|
active: boolean;
|
1565
|
-
tags: {
|
1566
|
-
id: string;
|
1567
|
-
name: string;
|
1568
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1569
|
-
group: {
|
1570
|
-
id: string;
|
1571
|
-
name: string;
|
1572
|
-
color: string;
|
1573
|
-
isExclusive: boolean;
|
1574
|
-
};
|
1575
|
-
}[];
|
1576
1598
|
mainPictureUrl: string | null;
|
1577
1599
|
bannerUrl: string | null;
|
1578
1600
|
folderId: string | null;
|
@@ -1621,6 +1643,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1621
1643
|
tagConfirmedId: string;
|
1622
1644
|
supraEventId: string | null;
|
1623
1645
|
} | null;
|
1646
|
+
profileTags: {
|
1647
|
+
id: string;
|
1648
|
+
name: string;
|
1649
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1650
|
+
group: {
|
1651
|
+
id: string;
|
1652
|
+
name: string;
|
1653
|
+
color: string;
|
1654
|
+
isExclusive: boolean;
|
1655
|
+
};
|
1656
|
+
}[];
|
1624
1657
|
}[];
|
1625
1658
|
}>, "many">;
|
1626
1659
|
withoutFolder: z.ZodArray<z.ZodObject<{
|
@@ -1744,7 +1777,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1744
1777
|
tagConfirmedId: string;
|
1745
1778
|
supraEventId: string | null;
|
1746
1779
|
}>, "many">;
|
1747
|
-
|
1780
|
+
profileTags: z.ZodArray<z.ZodObject<{
|
1748
1781
|
id: z.ZodString;
|
1749
1782
|
name: z.ZodString;
|
1750
1783
|
type: z.ZodNativeEnum<{
|
@@ -1752,6 +1785,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1752
1785
|
EVENT: "EVENT";
|
1753
1786
|
PARTICIPANT: "PARTICIPANT";
|
1754
1787
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
1788
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
1755
1789
|
}>;
|
1756
1790
|
group: z.ZodObject<{
|
1757
1791
|
id: z.ZodString;
|
@@ -1772,7 +1806,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1772
1806
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1773
1807
|
id: string;
|
1774
1808
|
name: string;
|
1775
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1809
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1776
1810
|
group: {
|
1777
1811
|
id: string;
|
1778
1812
|
name: string;
|
@@ -1782,7 +1816,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1782
1816
|
}, {
|
1783
1817
|
id: string;
|
1784
1818
|
name: string;
|
1785
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1819
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1786
1820
|
group: {
|
1787
1821
|
id: string;
|
1788
1822
|
name: string;
|
@@ -1790,16 +1824,26 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1790
1824
|
isExclusive: boolean;
|
1791
1825
|
};
|
1792
1826
|
}>, "many">;
|
1793
|
-
eventTickets: z.ZodArray<z.ZodObject<{
|
1827
|
+
eventTickets: z.ZodArray<z.ZodEffects<z.ZodObject<Pick<{
|
1794
1828
|
id: z.ZodString;
|
1829
|
+
amount: z.ZodNullable<z.ZodNumber>;
|
1795
1830
|
type: z.ZodNativeEnum<{
|
1796
1831
|
PARTICIPANT: "PARTICIPANT";
|
1797
1832
|
STAFF: "STAFF";
|
1798
1833
|
SPECTATOR: "SPECTATOR";
|
1799
1834
|
}>;
|
1800
|
-
amount: z.ZodNullable<z.ZodNumber>;
|
1801
1835
|
price: z.ZodNullable<z.ZodNumber>;
|
1802
|
-
},
|
1836
|
+
}, "id" | "type" | "amount" | "price">, "strip", z.ZodTypeAny, {
|
1837
|
+
id: string;
|
1838
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1839
|
+
amount: number | null;
|
1840
|
+
price: number | null;
|
1841
|
+
}, {
|
1842
|
+
id: string;
|
1843
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1844
|
+
amount: number | null;
|
1845
|
+
price: number | null;
|
1846
|
+
}>, {
|
1803
1847
|
id: string;
|
1804
1848
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
1805
1849
|
amount: number | null;
|
@@ -1821,17 +1865,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1821
1865
|
created_at: string;
|
1822
1866
|
updated_at: string;
|
1823
1867
|
active: boolean;
|
1824
|
-
tags: {
|
1825
|
-
id: string;
|
1826
|
-
name: string;
|
1827
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1828
|
-
group: {
|
1829
|
-
id: string;
|
1830
|
-
name: string;
|
1831
|
-
color: string;
|
1832
|
-
isExclusive: boolean;
|
1833
|
-
};
|
1834
|
-
}[];
|
1835
1868
|
mainPictureUrl: string | null;
|
1836
1869
|
bannerUrl: string | null;
|
1837
1870
|
folderId: string | null;
|
@@ -1880,6 +1913,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1880
1913
|
tagConfirmedId: string;
|
1881
1914
|
supraEventId: string | null;
|
1882
1915
|
} | null;
|
1916
|
+
profileTags: {
|
1917
|
+
id: string;
|
1918
|
+
name: string;
|
1919
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1920
|
+
group: {
|
1921
|
+
id: string;
|
1922
|
+
name: string;
|
1923
|
+
color: string;
|
1924
|
+
isExclusive: boolean;
|
1925
|
+
};
|
1926
|
+
}[];
|
1883
1927
|
}, {
|
1884
1928
|
description: string | null;
|
1885
1929
|
location: string;
|
@@ -1891,17 +1935,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1891
1935
|
created_at: string;
|
1892
1936
|
updated_at: string;
|
1893
1937
|
active: boolean;
|
1894
|
-
tags: {
|
1895
|
-
id: string;
|
1896
|
-
name: string;
|
1897
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1898
|
-
group: {
|
1899
|
-
id: string;
|
1900
|
-
name: string;
|
1901
|
-
color: string;
|
1902
|
-
isExclusive: boolean;
|
1903
|
-
};
|
1904
|
-
}[];
|
1905
1938
|
mainPictureUrl: string | null;
|
1906
1939
|
bannerUrl: string | null;
|
1907
1940
|
folderId: string | null;
|
@@ -1950,6 +1983,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1950
1983
|
tagConfirmedId: string;
|
1951
1984
|
supraEventId: string | null;
|
1952
1985
|
} | null;
|
1986
|
+
profileTags: {
|
1987
|
+
id: string;
|
1988
|
+
name: string;
|
1989
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1990
|
+
group: {
|
1991
|
+
id: string;
|
1992
|
+
name: string;
|
1993
|
+
color: string;
|
1994
|
+
isExclusive: boolean;
|
1995
|
+
};
|
1996
|
+
}[];
|
1953
1997
|
}>, "many">;
|
1954
1998
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1955
1999
|
folders: {
|
@@ -1969,17 +2013,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1969
2013
|
created_at: string;
|
1970
2014
|
updated_at: string;
|
1971
2015
|
active: boolean;
|
1972
|
-
tags: {
|
1973
|
-
id: string;
|
1974
|
-
name: string;
|
1975
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1976
|
-
group: {
|
1977
|
-
id: string;
|
1978
|
-
name: string;
|
1979
|
-
color: string;
|
1980
|
-
isExclusive: boolean;
|
1981
|
-
};
|
1982
|
-
}[];
|
1983
2016
|
mainPictureUrl: string | null;
|
1984
2017
|
bannerUrl: string | null;
|
1985
2018
|
folderId: string | null;
|
@@ -2028,6 +2061,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2028
2061
|
tagConfirmedId: string;
|
2029
2062
|
supraEventId: string | null;
|
2030
2063
|
} | null;
|
2064
|
+
profileTags: {
|
2065
|
+
id: string;
|
2066
|
+
name: string;
|
2067
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2068
|
+
group: {
|
2069
|
+
id: string;
|
2070
|
+
name: string;
|
2071
|
+
color: string;
|
2072
|
+
isExclusive: boolean;
|
2073
|
+
};
|
2074
|
+
}[];
|
2031
2075
|
}[];
|
2032
2076
|
}[];
|
2033
2077
|
withoutFolder: {
|
@@ -2041,17 +2085,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2041
2085
|
created_at: string;
|
2042
2086
|
updated_at: string;
|
2043
2087
|
active: boolean;
|
2044
|
-
tags: {
|
2045
|
-
id: string;
|
2046
|
-
name: string;
|
2047
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
2048
|
-
group: {
|
2049
|
-
id: string;
|
2050
|
-
name: string;
|
2051
|
-
color: string;
|
2052
|
-
isExclusive: boolean;
|
2053
|
-
};
|
2054
|
-
}[];
|
2055
2088
|
mainPictureUrl: string | null;
|
2056
2089
|
bannerUrl: string | null;
|
2057
2090
|
folderId: string | null;
|
@@ -2100,6 +2133,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2100
2133
|
tagConfirmedId: string;
|
2101
2134
|
supraEventId: string | null;
|
2102
2135
|
} | null;
|
2136
|
+
profileTags: {
|
2137
|
+
id: string;
|
2138
|
+
name: string;
|
2139
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2140
|
+
group: {
|
2141
|
+
id: string;
|
2142
|
+
name: string;
|
2143
|
+
color: string;
|
2144
|
+
isExclusive: boolean;
|
2145
|
+
};
|
2146
|
+
}[];
|
2103
2147
|
}[];
|
2104
2148
|
}, {
|
2105
2149
|
folders: {
|
@@ -2119,17 +2163,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2119
2163
|
created_at: string;
|
2120
2164
|
updated_at: string;
|
2121
2165
|
active: boolean;
|
2122
|
-
tags: {
|
2123
|
-
id: string;
|
2124
|
-
name: string;
|
2125
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
2126
|
-
group: {
|
2127
|
-
id: string;
|
2128
|
-
name: string;
|
2129
|
-
color: string;
|
2130
|
-
isExclusive: boolean;
|
2131
|
-
};
|
2132
|
-
}[];
|
2133
2166
|
mainPictureUrl: string | null;
|
2134
2167
|
bannerUrl: string | null;
|
2135
2168
|
folderId: string | null;
|
@@ -2178,6 +2211,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2178
2211
|
tagConfirmedId: string;
|
2179
2212
|
supraEventId: string | null;
|
2180
2213
|
} | null;
|
2214
|
+
profileTags: {
|
2215
|
+
id: string;
|
2216
|
+
name: string;
|
2217
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2218
|
+
group: {
|
2219
|
+
id: string;
|
2220
|
+
name: string;
|
2221
|
+
color: string;
|
2222
|
+
isExclusive: boolean;
|
2223
|
+
};
|
2224
|
+
}[];
|
2181
2225
|
}[];
|
2182
2226
|
}[];
|
2183
2227
|
withoutFolder: {
|
@@ -2191,17 +2235,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2191
2235
|
created_at: string;
|
2192
2236
|
updated_at: string;
|
2193
2237
|
active: boolean;
|
2194
|
-
tags: {
|
2195
|
-
id: string;
|
2196
|
-
name: string;
|
2197
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
2198
|
-
group: {
|
2199
|
-
id: string;
|
2200
|
-
name: string;
|
2201
|
-
color: string;
|
2202
|
-
isExclusive: boolean;
|
2203
|
-
};
|
2204
|
-
}[];
|
2205
2238
|
mainPictureUrl: string | null;
|
2206
2239
|
bannerUrl: string | null;
|
2207
2240
|
folderId: string | null;
|
@@ -2250,6 +2283,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2250
2283
|
tagConfirmedId: string;
|
2251
2284
|
supraEventId: string | null;
|
2252
2285
|
} | null;
|
2286
|
+
profileTags: {
|
2287
|
+
id: string;
|
2288
|
+
name: string;
|
2289
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2290
|
+
group: {
|
2291
|
+
id: string;
|
2292
|
+
name: string;
|
2293
|
+
color: string;
|
2294
|
+
isExclusive: boolean;
|
2295
|
+
};
|
2296
|
+
}[];
|
2253
2297
|
}[];
|
2254
2298
|
}>>;
|
2255
2299
|
export declare class GetAllEventsResponseDto extends GetAllEventsResponseDto_base {
|