expo-backend-types 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5 → 0.37.0-EXPO-338-Papa-Francisco.1
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 +8 -8
- package/dist/src/account/dto/get-me.dto.d.ts +16 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +68 -50
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/exports.d.ts +0 -1
- package/dist/src/exports.js +0 -1
- package/dist/src/i18n/es.d.ts +21 -36
- package/dist/src/i18n/es.js +21 -36
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -12
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +12 -14
- package/dist/src/ticket/constants.js +355 -248
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +44 -21
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -1
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +24 -10
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +36 -18
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +36 -18
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +36 -18
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +36 -18
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +36 -18
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +24 -10
- package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
- package/dist/src/ticket/dto/send-email.dto.js +15 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +24 -10
- package/dist/src/ticket/dto/ticket.dto.js +4 -2
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +42 -26
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -2
- package/dist/types/prisma-schema/edge.js +6 -15
- package/dist/types/prisma-schema/index-browser.js +3 -12
- package/dist/types/prisma-schema/index.d.ts +359 -2257
- package/dist/types/prisma-schema/index.js +6 -15
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +7 -23
- package/dist/types/prisma-schema/wasm.js +3 -12
- package/dist/types/schema.d.ts +29 -317
- package/package.json +6 -6
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -596
- package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -50
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -356
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +0 -27
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +0 -55
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +0 -10
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +0 -32
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +0 -20
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +0 -56
- package/dist/src/ticket-group/dto/ticket-group.dto.js +0 -27
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +0 -79
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +0 -18
- package/dist/src/ticket-group/exports.d.ts +0 -5
- package/dist/src/ticket-group/exports.js +0 -22
@@ -111,12 +111,12 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
111
111
|
price: z.ZodNullable<z.ZodNumber>;
|
112
112
|
}, "strip", z.ZodTypeAny, {
|
113
113
|
id: string;
|
114
|
-
type: "
|
114
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
115
115
|
amount: number | null;
|
116
116
|
price: number | null;
|
117
117
|
}, {
|
118
118
|
id: string;
|
119
|
-
type: "
|
119
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
120
120
|
amount: number | null;
|
121
121
|
price: number | null;
|
122
122
|
}>, "many">;
|
@@ -158,7 +158,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
158
158
|
}>, "strip", z.ZodTypeAny, {
|
159
159
|
id: string;
|
160
160
|
name: string;
|
161
|
-
type: "
|
161
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
162
162
|
created_at: Date;
|
163
163
|
updated_at: Date;
|
164
164
|
groupId: string;
|
@@ -173,7 +173,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
173
173
|
}, {
|
174
174
|
id: string;
|
175
175
|
name: string;
|
176
|
-
type: "
|
176
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
177
177
|
created_at: Date;
|
178
178
|
updated_at: Date;
|
179
179
|
groupId: string;
|
@@ -194,32 +194,39 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
194
194
|
STAFF: "STAFF";
|
195
195
|
SPECTATOR: "SPECTATOR";
|
196
196
|
}>;
|
197
|
+
status: z.ZodNativeEnum<{
|
198
|
+
BOOKED: "BOOKED";
|
199
|
+
PAID: "PAID";
|
200
|
+
FREE: "FREE";
|
201
|
+
}>;
|
197
202
|
fullName: z.ZodString;
|
198
203
|
mail: z.ZodString;
|
199
204
|
dni: z.ZodString;
|
200
|
-
|
205
|
+
seat: z.ZodNullable<z.ZodNumber>;
|
201
206
|
created_at: z.ZodDate;
|
202
207
|
updated_at: z.ZodDate;
|
203
208
|
}, "strip", z.ZodTypeAny, {
|
204
209
|
id: string;
|
205
|
-
type: "
|
210
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
206
211
|
fullName: string;
|
207
212
|
mail: string;
|
208
213
|
eventId: string;
|
214
|
+
status: "BOOKED" | "PAID" | "FREE";
|
215
|
+
seat: number | null;
|
209
216
|
dni: string;
|
210
217
|
created_at: Date;
|
211
218
|
updated_at: Date;
|
212
|
-
ticketGroupId: string;
|
213
219
|
}, {
|
214
220
|
id: string;
|
215
|
-
type: "
|
221
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
216
222
|
fullName: string;
|
217
223
|
mail: string;
|
218
224
|
eventId: string;
|
225
|
+
status: "BOOKED" | "PAID" | "FREE";
|
226
|
+
seat: number | null;
|
219
227
|
dni: string;
|
220
228
|
created_at: Date;
|
221
229
|
updated_at: Date;
|
222
|
-
ticketGroupId: string;
|
223
230
|
}>, "many">;
|
224
231
|
}>, "strip", z.ZodTypeAny, {
|
225
232
|
location: string;
|
@@ -234,7 +241,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
234
241
|
tags: {
|
235
242
|
id: string;
|
236
243
|
name: string;
|
237
|
-
type: "
|
244
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
238
245
|
created_at: Date;
|
239
246
|
updated_at: Date;
|
240
247
|
groupId: string;
|
@@ -268,7 +275,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
268
275
|
}[];
|
269
276
|
eventTickets: {
|
270
277
|
id: string;
|
271
|
-
type: "
|
278
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
272
279
|
amount: number | null;
|
273
280
|
price: number | null;
|
274
281
|
}[];
|
@@ -289,14 +296,15 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
289
296
|
} | null;
|
290
297
|
tickets: {
|
291
298
|
id: string;
|
292
|
-
type: "
|
299
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
293
300
|
fullName: string;
|
294
301
|
mail: string;
|
295
302
|
eventId: string;
|
303
|
+
status: "BOOKED" | "PAID" | "FREE";
|
304
|
+
seat: number | null;
|
296
305
|
dni: string;
|
297
306
|
created_at: Date;
|
298
307
|
updated_at: Date;
|
299
|
-
ticketGroupId: string;
|
300
308
|
}[];
|
301
309
|
}, {
|
302
310
|
location: string;
|
@@ -311,7 +319,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
311
319
|
tags: {
|
312
320
|
id: string;
|
313
321
|
name: string;
|
314
|
-
type: "
|
322
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
315
323
|
created_at: Date;
|
316
324
|
updated_at: Date;
|
317
325
|
groupId: string;
|
@@ -345,7 +353,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
345
353
|
}[];
|
346
354
|
eventTickets: {
|
347
355
|
id: string;
|
348
|
-
type: "
|
356
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
349
357
|
amount: number | null;
|
350
358
|
price: number | null;
|
351
359
|
}[];
|
@@ -366,14 +374,15 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
366
374
|
} | null;
|
367
375
|
tickets: {
|
368
376
|
id: string;
|
369
|
-
type: "
|
377
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
370
378
|
fullName: string;
|
371
379
|
mail: string;
|
372
380
|
eventId: string;
|
381
|
+
status: "BOOKED" | "PAID" | "FREE";
|
382
|
+
seat: number | null;
|
373
383
|
dni: string;
|
374
384
|
created_at: Date;
|
375
385
|
updated_at: Date;
|
376
|
-
ticketGroupId: string;
|
377
386
|
}[];
|
378
387
|
}>;
|
379
388
|
declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -487,12 +496,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
487
496
|
price: z.ZodNullable<z.ZodNumber>;
|
488
497
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
489
498
|
id: string;
|
490
|
-
type: "
|
499
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
491
500
|
amount: number | null;
|
492
501
|
price: number | null;
|
493
502
|
}, {
|
494
503
|
id: string;
|
495
|
-
type: "
|
504
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
496
505
|
amount: number | null;
|
497
506
|
price: number | null;
|
498
507
|
}>, "many">;
|
@@ -533,7 +542,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
533
542
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
534
543
|
id: string;
|
535
544
|
name: string;
|
536
|
-
type: "
|
545
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
537
546
|
created_at: string;
|
538
547
|
updated_at: string;
|
539
548
|
groupId: string;
|
@@ -548,7 +557,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
548
557
|
}, {
|
549
558
|
id: string;
|
550
559
|
name: string;
|
551
|
-
type: "
|
560
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
552
561
|
created_at: string;
|
553
562
|
updated_at: string;
|
554
563
|
groupId: string;
|
@@ -569,32 +578,39 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
569
578
|
STAFF: "STAFF";
|
570
579
|
SPECTATOR: "SPECTATOR";
|
571
580
|
}>;
|
581
|
+
status: z.ZodNativeEnum<{
|
582
|
+
BOOKED: "BOOKED";
|
583
|
+
PAID: "PAID";
|
584
|
+
FREE: "FREE";
|
585
|
+
}>;
|
572
586
|
fullName: z.ZodString;
|
573
587
|
mail: z.ZodString;
|
574
588
|
dni: z.ZodString;
|
575
|
-
|
589
|
+
seat: z.ZodNullable<z.ZodNumber>;
|
576
590
|
created_at: z.ZodString;
|
577
591
|
updated_at: z.ZodString;
|
578
592
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
579
593
|
id: string;
|
580
|
-
type: "
|
594
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
581
595
|
fullName: string;
|
582
596
|
mail: string;
|
583
597
|
eventId: string;
|
598
|
+
status: "BOOKED" | "PAID" | "FREE";
|
599
|
+
seat: number | null;
|
584
600
|
dni: string;
|
585
601
|
created_at: string;
|
586
602
|
updated_at: string;
|
587
|
-
ticketGroupId: string;
|
588
603
|
}, {
|
589
604
|
id: string;
|
590
|
-
type: "
|
605
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
591
606
|
fullName: string;
|
592
607
|
mail: string;
|
593
608
|
eventId: string;
|
609
|
+
status: "BOOKED" | "PAID" | "FREE";
|
610
|
+
seat: number | null;
|
594
611
|
dni: string;
|
595
612
|
created_at: string;
|
596
613
|
updated_at: string;
|
597
|
-
ticketGroupId: string;
|
598
614
|
}>, "many">;
|
599
615
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
600
616
|
location: string;
|
@@ -609,7 +625,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
609
625
|
tags: {
|
610
626
|
id: string;
|
611
627
|
name: string;
|
612
|
-
type: "
|
628
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
613
629
|
created_at: string;
|
614
630
|
updated_at: string;
|
615
631
|
groupId: string;
|
@@ -643,7 +659,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
643
659
|
}[];
|
644
660
|
eventTickets: {
|
645
661
|
id: string;
|
646
|
-
type: "
|
662
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
647
663
|
amount: number | null;
|
648
664
|
price: number | null;
|
649
665
|
}[];
|
@@ -664,14 +680,15 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
664
680
|
} | null;
|
665
681
|
tickets: {
|
666
682
|
id: string;
|
667
|
-
type: "
|
683
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
668
684
|
fullName: string;
|
669
685
|
mail: string;
|
670
686
|
eventId: string;
|
687
|
+
status: "BOOKED" | "PAID" | "FREE";
|
688
|
+
seat: number | null;
|
671
689
|
dni: string;
|
672
690
|
created_at: string;
|
673
691
|
updated_at: string;
|
674
|
-
ticketGroupId: string;
|
675
692
|
}[];
|
676
693
|
}, {
|
677
694
|
location: string;
|
@@ -686,7 +703,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
686
703
|
tags: {
|
687
704
|
id: string;
|
688
705
|
name: string;
|
689
|
-
type: "
|
706
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
690
707
|
created_at: string;
|
691
708
|
updated_at: string;
|
692
709
|
groupId: string;
|
@@ -720,7 +737,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
720
737
|
}[];
|
721
738
|
eventTickets: {
|
722
739
|
id: string;
|
723
|
-
type: "
|
740
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
724
741
|
amount: number | null;
|
725
742
|
price: number | null;
|
726
743
|
}[];
|
@@ -741,14 +758,15 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
741
758
|
} | null;
|
742
759
|
tickets: {
|
743
760
|
id: string;
|
744
|
-
type: "
|
761
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
745
762
|
fullName: string;
|
746
763
|
mail: string;
|
747
764
|
eventId: string;
|
765
|
+
status: "BOOKED" | "PAID" | "FREE";
|
766
|
+
seat: number | null;
|
748
767
|
dni: string;
|
749
768
|
created_at: string;
|
750
769
|
updated_at: string;
|
751
|
-
ticketGroupId: string;
|
752
770
|
}[];
|
753
771
|
}>>;
|
754
772
|
export declare class GetByIdEventResponseDto extends GetByIdEventResponseDto_base {
|
@@ -783,14 +801,14 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
783
801
|
}, "strip", z.ZodTypeAny, {
|
784
802
|
id: string;
|
785
803
|
name: string;
|
786
|
-
type: "
|
804
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
787
805
|
created_at: Date;
|
788
806
|
updated_at: Date;
|
789
807
|
groupId: string;
|
790
808
|
}, {
|
791
809
|
id: string;
|
792
810
|
name: string;
|
793
|
-
type: "
|
811
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
794
812
|
created_at: Date;
|
795
813
|
updated_at: Date;
|
796
814
|
groupId: string;
|
@@ -810,14 +828,14 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
810
828
|
}, "strip", z.ZodTypeAny, {
|
811
829
|
id: string;
|
812
830
|
name: string;
|
813
|
-
type: "
|
831
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
814
832
|
created_at: Date;
|
815
833
|
updated_at: Date;
|
816
834
|
groupId: string;
|
817
835
|
}, {
|
818
836
|
id: string;
|
819
837
|
name: string;
|
820
|
-
type: "
|
838
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
821
839
|
created_at: Date;
|
822
840
|
updated_at: Date;
|
823
841
|
groupId: string;
|
@@ -839,7 +857,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
839
857
|
tagAssisted: {
|
840
858
|
id: string;
|
841
859
|
name: string;
|
842
|
-
type: "
|
860
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
843
861
|
created_at: Date;
|
844
862
|
updated_at: Date;
|
845
863
|
groupId: string;
|
@@ -847,7 +865,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
847
865
|
tagConfirmed: {
|
848
866
|
id: string;
|
849
867
|
name: string;
|
850
|
-
type: "
|
868
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
851
869
|
created_at: Date;
|
852
870
|
updated_at: Date;
|
853
871
|
groupId: string;
|
@@ -869,7 +887,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
869
887
|
tagAssisted: {
|
870
888
|
id: string;
|
871
889
|
name: string;
|
872
|
-
type: "
|
890
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
873
891
|
created_at: Date;
|
874
892
|
updated_at: Date;
|
875
893
|
groupId: string;
|
@@ -877,7 +895,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
877
895
|
tagConfirmed: {
|
878
896
|
id: string;
|
879
897
|
name: string;
|
880
|
-
type: "
|
898
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
881
899
|
created_at: Date;
|
882
900
|
updated_at: Date;
|
883
901
|
groupId: string;
|
@@ -912,14 +930,14 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
912
930
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
913
931
|
id: string;
|
914
932
|
name: string;
|
915
|
-
type: "
|
933
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
916
934
|
created_at: string;
|
917
935
|
updated_at: string;
|
918
936
|
groupId: string;
|
919
937
|
}, {
|
920
938
|
id: string;
|
921
939
|
name: string;
|
922
|
-
type: "
|
940
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
923
941
|
created_at: string;
|
924
942
|
updated_at: string;
|
925
943
|
groupId: string;
|
@@ -939,14 +957,14 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
939
957
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
940
958
|
id: string;
|
941
959
|
name: string;
|
942
|
-
type: "
|
960
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
943
961
|
created_at: string;
|
944
962
|
updated_at: string;
|
945
963
|
groupId: string;
|
946
964
|
}, {
|
947
965
|
id: string;
|
948
966
|
name: string;
|
949
|
-
type: "
|
967
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
950
968
|
created_at: string;
|
951
969
|
updated_at: string;
|
952
970
|
groupId: string;
|
@@ -968,7 +986,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
968
986
|
tagAssisted: {
|
969
987
|
id: string;
|
970
988
|
name: string;
|
971
|
-
type: "
|
989
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
972
990
|
created_at: string;
|
973
991
|
updated_at: string;
|
974
992
|
groupId: string;
|
@@ -976,7 +994,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
976
994
|
tagConfirmed: {
|
977
995
|
id: string;
|
978
996
|
name: string;
|
979
|
-
type: "
|
997
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
980
998
|
created_at: string;
|
981
999
|
updated_at: string;
|
982
1000
|
groupId: string;
|
@@ -998,7 +1016,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
998
1016
|
tagAssisted: {
|
999
1017
|
id: string;
|
1000
1018
|
name: string;
|
1001
|
-
type: "
|
1019
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1002
1020
|
created_at: string;
|
1003
1021
|
updated_at: string;
|
1004
1022
|
groupId: string;
|
@@ -1006,7 +1024,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1006
1024
|
tagConfirmed: {
|
1007
1025
|
id: string;
|
1008
1026
|
name: string;
|
1009
|
-
type: "
|
1027
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1010
1028
|
created_at: string;
|
1011
1029
|
updated_at: string;
|
1012
1030
|
groupId: string;
|
@@ -56,11 +56,11 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
56
56
|
}>;
|
57
57
|
price: z.ZodNullable<z.ZodNumber>;
|
58
58
|
}, "id">, "strip", z.ZodTypeAny, {
|
59
|
-
type: "
|
59
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
60
60
|
amount: number | null;
|
61
61
|
price: number | null;
|
62
62
|
}, {
|
63
|
-
type: "
|
63
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
64
64
|
amount: number | null;
|
65
65
|
price: number | null;
|
66
66
|
}>, "many">;
|
@@ -81,7 +81,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
81
81
|
}[];
|
82
82
|
tagsId: string[];
|
83
83
|
eventTickets: {
|
84
|
-
type: "
|
84
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
85
85
|
amount: number | null;
|
86
86
|
price: number | null;
|
87
87
|
}[];
|
@@ -102,7 +102,7 @@ export declare const updateEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
102
102
|
}[];
|
103
103
|
tagsId: string[];
|
104
104
|
eventTickets: {
|
105
|
-
type: "
|
105
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
106
106
|
amount: number | null;
|
107
107
|
price: number | null;
|
108
108
|
}[];
|
@@ -146,11 +146,11 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
146
146
|
amount: z.ZodNullable<z.ZodNumber>;
|
147
147
|
price: z.ZodNullable<z.ZodNumber>;
|
148
148
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
149
|
-
type: "
|
149
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
150
150
|
amount: number | null;
|
151
151
|
price: number | null;
|
152
152
|
}, {
|
153
|
-
type: "
|
153
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
154
154
|
amount: number | null;
|
155
155
|
price: number | null;
|
156
156
|
}>, "many">;
|
@@ -171,7 +171,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
171
171
|
}[];
|
172
172
|
tagsId: string[];
|
173
173
|
eventTickets: {
|
174
|
-
type: "
|
174
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
175
175
|
amount: number | null;
|
176
176
|
price: number | null;
|
177
177
|
}[];
|
@@ -192,7 +192,7 @@ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
192
192
|
}[];
|
193
193
|
tagsId: string[];
|
194
194
|
eventTickets: {
|
195
|
-
type: "
|
195
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
196
196
|
amount: number | null;
|
197
197
|
price: number | null;
|
198
198
|
}[];
|
@@ -252,7 +252,7 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
252
252
|
}>, "strip", z.ZodTypeAny, {
|
253
253
|
id: string;
|
254
254
|
name: string;
|
255
|
-
type: "
|
255
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
256
256
|
created_at: Date;
|
257
257
|
updated_at: Date;
|
258
258
|
groupId: string;
|
@@ -267,7 +267,7 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
267
267
|
}, {
|
268
268
|
id: string;
|
269
269
|
name: string;
|
270
|
-
type: "
|
270
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
271
271
|
created_at: Date;
|
272
272
|
updated_at: Date;
|
273
273
|
groupId: string;
|
@@ -291,12 +291,12 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
291
291
|
price: z.ZodNullable<z.ZodNumber>;
|
292
292
|
}, "strip", z.ZodTypeAny, {
|
293
293
|
id: string;
|
294
|
-
type: "
|
294
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
295
295
|
amount: number | null;
|
296
296
|
price: number | null;
|
297
297
|
}, {
|
298
298
|
id: string;
|
299
|
-
type: "
|
299
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
300
300
|
amount: number | null;
|
301
301
|
price: number | null;
|
302
302
|
}>, "many">;
|
@@ -316,14 +316,14 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
316
316
|
supraEventId: string | null;
|
317
317
|
eventTickets: {
|
318
318
|
id: string;
|
319
|
-
type: "
|
319
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
320
320
|
amount: number | null;
|
321
321
|
price: number | null;
|
322
322
|
}[];
|
323
323
|
tagAssisted: {
|
324
324
|
id: string;
|
325
325
|
name: string;
|
326
|
-
type: "
|
326
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
327
327
|
created_at: Date;
|
328
328
|
updated_at: Date;
|
329
329
|
groupId: string;
|
@@ -352,14 +352,14 @@ export declare const updateEventResponseSchema: z.ZodObject<z.objectUtil.extendS
|
|
352
352
|
supraEventId: string | null;
|
353
353
|
eventTickets: {
|
354
354
|
id: string;
|
355
|
-
type: "
|
355
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
356
356
|
amount: number | null;
|
357
357
|
price: number | null;
|
358
358
|
}[];
|
359
359
|
tagAssisted: {
|
360
360
|
id: string;
|
361
361
|
name: string;
|
362
|
-
type: "
|
362
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
363
363
|
created_at: Date;
|
364
364
|
updated_at: Date;
|
365
365
|
groupId: string;
|
@@ -424,7 +424,7 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
424
424
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
425
425
|
id: string;
|
426
426
|
name: string;
|
427
|
-
type: "
|
427
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
428
428
|
created_at: string;
|
429
429
|
updated_at: string;
|
430
430
|
groupId: string;
|
@@ -439,7 +439,7 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
439
439
|
}, {
|
440
440
|
id: string;
|
441
441
|
name: string;
|
442
|
-
type: "
|
442
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
443
443
|
created_at: string;
|
444
444
|
updated_at: string;
|
445
445
|
groupId: string;
|
@@ -463,12 +463,12 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
463
463
|
price: z.ZodNullable<z.ZodNumber>;
|
464
464
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
465
465
|
id: string;
|
466
|
-
type: "
|
466
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
467
467
|
amount: number | null;
|
468
468
|
price: number | null;
|
469
469
|
}, {
|
470
470
|
id: string;
|
471
|
-
type: "
|
471
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
472
472
|
amount: number | null;
|
473
473
|
price: number | null;
|
474
474
|
}>, "many">;
|
@@ -488,14 +488,14 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
488
488
|
supraEventId: string | null;
|
489
489
|
eventTickets: {
|
490
490
|
id: string;
|
491
|
-
type: "
|
491
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
492
492
|
amount: number | null;
|
493
493
|
price: number | null;
|
494
494
|
}[];
|
495
495
|
tagAssisted: {
|
496
496
|
id: string;
|
497
497
|
name: string;
|
498
|
-
type: "
|
498
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
499
499
|
created_at: string;
|
500
500
|
updated_at: string;
|
501
501
|
groupId: string;
|
@@ -524,14 +524,14 @@ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
524
524
|
supraEventId: string | null;
|
525
525
|
eventTickets: {
|
526
526
|
id: string;
|
527
|
-
type: "
|
527
|
+
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
528
528
|
amount: number | null;
|
529
529
|
price: number | null;
|
530
530
|
}[];
|
531
531
|
tagAssisted: {
|
532
532
|
id: string;
|
533
533
|
name: string;
|
534
|
-
type: "
|
534
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
535
535
|
created_at: string;
|
536
536
|
updated_at: string;
|
537
537
|
groupId: string;
|
package/dist/src/exports.d.ts
CHANGED
package/dist/src/exports.js
CHANGED
@@ -30,6 +30,5 @@ __exportStar(require("./schema/exports"), exports);
|
|
30
30
|
__exportStar(require("./shared/dto-modification/zod-without-dates"), exports);
|
31
31
|
__exportStar(require("./tag-group/exports"), exports);
|
32
32
|
__exportStar(require("./tag/exports"), exports);
|
33
|
-
__exportStar(require("./ticket-group/exports"), exports);
|
34
33
|
__exportStar(require("./ticket/exports"), exports);
|
35
34
|
//# sourceMappingURL=exports.js.map
|