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