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
@@ -62,7 +62,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
62
62
|
}>, "strip", z.ZodTypeAny, {
|
63
63
|
id: string;
|
64
64
|
name: string;
|
65
|
-
type: "
|
65
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
66
66
|
created_at: Date;
|
67
67
|
updated_at: Date;
|
68
68
|
groupId: string;
|
@@ -73,7 +73,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
73
73
|
}, {
|
74
74
|
id: string;
|
75
75
|
name: string;
|
76
|
-
type: "
|
76
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
77
77
|
created_at: Date;
|
78
78
|
updated_at: Date;
|
79
79
|
groupId: string;
|
@@ -110,7 +110,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
110
110
|
tags: {
|
111
111
|
id: string;
|
112
112
|
name: string;
|
113
|
-
type: "
|
113
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
114
114
|
created_at: Date;
|
115
115
|
updated_at: Date;
|
116
116
|
groupId: string;
|
@@ -146,7 +146,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
146
146
|
tags: {
|
147
147
|
id: string;
|
148
148
|
name: string;
|
149
|
-
type: "
|
149
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
150
150
|
created_at: Date;
|
151
151
|
updated_at: Date;
|
152
152
|
groupId: string;
|
@@ -186,7 +186,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
186
186
|
tags: {
|
187
187
|
id: string;
|
188
188
|
name: string;
|
189
|
-
type: "
|
189
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
190
190
|
created_at: Date;
|
191
191
|
updated_at: Date;
|
192
192
|
groupId: string;
|
@@ -224,7 +224,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
224
224
|
tags: {
|
225
225
|
id: string;
|
226
226
|
name: string;
|
227
|
-
type: "
|
227
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
228
228
|
created_at: Date;
|
229
229
|
updated_at: Date;
|
230
230
|
groupId: string;
|
@@ -293,7 +293,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
293
293
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
294
294
|
id: string;
|
295
295
|
name: string;
|
296
|
-
type: "
|
296
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
297
297
|
created_at: string;
|
298
298
|
updated_at: string;
|
299
299
|
groupId: string;
|
@@ -304,7 +304,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
304
304
|
}, {
|
305
305
|
id: string;
|
306
306
|
name: string;
|
307
|
-
type: "
|
307
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
308
308
|
created_at: string;
|
309
309
|
updated_at: string;
|
310
310
|
groupId: string;
|
@@ -341,7 +341,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
341
341
|
tags: {
|
342
342
|
id: string;
|
343
343
|
name: string;
|
344
|
-
type: "
|
344
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
345
345
|
created_at: string;
|
346
346
|
updated_at: string;
|
347
347
|
groupId: string;
|
@@ -377,7 +377,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
377
377
|
tags: {
|
378
378
|
id: string;
|
379
379
|
name: string;
|
380
|
-
type: "
|
380
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
381
381
|
created_at: string;
|
382
382
|
updated_at: string;
|
383
383
|
groupId: string;
|
@@ -417,7 +417,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
417
417
|
tags: {
|
418
418
|
id: string;
|
419
419
|
name: string;
|
420
|
-
type: "
|
420
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
421
421
|
created_at: string;
|
422
422
|
updated_at: string;
|
423
423
|
groupId: string;
|
@@ -455,7 +455,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
455
455
|
tags: {
|
456
456
|
id: string;
|
457
457
|
name: string;
|
458
|
-
type: "
|
458
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
459
459
|
created_at: string;
|
460
460
|
updated_at: string;
|
461
461
|
groupId: string;
|
@@ -60,7 +60,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
60
60
|
}>, "strip", z.ZodTypeAny, {
|
61
61
|
id: string;
|
62
62
|
name: string;
|
63
|
-
type: "
|
63
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
64
64
|
created_at: Date;
|
65
65
|
updated_at: Date;
|
66
66
|
groupId: string;
|
@@ -70,7 +70,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
70
70
|
}, {
|
71
71
|
id: string;
|
72
72
|
name: string;
|
73
|
-
type: "
|
73
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
74
74
|
created_at: Date;
|
75
75
|
updated_at: Date;
|
76
76
|
groupId: string;
|
@@ -106,7 +106,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
106
106
|
tags: {
|
107
107
|
id: string;
|
108
108
|
name: string;
|
109
|
-
type: "
|
109
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
110
110
|
created_at: Date;
|
111
111
|
updated_at: Date;
|
112
112
|
groupId: string;
|
@@ -141,7 +141,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
141
141
|
tags: {
|
142
142
|
id: string;
|
143
143
|
name: string;
|
144
|
-
type: "
|
144
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
145
145
|
created_at: Date;
|
146
146
|
updated_at: Date;
|
147
147
|
groupId: string;
|
@@ -180,7 +180,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
180
180
|
tags: {
|
181
181
|
id: string;
|
182
182
|
name: string;
|
183
|
-
type: "
|
183
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
184
184
|
created_at: Date;
|
185
185
|
updated_at: Date;
|
186
186
|
groupId: string;
|
@@ -217,7 +217,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
217
217
|
tags: {
|
218
218
|
id: string;
|
219
219
|
name: string;
|
220
|
-
type: "
|
220
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
221
221
|
created_at: Date;
|
222
222
|
updated_at: Date;
|
223
223
|
groupId: string;
|
@@ -282,7 +282,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
282
282
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
283
283
|
id: string;
|
284
284
|
name: string;
|
285
|
-
type: "
|
285
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
286
286
|
created_at: string;
|
287
287
|
updated_at: string;
|
288
288
|
groupId: string;
|
@@ -292,7 +292,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
292
292
|
}, {
|
293
293
|
id: string;
|
294
294
|
name: string;
|
295
|
-
type: "
|
295
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
296
296
|
created_at: string;
|
297
297
|
updated_at: string;
|
298
298
|
groupId: string;
|
@@ -328,7 +328,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
328
328
|
tags: {
|
329
329
|
id: string;
|
330
330
|
name: string;
|
331
|
-
type: "
|
331
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
332
332
|
created_at: string;
|
333
333
|
updated_at: string;
|
334
334
|
groupId: string;
|
@@ -363,7 +363,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
363
363
|
tags: {
|
364
364
|
id: string;
|
365
365
|
name: string;
|
366
|
-
type: "
|
366
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
367
367
|
created_at: string;
|
368
368
|
updated_at: string;
|
369
369
|
groupId: string;
|
@@ -402,7 +402,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
402
402
|
tags: {
|
403
403
|
id: string;
|
404
404
|
name: string;
|
405
|
-
type: "
|
405
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
406
406
|
created_at: string;
|
407
407
|
updated_at: string;
|
408
408
|
groupId: string;
|
@@ -439,7 +439,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
439
439
|
tags: {
|
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;
|
@@ -512,7 +512,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
512
512
|
}>, "strip", z.ZodTypeAny, {
|
513
513
|
id: string;
|
514
514
|
name: string;
|
515
|
-
type: "
|
515
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
516
516
|
created_at: Date;
|
517
517
|
updated_at: Date;
|
518
518
|
groupId: string;
|
@@ -522,7 +522,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
522
522
|
}, {
|
523
523
|
id: string;
|
524
524
|
name: string;
|
525
|
-
type: "
|
525
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
526
526
|
created_at: Date;
|
527
527
|
updated_at: Date;
|
528
528
|
groupId: string;
|
@@ -558,7 +558,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
558
558
|
tags: {
|
559
559
|
id: string;
|
560
560
|
name: string;
|
561
|
-
type: "
|
561
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
562
562
|
created_at: Date;
|
563
563
|
updated_at: Date;
|
564
564
|
groupId: string;
|
@@ -593,7 +593,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
593
593
|
tags: {
|
594
594
|
id: string;
|
595
595
|
name: string;
|
596
|
-
type: "
|
596
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
597
597
|
created_at: Date;
|
598
598
|
updated_at: Date;
|
599
599
|
groupId: string;
|
@@ -663,7 +663,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
663
663
|
}>, "strip", z.ZodTypeAny, {
|
664
664
|
id: string;
|
665
665
|
name: string;
|
666
|
-
type: "
|
666
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
667
667
|
created_at: Date;
|
668
668
|
updated_at: Date;
|
669
669
|
groupId: string;
|
@@ -673,7 +673,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
673
673
|
}, {
|
674
674
|
id: string;
|
675
675
|
name: string;
|
676
|
-
type: "
|
676
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
677
677
|
created_at: Date;
|
678
678
|
updated_at: Date;
|
679
679
|
groupId: string;
|
@@ -709,7 +709,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
709
709
|
tags: {
|
710
710
|
id: string;
|
711
711
|
name: string;
|
712
|
-
type: "
|
712
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
713
713
|
created_at: Date;
|
714
714
|
updated_at: Date;
|
715
715
|
groupId: string;
|
@@ -744,7 +744,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
744
744
|
tags: {
|
745
745
|
id: string;
|
746
746
|
name: string;
|
747
|
-
type: "
|
747
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
748
748
|
created_at: Date;
|
749
749
|
updated_at: Date;
|
750
750
|
groupId: string;
|
@@ -119,7 +119,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
119
119
|
}>, "strip", z.ZodTypeAny, {
|
120
120
|
id: string;
|
121
121
|
name: string;
|
122
|
-
type: "
|
122
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
123
123
|
created_at: Date;
|
124
124
|
updated_at: Date;
|
125
125
|
groupId: string;
|
@@ -131,7 +131,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
131
131
|
}, {
|
132
132
|
id: string;
|
133
133
|
name: string;
|
134
|
-
type: "
|
134
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
135
135
|
created_at: Date;
|
136
136
|
updated_at: Date;
|
137
137
|
groupId: string;
|
@@ -168,7 +168,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
168
168
|
tags: {
|
169
169
|
id: string;
|
170
170
|
name: string;
|
171
|
-
type: "
|
171
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
172
172
|
created_at: Date;
|
173
173
|
updated_at: Date;
|
174
174
|
groupId: string;
|
@@ -224,7 +224,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
224
224
|
tags: {
|
225
225
|
id: string;
|
226
226
|
name: string;
|
227
|
-
type: "
|
227
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
228
228
|
created_at: Date;
|
229
229
|
updated_at: Date;
|
230
230
|
groupId: string;
|
@@ -370,7 +370,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
370
370
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
371
371
|
id: string;
|
372
372
|
name: string;
|
373
|
-
type: "
|
373
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
374
374
|
created_at: string;
|
375
375
|
updated_at: string;
|
376
376
|
groupId: string;
|
@@ -382,7 +382,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
382
382
|
}, {
|
383
383
|
id: string;
|
384
384
|
name: string;
|
385
|
-
type: "
|
385
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
386
386
|
created_at: string;
|
387
387
|
updated_at: string;
|
388
388
|
groupId: string;
|
@@ -419,7 +419,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
419
419
|
tags: {
|
420
420
|
id: string;
|
421
421
|
name: string;
|
422
|
-
type: "
|
422
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
423
423
|
created_at: string;
|
424
424
|
updated_at: string;
|
425
425
|
groupId: string;
|
@@ -475,7 +475,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
475
475
|
tags: {
|
476
476
|
id: string;
|
477
477
|
name: string;
|
478
|
-
type: "
|
478
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
479
479
|
created_at: string;
|
480
480
|
updated_at: string;
|
481
481
|
groupId: string;
|
@@ -47,14 +47,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
48
48
|
id: string;
|
49
49
|
name: string;
|
50
|
-
type: "
|
50
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
51
51
|
created_at: Date;
|
52
52
|
updated_at: Date;
|
53
53
|
groupId: string;
|
54
54
|
}, {
|
55
55
|
id: string;
|
56
56
|
name: string;
|
57
|
-
type: "
|
57
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
58
58
|
created_at: Date;
|
59
59
|
updated_at: Date;
|
60
60
|
groupId: string;
|
@@ -87,7 +87,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
87
87
|
tags: {
|
88
88
|
id: string;
|
89
89
|
name: string;
|
90
|
-
type: "
|
90
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
91
91
|
created_at: Date;
|
92
92
|
updated_at: Date;
|
93
93
|
groupId: string;
|
@@ -119,7 +119,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
119
119
|
tags: {
|
120
120
|
id: string;
|
121
121
|
name: string;
|
122
|
-
type: "
|
122
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
123
123
|
created_at: Date;
|
124
124
|
updated_at: Date;
|
125
125
|
groupId: string;
|
@@ -155,7 +155,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
155
155
|
tags: {
|
156
156
|
id: string;
|
157
157
|
name: string;
|
158
|
-
type: "
|
158
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
159
159
|
created_at: Date;
|
160
160
|
updated_at: Date;
|
161
161
|
groupId: string;
|
@@ -189,7 +189,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
189
189
|
tags: {
|
190
190
|
id: string;
|
191
191
|
name: string;
|
192
|
-
type: "
|
192
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
193
193
|
created_at: Date;
|
194
194
|
updated_at: Date;
|
195
195
|
groupId: string;
|
@@ -244,14 +244,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
244
244
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
245
245
|
id: string;
|
246
246
|
name: string;
|
247
|
-
type: "
|
247
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
248
248
|
created_at: string;
|
249
249
|
updated_at: string;
|
250
250
|
groupId: string;
|
251
251
|
}, {
|
252
252
|
id: string;
|
253
253
|
name: string;
|
254
|
-
type: "
|
254
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
255
255
|
created_at: string;
|
256
256
|
updated_at: string;
|
257
257
|
groupId: string;
|
@@ -284,7 +284,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
284
284
|
tags: {
|
285
285
|
id: string;
|
286
286
|
name: string;
|
287
|
-
type: "
|
287
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
288
288
|
created_at: string;
|
289
289
|
updated_at: string;
|
290
290
|
groupId: string;
|
@@ -316,7 +316,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
316
316
|
tags: {
|
317
317
|
id: string;
|
318
318
|
name: string;
|
319
|
-
type: "
|
319
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
320
320
|
created_at: string;
|
321
321
|
updated_at: string;
|
322
322
|
groupId: string;
|
@@ -352,7 +352,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
352
352
|
tags: {
|
353
353
|
id: string;
|
354
354
|
name: string;
|
355
|
-
type: "
|
355
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
356
356
|
created_at: string;
|
357
357
|
updated_at: string;
|
358
358
|
groupId: string;
|
@@ -386,7 +386,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
386
386
|
tags: {
|
387
387
|
id: string;
|
388
388
|
name: string;
|
389
|
-
type: "
|
389
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
390
390
|
created_at: string;
|
391
391
|
updated_at: string;
|
392
392
|
groupId: string;
|
@@ -64,7 +64,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
64
64
|
}>, "strip", z.ZodTypeAny, {
|
65
65
|
id: string;
|
66
66
|
name: string;
|
67
|
-
type: "
|
67
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
68
68
|
created_at: Date;
|
69
69
|
updated_at: Date;
|
70
70
|
groupId: string;
|
@@ -76,7 +76,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
76
76
|
}, {
|
77
77
|
id: string;
|
78
78
|
name: string;
|
79
|
-
type: "
|
79
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
80
80
|
created_at: Date;
|
81
81
|
updated_at: Date;
|
82
82
|
groupId: string;
|
@@ -114,7 +114,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
114
114
|
tags: {
|
115
115
|
id: string;
|
116
116
|
name: string;
|
117
|
-
type: "
|
117
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
118
118
|
created_at: Date;
|
119
119
|
updated_at: Date;
|
120
120
|
groupId: string;
|
@@ -151,7 +151,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
151
151
|
tags: {
|
152
152
|
id: string;
|
153
153
|
name: string;
|
154
|
-
type: "
|
154
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
155
155
|
created_at: Date;
|
156
156
|
updated_at: Date;
|
157
157
|
groupId: string;
|
@@ -192,7 +192,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
192
192
|
tags: {
|
193
193
|
id: string;
|
194
194
|
name: string;
|
195
|
-
type: "
|
195
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
196
196
|
created_at: Date;
|
197
197
|
updated_at: Date;
|
198
198
|
groupId: string;
|
@@ -231,7 +231,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
231
231
|
tags: {
|
232
232
|
id: string;
|
233
233
|
name: string;
|
234
|
-
type: "
|
234
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
235
235
|
created_at: Date;
|
236
236
|
updated_at: Date;
|
237
237
|
groupId: string;
|
@@ -304,7 +304,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
304
304
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
305
305
|
id: string;
|
306
306
|
name: string;
|
307
|
-
type: "
|
307
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
308
308
|
created_at: string;
|
309
309
|
updated_at: string;
|
310
310
|
groupId: string;
|
@@ -316,7 +316,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
316
316
|
}, {
|
317
317
|
id: string;
|
318
318
|
name: string;
|
319
|
-
type: "
|
319
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
320
320
|
created_at: string;
|
321
321
|
updated_at: string;
|
322
322
|
groupId: string;
|
@@ -354,7 +354,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
354
354
|
tags: {
|
355
355
|
id: string;
|
356
356
|
name: string;
|
357
|
-
type: "
|
357
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
358
358
|
created_at: string;
|
359
359
|
updated_at: string;
|
360
360
|
groupId: string;
|
@@ -391,7 +391,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
391
391
|
tags: {
|
392
392
|
id: string;
|
393
393
|
name: string;
|
394
|
-
type: "
|
394
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
395
395
|
created_at: string;
|
396
396
|
updated_at: string;
|
397
397
|
groupId: string;
|
@@ -432,7 +432,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
432
432
|
tags: {
|
433
433
|
id: string;
|
434
434
|
name: string;
|
435
|
-
type: "
|
435
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
436
436
|
created_at: string;
|
437
437
|
updated_at: string;
|
438
438
|
groupId: string;
|
@@ -471,7 +471,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
471
471
|
tags: {
|
472
472
|
id: string;
|
473
473
|
name: string;
|
474
|
-
type: "
|
474
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
475
475
|
created_at: string;
|
476
476
|
updated_at: string;
|
477
477
|
groupId: string;
|