expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.7 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.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 +50 -78
- 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 +31 -22
- package/dist/src/i18n/es.js +31 -22
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/schema/profile.schema.d.ts +2 -2
- 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/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- 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 +704 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -56
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.js +2 -5
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -48
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +346 -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 +8 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +11 -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 -7
- package/dist/types/prisma-schema/index-browser.js +12 -4
- package/dist/types/prisma-schema/index.d.ts +2216 -366
- package/dist/types/prisma-schema/index.js +15 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +22 -7
- package/dist/types/prisma-schema/wasm.js +12 -4
- package/dist/types/schema.d.ts +308 -40
- 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,29 @@ 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
|
-
|
205
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
199
|
+
ticketGroupId: z.ZodString;
|
206
200
|
created_at: z.ZodDate;
|
207
201
|
updated_at: z.ZodDate;
|
208
202
|
}, "strip", z.ZodTypeAny, {
|
209
203
|
id: string;
|
210
|
-
type: "
|
204
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
211
205
|
fullName: string;
|
212
206
|
mail: string;
|
213
207
|
eventId: string;
|
214
|
-
status: "BOOKED" | "PAID" | "FREE";
|
215
|
-
seat: number | null;
|
216
|
-
dni: string;
|
217
208
|
created_at: Date;
|
218
209
|
updated_at: Date;
|
210
|
+
ticketGroupId: string;
|
219
211
|
}, {
|
220
212
|
id: string;
|
221
|
-
type: "
|
213
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
222
214
|
fullName: string;
|
223
215
|
mail: string;
|
224
216
|
eventId: string;
|
225
|
-
status: "BOOKED" | "PAID" | "FREE";
|
226
|
-
seat: number | null;
|
227
|
-
dni: string;
|
228
217
|
created_at: Date;
|
229
218
|
updated_at: Date;
|
219
|
+
ticketGroupId: string;
|
230
220
|
}>, "many">;
|
231
221
|
}>, "strip", z.ZodTypeAny, {
|
232
222
|
location: string;
|
@@ -241,7 +231,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
241
231
|
tags: {
|
242
232
|
id: string;
|
243
233
|
name: string;
|
244
|
-
type: "
|
234
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
245
235
|
created_at: Date;
|
246
236
|
updated_at: Date;
|
247
237
|
groupId: string;
|
@@ -275,7 +265,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
275
265
|
}[];
|
276
266
|
eventTickets: {
|
277
267
|
id: string;
|
278
|
-
type: "
|
268
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
279
269
|
amount: number | null;
|
280
270
|
price: number | null;
|
281
271
|
}[];
|
@@ -296,15 +286,13 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
296
286
|
} | null;
|
297
287
|
tickets: {
|
298
288
|
id: string;
|
299
|
-
type: "
|
289
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
300
290
|
fullName: string;
|
301
291
|
mail: string;
|
302
292
|
eventId: string;
|
303
|
-
status: "BOOKED" | "PAID" | "FREE";
|
304
|
-
seat: number | null;
|
305
|
-
dni: string;
|
306
293
|
created_at: Date;
|
307
294
|
updated_at: Date;
|
295
|
+
ticketGroupId: string;
|
308
296
|
}[];
|
309
297
|
}, {
|
310
298
|
location: string;
|
@@ -319,7 +307,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
319
307
|
tags: {
|
320
308
|
id: string;
|
321
309
|
name: string;
|
322
|
-
type: "
|
310
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
323
311
|
created_at: Date;
|
324
312
|
updated_at: Date;
|
325
313
|
groupId: string;
|
@@ -353,7 +341,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
353
341
|
}[];
|
354
342
|
eventTickets: {
|
355
343
|
id: string;
|
356
|
-
type: "
|
344
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
357
345
|
amount: number | null;
|
358
346
|
price: number | null;
|
359
347
|
}[];
|
@@ -374,15 +362,13 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
374
362
|
} | null;
|
375
363
|
tickets: {
|
376
364
|
id: string;
|
377
|
-
type: "
|
365
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
378
366
|
fullName: string;
|
379
367
|
mail: string;
|
380
368
|
eventId: string;
|
381
|
-
status: "BOOKED" | "PAID" | "FREE";
|
382
|
-
seat: number | null;
|
383
|
-
dni: string;
|
384
369
|
created_at: Date;
|
385
370
|
updated_at: Date;
|
371
|
+
ticketGroupId: string;
|
386
372
|
}[];
|
387
373
|
}>;
|
388
374
|
declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -496,12 +482,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
496
482
|
price: z.ZodNullable<z.ZodNumber>;
|
497
483
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
498
484
|
id: string;
|
499
|
-
type: "
|
485
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
500
486
|
amount: number | null;
|
501
487
|
price: number | null;
|
502
488
|
}, {
|
503
489
|
id: string;
|
504
|
-
type: "
|
490
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
505
491
|
amount: number | null;
|
506
492
|
price: number | null;
|
507
493
|
}>, "many">;
|
@@ -542,7 +528,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
542
528
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
543
529
|
id: string;
|
544
530
|
name: string;
|
545
|
-
type: "
|
531
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
546
532
|
created_at: string;
|
547
533
|
updated_at: string;
|
548
534
|
groupId: string;
|
@@ -557,7 +543,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
557
543
|
}, {
|
558
544
|
id: string;
|
559
545
|
name: string;
|
560
|
-
type: "
|
546
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
561
547
|
created_at: string;
|
562
548
|
updated_at: string;
|
563
549
|
groupId: string;
|
@@ -578,39 +564,29 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
578
564
|
STAFF: "STAFF";
|
579
565
|
SPECTATOR: "SPECTATOR";
|
580
566
|
}>;
|
581
|
-
status: z.ZodNativeEnum<{
|
582
|
-
BOOKED: "BOOKED";
|
583
|
-
PAID: "PAID";
|
584
|
-
FREE: "FREE";
|
585
|
-
}>;
|
586
567
|
fullName: z.ZodString;
|
587
568
|
mail: z.ZodString;
|
588
|
-
|
589
|
-
seat: z.ZodNullable<z.ZodNumber>;
|
569
|
+
ticketGroupId: z.ZodString;
|
590
570
|
created_at: z.ZodString;
|
591
571
|
updated_at: z.ZodString;
|
592
572
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
593
573
|
id: string;
|
594
|
-
type: "
|
574
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
595
575
|
fullName: string;
|
596
576
|
mail: string;
|
597
577
|
eventId: string;
|
598
|
-
status: "BOOKED" | "PAID" | "FREE";
|
599
|
-
seat: number | null;
|
600
|
-
dni: string;
|
601
578
|
created_at: string;
|
602
579
|
updated_at: string;
|
580
|
+
ticketGroupId: string;
|
603
581
|
}, {
|
604
582
|
id: string;
|
605
|
-
type: "
|
583
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
606
584
|
fullName: string;
|
607
585
|
mail: string;
|
608
586
|
eventId: string;
|
609
|
-
status: "BOOKED" | "PAID" | "FREE";
|
610
|
-
seat: number | null;
|
611
|
-
dni: string;
|
612
587
|
created_at: string;
|
613
588
|
updated_at: string;
|
589
|
+
ticketGroupId: string;
|
614
590
|
}>, "many">;
|
615
591
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
616
592
|
location: string;
|
@@ -625,7 +601,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
625
601
|
tags: {
|
626
602
|
id: string;
|
627
603
|
name: string;
|
628
|
-
type: "
|
604
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
629
605
|
created_at: string;
|
630
606
|
updated_at: string;
|
631
607
|
groupId: string;
|
@@ -659,7 +635,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
659
635
|
}[];
|
660
636
|
eventTickets: {
|
661
637
|
id: string;
|
662
|
-
type: "
|
638
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
663
639
|
amount: number | null;
|
664
640
|
price: number | null;
|
665
641
|
}[];
|
@@ -680,15 +656,13 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
680
656
|
} | null;
|
681
657
|
tickets: {
|
682
658
|
id: string;
|
683
|
-
type: "
|
659
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
684
660
|
fullName: string;
|
685
661
|
mail: string;
|
686
662
|
eventId: string;
|
687
|
-
status: "BOOKED" | "PAID" | "FREE";
|
688
|
-
seat: number | null;
|
689
|
-
dni: string;
|
690
663
|
created_at: string;
|
691
664
|
updated_at: string;
|
665
|
+
ticketGroupId: string;
|
692
666
|
}[];
|
693
667
|
}, {
|
694
668
|
location: string;
|
@@ -703,7 +677,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
703
677
|
tags: {
|
704
678
|
id: string;
|
705
679
|
name: string;
|
706
|
-
type: "
|
680
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
707
681
|
created_at: string;
|
708
682
|
updated_at: string;
|
709
683
|
groupId: string;
|
@@ -737,7 +711,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
737
711
|
}[];
|
738
712
|
eventTickets: {
|
739
713
|
id: string;
|
740
|
-
type: "
|
714
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
741
715
|
amount: number | null;
|
742
716
|
price: number | null;
|
743
717
|
}[];
|
@@ -758,15 +732,13 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
758
732
|
} | null;
|
759
733
|
tickets: {
|
760
734
|
id: string;
|
761
|
-
type: "
|
735
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
762
736
|
fullName: string;
|
763
737
|
mail: string;
|
764
738
|
eventId: string;
|
765
|
-
status: "BOOKED" | "PAID" | "FREE";
|
766
|
-
seat: number | null;
|
767
|
-
dni: string;
|
768
739
|
created_at: string;
|
769
740
|
updated_at: string;
|
741
|
+
ticketGroupId: string;
|
770
742
|
}[];
|
771
743
|
}>>;
|
772
744
|
export declare class GetByIdEventResponseDto extends GetByIdEventResponseDto_base {
|
@@ -801,14 +773,14 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
801
773
|
}, "strip", z.ZodTypeAny, {
|
802
774
|
id: string;
|
803
775
|
name: string;
|
804
|
-
type: "
|
776
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
805
777
|
created_at: Date;
|
806
778
|
updated_at: Date;
|
807
779
|
groupId: string;
|
808
780
|
}, {
|
809
781
|
id: string;
|
810
782
|
name: string;
|
811
|
-
type: "
|
783
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
812
784
|
created_at: Date;
|
813
785
|
updated_at: Date;
|
814
786
|
groupId: string;
|
@@ -828,14 +800,14 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
828
800
|
}, "strip", z.ZodTypeAny, {
|
829
801
|
id: string;
|
830
802
|
name: string;
|
831
|
-
type: "
|
803
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
832
804
|
created_at: Date;
|
833
805
|
updated_at: Date;
|
834
806
|
groupId: string;
|
835
807
|
}, {
|
836
808
|
id: string;
|
837
809
|
name: string;
|
838
|
-
type: "
|
810
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
839
811
|
created_at: Date;
|
840
812
|
updated_at: Date;
|
841
813
|
groupId: string;
|
@@ -857,7 +829,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
857
829
|
tagAssisted: {
|
858
830
|
id: string;
|
859
831
|
name: string;
|
860
|
-
type: "
|
832
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
861
833
|
created_at: Date;
|
862
834
|
updated_at: Date;
|
863
835
|
groupId: string;
|
@@ -865,7 +837,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
865
837
|
tagConfirmed: {
|
866
838
|
id: string;
|
867
839
|
name: string;
|
868
|
-
type: "
|
840
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
869
841
|
created_at: Date;
|
870
842
|
updated_at: Date;
|
871
843
|
groupId: string;
|
@@ -887,7 +859,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
887
859
|
tagAssisted: {
|
888
860
|
id: string;
|
889
861
|
name: string;
|
890
|
-
type: "
|
862
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
891
863
|
created_at: Date;
|
892
864
|
updated_at: Date;
|
893
865
|
groupId: string;
|
@@ -895,7 +867,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
895
867
|
tagConfirmed: {
|
896
868
|
id: string;
|
897
869
|
name: string;
|
898
|
-
type: "
|
870
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
899
871
|
created_at: Date;
|
900
872
|
updated_at: Date;
|
901
873
|
groupId: string;
|
@@ -930,14 +902,14 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
930
902
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
931
903
|
id: string;
|
932
904
|
name: string;
|
933
|
-
type: "
|
905
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
934
906
|
created_at: string;
|
935
907
|
updated_at: string;
|
936
908
|
groupId: string;
|
937
909
|
}, {
|
938
910
|
id: string;
|
939
911
|
name: string;
|
940
|
-
type: "
|
912
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
941
913
|
created_at: string;
|
942
914
|
updated_at: string;
|
943
915
|
groupId: string;
|
@@ -957,14 +929,14 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
957
929
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
958
930
|
id: string;
|
959
931
|
name: string;
|
960
|
-
type: "
|
932
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
961
933
|
created_at: string;
|
962
934
|
updated_at: string;
|
963
935
|
groupId: string;
|
964
936
|
}, {
|
965
937
|
id: string;
|
966
938
|
name: string;
|
967
|
-
type: "
|
939
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
968
940
|
created_at: string;
|
969
941
|
updated_at: string;
|
970
942
|
groupId: string;
|
@@ -986,7 +958,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
986
958
|
tagAssisted: {
|
987
959
|
id: string;
|
988
960
|
name: string;
|
989
|
-
type: "
|
961
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
990
962
|
created_at: string;
|
991
963
|
updated_at: string;
|
992
964
|
groupId: string;
|
@@ -994,7 +966,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
994
966
|
tagConfirmed: {
|
995
967
|
id: string;
|
996
968
|
name: string;
|
997
|
-
type: "
|
969
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
998
970
|
created_at: string;
|
999
971
|
updated_at: string;
|
1000
972
|
groupId: string;
|
@@ -1016,7 +988,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1016
988
|
tagAssisted: {
|
1017
989
|
id: string;
|
1018
990
|
name: string;
|
1019
|
-
type: "
|
991
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1020
992
|
created_at: string;
|
1021
993
|
updated_at: string;
|
1022
994
|
groupId: string;
|
@@ -1024,7 +996,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1024
996
|
tagConfirmed: {
|
1025
997
|
id: string;
|
1026
998
|
name: string;
|
1027
|
-
type: "
|
999
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1028
1000
|
created_at: string;
|
1029
1001
|
updated_at: string;
|
1030
1002
|
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
|