expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.10 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.11
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/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +5 -5
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/production/dto/get-all-production.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +8 -8
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +12 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +12 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +12 -12
- package/dist/types/prisma-schema/edge.js +3 -3
- package/dist/types/prisma-schema/index.d.ts +447 -32
- package/dist/types/prisma-schema/index.js +3 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +5 -1
- package/package.json +2 -1
@@ -43,6 +43,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
43
43
|
dni: string | null;
|
44
44
|
created_at: string;
|
45
45
|
updated_at: string;
|
46
|
+
referralCode: string;
|
46
47
|
shortId: number;
|
47
48
|
firstTimeMiExpo: boolean;
|
48
49
|
isPhoneVerified: boolean;
|
@@ -55,7 +56,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
55
56
|
residenceLocationId: string | null;
|
56
57
|
isInTrash: boolean;
|
57
58
|
movedToTrashDate: string | null;
|
58
|
-
referralCode: string;
|
59
59
|
}, {
|
60
60
|
id: string;
|
61
61
|
username: string | null;
|
@@ -68,6 +68,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
68
68
|
dni: string | null;
|
69
69
|
created_at: string;
|
70
70
|
updated_at: string;
|
71
|
+
referralCode: string;
|
71
72
|
shortId: number;
|
72
73
|
firstTimeMiExpo: boolean;
|
73
74
|
isPhoneVerified: boolean;
|
@@ -80,7 +81,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
80
81
|
residenceLocationId: string | null;
|
81
82
|
isInTrash: boolean;
|
82
83
|
movedToTrashDate: string | null;
|
83
|
-
referralCode: string;
|
84
84
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
85
85
|
}>>;
|
86
86
|
export declare class ProfileDto extends ProfileDto_base {
|
@@ -289,6 +289,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
289
289
|
dni: string | null;
|
290
290
|
created_at: Date;
|
291
291
|
updated_at: Date;
|
292
|
+
referralCode: string;
|
292
293
|
shortId: number;
|
293
294
|
firstTimeMiExpo: boolean;
|
294
295
|
isPhoneVerified: boolean;
|
@@ -301,7 +302,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
301
302
|
residenceLocationId: string | null;
|
302
303
|
isInTrash: boolean;
|
303
304
|
movedToTrashDate: Date | null;
|
304
|
-
referralCode: string;
|
305
305
|
}, {
|
306
306
|
id: string;
|
307
307
|
username: string | null;
|
@@ -314,6 +314,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
314
314
|
dni: string | null;
|
315
315
|
created_at: Date;
|
316
316
|
updated_at: Date;
|
317
|
+
referralCode: string;
|
317
318
|
shortId: number;
|
318
319
|
firstTimeMiExpo: boolean;
|
319
320
|
isPhoneVerified: boolean;
|
@@ -326,7 +327,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
326
327
|
residenceLocationId: string | null;
|
327
328
|
isInTrash: boolean;
|
328
329
|
movedToTrashDate: Date | null;
|
329
|
-
referralCode: string;
|
330
330
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
331
331
|
}>;
|
332
332
|
declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -374,6 +374,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
374
374
|
dni: string | null;
|
375
375
|
created_at: string;
|
376
376
|
updated_at: string;
|
377
|
+
referralCode: string;
|
377
378
|
shortId: number;
|
378
379
|
firstTimeMiExpo: boolean;
|
379
380
|
isPhoneVerified: boolean;
|
@@ -386,7 +387,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
386
387
|
residenceLocationId: string | null;
|
387
388
|
isInTrash: boolean;
|
388
389
|
movedToTrashDate: string | null;
|
389
|
-
referralCode: string;
|
390
390
|
}, {
|
391
391
|
id: string;
|
392
392
|
username: string | null;
|
@@ -399,6 +399,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
399
399
|
dni: string | null;
|
400
400
|
created_at: string;
|
401
401
|
updated_at: string;
|
402
|
+
referralCode: string;
|
402
403
|
shortId: number;
|
403
404
|
firstTimeMiExpo: boolean;
|
404
405
|
isPhoneVerified: boolean;
|
@@ -411,7 +412,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
411
412
|
residenceLocationId: string | null;
|
412
413
|
isInTrash: boolean;
|
413
414
|
movedToTrashDate: string | null;
|
414
|
-
referralCode: string;
|
415
415
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
416
416
|
}>>;
|
417
417
|
export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
|
@@ -44,6 +44,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
44
44
|
dni: string | null;
|
45
45
|
created_at: Date;
|
46
46
|
updated_at: Date;
|
47
|
+
referralCode: string;
|
47
48
|
shortId: number;
|
48
49
|
firstTimeMiExpo: boolean;
|
49
50
|
isPhoneVerified: boolean;
|
@@ -56,7 +57,6 @@ export declare const profileSchema: z.ZodObject<{
|
|
56
57
|
residenceLocationId: string | null;
|
57
58
|
isInTrash: boolean;
|
58
59
|
movedToTrashDate: Date | null;
|
59
|
-
referralCode: string;
|
60
60
|
}, {
|
61
61
|
id: string;
|
62
62
|
username: string | null;
|
@@ -69,6 +69,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
69
69
|
dni: string | null;
|
70
70
|
created_at: Date;
|
71
71
|
updated_at: Date;
|
72
|
+
referralCode: string;
|
72
73
|
shortId: number;
|
73
74
|
firstTimeMiExpo: boolean;
|
74
75
|
isPhoneVerified: boolean;
|
@@ -81,6 +82,5 @@ export declare const profileSchema: z.ZodObject<{
|
|
81
82
|
residenceLocationId: string | null;
|
82
83
|
isInTrash: boolean;
|
83
84
|
movedToTrashDate: Date | null;
|
84
|
-
referralCode: string;
|
85
85
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
86
86
|
}>;
|
@@ -67,6 +67,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
67
67
|
dni: string | null;
|
68
68
|
created_at: Date;
|
69
69
|
updated_at: Date;
|
70
|
+
referralCode: string;
|
70
71
|
shortId: number;
|
71
72
|
firstTimeMiExpo: boolean;
|
72
73
|
isPhoneVerified: boolean;
|
@@ -79,7 +80,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
79
80
|
residenceLocationId: string | null;
|
80
81
|
isInTrash: boolean;
|
81
82
|
movedToTrashDate: Date | null;
|
82
|
-
referralCode: string;
|
83
83
|
}, {
|
84
84
|
id: string;
|
85
85
|
username: string | null;
|
@@ -92,6 +92,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
92
92
|
dni: string | null;
|
93
93
|
created_at: Date;
|
94
94
|
updated_at: Date;
|
95
|
+
referralCode: string;
|
95
96
|
shortId: number;
|
96
97
|
firstTimeMiExpo: boolean;
|
97
98
|
isPhoneVerified: boolean;
|
@@ -104,7 +105,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
104
105
|
residenceLocationId: string | null;
|
105
106
|
isInTrash: boolean;
|
106
107
|
movedToTrashDate: Date | null;
|
107
|
-
referralCode: string;
|
108
108
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
109
109
|
}>, "many">;
|
110
110
|
}, "strip", z.ZodTypeAny, {
|
@@ -121,6 +121,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
121
121
|
dni: string | null;
|
122
122
|
created_at: Date;
|
123
123
|
updated_at: Date;
|
124
|
+
referralCode: string;
|
124
125
|
shortId: number;
|
125
126
|
firstTimeMiExpo: boolean;
|
126
127
|
isPhoneVerified: boolean;
|
@@ -133,7 +134,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
133
134
|
residenceLocationId: string | null;
|
134
135
|
isInTrash: boolean;
|
135
136
|
movedToTrashDate: Date | null;
|
136
|
-
referralCode: string;
|
137
137
|
}[];
|
138
138
|
}, {
|
139
139
|
profiles: {
|
@@ -148,6 +148,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
148
148
|
dni: string | null;
|
149
149
|
created_at: Date;
|
150
150
|
updated_at: Date;
|
151
|
+
referralCode: string;
|
151
152
|
shortId: number;
|
152
153
|
firstTimeMiExpo: boolean;
|
153
154
|
isPhoneVerified: boolean;
|
@@ -160,7 +161,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
160
161
|
residenceLocationId: string | null;
|
161
162
|
isInTrash: boolean;
|
162
163
|
movedToTrashDate: Date | null;
|
163
|
-
referralCode: string;
|
164
164
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
165
165
|
}[];
|
166
166
|
}>;
|
@@ -210,6 +210,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
210
210
|
dni: string | null;
|
211
211
|
created_at: string;
|
212
212
|
updated_at: string;
|
213
|
+
referralCode: string;
|
213
214
|
shortId: number;
|
214
215
|
firstTimeMiExpo: boolean;
|
215
216
|
isPhoneVerified: boolean;
|
@@ -222,7 +223,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
222
223
|
residenceLocationId: string | null;
|
223
224
|
isInTrash: boolean;
|
224
225
|
movedToTrashDate: string | null;
|
225
|
-
referralCode: string;
|
226
226
|
}, {
|
227
227
|
id: string;
|
228
228
|
username: string | null;
|
@@ -235,6 +235,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
235
235
|
dni: string | null;
|
236
236
|
created_at: string;
|
237
237
|
updated_at: string;
|
238
|
+
referralCode: string;
|
238
239
|
shortId: number;
|
239
240
|
firstTimeMiExpo: boolean;
|
240
241
|
isPhoneVerified: boolean;
|
@@ -247,7 +248,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
247
248
|
residenceLocationId: string | null;
|
248
249
|
isInTrash: boolean;
|
249
250
|
movedToTrashDate: string | null;
|
250
|
-
referralCode: string;
|
251
251
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
252
252
|
}>, "many">;
|
253
253
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -264,6 +264,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
264
264
|
dni: string | null;
|
265
265
|
created_at: string;
|
266
266
|
updated_at: string;
|
267
|
+
referralCode: string;
|
267
268
|
shortId: number;
|
268
269
|
firstTimeMiExpo: boolean;
|
269
270
|
isPhoneVerified: boolean;
|
@@ -276,7 +277,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
276
277
|
residenceLocationId: string | null;
|
277
278
|
isInTrash: boolean;
|
278
279
|
movedToTrashDate: string | null;
|
279
|
-
referralCode: string;
|
280
280
|
}[];
|
281
281
|
}, {
|
282
282
|
profiles: {
|
@@ -291,6 +291,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
291
291
|
dni: string | null;
|
292
292
|
created_at: string;
|
293
293
|
updated_at: string;
|
294
|
+
referralCode: string;
|
294
295
|
shortId: number;
|
295
296
|
firstTimeMiExpo: boolean;
|
296
297
|
isPhoneVerified: boolean;
|
@@ -303,7 +304,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
303
304
|
residenceLocationId: string | null;
|
304
305
|
isInTrash: boolean;
|
305
306
|
movedToTrashDate: string | null;
|
306
|
-
referralCode: string;
|
307
307
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
308
308
|
}[];
|
309
309
|
}>>;
|
@@ -67,6 +67,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
67
67
|
dni: string | null;
|
68
68
|
created_at: Date;
|
69
69
|
updated_at: Date;
|
70
|
+
referralCode: string;
|
70
71
|
shortId: number;
|
71
72
|
firstTimeMiExpo: boolean;
|
72
73
|
isPhoneVerified: boolean;
|
@@ -79,7 +80,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
79
80
|
residenceLocationId: string | null;
|
80
81
|
isInTrash: boolean;
|
81
82
|
movedToTrashDate: Date | null;
|
82
|
-
referralCode: string;
|
83
83
|
}, {
|
84
84
|
id: string;
|
85
85
|
username: string | null;
|
@@ -92,6 +92,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
92
92
|
dni: string | null;
|
93
93
|
created_at: Date;
|
94
94
|
updated_at: Date;
|
95
|
+
referralCode: string;
|
95
96
|
shortId: number;
|
96
97
|
firstTimeMiExpo: boolean;
|
97
98
|
isPhoneVerified: boolean;
|
@@ -104,7 +105,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
104
105
|
residenceLocationId: string | null;
|
105
106
|
isInTrash: boolean;
|
106
107
|
movedToTrashDate: Date | null;
|
107
|
-
referralCode: string;
|
108
108
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
109
109
|
}>, "many">;
|
110
110
|
}, "strip", z.ZodTypeAny, {
|
@@ -121,6 +121,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
121
121
|
dni: string | null;
|
122
122
|
created_at: Date;
|
123
123
|
updated_at: Date;
|
124
|
+
referralCode: string;
|
124
125
|
shortId: number;
|
125
126
|
firstTimeMiExpo: boolean;
|
126
127
|
isPhoneVerified: boolean;
|
@@ -133,7 +134,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
133
134
|
residenceLocationId: string | null;
|
134
135
|
isInTrash: boolean;
|
135
136
|
movedToTrashDate: Date | null;
|
136
|
-
referralCode: string;
|
137
137
|
}[];
|
138
138
|
}, {
|
139
139
|
profiles: {
|
@@ -148,6 +148,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
148
148
|
dni: string | null;
|
149
149
|
created_at: Date;
|
150
150
|
updated_at: Date;
|
151
|
+
referralCode: string;
|
151
152
|
shortId: number;
|
152
153
|
firstTimeMiExpo: boolean;
|
153
154
|
isPhoneVerified: boolean;
|
@@ -160,7 +161,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
160
161
|
residenceLocationId: string | null;
|
161
162
|
isInTrash: boolean;
|
162
163
|
movedToTrashDate: Date | null;
|
163
|
-
referralCode: string;
|
164
164
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
165
165
|
}[];
|
166
166
|
}>;
|
@@ -210,6 +210,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
210
210
|
dni: string | null;
|
211
211
|
created_at: string;
|
212
212
|
updated_at: string;
|
213
|
+
referralCode: string;
|
213
214
|
shortId: number;
|
214
215
|
firstTimeMiExpo: boolean;
|
215
216
|
isPhoneVerified: boolean;
|
@@ -222,7 +223,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
222
223
|
residenceLocationId: string | null;
|
223
224
|
isInTrash: boolean;
|
224
225
|
movedToTrashDate: string | null;
|
225
|
-
referralCode: string;
|
226
226
|
}, {
|
227
227
|
id: string;
|
228
228
|
username: string | null;
|
@@ -235,6 +235,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
235
235
|
dni: string | null;
|
236
236
|
created_at: string;
|
237
237
|
updated_at: string;
|
238
|
+
referralCode: string;
|
238
239
|
shortId: number;
|
239
240
|
firstTimeMiExpo: boolean;
|
240
241
|
isPhoneVerified: boolean;
|
@@ -247,7 +248,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
247
248
|
residenceLocationId: string | null;
|
248
249
|
isInTrash: boolean;
|
249
250
|
movedToTrashDate: string | null;
|
250
|
-
referralCode: string;
|
251
251
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
252
252
|
}>, "many">;
|
253
253
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -264,6 +264,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
264
264
|
dni: string | null;
|
265
265
|
created_at: string;
|
266
266
|
updated_at: string;
|
267
|
+
referralCode: string;
|
267
268
|
shortId: number;
|
268
269
|
firstTimeMiExpo: boolean;
|
269
270
|
isPhoneVerified: boolean;
|
@@ -276,7 +277,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
276
277
|
residenceLocationId: string | null;
|
277
278
|
isInTrash: boolean;
|
278
279
|
movedToTrashDate: string | null;
|
279
|
-
referralCode: string;
|
280
280
|
}[];
|
281
281
|
}, {
|
282
282
|
profiles: {
|
@@ -291,6 +291,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
291
291
|
dni: string | null;
|
292
292
|
created_at: string;
|
293
293
|
updated_at: string;
|
294
|
+
referralCode: string;
|
294
295
|
shortId: number;
|
295
296
|
firstTimeMiExpo: boolean;
|
296
297
|
isPhoneVerified: boolean;
|
@@ -303,7 +304,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
303
304
|
residenceLocationId: string | null;
|
304
305
|
isInTrash: boolean;
|
305
306
|
movedToTrashDate: string | null;
|
306
|
-
referralCode: string;
|
307
307
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
308
308
|
}[];
|
309
309
|
}>>;
|
@@ -90,6 +90,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
90
90
|
dni: string | null;
|
91
91
|
created_at: Date;
|
92
92
|
updated_at: Date;
|
93
|
+
referralCode: string;
|
93
94
|
shortId: number;
|
94
95
|
firstTimeMiExpo: boolean;
|
95
96
|
isPhoneVerified: boolean;
|
@@ -102,7 +103,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
102
103
|
residenceLocationId: string | null;
|
103
104
|
isInTrash: boolean;
|
104
105
|
movedToTrashDate: Date | null;
|
105
|
-
referralCode: string;
|
106
106
|
}, {
|
107
107
|
id: string;
|
108
108
|
username: string | null;
|
@@ -115,6 +115,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
115
115
|
dni: string | null;
|
116
116
|
created_at: Date;
|
117
117
|
updated_at: Date;
|
118
|
+
referralCode: string;
|
118
119
|
shortId: number;
|
119
120
|
firstTimeMiExpo: boolean;
|
120
121
|
isPhoneVerified: boolean;
|
@@ -127,7 +128,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
127
128
|
residenceLocationId: string | null;
|
128
129
|
isInTrash: boolean;
|
129
130
|
movedToTrashDate: Date | null;
|
130
|
-
referralCode: string;
|
131
131
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
132
132
|
}>>;
|
133
133
|
}>, "strip", z.ZodTypeAny, {
|
@@ -149,6 +149,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
149
149
|
dni: string | null;
|
150
150
|
created_at: Date;
|
151
151
|
updated_at: Date;
|
152
|
+
referralCode: string;
|
152
153
|
shortId: number;
|
153
154
|
firstTimeMiExpo: boolean;
|
154
155
|
isPhoneVerified: boolean;
|
@@ -161,7 +162,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
161
162
|
residenceLocationId: string | null;
|
162
163
|
isInTrash: boolean;
|
163
164
|
movedToTrashDate: Date | null;
|
164
|
-
referralCode: string;
|
165
165
|
} | null;
|
166
166
|
id: string;
|
167
167
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -194,6 +194,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
194
194
|
dni: string | null;
|
195
195
|
created_at: Date;
|
196
196
|
updated_at: Date;
|
197
|
+
referralCode: string;
|
197
198
|
shortId: number;
|
198
199
|
firstTimeMiExpo: boolean;
|
199
200
|
isPhoneVerified: boolean;
|
@@ -206,7 +207,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
206
207
|
residenceLocationId: string | null;
|
207
208
|
isInTrash: boolean;
|
208
209
|
movedToTrashDate: Date | null;
|
209
|
-
referralCode: string;
|
210
210
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
211
211
|
} | null;
|
212
212
|
id: string;
|
@@ -243,6 +243,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
243
243
|
dni: string | null;
|
244
244
|
created_at: Date;
|
245
245
|
updated_at: Date;
|
246
|
+
referralCode: string;
|
246
247
|
shortId: number;
|
247
248
|
firstTimeMiExpo: boolean;
|
248
249
|
isPhoneVerified: boolean;
|
@@ -255,7 +256,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
255
256
|
residenceLocationId: string | null;
|
256
257
|
isInTrash: boolean;
|
257
258
|
movedToTrashDate: Date | null;
|
258
|
-
referralCode: string;
|
259
259
|
} | null;
|
260
260
|
id: string;
|
261
261
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -290,6 +290,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
290
290
|
dni: string | null;
|
291
291
|
created_at: Date;
|
292
292
|
updated_at: Date;
|
293
|
+
referralCode: string;
|
293
294
|
shortId: number;
|
294
295
|
firstTimeMiExpo: boolean;
|
295
296
|
isPhoneVerified: boolean;
|
@@ -302,7 +303,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
302
303
|
residenceLocationId: string | null;
|
303
304
|
isInTrash: boolean;
|
304
305
|
movedToTrashDate: Date | null;
|
305
|
-
referralCode: string;
|
306
306
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
307
307
|
} | null;
|
308
308
|
id: string;
|
@@ -397,6 +397,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
397
397
|
dni: string | null;
|
398
398
|
created_at: string;
|
399
399
|
updated_at: string;
|
400
|
+
referralCode: string;
|
400
401
|
shortId: number;
|
401
402
|
firstTimeMiExpo: boolean;
|
402
403
|
isPhoneVerified: boolean;
|
@@ -409,7 +410,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
409
410
|
residenceLocationId: string | null;
|
410
411
|
isInTrash: boolean;
|
411
412
|
movedToTrashDate: string | null;
|
412
|
-
referralCode: string;
|
413
413
|
}, {
|
414
414
|
id: string;
|
415
415
|
username: string | null;
|
@@ -422,6 +422,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
422
422
|
dni: string | null;
|
423
423
|
created_at: string;
|
424
424
|
updated_at: string;
|
425
|
+
referralCode: string;
|
425
426
|
shortId: number;
|
426
427
|
firstTimeMiExpo: boolean;
|
427
428
|
isPhoneVerified: boolean;
|
@@ -434,7 +435,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
434
435
|
residenceLocationId: string | null;
|
435
436
|
isInTrash: boolean;
|
436
437
|
movedToTrashDate: string | null;
|
437
|
-
referralCode: string;
|
438
438
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
439
439
|
}>>;
|
440
440
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -456,6 +456,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
456
456
|
dni: string | null;
|
457
457
|
created_at: string;
|
458
458
|
updated_at: string;
|
459
|
+
referralCode: string;
|
459
460
|
shortId: number;
|
460
461
|
firstTimeMiExpo: boolean;
|
461
462
|
isPhoneVerified: boolean;
|
@@ -468,7 +469,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
468
469
|
residenceLocationId: string | null;
|
469
470
|
isInTrash: boolean;
|
470
471
|
movedToTrashDate: string | null;
|
471
|
-
referralCode: string;
|
472
472
|
} | null;
|
473
473
|
id: string;
|
474
474
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -501,6 +501,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
501
501
|
dni: string | null;
|
502
502
|
created_at: string;
|
503
503
|
updated_at: string;
|
504
|
+
referralCode: string;
|
504
505
|
shortId: number;
|
505
506
|
firstTimeMiExpo: boolean;
|
506
507
|
isPhoneVerified: boolean;
|
@@ -513,7 +514,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
513
514
|
residenceLocationId: string | null;
|
514
515
|
isInTrash: boolean;
|
515
516
|
movedToTrashDate: string | null;
|
516
|
-
referralCode: string;
|
517
517
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
518
518
|
} | null;
|
519
519
|
id: string;
|
@@ -550,6 +550,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
550
550
|
dni: string | null;
|
551
551
|
created_at: string;
|
552
552
|
updated_at: string;
|
553
|
+
referralCode: string;
|
553
554
|
shortId: number;
|
554
555
|
firstTimeMiExpo: boolean;
|
555
556
|
isPhoneVerified: boolean;
|
@@ -562,7 +563,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
562
563
|
residenceLocationId: string | null;
|
563
564
|
isInTrash: boolean;
|
564
565
|
movedToTrashDate: string | null;
|
565
|
-
referralCode: string;
|
566
566
|
} | null;
|
567
567
|
id: string;
|
568
568
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -597,6 +597,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
597
597
|
dni: string | null;
|
598
598
|
created_at: string;
|
599
599
|
updated_at: string;
|
600
|
+
referralCode: string;
|
600
601
|
shortId: number;
|
601
602
|
firstTimeMiExpo: boolean;
|
602
603
|
isPhoneVerified: boolean;
|
@@ -609,7 +610,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
609
610
|
residenceLocationId: string | null;
|
610
611
|
isInTrash: boolean;
|
611
612
|
movedToTrashDate: string | null;
|
612
|
-
referralCode: string;
|
613
613
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
614
614
|
} | null;
|
615
615
|
id: string;
|