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
@@ -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;
|
@@ -47,14 +47,14 @@ export declare const findWithActiveChatResponseSchema: 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;
|
@@ -217,7 +217,7 @@ export declare const findWithActiveChatResponseSchema: 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;
|
@@ -271,7 +271,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
271
271
|
tags: {
|
272
272
|
id: string;
|
273
273
|
name: string;
|
274
|
-
type: "
|
274
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
275
275
|
created_at: Date;
|
276
276
|
updated_at: Date;
|
277
277
|
groupId: string;
|
@@ -329,7 +329,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
329
329
|
tags: {
|
330
330
|
id: string;
|
331
331
|
name: string;
|
332
|
-
type: "
|
332
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
333
333
|
created_at: Date;
|
334
334
|
updated_at: Date;
|
335
335
|
groupId: string;
|
@@ -385,7 +385,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
385
385
|
tags: {
|
386
386
|
id: string;
|
387
387
|
name: string;
|
388
|
-
type: "
|
388
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
389
389
|
created_at: Date;
|
390
390
|
updated_at: Date;
|
391
391
|
groupId: string;
|
@@ -441,14 +441,14 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
441
441
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
442
442
|
id: string;
|
443
443
|
name: string;
|
444
|
-
type: "
|
444
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
445
445
|
created_at: string;
|
446
446
|
updated_at: string;
|
447
447
|
groupId: string;
|
448
448
|
}, {
|
449
449
|
id: string;
|
450
450
|
name: string;
|
451
|
-
type: "
|
451
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
452
452
|
created_at: string;
|
453
453
|
updated_at: string;
|
454
454
|
groupId: string;
|
@@ -608,7 +608,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
608
608
|
tags: {
|
609
609
|
id: string;
|
610
610
|
name: string;
|
611
|
-
type: "
|
611
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
612
612
|
created_at: string;
|
613
613
|
updated_at: string;
|
614
614
|
groupId: string;
|
@@ -662,7 +662,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
662
662
|
tags: {
|
663
663
|
id: string;
|
664
664
|
name: string;
|
665
|
-
type: "
|
665
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
666
666
|
created_at: string;
|
667
667
|
updated_at: string;
|
668
668
|
groupId: string;
|
@@ -720,7 +720,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
720
720
|
tags: {
|
721
721
|
id: string;
|
722
722
|
name: string;
|
723
|
-
type: "
|
723
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
724
724
|
created_at: string;
|
725
725
|
updated_at: string;
|
726
726
|
groupId: string;
|
@@ -776,7 +776,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
776
776
|
tags: {
|
777
777
|
id: string;
|
778
778
|
name: string;
|
779
|
-
type: "
|
779
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
780
780
|
created_at: string;
|
781
781
|
updated_at: string;
|
782
782
|
groupId: string;
|
@@ -44,12 +44,12 @@ export declare const createTagResponseSchema: import("zod").ZodObject<Omit<{
|
|
44
44
|
}, "created_at" | "updated_at">, "strip", import("zod").ZodTypeAny, {
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
|
-
type: "
|
47
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
48
48
|
groupId: string;
|
49
49
|
}, {
|
50
50
|
id: string;
|
51
51
|
name: string;
|
52
|
-
type: "
|
52
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
53
53
|
groupId: string;
|
54
54
|
}>;
|
55
55
|
declare const CreateTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -65,12 +65,12 @@ declare const CreateTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
65
65
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
66
66
|
id: string;
|
67
67
|
name: string;
|
68
|
-
type: "
|
68
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
69
69
|
groupId: string;
|
70
70
|
}, {
|
71
71
|
id: string;
|
72
72
|
name: string;
|
73
|
-
type: "
|
73
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
74
74
|
groupId: string;
|
75
75
|
}>>;
|
76
76
|
export declare class CreateTagResponseDto extends CreateTagResponseDto_base {
|
@@ -13,14 +13,14 @@ export declare const deleteTagResponseSchema: import("zod").ZodObject<{
|
|
13
13
|
}, "strip", import("zod").ZodTypeAny, {
|
14
14
|
id: string;
|
15
15
|
name: string;
|
16
|
-
type: "
|
16
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
17
17
|
created_at: Date;
|
18
18
|
updated_at: Date;
|
19
19
|
groupId: string;
|
20
20
|
}, {
|
21
21
|
id: string;
|
22
22
|
name: string;
|
23
|
-
type: "
|
23
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
24
24
|
created_at: Date;
|
25
25
|
updated_at: Date;
|
26
26
|
groupId: string;
|
@@ -40,14 +40,14 @@ declare const DeleteTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
40
40
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
41
41
|
id: string;
|
42
42
|
name: string;
|
43
|
-
type: "
|
43
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
44
44
|
created_at: string;
|
45
45
|
updated_at: string;
|
46
46
|
groupId: string;
|
47
47
|
}, {
|
48
48
|
id: string;
|
49
49
|
name: string;
|
50
|
-
type: "
|
50
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
51
51
|
created_at: string;
|
52
52
|
updated_at: string;
|
53
53
|
groupId: string;
|
@@ -38,7 +38,7 @@ export declare const findAllTagResponseSchema: z.ZodObject<{
|
|
38
38
|
}>, "strip", z.ZodTypeAny, {
|
39
39
|
id: string;
|
40
40
|
name: string;
|
41
|
-
type: "
|
41
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
42
42
|
created_at: Date;
|
43
43
|
updated_at: Date;
|
44
44
|
groupId: string;
|
@@ -53,7 +53,7 @@ export declare const findAllTagResponseSchema: z.ZodObject<{
|
|
53
53
|
}, {
|
54
54
|
id: string;
|
55
55
|
name: string;
|
56
|
-
type: "
|
56
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
57
57
|
created_at: Date;
|
58
58
|
updated_at: Date;
|
59
59
|
groupId: string;
|
@@ -70,7 +70,7 @@ export declare const findAllTagResponseSchema: z.ZodObject<{
|
|
70
70
|
tags: {
|
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;
|
@@ -87,7 +87,7 @@ export declare const findAllTagResponseSchema: 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;
|
@@ -139,7 +139,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
139
139
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
140
140
|
id: string;
|
141
141
|
name: string;
|
142
|
-
type: "
|
142
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
143
143
|
created_at: string;
|
144
144
|
updated_at: string;
|
145
145
|
groupId: string;
|
@@ -154,7 +154,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
154
154
|
}, {
|
155
155
|
id: string;
|
156
156
|
name: string;
|
157
|
-
type: "
|
157
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
158
158
|
created_at: string;
|
159
159
|
updated_at: string;
|
160
160
|
groupId: string;
|
@@ -171,7 +171,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
171
171
|
tags: {
|
172
172
|
id: string;
|
173
173
|
name: string;
|
174
|
-
type: "
|
174
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
175
175
|
created_at: string;
|
176
176
|
updated_at: string;
|
177
177
|
groupId: string;
|
@@ -188,7 +188,7 @@ declare const FindAllTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
188
188
|
tags: {
|
189
189
|
id: string;
|
190
190
|
name: string;
|
191
|
-
type: "
|
191
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
192
192
|
created_at: string;
|
193
193
|
updated_at: string;
|
194
194
|
groupId: string;
|
@@ -38,7 +38,7 @@ export declare const findByGroupTagResponseSchema: z.ZodObject<{
|
|
38
38
|
}>, "strip", z.ZodTypeAny, {
|
39
39
|
id: string;
|
40
40
|
name: string;
|
41
|
-
type: "
|
41
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
42
42
|
created_at: Date;
|
43
43
|
updated_at: Date;
|
44
44
|
groupId: string;
|
@@ -53,7 +53,7 @@ export declare const findByGroupTagResponseSchema: z.ZodObject<{
|
|
53
53
|
}, {
|
54
54
|
id: string;
|
55
55
|
name: string;
|
56
|
-
type: "
|
56
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
57
57
|
created_at: Date;
|
58
58
|
updated_at: Date;
|
59
59
|
groupId: string;
|
@@ -70,7 +70,7 @@ export declare const findByGroupTagResponseSchema: z.ZodObject<{
|
|
70
70
|
tags: {
|
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;
|
@@ -87,7 +87,7 @@ export declare const findByGroupTagResponseSchema: 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;
|
@@ -139,7 +139,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
139
139
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
140
140
|
id: string;
|
141
141
|
name: string;
|
142
|
-
type: "
|
142
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
143
143
|
created_at: string;
|
144
144
|
updated_at: string;
|
145
145
|
groupId: string;
|
@@ -154,7 +154,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
154
154
|
}, {
|
155
155
|
id: string;
|
156
156
|
name: string;
|
157
|
-
type: "
|
157
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
158
158
|
created_at: string;
|
159
159
|
updated_at: string;
|
160
160
|
groupId: string;
|
@@ -171,7 +171,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
171
171
|
tags: {
|
172
172
|
id: string;
|
173
173
|
name: string;
|
174
|
-
type: "
|
174
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
175
175
|
created_at: string;
|
176
176
|
updated_at: string;
|
177
177
|
groupId: string;
|
@@ -188,7 +188,7 @@ declare const FindByGroupTagResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
188
188
|
tags: {
|
189
189
|
id: string;
|
190
190
|
name: string;
|
191
|
-
type: "
|
191
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
192
192
|
created_at: string;
|
193
193
|
updated_at: string;
|
194
194
|
groupId: string;
|
@@ -37,7 +37,7 @@ export declare const findOneTagResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
37
37
|
}>, "strip", z.ZodTypeAny, {
|
38
38
|
id: string;
|
39
39
|
name: string;
|
40
|
-
type: "
|
40
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
41
41
|
created_at: Date;
|
42
42
|
updated_at: Date;
|
43
43
|
groupId: string;
|
@@ -52,7 +52,7 @@ export declare const findOneTagResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
52
52
|
}, {
|
53
53
|
id: string;
|
54
54
|
name: string;
|
55
|
-
type: "
|
55
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
56
56
|
created_at: Date;
|
57
57
|
updated_at: Date;
|
58
58
|
groupId: string;
|
@@ -102,7 +102,7 @@ declare const FindOneTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
102
102
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
103
103
|
id: string;
|
104
104
|
name: string;
|
105
|
-
type: "
|
105
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
106
106
|
created_at: string;
|
107
107
|
updated_at: string;
|
108
108
|
groupId: string;
|
@@ -117,7 +117,7 @@ declare const FindOneTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
117
117
|
}, {
|
118
118
|
id: string;
|
119
119
|
name: string;
|
120
|
-
type: "
|
120
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
121
121
|
created_at: string;
|
122
122
|
updated_at: string;
|
123
123
|
groupId: string;
|
@@ -14,14 +14,14 @@ export declare const tagSchema: z.ZodObject<{
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
15
15
|
id: string;
|
16
16
|
name: string;
|
17
|
-
type: "
|
17
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
18
18
|
created_at: Date;
|
19
19
|
updated_at: Date;
|
20
20
|
groupId: string;
|
21
21
|
}, {
|
22
22
|
id: string;
|
23
23
|
name: string;
|
24
|
-
type: "
|
24
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
25
25
|
created_at: Date;
|
26
26
|
updated_at: Date;
|
27
27
|
groupId: string;
|
@@ -41,14 +41,14 @@ declare const TagDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObjec
|
|
41
41
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
42
42
|
id: string;
|
43
43
|
name: string;
|
44
|
-
type: "
|
44
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
45
45
|
created_at: string;
|
46
46
|
updated_at: string;
|
47
47
|
groupId: string;
|
48
48
|
}, {
|
49
49
|
id: string;
|
50
50
|
name: string;
|
51
|
-
type: "
|
51
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
52
52
|
created_at: string;
|
53
53
|
updated_at: string;
|
54
54
|
groupId: string;
|
@@ -44,14 +44,14 @@ export declare const updateTagResponseSchema: import("zod").ZodObject<{
|
|
44
44
|
}, "strip", import("zod").ZodTypeAny, {
|
45
45
|
id: string;
|
46
46
|
name: string;
|
47
|
-
type: "
|
47
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
48
48
|
created_at: Date;
|
49
49
|
updated_at: Date;
|
50
50
|
groupId: string;
|
51
51
|
}, {
|
52
52
|
id: string;
|
53
53
|
name: string;
|
54
|
-
type: "
|
54
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
55
55
|
created_at: Date;
|
56
56
|
updated_at: Date;
|
57
57
|
groupId: string;
|
@@ -71,14 +71,14 @@ declare const UpdateTagResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
71
71
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
72
72
|
id: string;
|
73
73
|
name: string;
|
74
|
-
type: "
|
74
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
75
75
|
created_at: string;
|
76
76
|
updated_at: string;
|
77
77
|
groupId: string;
|
78
78
|
}, {
|
79
79
|
id: string;
|
80
80
|
name: string;
|
81
|
-
type: "
|
81
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
82
82
|
created_at: string;
|
83
83
|
updated_at: string;
|
84
84
|
groupId: string;
|