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
@@ -99,6 +99,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
99
99
|
dni: string | null;
|
100
100
|
created_at: Date;
|
101
101
|
updated_at: Date;
|
102
|
+
referralCode: string;
|
102
103
|
shortId: number;
|
103
104
|
firstTimeMiExpo: boolean;
|
104
105
|
isPhoneVerified: boolean;
|
@@ -111,7 +112,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
111
112
|
residenceLocationId: string | null;
|
112
113
|
isInTrash: boolean;
|
113
114
|
movedToTrashDate: Date | null;
|
114
|
-
referralCode: string;
|
115
115
|
birthLocation: {
|
116
116
|
id: string;
|
117
117
|
latitude: number;
|
@@ -143,6 +143,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
143
143
|
dni: string | null;
|
144
144
|
created_at: Date;
|
145
145
|
updated_at: Date;
|
146
|
+
referralCode: string;
|
146
147
|
shortId: number;
|
147
148
|
firstTimeMiExpo: boolean;
|
148
149
|
isPhoneVerified: boolean;
|
@@ -155,7 +156,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
155
156
|
residenceLocationId: string | null;
|
156
157
|
isInTrash: boolean;
|
157
158
|
movedToTrashDate: Date | null;
|
158
|
-
referralCode: string;
|
159
159
|
birthLocation: {
|
160
160
|
id: string;
|
161
161
|
latitude: number;
|
@@ -196,6 +196,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
196
196
|
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
197
197
|
created_at: import("zod").ZodString;
|
198
198
|
updated_at: import("zod").ZodString;
|
199
|
+
referralCode: import("zod").ZodString;
|
199
200
|
shortId: import("zod").ZodNumber;
|
200
201
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
201
202
|
isPhoneVerified: import("zod").ZodBoolean;
|
@@ -208,7 +209,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
208
209
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
209
210
|
isInTrash: import("zod").ZodBoolean;
|
210
211
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
211
|
-
referralCode: import("zod").ZodString;
|
212
212
|
residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
|
213
213
|
id: import("zod").ZodString;
|
214
214
|
latitude: import("zod").ZodNumber;
|
@@ -277,6 +277,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
277
277
|
dni: string | null;
|
278
278
|
created_at: string;
|
279
279
|
updated_at: string;
|
280
|
+
referralCode: string;
|
280
281
|
shortId: number;
|
281
282
|
firstTimeMiExpo: boolean;
|
282
283
|
isPhoneVerified: boolean;
|
@@ -289,7 +290,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
289
290
|
residenceLocationId: string | null;
|
290
291
|
isInTrash: boolean;
|
291
292
|
movedToTrashDate: string | null;
|
292
|
-
referralCode: string;
|
293
293
|
birthLocation: {
|
294
294
|
id: string;
|
295
295
|
latitude: number;
|
@@ -321,6 +321,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
321
321
|
dni: string | null;
|
322
322
|
created_at: string;
|
323
323
|
updated_at: string;
|
324
|
+
referralCode: string;
|
324
325
|
shortId: number;
|
325
326
|
firstTimeMiExpo: boolean;
|
326
327
|
isPhoneVerified: boolean;
|
@@ -333,7 +334,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
333
334
|
residenceLocationId: string | null;
|
334
335
|
isInTrash: boolean;
|
335
336
|
movedToTrashDate: string | null;
|
336
|
-
referralCode: string;
|
337
337
|
birthLocation: {
|
338
338
|
id: string;
|
339
339
|
latitude: number;
|
@@ -73,6 +73,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
73
73
|
dni: string | null;
|
74
74
|
created_at: Date;
|
75
75
|
updated_at: Date;
|
76
|
+
referralCode: string;
|
76
77
|
shortId: number;
|
77
78
|
firstTimeMiExpo: boolean;
|
78
79
|
isPhoneVerified: boolean;
|
@@ -85,7 +86,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
85
86
|
residenceLocationId: string | null;
|
86
87
|
isInTrash: boolean;
|
87
88
|
movedToTrashDate: Date | null;
|
88
|
-
referralCode: string;
|
89
89
|
}, {
|
90
90
|
id: string;
|
91
91
|
username: string | null;
|
@@ -97,6 +97,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
97
97
|
dni: string | null;
|
98
98
|
created_at: Date;
|
99
99
|
updated_at: Date;
|
100
|
+
referralCode: string;
|
100
101
|
shortId: number;
|
101
102
|
firstTimeMiExpo: boolean;
|
102
103
|
isPhoneVerified: boolean;
|
@@ -109,7 +110,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
109
110
|
residenceLocationId: string | null;
|
110
111
|
isInTrash: boolean;
|
111
112
|
movedToTrashDate: Date | null;
|
112
|
-
referralCode: string;
|
113
113
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
114
114
|
}>;
|
115
115
|
}, "strip", z.ZodTypeAny, {
|
@@ -125,6 +125,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
125
125
|
dni: string | null;
|
126
126
|
created_at: Date;
|
127
127
|
updated_at: Date;
|
128
|
+
referralCode: string;
|
128
129
|
shortId: number;
|
129
130
|
firstTimeMiExpo: boolean;
|
130
131
|
isPhoneVerified: boolean;
|
@@ -137,7 +138,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
137
138
|
residenceLocationId: string | null;
|
138
139
|
isInTrash: boolean;
|
139
140
|
movedToTrashDate: Date | null;
|
140
|
-
referralCode: string;
|
141
141
|
};
|
142
142
|
tokens: {
|
143
143
|
accessToken: string;
|
@@ -156,6 +156,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
156
156
|
dni: string | null;
|
157
157
|
created_at: Date;
|
158
158
|
updated_at: Date;
|
159
|
+
referralCode: string;
|
159
160
|
shortId: number;
|
160
161
|
firstTimeMiExpo: boolean;
|
161
162
|
isPhoneVerified: boolean;
|
@@ -168,7 +169,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
168
169
|
residenceLocationId: string | null;
|
169
170
|
isInTrash: boolean;
|
170
171
|
movedToTrashDate: Date | null;
|
171
|
-
referralCode: string;
|
172
172
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
173
173
|
};
|
174
174
|
tokens: {
|
@@ -209,6 +209,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
209
209
|
dni: z.ZodNullable<z.ZodString>;
|
210
210
|
created_at: z.ZodString;
|
211
211
|
updated_at: z.ZodString;
|
212
|
+
referralCode: z.ZodString;
|
212
213
|
shortId: z.ZodNumber;
|
213
214
|
firstTimeMiExpo: z.ZodBoolean;
|
214
215
|
isPhoneVerified: z.ZodBoolean;
|
@@ -221,7 +222,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
221
222
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
222
223
|
isInTrash: z.ZodBoolean;
|
223
224
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
224
|
-
referralCode: z.ZodString;
|
225
225
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
226
226
|
id: string;
|
227
227
|
username: string | null;
|
@@ -234,6 +234,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
234
234
|
dni: string | null;
|
235
235
|
created_at: string;
|
236
236
|
updated_at: string;
|
237
|
+
referralCode: string;
|
237
238
|
shortId: number;
|
238
239
|
firstTimeMiExpo: boolean;
|
239
240
|
isPhoneVerified: boolean;
|
@@ -246,7 +247,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
246
247
|
residenceLocationId: string | null;
|
247
248
|
isInTrash: boolean;
|
248
249
|
movedToTrashDate: string | null;
|
249
|
-
referralCode: string;
|
250
250
|
}, {
|
251
251
|
id: string;
|
252
252
|
username: string | null;
|
@@ -258,6 +258,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
258
258
|
dni: string | null;
|
259
259
|
created_at: string;
|
260
260
|
updated_at: string;
|
261
|
+
referralCode: string;
|
261
262
|
shortId: number;
|
262
263
|
firstTimeMiExpo: boolean;
|
263
264
|
isPhoneVerified: boolean;
|
@@ -270,7 +271,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
270
271
|
residenceLocationId: string | null;
|
271
272
|
isInTrash: boolean;
|
272
273
|
movedToTrashDate: string | null;
|
273
|
-
referralCode: string;
|
274
274
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
275
275
|
}>;
|
276
276
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -286,6 +286,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
286
286
|
dni: string | null;
|
287
287
|
created_at: string;
|
288
288
|
updated_at: string;
|
289
|
+
referralCode: string;
|
289
290
|
shortId: number;
|
290
291
|
firstTimeMiExpo: boolean;
|
291
292
|
isPhoneVerified: boolean;
|
@@ -298,7 +299,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
298
299
|
residenceLocationId: string | null;
|
299
300
|
isInTrash: boolean;
|
300
301
|
movedToTrashDate: string | null;
|
301
|
-
referralCode: string;
|
302
302
|
};
|
303
303
|
tokens: {
|
304
304
|
accessToken: string;
|
@@ -317,6 +317,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
317
317
|
dni: string | null;
|
318
318
|
created_at: string;
|
319
319
|
updated_at: string;
|
320
|
+
referralCode: string;
|
320
321
|
shortId: number;
|
321
322
|
firstTimeMiExpo: boolean;
|
322
323
|
isPhoneVerified: boolean;
|
@@ -329,7 +330,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
329
330
|
residenceLocationId: string | null;
|
330
331
|
isInTrash: boolean;
|
331
332
|
movedToTrashDate: string | null;
|
332
|
-
referralCode: string;
|
333
333
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
334
334
|
};
|
335
335
|
tokens: {
|
@@ -78,6 +78,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
78
78
|
dni: string | null;
|
79
79
|
created_at: Date;
|
80
80
|
updated_at: Date;
|
81
|
+
referralCode: string;
|
81
82
|
shortId: number;
|
82
83
|
firstTimeMiExpo: boolean;
|
83
84
|
isPhoneVerified: boolean;
|
@@ -90,7 +91,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
90
91
|
residenceLocationId: string | null;
|
91
92
|
isInTrash: boolean;
|
92
93
|
movedToTrashDate: Date | null;
|
93
|
-
referralCode: string;
|
94
94
|
}, {
|
95
95
|
id: string;
|
96
96
|
username: string | null;
|
@@ -102,6 +102,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
102
102
|
dni: string | null;
|
103
103
|
created_at: Date;
|
104
104
|
updated_at: Date;
|
105
|
+
referralCode: string;
|
105
106
|
shortId: number;
|
106
107
|
firstTimeMiExpo: boolean;
|
107
108
|
isPhoneVerified: boolean;
|
@@ -114,7 +115,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
114
115
|
residenceLocationId: string | null;
|
115
116
|
isInTrash: boolean;
|
116
117
|
movedToTrashDate: Date | null;
|
117
|
-
referralCode: string;
|
118
118
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
119
119
|
}>;
|
120
120
|
backendTokens: z.ZodObject<{
|
@@ -143,6 +143,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
143
143
|
dni: string | null;
|
144
144
|
created_at: Date;
|
145
145
|
updated_at: Date;
|
146
|
+
referralCode: string;
|
146
147
|
shortId: number;
|
147
148
|
firstTimeMiExpo: boolean;
|
148
149
|
isPhoneVerified: boolean;
|
@@ -155,7 +156,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
155
156
|
residenceLocationId: string | null;
|
156
157
|
isInTrash: boolean;
|
157
158
|
movedToTrashDate: Date | null;
|
158
|
-
referralCode: string;
|
159
159
|
};
|
160
160
|
backendTokens: {
|
161
161
|
accessToken: string;
|
@@ -174,6 +174,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
174
174
|
dni: string | null;
|
175
175
|
created_at: Date;
|
176
176
|
updated_at: Date;
|
177
|
+
referralCode: string;
|
177
178
|
shortId: number;
|
178
179
|
firstTimeMiExpo: boolean;
|
179
180
|
isPhoneVerified: boolean;
|
@@ -186,7 +187,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
186
187
|
residenceLocationId: string | null;
|
187
188
|
isInTrash: boolean;
|
188
189
|
movedToTrashDate: Date | null;
|
189
|
-
referralCode: string;
|
190
190
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
191
191
|
};
|
192
192
|
backendTokens: {
|
@@ -214,6 +214,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
214
214
|
dni: z.ZodNullable<z.ZodString>;
|
215
215
|
created_at: z.ZodString;
|
216
216
|
updated_at: z.ZodString;
|
217
|
+
referralCode: z.ZodString;
|
217
218
|
shortId: z.ZodNumber;
|
218
219
|
firstTimeMiExpo: z.ZodBoolean;
|
219
220
|
isPhoneVerified: z.ZodBoolean;
|
@@ -226,7 +227,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
226
227
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
227
228
|
isInTrash: z.ZodBoolean;
|
228
229
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
229
|
-
referralCode: z.ZodString;
|
230
230
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
231
231
|
id: string;
|
232
232
|
username: string | null;
|
@@ -239,6 +239,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
239
239
|
dni: string | null;
|
240
240
|
created_at: string;
|
241
241
|
updated_at: string;
|
242
|
+
referralCode: string;
|
242
243
|
shortId: number;
|
243
244
|
firstTimeMiExpo: boolean;
|
244
245
|
isPhoneVerified: boolean;
|
@@ -251,7 +252,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
251
252
|
residenceLocationId: string | null;
|
252
253
|
isInTrash: boolean;
|
253
254
|
movedToTrashDate: string | null;
|
254
|
-
referralCode: string;
|
255
255
|
}, {
|
256
256
|
id: string;
|
257
257
|
username: string | null;
|
@@ -263,6 +263,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
263
263
|
dni: string | null;
|
264
264
|
created_at: string;
|
265
265
|
updated_at: string;
|
266
|
+
referralCode: string;
|
266
267
|
shortId: number;
|
267
268
|
firstTimeMiExpo: boolean;
|
268
269
|
isPhoneVerified: boolean;
|
@@ -275,7 +276,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
275
276
|
residenceLocationId: string | null;
|
276
277
|
isInTrash: boolean;
|
277
278
|
movedToTrashDate: string | null;
|
278
|
-
referralCode: string;
|
279
279
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
280
280
|
}>;
|
281
281
|
backendTokens: z.ZodObject<{
|
@@ -304,6 +304,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
304
304
|
dni: string | null;
|
305
305
|
created_at: string;
|
306
306
|
updated_at: string;
|
307
|
+
referralCode: string;
|
307
308
|
shortId: number;
|
308
309
|
firstTimeMiExpo: boolean;
|
309
310
|
isPhoneVerified: boolean;
|
@@ -316,7 +317,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
316
317
|
residenceLocationId: string | null;
|
317
318
|
isInTrash: boolean;
|
318
319
|
movedToTrashDate: string | null;
|
319
|
-
referralCode: string;
|
320
320
|
};
|
321
321
|
backendTokens: {
|
322
322
|
accessToken: string;
|
@@ -335,6 +335,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
335
335
|
dni: string | null;
|
336
336
|
created_at: string;
|
337
337
|
updated_at: string;
|
338
|
+
referralCode: string;
|
338
339
|
shortId: number;
|
339
340
|
firstTimeMiExpo: boolean;
|
340
341
|
isPhoneVerified: boolean;
|
@@ -347,7 +348,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
347
348
|
residenceLocationId: string | null;
|
348
349
|
isInTrash: boolean;
|
349
350
|
movedToTrashDate: string | null;
|
350
|
-
referralCode: string;
|
351
351
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
352
352
|
};
|
353
353
|
backendTokens: {
|
@@ -250,6 +250,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
250
250
|
dni: string | null;
|
251
251
|
created_at: Date;
|
252
252
|
updated_at: Date;
|
253
|
+
referralCode: string;
|
253
254
|
shortId: number;
|
254
255
|
firstTimeMiExpo: boolean;
|
255
256
|
isPhoneVerified: boolean;
|
@@ -262,7 +263,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
262
263
|
residenceLocationId: string | null;
|
263
264
|
isInTrash: boolean;
|
264
265
|
movedToTrashDate: Date | null;
|
265
|
-
referralCode: string;
|
266
266
|
}, {
|
267
267
|
id: string;
|
268
268
|
username: string | null;
|
@@ -274,6 +274,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
274
274
|
dni: string | null;
|
275
275
|
created_at: Date;
|
276
276
|
updated_at: Date;
|
277
|
+
referralCode: string;
|
277
278
|
shortId: number;
|
278
279
|
firstTimeMiExpo: boolean;
|
279
280
|
isPhoneVerified: boolean;
|
@@ -286,7 +287,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
286
287
|
residenceLocationId: string | null;
|
287
288
|
isInTrash: boolean;
|
288
289
|
movedToTrashDate: Date | null;
|
289
|
-
referralCode: string;
|
290
290
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
291
291
|
}>;
|
292
292
|
declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -307,6 +307,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
307
307
|
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
308
308
|
created_at: import("zod").ZodString;
|
309
309
|
updated_at: import("zod").ZodString;
|
310
|
+
referralCode: import("zod").ZodString;
|
310
311
|
shortId: import("zod").ZodNumber;
|
311
312
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
312
313
|
isPhoneVerified: import("zod").ZodBoolean;
|
@@ -319,7 +320,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
319
320
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
320
321
|
isInTrash: import("zod").ZodBoolean;
|
321
322
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
322
|
-
referralCode: import("zod").ZodString;
|
323
323
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
324
324
|
id: string;
|
325
325
|
username: string | null;
|
@@ -332,6 +332,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
332
332
|
dni: string | null;
|
333
333
|
created_at: string;
|
334
334
|
updated_at: string;
|
335
|
+
referralCode: string;
|
335
336
|
shortId: number;
|
336
337
|
firstTimeMiExpo: boolean;
|
337
338
|
isPhoneVerified: boolean;
|
@@ -344,7 +345,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
344
345
|
residenceLocationId: string | null;
|
345
346
|
isInTrash: boolean;
|
346
347
|
movedToTrashDate: string | null;
|
347
|
-
referralCode: string;
|
348
348
|
}, {
|
349
349
|
id: string;
|
350
350
|
username: string | null;
|
@@ -356,6 +356,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
356
356
|
dni: string | null;
|
357
357
|
created_at: string;
|
358
358
|
updated_at: string;
|
359
|
+
referralCode: string;
|
359
360
|
shortId: number;
|
360
361
|
firstTimeMiExpo: boolean;
|
361
362
|
isPhoneVerified: boolean;
|
@@ -368,7 +369,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
368
369
|
residenceLocationId: string | null;
|
369
370
|
isInTrash: boolean;
|
370
371
|
movedToTrashDate: string | null;
|
371
|
-
referralCode: string;
|
372
372
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
373
373
|
}>>;
|
374
374
|
export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
|
@@ -109,6 +109,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
109
109
|
dni: string | null;
|
110
110
|
created_at: Date;
|
111
111
|
updated_at: Date;
|
112
|
+
referralCode: string;
|
112
113
|
shortId: number;
|
113
114
|
firstTimeMiExpo: boolean;
|
114
115
|
isPhoneVerified: boolean;
|
@@ -121,7 +122,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
121
122
|
residenceLocationId: string | null;
|
122
123
|
isInTrash: boolean;
|
123
124
|
movedToTrashDate: Date | null;
|
124
|
-
referralCode: string;
|
125
125
|
birthLocation: {
|
126
126
|
latitude: number;
|
127
127
|
longitude: number;
|
@@ -146,6 +146,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
146
146
|
dni: string | null;
|
147
147
|
created_at: Date;
|
148
148
|
updated_at: Date;
|
149
|
+
referralCode: string;
|
149
150
|
shortId: number;
|
150
151
|
firstTimeMiExpo: boolean;
|
151
152
|
isPhoneVerified: boolean;
|
@@ -158,7 +159,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
158
159
|
residenceLocationId: string | null;
|
159
160
|
isInTrash: boolean;
|
160
161
|
movedToTrashDate: Date | null;
|
161
|
-
referralCode: string;
|
162
162
|
birthLocation: {
|
163
163
|
latitude: number;
|
164
164
|
longitude: number;
|
@@ -187,6 +187,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
187
187
|
dni: string | null;
|
188
188
|
created_at: Date;
|
189
189
|
updated_at: Date;
|
190
|
+
referralCode: string;
|
190
191
|
shortId: number;
|
191
192
|
firstTimeMiExpo: boolean;
|
192
193
|
isPhoneVerified: boolean;
|
@@ -199,7 +200,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
199
200
|
residenceLocationId: string | null;
|
200
201
|
isInTrash: boolean;
|
201
202
|
movedToTrashDate: Date | null;
|
202
|
-
referralCode: string;
|
203
203
|
birthLocation: {
|
204
204
|
latitude: number;
|
205
205
|
longitude: number;
|
@@ -227,6 +227,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
227
227
|
dni: string | null;
|
228
228
|
created_at: Date;
|
229
229
|
updated_at: Date;
|
230
|
+
referralCode: string;
|
230
231
|
shortId: number;
|
231
232
|
firstTimeMiExpo: boolean;
|
232
233
|
isPhoneVerified: boolean;
|
@@ -239,7 +240,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
239
240
|
residenceLocationId: string | null;
|
240
241
|
isInTrash: boolean;
|
241
242
|
movedToTrashDate: Date | null;
|
242
|
-
referralCode: string;
|
243
243
|
birthLocation: {
|
244
244
|
latitude: number;
|
245
245
|
longitude: number;
|
@@ -335,6 +335,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
335
335
|
dni: string | null;
|
336
336
|
created_at: string;
|
337
337
|
updated_at: string;
|
338
|
+
referralCode: string;
|
338
339
|
shortId: number;
|
339
340
|
firstTimeMiExpo: boolean;
|
340
341
|
isPhoneVerified: boolean;
|
@@ -347,7 +348,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
347
348
|
residenceLocationId: string | null;
|
348
349
|
isInTrash: boolean;
|
349
350
|
movedToTrashDate: string | null;
|
350
|
-
referralCode: string;
|
351
351
|
birthLocation: {
|
352
352
|
latitude: number;
|
353
353
|
longitude: number;
|
@@ -372,6 +372,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
372
372
|
dni: string | null;
|
373
373
|
created_at: string;
|
374
374
|
updated_at: string;
|
375
|
+
referralCode: string;
|
375
376
|
shortId: number;
|
376
377
|
firstTimeMiExpo: boolean;
|
377
378
|
isPhoneVerified: boolean;
|
@@ -384,7 +385,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
384
385
|
residenceLocationId: string | null;
|
385
386
|
isInTrash: boolean;
|
386
387
|
movedToTrashDate: string | null;
|
387
|
-
referralCode: string;
|
388
388
|
birthLocation: {
|
389
389
|
latitude: number;
|
390
390
|
longitude: number;
|
@@ -413,6 +413,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
413
413
|
dni: string | null;
|
414
414
|
created_at: string;
|
415
415
|
updated_at: string;
|
416
|
+
referralCode: string;
|
416
417
|
shortId: number;
|
417
418
|
firstTimeMiExpo: boolean;
|
418
419
|
isPhoneVerified: boolean;
|
@@ -425,7 +426,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
425
426
|
residenceLocationId: string | null;
|
426
427
|
isInTrash: boolean;
|
427
428
|
movedToTrashDate: string | null;
|
428
|
-
referralCode: string;
|
429
429
|
birthLocation: {
|
430
430
|
latitude: number;
|
431
431
|
longitude: number;
|
@@ -453,6 +453,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
453
453
|
dni: string | null;
|
454
454
|
created_at: string;
|
455
455
|
updated_at: string;
|
456
|
+
referralCode: string;
|
456
457
|
shortId: number;
|
457
458
|
firstTimeMiExpo: boolean;
|
458
459
|
isPhoneVerified: boolean;
|
@@ -465,7 +466,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
465
466
|
residenceLocationId: string | null;
|
466
467
|
isInTrash: boolean;
|
467
468
|
movedToTrashDate: string | null;
|
468
|
-
referralCode: string;
|
469
469
|
birthLocation: {
|
470
470
|
latitude: number;
|
471
471
|
longitude: number;
|