expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.1 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.3
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/event/dto/get-all-statistics.dto.d.ts +5 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +7 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +167 -3
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +33 -0
- package/package.json +1 -1
@@ -31,6 +31,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
31
31
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
32
32
|
created_at: z.ZodDate;
|
33
33
|
updated_at: z.ZodDate;
|
34
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
34
35
|
}, {
|
35
36
|
tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
36
37
|
id: z.ZodString;
|
@@ -112,6 +113,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
112
113
|
residenceLocationId: string | null;
|
113
114
|
isInTrash: boolean;
|
114
115
|
movedToTrashDate: Date | null;
|
116
|
+
referralCode: string | null;
|
115
117
|
tags: {
|
116
118
|
id: string;
|
117
119
|
name: string;
|
@@ -149,6 +151,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
149
151
|
residenceLocationId: string | null;
|
150
152
|
isInTrash: boolean;
|
151
153
|
movedToTrashDate: Date | null;
|
154
|
+
referralCode: string | null;
|
152
155
|
tags: {
|
153
156
|
id: string;
|
154
157
|
name: string;
|
@@ -190,6 +193,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
190
193
|
residenceLocationId: string | null;
|
191
194
|
isInTrash: boolean;
|
192
195
|
movedToTrashDate: Date | null;
|
196
|
+
referralCode: string | null;
|
193
197
|
tags: {
|
194
198
|
id: string;
|
195
199
|
name: string;
|
@@ -229,6 +233,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
229
233
|
residenceLocationId: string | null;
|
230
234
|
isInTrash: boolean;
|
231
235
|
movedToTrashDate: Date | null;
|
236
|
+
referralCode: string | null;
|
232
237
|
tags: {
|
233
238
|
id: string;
|
234
239
|
name: string;
|
@@ -277,6 +282,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
277
282
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
278
283
|
created_at: z.ZodString;
|
279
284
|
updated_at: z.ZodString;
|
285
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
280
286
|
tags: z.ZodArray<z.ZodObject<{
|
281
287
|
id: z.ZodString;
|
282
288
|
name: z.ZodString;
|
@@ -353,6 +359,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
353
359
|
residenceLocationId: string | null;
|
354
360
|
isInTrash: boolean;
|
355
361
|
movedToTrashDate: string | null;
|
362
|
+
referralCode: string | null;
|
356
363
|
tags: {
|
357
364
|
id: string;
|
358
365
|
name: string;
|
@@ -390,6 +397,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
390
397
|
residenceLocationId: string | null;
|
391
398
|
isInTrash: boolean;
|
392
399
|
movedToTrashDate: string | null;
|
400
|
+
referralCode: string | null;
|
393
401
|
tags: {
|
394
402
|
id: string;
|
395
403
|
name: string;
|
@@ -431,6 +439,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
431
439
|
residenceLocationId: string | null;
|
432
440
|
isInTrash: boolean;
|
433
441
|
movedToTrashDate: string | null;
|
442
|
+
referralCode: string | null;
|
434
443
|
tags: {
|
435
444
|
id: string;
|
436
445
|
name: string;
|
@@ -470,6 +479,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
470
479
|
residenceLocationId: string | null;
|
471
480
|
isInTrash: boolean;
|
472
481
|
movedToTrashDate: string | null;
|
482
|
+
referralCode: string | null;
|
473
483
|
tags: {
|
474
484
|
id: string;
|
475
485
|
name: string;
|
@@ -31,6 +31,7 @@ export declare const findTrashResponseSchema: z.ZodObject<{
|
|
31
31
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
32
32
|
created_at: z.ZodDate;
|
33
33
|
updated_at: z.ZodDate;
|
34
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
34
35
|
}, "id" | "phoneNumber" | "fullName" | "profilePictureUrl" | "created_at" | "isInTrash" | "movedToTrashDate">, "strip", z.ZodTypeAny, {
|
35
36
|
id: string;
|
36
37
|
phoneNumber: string;
|
@@ -31,6 +31,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
31
31
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
32
32
|
created_at: z.ZodDate;
|
33
33
|
updated_at: z.ZodDate;
|
34
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
34
35
|
}, {
|
35
36
|
tags: z.ZodArray<z.ZodObject<{
|
36
37
|
id: z.ZodString;
|
@@ -194,6 +195,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
194
195
|
residenceLocationId: string | null;
|
195
196
|
isInTrash: boolean;
|
196
197
|
movedToTrashDate: Date | null;
|
198
|
+
referralCode: string | null;
|
197
199
|
messages: {
|
198
200
|
message: {
|
199
201
|
id: string;
|
@@ -248,6 +250,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
248
250
|
residenceLocationId: string | null;
|
249
251
|
isInTrash: boolean;
|
250
252
|
movedToTrashDate: Date | null;
|
253
|
+
referralCode: string | null;
|
251
254
|
messages: {
|
252
255
|
message: {
|
253
256
|
id: string;
|
@@ -306,6 +309,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
306
309
|
residenceLocationId: string | null;
|
307
310
|
isInTrash: boolean;
|
308
311
|
movedToTrashDate: Date | null;
|
312
|
+
referralCode: string | null;
|
309
313
|
messages: {
|
310
314
|
message: {
|
311
315
|
id: string;
|
@@ -362,6 +366,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
362
366
|
residenceLocationId: string | null;
|
363
367
|
isInTrash: boolean;
|
364
368
|
movedToTrashDate: Date | null;
|
369
|
+
referralCode: string | null;
|
365
370
|
messages: {
|
366
371
|
message: {
|
367
372
|
id: string;
|
@@ -427,6 +432,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
427
432
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
428
433
|
created_at: z.ZodString;
|
429
434
|
updated_at: z.ZodString;
|
435
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
430
436
|
tags: z.ZodArray<z.ZodObject<{
|
431
437
|
id: z.ZodString;
|
432
438
|
name: z.ZodString;
|
@@ -586,6 +592,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
586
592
|
residenceLocationId: string | null;
|
587
593
|
isInTrash: boolean;
|
588
594
|
movedToTrashDate: string | null;
|
595
|
+
referralCode: string | null;
|
589
596
|
messages: {
|
590
597
|
message: {
|
591
598
|
id: string;
|
@@ -640,6 +647,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
640
647
|
residenceLocationId: string | null;
|
641
648
|
isInTrash: boolean;
|
642
649
|
movedToTrashDate: string | null;
|
650
|
+
referralCode: string | null;
|
643
651
|
messages: {
|
644
652
|
message: {
|
645
653
|
id: string;
|
@@ -698,6 +706,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
698
706
|
residenceLocationId: string | null;
|
699
707
|
isInTrash: boolean;
|
700
708
|
movedToTrashDate: string | null;
|
709
|
+
referralCode: string | null;
|
701
710
|
messages: {
|
702
711
|
message: {
|
703
712
|
id: string;
|
@@ -754,6 +763,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
754
763
|
residenceLocationId: string | null;
|
755
764
|
isInTrash: boolean;
|
756
765
|
movedToTrashDate: string | null;
|
766
|
+
referralCode: string | null;
|
757
767
|
messages: {
|
758
768
|
message: {
|
759
769
|
id: string;
|
@@ -29,6 +29,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
29
29
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
30
30
|
created_at: import("zod").ZodString;
|
31
31
|
updated_at: import("zod").ZodString;
|
32
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
32
33
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
33
34
|
id: string;
|
34
35
|
username: string | null;
|
@@ -54,6 +55,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
54
55
|
residenceLocationId: string | null;
|
55
56
|
isInTrash: boolean;
|
56
57
|
movedToTrashDate: string | null;
|
58
|
+
referralCode: string | null;
|
57
59
|
}, {
|
58
60
|
id: string;
|
59
61
|
username: string | null;
|
@@ -78,6 +80,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
78
80
|
residenceLocationId: string | null;
|
79
81
|
isInTrash: boolean;
|
80
82
|
movedToTrashDate: string | null;
|
83
|
+
referralCode: string | null;
|
81
84
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
82
85
|
}>>;
|
83
86
|
export declare class ProfileDto extends ProfileDto_base {
|
@@ -275,6 +275,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
275
275
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
276
276
|
created_at: z.ZodDate;
|
277
277
|
updated_at: z.ZodDate;
|
278
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
278
279
|
}, "strip", z.ZodTypeAny, {
|
279
280
|
id: string;
|
280
281
|
username: string | null;
|
@@ -300,6 +301,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
300
301
|
residenceLocationId: string | null;
|
301
302
|
isInTrash: boolean;
|
302
303
|
movedToTrashDate: Date | null;
|
304
|
+
referralCode: string | null;
|
303
305
|
}, {
|
304
306
|
id: string;
|
305
307
|
username: string | null;
|
@@ -324,6 +326,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
324
326
|
residenceLocationId: string | null;
|
325
327
|
isInTrash: boolean;
|
326
328
|
movedToTrashDate: Date | null;
|
329
|
+
referralCode: string | null;
|
327
330
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
328
331
|
}>;
|
329
332
|
declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -357,6 +360,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
357
360
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
358
361
|
created_at: z.ZodString;
|
359
362
|
updated_at: z.ZodString;
|
363
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
360
364
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
361
365
|
id: string;
|
362
366
|
username: string | null;
|
@@ -382,6 +386,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
382
386
|
residenceLocationId: string | null;
|
383
387
|
isInTrash: boolean;
|
384
388
|
movedToTrashDate: string | null;
|
389
|
+
referralCode: string | null;
|
385
390
|
}, {
|
386
391
|
id: string;
|
387
392
|
username: string | null;
|
@@ -406,6 +411,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
406
411
|
residenceLocationId: string | null;
|
407
412
|
isInTrash: boolean;
|
408
413
|
movedToTrashDate: string | null;
|
414
|
+
referralCode: string | null;
|
409
415
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
410
416
|
}>>;
|
411
417
|
export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
|
@@ -30,6 +30,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
30
30
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
31
31
|
created_at: z.ZodDate;
|
32
32
|
updated_at: z.ZodDate;
|
33
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
33
34
|
}, "strip", z.ZodTypeAny, {
|
34
35
|
id: string;
|
35
36
|
username: string | null;
|
@@ -55,6 +56,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
55
56
|
residenceLocationId: string | null;
|
56
57
|
isInTrash: boolean;
|
57
58
|
movedToTrashDate: Date | null;
|
59
|
+
referralCode: string | null;
|
58
60
|
}, {
|
59
61
|
id: string;
|
60
62
|
username: string | null;
|
@@ -79,5 +81,6 @@ export declare const profileSchema: z.ZodObject<{
|
|
79
81
|
residenceLocationId: string | null;
|
80
82
|
isInTrash: boolean;
|
81
83
|
movedToTrashDate: Date | null;
|
84
|
+
referralCode: string | null;
|
82
85
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
83
86
|
}>;
|
@@ -141,5 +141,6 @@ exports.profileSchema = zod_1.default.object({
|
|
141
141
|
movedToTrashDate: zod_1.default.coerce.date().nullable(),
|
142
142
|
created_at: zod_1.default.date(),
|
143
143
|
updated_at: zod_1.default.date(),
|
144
|
+
referralCode: zod_1.default.string().nullable(),
|
144
145
|
});
|
145
146
|
//# sourceMappingURL=profile.schema.js.map
|
@@ -53,6 +53,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
53
53
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
54
54
|
created_at: z.ZodDate;
|
55
55
|
updated_at: z.ZodDate;
|
56
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
56
57
|
}, "strip", z.ZodTypeAny, {
|
57
58
|
id: string;
|
58
59
|
username: string | null;
|
@@ -78,6 +79,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
78
79
|
residenceLocationId: string | null;
|
79
80
|
isInTrash: boolean;
|
80
81
|
movedToTrashDate: Date | null;
|
82
|
+
referralCode: string | null;
|
81
83
|
}, {
|
82
84
|
id: string;
|
83
85
|
username: string | null;
|
@@ -102,6 +104,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
102
104
|
residenceLocationId: string | null;
|
103
105
|
isInTrash: boolean;
|
104
106
|
movedToTrashDate: Date | null;
|
107
|
+
referralCode: string | null;
|
105
108
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
106
109
|
}>, "many">;
|
107
110
|
}, "strip", z.ZodTypeAny, {
|
@@ -130,6 +133,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
130
133
|
residenceLocationId: string | null;
|
131
134
|
isInTrash: boolean;
|
132
135
|
movedToTrashDate: Date | null;
|
136
|
+
referralCode: string | null;
|
133
137
|
}[];
|
134
138
|
}, {
|
135
139
|
profiles: {
|
@@ -156,6 +160,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
156
160
|
residenceLocationId: string | null;
|
157
161
|
isInTrash: boolean;
|
158
162
|
movedToTrashDate: Date | null;
|
163
|
+
referralCode: string | null;
|
159
164
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
160
165
|
}[];
|
161
166
|
}>;
|
@@ -191,6 +196,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
191
196
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
192
197
|
created_at: z.ZodString;
|
193
198
|
updated_at: z.ZodString;
|
199
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
194
200
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
195
201
|
id: string;
|
196
202
|
username: string | null;
|
@@ -216,6 +222,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
216
222
|
residenceLocationId: string | null;
|
217
223
|
isInTrash: boolean;
|
218
224
|
movedToTrashDate: string | null;
|
225
|
+
referralCode: string | null;
|
219
226
|
}, {
|
220
227
|
id: string;
|
221
228
|
username: string | null;
|
@@ -240,6 +247,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
240
247
|
residenceLocationId: string | null;
|
241
248
|
isInTrash: boolean;
|
242
249
|
movedToTrashDate: string | null;
|
250
|
+
referralCode: string | null;
|
243
251
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
244
252
|
}>, "many">;
|
245
253
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -268,6 +276,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
268
276
|
residenceLocationId: string | null;
|
269
277
|
isInTrash: boolean;
|
270
278
|
movedToTrashDate: string | null;
|
279
|
+
referralCode: string | null;
|
271
280
|
}[];
|
272
281
|
}, {
|
273
282
|
profiles: {
|
@@ -294,6 +303,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
294
303
|
residenceLocationId: string | null;
|
295
304
|
isInTrash: boolean;
|
296
305
|
movedToTrashDate: string | null;
|
306
|
+
referralCode: string | null;
|
297
307
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
298
308
|
}[];
|
299
309
|
}>>;
|
@@ -53,6 +53,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
53
53
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
54
54
|
created_at: z.ZodDate;
|
55
55
|
updated_at: z.ZodDate;
|
56
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
56
57
|
}, "strip", z.ZodTypeAny, {
|
57
58
|
id: string;
|
58
59
|
username: string | null;
|
@@ -78,6 +79,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
78
79
|
residenceLocationId: string | null;
|
79
80
|
isInTrash: boolean;
|
80
81
|
movedToTrashDate: Date | null;
|
82
|
+
referralCode: string | null;
|
81
83
|
}, {
|
82
84
|
id: string;
|
83
85
|
username: string | null;
|
@@ -102,6 +104,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
102
104
|
residenceLocationId: string | null;
|
103
105
|
isInTrash: boolean;
|
104
106
|
movedToTrashDate: Date | null;
|
107
|
+
referralCode: string | null;
|
105
108
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
106
109
|
}>, "many">;
|
107
110
|
}, "strip", z.ZodTypeAny, {
|
@@ -130,6 +133,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
130
133
|
residenceLocationId: string | null;
|
131
134
|
isInTrash: boolean;
|
132
135
|
movedToTrashDate: Date | null;
|
136
|
+
referralCode: string | null;
|
133
137
|
}[];
|
134
138
|
}, {
|
135
139
|
profiles: {
|
@@ -156,6 +160,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
156
160
|
residenceLocationId: string | null;
|
157
161
|
isInTrash: boolean;
|
158
162
|
movedToTrashDate: Date | null;
|
163
|
+
referralCode: string | null;
|
159
164
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
160
165
|
}[];
|
161
166
|
}>;
|
@@ -191,6 +196,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
191
196
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
192
197
|
created_at: z.ZodString;
|
193
198
|
updated_at: z.ZodString;
|
199
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
194
200
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
195
201
|
id: string;
|
196
202
|
username: string | null;
|
@@ -216,6 +222,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
216
222
|
residenceLocationId: string | null;
|
217
223
|
isInTrash: boolean;
|
218
224
|
movedToTrashDate: string | null;
|
225
|
+
referralCode: string | null;
|
219
226
|
}, {
|
220
227
|
id: string;
|
221
228
|
username: string | null;
|
@@ -240,6 +247,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
240
247
|
residenceLocationId: string | null;
|
241
248
|
isInTrash: boolean;
|
242
249
|
movedToTrashDate: string | null;
|
250
|
+
referralCode: string | null;
|
243
251
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
244
252
|
}>, "many">;
|
245
253
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -268,6 +276,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
268
276
|
residenceLocationId: string | null;
|
269
277
|
isInTrash: boolean;
|
270
278
|
movedToTrashDate: string | null;
|
279
|
+
referralCode: string | null;
|
271
280
|
}[];
|
272
281
|
}, {
|
273
282
|
profiles: {
|
@@ -294,6 +303,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
294
303
|
residenceLocationId: string | null;
|
295
304
|
isInTrash: boolean;
|
296
305
|
movedToTrashDate: string | null;
|
306
|
+
referralCode: string | null;
|
297
307
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
298
308
|
}[];
|
299
309
|
}>>;
|
@@ -15,6 +15,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
18
19
|
created_at: z.ZodDate;
|
19
20
|
updated_at: z.ZodDate;
|
20
21
|
}, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
|
@@ -135,6 +136,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
135
136
|
scanned: z.ZodBoolean;
|
136
137
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
137
138
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
139
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
138
140
|
created_at: z.ZodDate;
|
139
141
|
updated_at: z.ZodDate;
|
140
142
|
}, {
|
@@ -218,6 +220,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
218
220
|
seat: number | null;
|
219
221
|
created_at: Date;
|
220
222
|
updated_at: Date;
|
223
|
+
referralCode: string | null;
|
221
224
|
scanned: boolean;
|
222
225
|
scannedAt: Date | null;
|
223
226
|
ticketGroupId: string | null;
|
@@ -249,6 +252,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
249
252
|
seat: number | null;
|
250
253
|
created_at: Date;
|
251
254
|
updated_at: Date;
|
255
|
+
referralCode: string | null;
|
252
256
|
scanned: boolean;
|
253
257
|
scannedAt: Date | null;
|
254
258
|
ticketGroupId: string | null;
|
@@ -268,6 +272,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
268
272
|
scanned: z.ZodBoolean;
|
269
273
|
scannedAt: z.ZodNullable<z.ZodString>;
|
270
274
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
275
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
271
276
|
created_at: z.ZodString;
|
272
277
|
updated_at: z.ZodString;
|
273
278
|
event: z.ZodObject<{
|
@@ -350,6 +355,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
350
355
|
seat: number | null;
|
351
356
|
created_at: string;
|
352
357
|
updated_at: string;
|
358
|
+
referralCode: string | null;
|
353
359
|
scanned: boolean;
|
354
360
|
scannedAt: string | null;
|
355
361
|
ticketGroupId: string | null;
|
@@ -381,6 +387,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
381
387
|
seat: number | null;
|
382
388
|
created_at: string;
|
383
389
|
updated_at: string;
|
390
|
+
referralCode: string | null;
|
384
391
|
scanned: boolean;
|
385
392
|
scannedAt: string | null;
|
386
393
|
ticketGroupId: string | null;
|
@@ -13,6 +13,7 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
13
13
|
scanned: import("zod").ZodBoolean;
|
14
14
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15
15
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
16
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
16
17
|
created_at: import("zod").ZodDate;
|
17
18
|
updated_at: import("zod").ZodDate;
|
18
19
|
}, "type" | "fullName" | "mail" | "eventId" | "dni">, {
|
@@ -81,6 +82,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
81
82
|
scanned: import("zod").ZodBoolean;
|
82
83
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
83
84
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
85
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
84
86
|
created_at: import("zod").ZodDate;
|
85
87
|
updated_at: import("zod").ZodDate;
|
86
88
|
}, {
|
@@ -164,6 +166,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
164
166
|
seat: number | null;
|
165
167
|
created_at: Date;
|
166
168
|
updated_at: Date;
|
169
|
+
referralCode: string | null;
|
167
170
|
scanned: boolean;
|
168
171
|
scannedAt: Date | null;
|
169
172
|
ticketGroupId: string | null;
|
@@ -195,6 +198,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
195
198
|
seat: number | null;
|
196
199
|
created_at: Date;
|
197
200
|
updated_at: Date;
|
201
|
+
referralCode: string | null;
|
198
202
|
scanned: boolean;
|
199
203
|
scannedAt: Date | null;
|
200
204
|
ticketGroupId: string | null;
|
@@ -214,6 +218,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
214
218
|
scanned: import("zod").ZodBoolean;
|
215
219
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
216
220
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
221
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
217
222
|
created_at: import("zod").ZodString;
|
218
223
|
updated_at: import("zod").ZodString;
|
219
224
|
event: import("zod").ZodObject<{
|
@@ -296,6 +301,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
296
301
|
seat: number | null;
|
297
302
|
created_at: string;
|
298
303
|
updated_at: string;
|
304
|
+
referralCode: string | null;
|
299
305
|
scanned: boolean;
|
300
306
|
scannedAt: string | null;
|
301
307
|
ticketGroupId: string | null;
|
@@ -327,6 +333,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
327
333
|
seat: number | null;
|
328
334
|
created_at: string;
|
329
335
|
updated_at: string;
|
336
|
+
referralCode: string | null;
|
330
337
|
scanned: boolean;
|
331
338
|
scannedAt: string | null;
|
332
339
|
ticketGroupId: string | null;
|
@@ -13,6 +13,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
13
13
|
scanned: import("zod").ZodBoolean;
|
14
14
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15
15
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
16
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
16
17
|
created_at: import("zod").ZodDate;
|
17
18
|
updated_at: import("zod").ZodDate;
|
18
19
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -25,6 +26,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
25
26
|
seat: number | null;
|
26
27
|
created_at: Date;
|
27
28
|
updated_at: Date;
|
29
|
+
referralCode: string | null;
|
28
30
|
scanned: boolean;
|
29
31
|
scannedAt: Date | null;
|
30
32
|
ticketGroupId: string | null;
|
@@ -38,6 +40,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
38
40
|
seat: number | null;
|
39
41
|
created_at: Date;
|
40
42
|
updated_at: Date;
|
43
|
+
referralCode: string | null;
|
41
44
|
scanned: boolean;
|
42
45
|
scannedAt: Date | null;
|
43
46
|
ticketGroupId: string | null;
|
@@ -57,6 +60,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
57
60
|
scanned: import("zod").ZodBoolean;
|
58
61
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
59
62
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
63
|
+
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
60
64
|
created_at: import("zod").ZodString;
|
61
65
|
updated_at: import("zod").ZodString;
|
62
66
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -69,6 +73,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
69
73
|
seat: number | null;
|
70
74
|
created_at: string;
|
71
75
|
updated_at: string;
|
76
|
+
referralCode: string | null;
|
72
77
|
scanned: boolean;
|
73
78
|
scannedAt: string | null;
|
74
79
|
ticketGroupId: string | null;
|
@@ -82,6 +87,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
82
87
|
seat: number | null;
|
83
88
|
created_at: string;
|
84
89
|
updated_at: string;
|
90
|
+
referralCode: string | null;
|
85
91
|
scanned: boolean;
|
86
92
|
scannedAt: string | null;
|
87
93
|
ticketGroupId: string | null;
|
@@ -15,6 +15,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
18
19
|
created_at: z.ZodDate;
|
19
20
|
updated_at: z.ZodDate;
|
20
21
|
}, {
|
@@ -59,6 +60,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
59
60
|
seat: number | null;
|
60
61
|
created_at: Date;
|
61
62
|
updated_at: Date;
|
63
|
+
referralCode: string | null;
|
62
64
|
scanned: boolean;
|
63
65
|
scannedAt: Date | null;
|
64
66
|
ticketGroupId: string | null;
|
@@ -77,6 +79,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
77
79
|
seat: number | null;
|
78
80
|
created_at: Date;
|
79
81
|
updated_at: Date;
|
82
|
+
referralCode: string | null;
|
80
83
|
scanned: boolean;
|
81
84
|
scannedAt: Date | null;
|
82
85
|
ticketGroupId: string | null;
|
@@ -97,6 +100,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
97
100
|
seat: number | null;
|
98
101
|
created_at: Date;
|
99
102
|
updated_at: Date;
|
103
|
+
referralCode: string | null;
|
100
104
|
scanned: boolean;
|
101
105
|
scannedAt: Date | null;
|
102
106
|
ticketGroupId: string | null;
|
@@ -117,6 +121,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
117
121
|
seat: number | null;
|
118
122
|
created_at: Date;
|
119
123
|
updated_at: Date;
|
124
|
+
referralCode: string | null;
|
120
125
|
scanned: boolean;
|
121
126
|
scannedAt: Date | null;
|
122
127
|
ticketGroupId: string | null;
|
@@ -138,6 +143,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
138
143
|
scanned: z.ZodBoolean;
|
139
144
|
scannedAt: z.ZodNullable<z.ZodString>;
|
140
145
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
146
|
+
referralCode: z.ZodNullable<z.ZodString>;
|
141
147
|
created_at: z.ZodString;
|
142
148
|
updated_at: z.ZodString;
|
143
149
|
event: z.ZodObject<{
|
@@ -168,6 +174,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
168
174
|
seat: number | null;
|
169
175
|
created_at: string;
|
170
176
|
updated_at: string;
|
177
|
+
referralCode: string | null;
|
171
178
|
scanned: boolean;
|
172
179
|
scannedAt: string | null;
|
173
180
|
ticketGroupId: string | null;
|
@@ -186,6 +193,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
186
193
|
seat: number | null;
|
187
194
|
created_at: string;
|
188
195
|
updated_at: string;
|
196
|
+
referralCode: string | null;
|
189
197
|
scanned: boolean;
|
190
198
|
scannedAt: string | null;
|
191
199
|
ticketGroupId: string | null;
|
@@ -206,6 +214,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
206
214
|
seat: number | null;
|
207
215
|
created_at: string;
|
208
216
|
updated_at: string;
|
217
|
+
referralCode: string | null;
|
209
218
|
scanned: boolean;
|
210
219
|
scannedAt: string | null;
|
211
220
|
ticketGroupId: string | null;
|
@@ -226,6 +235,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
226
235
|
seat: number | null;
|
227
236
|
created_at: string;
|
228
237
|
updated_at: string;
|
238
|
+
referralCode: string | null;
|
229
239
|
scanned: boolean;
|
230
240
|
scannedAt: string | null;
|
231
241
|
ticketGroupId: string | null;
|