expo-backend-types 0.37.0-EXPO-327-EB-Escanear-entrada.3 → 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/csv/dto/download-all-tables.dto.d.ts +3 -2
- 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 -88
- 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 +35 -28
- package/dist/src/i18n/es.js +201 -79
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/i18n/translate.js +2 -2
- package/dist/src/i18n/translate.js.map +1 -1
- package/dist/src/image/dto/update-image.dto.d.ts +1 -0
- 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/schema/profile.schema.js +7 -17
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js +2 -1
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js.map +1 -1
- 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 -354
- 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 -58
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -1
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +3 -2
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/ticket.dto.js +2 -6
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +26 -54
- package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
- package/dist/src/ticket/exports.d.ts +0 -1
- package/dist/src/ticket/exports.js +0 -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 +21 -14
- package/dist/types/prisma-schema/index-browser.js +16 -9
- package/dist/types/prisma-schema/index.d.ts +2464 -653
- package/dist/types/prisma-schema/index.js +21 -14
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +2 -2
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
- package/dist/types/prisma-schema/runtime/edge.js +18 -18
- package/dist/types/prisma-schema/runtime/index-browser.d.ts +2 -2
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +105 -123
- package/dist/types/prisma-schema/runtime/library.js +56 -56
- package/dist/types/prisma-schema/runtime/react-native.js +25 -25
- package/dist/types/prisma-schema/runtime/wasm.js +19 -19
- package/dist/types/prisma-schema/schema.prisma +23 -9
- package/dist/types/prisma-schema/wasm.js +16 -9
- package/dist/types/schema.d.ts +266 -59
- package/package.json +19 -18
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +0 -34
- package/dist/src/ticket/dto/scan-ticket.dto.js +0 -21
- 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,45 +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
|
-
|
206
|
-
scanned: z.ZodBoolean;
|
207
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
200
|
+
ticketGroupId: z.ZodString;
|
208
201
|
created_at: z.ZodDate;
|
209
202
|
updated_at: z.ZodDate;
|
210
203
|
}, "strip", z.ZodTypeAny, {
|
211
204
|
id: string;
|
212
|
-
type: "
|
205
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
213
206
|
fullName: string;
|
214
207
|
mail: string;
|
215
208
|
eventId: string;
|
216
|
-
status: "BOOKED" | "PAID" | "FREE";
|
217
|
-
seat: number | null;
|
218
209
|
dni: string;
|
219
210
|
created_at: Date;
|
220
211
|
updated_at: Date;
|
221
|
-
|
222
|
-
scannedAt: Date | null;
|
212
|
+
ticketGroupId: string;
|
223
213
|
}, {
|
224
214
|
id: string;
|
225
|
-
type: "
|
215
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
226
216
|
fullName: string;
|
227
217
|
mail: string;
|
228
218
|
eventId: string;
|
229
|
-
status: "BOOKED" | "PAID" | "FREE";
|
230
|
-
seat: number | null;
|
231
219
|
dni: string;
|
232
220
|
created_at: Date;
|
233
221
|
updated_at: Date;
|
234
|
-
|
235
|
-
scannedAt: Date | null;
|
222
|
+
ticketGroupId: string;
|
236
223
|
}>, "many">;
|
237
224
|
}>, "strip", z.ZodTypeAny, {
|
238
225
|
location: string;
|
@@ -247,7 +234,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
247
234
|
tags: {
|
248
235
|
id: string;
|
249
236
|
name: string;
|
250
|
-
type: "
|
237
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
251
238
|
created_at: Date;
|
252
239
|
updated_at: Date;
|
253
240
|
groupId: string;
|
@@ -281,7 +268,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
281
268
|
}[];
|
282
269
|
eventTickets: {
|
283
270
|
id: string;
|
284
|
-
type: "
|
271
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
285
272
|
amount: number | null;
|
286
273
|
price: number | null;
|
287
274
|
}[];
|
@@ -302,17 +289,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
302
289
|
} | null;
|
303
290
|
tickets: {
|
304
291
|
id: string;
|
305
|
-
type: "
|
292
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
306
293
|
fullName: string;
|
307
294
|
mail: string;
|
308
295
|
eventId: string;
|
309
|
-
status: "BOOKED" | "PAID" | "FREE";
|
310
|
-
seat: number | null;
|
311
296
|
dni: string;
|
312
297
|
created_at: Date;
|
313
298
|
updated_at: Date;
|
314
|
-
|
315
|
-
scannedAt: Date | null;
|
299
|
+
ticketGroupId: string;
|
316
300
|
}[];
|
317
301
|
}, {
|
318
302
|
location: string;
|
@@ -327,7 +311,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
327
311
|
tags: {
|
328
312
|
id: string;
|
329
313
|
name: string;
|
330
|
-
type: "
|
314
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
331
315
|
created_at: Date;
|
332
316
|
updated_at: Date;
|
333
317
|
groupId: string;
|
@@ -361,7 +345,7 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
361
345
|
}[];
|
362
346
|
eventTickets: {
|
363
347
|
id: string;
|
364
|
-
type: "
|
348
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
365
349
|
amount: number | null;
|
366
350
|
price: number | null;
|
367
351
|
}[];
|
@@ -382,17 +366,14 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
382
366
|
} | null;
|
383
367
|
tickets: {
|
384
368
|
id: string;
|
385
|
-
type: "
|
369
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
386
370
|
fullName: string;
|
387
371
|
mail: string;
|
388
372
|
eventId: string;
|
389
|
-
status: "BOOKED" | "PAID" | "FREE";
|
390
|
-
seat: number | null;
|
391
373
|
dni: string;
|
392
374
|
created_at: Date;
|
393
375
|
updated_at: Date;
|
394
|
-
|
395
|
-
scannedAt: Date | null;
|
376
|
+
ticketGroupId: string;
|
396
377
|
}[];
|
397
378
|
}>;
|
398
379
|
declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -506,12 +487,12 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
506
487
|
price: z.ZodNullable<z.ZodNumber>;
|
507
488
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
508
489
|
id: string;
|
509
|
-
type: "
|
490
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
510
491
|
amount: number | null;
|
511
492
|
price: number | null;
|
512
493
|
}, {
|
513
494
|
id: string;
|
514
|
-
type: "
|
495
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
515
496
|
amount: number | null;
|
516
497
|
price: number | null;
|
517
498
|
}>, "many">;
|
@@ -552,7 +533,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
552
533
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
553
534
|
id: string;
|
554
535
|
name: string;
|
555
|
-
type: "
|
536
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
556
537
|
created_at: string;
|
557
538
|
updated_at: string;
|
558
539
|
groupId: string;
|
@@ -567,7 +548,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
567
548
|
}, {
|
568
549
|
id: string;
|
569
550
|
name: string;
|
570
|
-
type: "
|
551
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
571
552
|
created_at: string;
|
572
553
|
updated_at: string;
|
573
554
|
groupId: string;
|
@@ -588,45 +569,32 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
588
569
|
STAFF: "STAFF";
|
589
570
|
SPECTATOR: "SPECTATOR";
|
590
571
|
}>;
|
591
|
-
status: z.ZodNativeEnum<{
|
592
|
-
BOOKED: "BOOKED";
|
593
|
-
PAID: "PAID";
|
594
|
-
FREE: "FREE";
|
595
|
-
}>;
|
596
572
|
fullName: z.ZodString;
|
597
573
|
mail: z.ZodString;
|
598
574
|
dni: z.ZodString;
|
599
|
-
|
600
|
-
scanned: z.ZodBoolean;
|
601
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
575
|
+
ticketGroupId: z.ZodString;
|
602
576
|
created_at: z.ZodString;
|
603
577
|
updated_at: z.ZodString;
|
604
578
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
605
579
|
id: string;
|
606
|
-
type: "
|
580
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
607
581
|
fullName: string;
|
608
582
|
mail: string;
|
609
583
|
eventId: string;
|
610
|
-
status: "BOOKED" | "PAID" | "FREE";
|
611
|
-
seat: number | null;
|
612
584
|
dni: string;
|
613
585
|
created_at: string;
|
614
586
|
updated_at: string;
|
615
|
-
|
616
|
-
scannedAt: string | null;
|
587
|
+
ticketGroupId: string;
|
617
588
|
}, {
|
618
589
|
id: string;
|
619
|
-
type: "
|
590
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
620
591
|
fullName: string;
|
621
592
|
mail: string;
|
622
593
|
eventId: string;
|
623
|
-
status: "BOOKED" | "PAID" | "FREE";
|
624
|
-
seat: number | null;
|
625
594
|
dni: string;
|
626
595
|
created_at: string;
|
627
596
|
updated_at: string;
|
628
|
-
|
629
|
-
scannedAt: string | null;
|
597
|
+
ticketGroupId: string;
|
630
598
|
}>, "many">;
|
631
599
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
632
600
|
location: string;
|
@@ -641,7 +609,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
641
609
|
tags: {
|
642
610
|
id: string;
|
643
611
|
name: string;
|
644
|
-
type: "
|
612
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
645
613
|
created_at: string;
|
646
614
|
updated_at: string;
|
647
615
|
groupId: string;
|
@@ -675,7 +643,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
675
643
|
}[];
|
676
644
|
eventTickets: {
|
677
645
|
id: string;
|
678
|
-
type: "
|
646
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
679
647
|
amount: number | null;
|
680
648
|
price: number | null;
|
681
649
|
}[];
|
@@ -696,17 +664,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
696
664
|
} | null;
|
697
665
|
tickets: {
|
698
666
|
id: string;
|
699
|
-
type: "
|
667
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
700
668
|
fullName: string;
|
701
669
|
mail: string;
|
702
670
|
eventId: string;
|
703
|
-
status: "BOOKED" | "PAID" | "FREE";
|
704
|
-
seat: number | null;
|
705
671
|
dni: string;
|
706
672
|
created_at: string;
|
707
673
|
updated_at: string;
|
708
|
-
|
709
|
-
scannedAt: string | null;
|
674
|
+
ticketGroupId: string;
|
710
675
|
}[];
|
711
676
|
}, {
|
712
677
|
location: string;
|
@@ -721,7 +686,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
721
686
|
tags: {
|
722
687
|
id: string;
|
723
688
|
name: string;
|
724
|
-
type: "
|
689
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
725
690
|
created_at: string;
|
726
691
|
updated_at: string;
|
727
692
|
groupId: string;
|
@@ -755,7 +720,7 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
755
720
|
}[];
|
756
721
|
eventTickets: {
|
757
722
|
id: string;
|
758
|
-
type: "
|
723
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
759
724
|
amount: number | null;
|
760
725
|
price: number | null;
|
761
726
|
}[];
|
@@ -776,17 +741,14 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
776
741
|
} | null;
|
777
742
|
tickets: {
|
778
743
|
id: string;
|
779
|
-
type: "
|
744
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
780
745
|
fullName: string;
|
781
746
|
mail: string;
|
782
747
|
eventId: string;
|
783
|
-
status: "BOOKED" | "PAID" | "FREE";
|
784
|
-
seat: number | null;
|
785
748
|
dni: string;
|
786
749
|
created_at: string;
|
787
750
|
updated_at: string;
|
788
|
-
|
789
|
-
scannedAt: string | null;
|
751
|
+
ticketGroupId: string;
|
790
752
|
}[];
|
791
753
|
}>>;
|
792
754
|
export declare class GetByIdEventResponseDto extends GetByIdEventResponseDto_base {
|
@@ -821,14 +783,14 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
821
783
|
}, "strip", z.ZodTypeAny, {
|
822
784
|
id: string;
|
823
785
|
name: string;
|
824
|
-
type: "
|
786
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
825
787
|
created_at: Date;
|
826
788
|
updated_at: Date;
|
827
789
|
groupId: string;
|
828
790
|
}, {
|
829
791
|
id: string;
|
830
792
|
name: string;
|
831
|
-
type: "
|
793
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
832
794
|
created_at: Date;
|
833
795
|
updated_at: Date;
|
834
796
|
groupId: string;
|
@@ -848,14 +810,14 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
848
810
|
}, "strip", z.ZodTypeAny, {
|
849
811
|
id: string;
|
850
812
|
name: string;
|
851
|
-
type: "
|
813
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
852
814
|
created_at: Date;
|
853
815
|
updated_at: Date;
|
854
816
|
groupId: string;
|
855
817
|
}, {
|
856
818
|
id: string;
|
857
819
|
name: string;
|
858
|
-
type: "
|
820
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
859
821
|
created_at: Date;
|
860
822
|
updated_at: Date;
|
861
823
|
groupId: string;
|
@@ -877,7 +839,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
877
839
|
tagAssisted: {
|
878
840
|
id: string;
|
879
841
|
name: string;
|
880
|
-
type: "
|
842
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
881
843
|
created_at: Date;
|
882
844
|
updated_at: Date;
|
883
845
|
groupId: string;
|
@@ -885,7 +847,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
885
847
|
tagConfirmed: {
|
886
848
|
id: string;
|
887
849
|
name: string;
|
888
|
-
type: "
|
850
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
889
851
|
created_at: Date;
|
890
852
|
updated_at: Date;
|
891
853
|
groupId: string;
|
@@ -907,7 +869,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
907
869
|
tagAssisted: {
|
908
870
|
id: string;
|
909
871
|
name: string;
|
910
|
-
type: "
|
872
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
911
873
|
created_at: Date;
|
912
874
|
updated_at: Date;
|
913
875
|
groupId: string;
|
@@ -915,7 +877,7 @@ export declare const getBySupraEventResponseSchema: z.ZodArray<z.ZodObject<z.obj
|
|
915
877
|
tagConfirmed: {
|
916
878
|
id: string;
|
917
879
|
name: string;
|
918
|
-
type: "
|
880
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
919
881
|
created_at: Date;
|
920
882
|
updated_at: Date;
|
921
883
|
groupId: string;
|
@@ -950,14 +912,14 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
950
912
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
951
913
|
id: string;
|
952
914
|
name: string;
|
953
|
-
type: "
|
915
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
954
916
|
created_at: string;
|
955
917
|
updated_at: string;
|
956
918
|
groupId: string;
|
957
919
|
}, {
|
958
920
|
id: string;
|
959
921
|
name: string;
|
960
|
-
type: "
|
922
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
961
923
|
created_at: string;
|
962
924
|
updated_at: string;
|
963
925
|
groupId: string;
|
@@ -977,14 +939,14 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
977
939
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
978
940
|
id: string;
|
979
941
|
name: string;
|
980
|
-
type: "
|
942
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
981
943
|
created_at: string;
|
982
944
|
updated_at: string;
|
983
945
|
groupId: string;
|
984
946
|
}, {
|
985
947
|
id: string;
|
986
948
|
name: string;
|
987
|
-
type: "
|
949
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
988
950
|
created_at: string;
|
989
951
|
updated_at: string;
|
990
952
|
groupId: string;
|
@@ -1006,7 +968,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1006
968
|
tagAssisted: {
|
1007
969
|
id: string;
|
1008
970
|
name: string;
|
1009
|
-
type: "
|
971
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1010
972
|
created_at: string;
|
1011
973
|
updated_at: string;
|
1012
974
|
groupId: string;
|
@@ -1014,7 +976,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1014
976
|
tagConfirmed: {
|
1015
977
|
id: string;
|
1016
978
|
name: string;
|
1017
|
-
type: "
|
979
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1018
980
|
created_at: string;
|
1019
981
|
updated_at: string;
|
1020
982
|
groupId: string;
|
@@ -1036,7 +998,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1036
998
|
tagAssisted: {
|
1037
999
|
id: string;
|
1038
1000
|
name: string;
|
1039
|
-
type: "
|
1001
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1040
1002
|
created_at: string;
|
1041
1003
|
updated_at: string;
|
1042
1004
|
groupId: string;
|
@@ -1044,7 +1006,7 @@ declare const GetBySupraEventResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
1044
1006
|
tagConfirmed: {
|
1045
1007
|
id: string;
|
1046
1008
|
name: string;
|
1047
|
-
type: "
|
1009
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1048
1010
|
created_at: string;
|
1049
1011
|
updated_at: string;
|
1050
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
|