expo-backend-types 0.30.0-EXPO-308-auth.20 → 0.30.0-EXPO-308-auth.22
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/login-with-phone.dto.d.ts +3 -3
- package/dist/src/mi-expo/dto/login.dto.d.ts +3 -3
- package/dist/src/otp/dto/verify-otp.dto.d.ts +3 -3
- package/dist/src/profile/dto/create-profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/delete-profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +2 -2
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +3 -3
- 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/shared/dto-modification/zod-without-dates.d.ts +2 -2
- package/dist/src/shared/dto-modification/zod-without-dates.js.map +1 -1
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +3 -3
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +3 -3
- package/dist/types/schema.d.ts +59 -0
- package/package.json +1 -1
@@ -190,7 +190,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
190
190
|
isPhoneVerified: z.ZodBoolean;
|
191
191
|
firstName: z.ZodNullable<z.ZodString>;
|
192
192
|
gender: z.ZodNullable<z.ZodString>;
|
193
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
193
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
194
194
|
instagram: z.ZodNullable<z.ZodString>;
|
195
195
|
dni: z.ZodNullable<z.ZodString>;
|
196
196
|
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
@@ -213,7 +213,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
213
213
|
isPhoneVerified: boolean;
|
214
214
|
firstName: string | null;
|
215
215
|
gender: string | null;
|
216
|
-
birthDate:
|
216
|
+
birthDate: string | null;
|
217
217
|
instagram: string | null;
|
218
218
|
dni: string | null;
|
219
219
|
alternativeNames: string[];
|
@@ -261,7 +261,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
261
261
|
isPhoneVerified: boolean;
|
262
262
|
firstName: string | null;
|
263
263
|
gender: string | null;
|
264
|
-
birthDate:
|
264
|
+
birthDate: string | null;
|
265
265
|
instagram: string | null;
|
266
266
|
dni: string | null;
|
267
267
|
alternativeNames: string[];
|
@@ -193,7 +193,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
193
193
|
isPhoneVerified: z.ZodBoolean;
|
194
194
|
firstName: z.ZodNullable<z.ZodString>;
|
195
195
|
gender: z.ZodNullable<z.ZodString>;
|
196
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
196
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
197
197
|
instagram: z.ZodNullable<z.ZodString>;
|
198
198
|
dni: z.ZodNullable<z.ZodString>;
|
199
199
|
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
@@ -216,7 +216,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
216
216
|
isPhoneVerified: boolean;
|
217
217
|
firstName: string | null;
|
218
218
|
gender: string | null;
|
219
|
-
birthDate:
|
219
|
+
birthDate: string | null;
|
220
220
|
instagram: string | null;
|
221
221
|
dni: string | null;
|
222
222
|
alternativeNames: string[];
|
@@ -277,7 +277,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
277
277
|
isPhoneVerified: boolean;
|
278
278
|
firstName: string | null;
|
279
279
|
gender: string | null;
|
280
|
-
birthDate:
|
280
|
+
birthDate: string | null;
|
281
281
|
instagram: string | null;
|
282
282
|
dni: string | null;
|
283
283
|
alternativeNames: string[];
|
@@ -254,7 +254,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
254
254
|
fullName: z.ZodString;
|
255
255
|
firstName: z.ZodNullable<z.ZodString>;
|
256
256
|
gender: z.ZodNullable<z.ZodString>;
|
257
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
257
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
258
258
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
259
259
|
instagram: z.ZodNullable<z.ZodString>;
|
260
260
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -314,7 +314,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
314
314
|
isPhoneVerified: boolean;
|
315
315
|
firstName: string | null;
|
316
316
|
gender: string | null;
|
317
|
-
birthDate:
|
317
|
+
birthDate: string | null;
|
318
318
|
instagram: string | null;
|
319
319
|
dni: string | null;
|
320
320
|
alternativeNames: string[];
|
@@ -388,7 +388,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
388
388
|
isPhoneVerified: boolean;
|
389
389
|
firstName: string | null;
|
390
390
|
gender: string | null;
|
391
|
-
birthDate:
|
391
|
+
birthDate: string | null;
|
392
392
|
instagram: string | null;
|
393
393
|
dni: string | null;
|
394
394
|
alternativeNames: string[];
|
@@ -235,7 +235,7 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
235
235
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
236
236
|
mail: z.ZodNullable<z.ZodString>;
|
237
237
|
gender: z.ZodNullable<z.ZodString>;
|
238
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
238
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
239
239
|
instagram: z.ZodNullable<z.ZodString>;
|
240
240
|
dni: z.ZodNullable<z.ZodString>;
|
241
241
|
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
@@ -297,7 +297,7 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
297
297
|
profilePictureUrl: string | null;
|
298
298
|
mail: string | null;
|
299
299
|
gender: string | null;
|
300
|
-
birthDate:
|
300
|
+
birthDate: string | null;
|
301
301
|
instagram: string | null;
|
302
302
|
dni: string | null;
|
303
303
|
alternativeNames: string[];
|
@@ -364,7 +364,7 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
364
364
|
profilePictureUrl: string | null;
|
365
365
|
mail: string | null;
|
366
366
|
gender: string | null;
|
367
|
-
birthDate:
|
367
|
+
birthDate: string | null;
|
368
368
|
instagram: string | null;
|
369
369
|
dni: string | null;
|
370
370
|
alternativeNames: string[];
|
@@ -83,7 +83,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
83
83
|
fullName: import("zod").ZodString;
|
84
84
|
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
85
85
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
86
|
-
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").
|
86
|
+
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
87
87
|
profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
88
88
|
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
89
89
|
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -111,7 +111,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
111
111
|
isPhoneVerified: boolean;
|
112
112
|
firstName: string | null;
|
113
113
|
gender: string | null;
|
114
|
-
birthDate:
|
114
|
+
birthDate: string | null;
|
115
115
|
instagram: string | null;
|
116
116
|
dni: string | null;
|
117
117
|
alternativeNames: string[];
|
@@ -238,7 +238,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
238
238
|
fullName: z.ZodString;
|
239
239
|
firstName: z.ZodNullable<z.ZodString>;
|
240
240
|
gender: z.ZodNullable<z.ZodString>;
|
241
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
241
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
242
242
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
243
243
|
instagram: z.ZodNullable<z.ZodString>;
|
244
244
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -311,7 +311,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
311
311
|
isPhoneVerified: boolean;
|
312
312
|
firstName: string | null;
|
313
313
|
gender: string | null;
|
314
|
-
birthDate:
|
314
|
+
birthDate: string | null;
|
315
315
|
instagram: string | null;
|
316
316
|
dni: string | null;
|
317
317
|
alternativeNames: string[];
|
@@ -385,7 +385,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
385
385
|
isPhoneVerified: boolean;
|
386
386
|
firstName: string | null;
|
387
387
|
gender: string | null;
|
388
|
-
birthDate:
|
388
|
+
birthDate: string | null;
|
389
389
|
instagram: string | null;
|
390
390
|
dni: string | null;
|
391
391
|
alternativeNames: string[];
|
@@ -230,7 +230,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
230
230
|
fullName: z.ZodString;
|
231
231
|
firstName: z.ZodNullable<z.ZodString>;
|
232
232
|
gender: z.ZodNullable<z.ZodString>;
|
233
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
233
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
234
234
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
235
235
|
instagram: z.ZodNullable<z.ZodString>;
|
236
236
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -298,7 +298,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
298
298
|
isPhoneVerified: boolean;
|
299
299
|
firstName: string | null;
|
300
300
|
gender: string | null;
|
301
|
-
birthDate:
|
301
|
+
birthDate: string | null;
|
302
302
|
instagram: string | null;
|
303
303
|
dni: string | null;
|
304
304
|
alternativeNames: string[];
|
@@ -370,7 +370,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
370
370
|
isPhoneVerified: boolean;
|
371
371
|
firstName: string | null;
|
372
372
|
gender: string | null;
|
373
|
-
birthDate:
|
373
|
+
birthDate: string | null;
|
374
374
|
instagram: string | null;
|
375
375
|
dni: string | null;
|
376
376
|
alternativeNames: string[];
|
@@ -261,7 +261,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
261
261
|
fullName: z.ZodString;
|
262
262
|
firstName: z.ZodNullable<z.ZodString>;
|
263
263
|
gender: z.ZodNullable<z.ZodString>;
|
264
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
264
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
265
265
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
266
266
|
instagram: z.ZodNullable<z.ZodString>;
|
267
267
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -395,7 +395,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
395
395
|
isPhoneVerified: boolean;
|
396
396
|
firstName: string | null;
|
397
397
|
gender: string | null;
|
398
|
-
birthDate:
|
398
|
+
birthDate: string | null;
|
399
399
|
instagram: string | null;
|
400
400
|
dni: string | null;
|
401
401
|
alternativeNames: string[];
|
@@ -83,7 +83,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
83
83
|
fullName: import("zod").ZodString;
|
84
84
|
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
85
85
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
86
|
-
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").
|
86
|
+
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
87
87
|
profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
88
88
|
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
89
89
|
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -111,7 +111,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
111
111
|
isPhoneVerified: boolean;
|
112
112
|
firstName: string | null;
|
113
113
|
gender: string | null;
|
114
|
-
birthDate:
|
114
|
+
birthDate: string | null;
|
115
115
|
instagram: string | null;
|
116
116
|
dni: string | null;
|
117
117
|
alternativeNames: string[];
|
@@ -199,7 +199,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
199
199
|
fullName: z.ZodString;
|
200
200
|
firstName: z.ZodNullable<z.ZodString>;
|
201
201
|
gender: z.ZodNullable<z.ZodString>;
|
202
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
202
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
203
203
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
204
204
|
instagram: z.ZodNullable<z.ZodString>;
|
205
205
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -254,7 +254,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
254
254
|
isPhoneVerified: boolean;
|
255
255
|
firstName: string | null;
|
256
256
|
gender: string | null;
|
257
|
-
birthDate:
|
257
|
+
birthDate: string | null;
|
258
258
|
instagram: string | null;
|
259
259
|
dni: string | null;
|
260
260
|
alternativeNames: string[];
|
@@ -320,7 +320,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
320
320
|
isPhoneVerified: boolean;
|
321
321
|
firstName: string | null;
|
322
322
|
gender: string | null;
|
323
|
-
birthDate:
|
323
|
+
birthDate: string | null;
|
324
324
|
instagram: string | null;
|
325
325
|
dni: string | null;
|
326
326
|
alternativeNames: string[];
|
@@ -230,7 +230,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
230
230
|
fullName: z.ZodString;
|
231
231
|
firstName: z.ZodNullable<z.ZodString>;
|
232
232
|
gender: z.ZodNullable<z.ZodString>;
|
233
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
233
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
234
234
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
235
235
|
instagram: z.ZodNullable<z.ZodString>;
|
236
236
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -298,7 +298,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
298
298
|
isPhoneVerified: boolean;
|
299
299
|
firstName: string | null;
|
300
300
|
gender: string | null;
|
301
|
-
birthDate:
|
301
|
+
birthDate: string | null;
|
302
302
|
instagram: string | null;
|
303
303
|
dni: string | null;
|
304
304
|
alternativeNames: string[];
|
@@ -370,7 +370,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
370
370
|
isPhoneVerified: boolean;
|
371
371
|
firstName: string | null;
|
372
372
|
gender: string | null;
|
373
|
-
birthDate:
|
373
|
+
birthDate: string | null;
|
374
374
|
instagram: string | null;
|
375
375
|
dni: string | null;
|
376
376
|
alternativeNames: string[];
|
@@ -396,7 +396,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
396
396
|
fullName: z.ZodString;
|
397
397
|
firstName: z.ZodNullable<z.ZodString>;
|
398
398
|
gender: z.ZodNullable<z.ZodString>;
|
399
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
399
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
400
400
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
401
401
|
instagram: z.ZodNullable<z.ZodString>;
|
402
402
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -557,7 +557,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
557
557
|
isPhoneVerified: boolean;
|
558
558
|
firstName: string | null;
|
559
559
|
gender: string | null;
|
560
|
-
birthDate:
|
560
|
+
birthDate: string | null;
|
561
561
|
instagram: string | null;
|
562
562
|
dni: string | null;
|
563
563
|
alternativeNames: string[];
|
@@ -667,7 +667,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
667
667
|
isPhoneVerified: boolean;
|
668
668
|
firstName: string | null;
|
669
669
|
gender: string | null;
|
670
|
-
birthDate:
|
670
|
+
birthDate: string | null;
|
671
671
|
instagram: string | null;
|
672
672
|
dni: string | null;
|
673
673
|
alternativeNames: string[];
|
@@ -10,7 +10,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
10
10
|
fullName: import("zod").ZodString;
|
11
11
|
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
12
12
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
13
|
-
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").
|
13
|
+
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
14
14
|
profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
15
15
|
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
16
16
|
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -38,7 +38,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
|
|
38
38
|
isPhoneVerified: boolean;
|
39
39
|
firstName: string | null;
|
40
40
|
gender: string | null;
|
41
|
-
birthDate:
|
41
|
+
birthDate: string | null;
|
42
42
|
instagram: string | null;
|
43
43
|
dni: string | null;
|
44
44
|
alternativeNames: string[];
|
@@ -130,7 +130,7 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
130
130
|
profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
131
131
|
mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
132
132
|
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
133
|
-
birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
133
|
+
birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>>;
|
134
134
|
instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
135
135
|
dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
136
136
|
alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
@@ -184,7 +184,7 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
184
184
|
profilePictureUrl?: string | null | undefined;
|
185
185
|
mail?: string | null | undefined;
|
186
186
|
gender?: string | null | undefined;
|
187
|
-
birthDate?:
|
187
|
+
birthDate?: string | null | undefined;
|
188
188
|
instagram?: string | null | undefined;
|
189
189
|
dni?: string | null | undefined;
|
190
190
|
alternativeNames?: string[] | undefined;
|
@@ -323,7 +323,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
323
323
|
fullName: z.ZodString;
|
324
324
|
firstName: z.ZodNullable<z.ZodString>;
|
325
325
|
gender: z.ZodNullable<z.ZodString>;
|
326
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
326
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
327
327
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
328
328
|
instagram: z.ZodNullable<z.ZodString>;
|
329
329
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -351,7 +351,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
351
351
|
isPhoneVerified: boolean;
|
352
352
|
firstName: string | null;
|
353
353
|
gender: string | null;
|
354
|
-
birthDate:
|
354
|
+
birthDate: string | null;
|
355
355
|
instagram: string | null;
|
356
356
|
dni: string | null;
|
357
357
|
alternativeNames: string[];
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import { type OpenApiZodAny } from '@anatine/zod-openapi';
|
2
|
-
import { z, ZodArray, ZodDate, ZodIntersection, ZodNullable, ZodObject, ZodOptional, ZodTypeAny, ZodUnion } from 'zod';
|
2
|
+
import { z, ZodArray, ZodDate, ZodIntersection, ZodNullable, ZodObject, ZodOptional, ZodPipeline, ZodTypeAny, ZodUnion } from 'zod';
|
3
3
|
export type ReplaceDatesWithStrings<T extends ZodTypeAny> = T extends ZodDate ? ReturnType<typeof z.string> : T extends ZodObject<infer Shape> ? ZodObject<{
|
4
4
|
[k in keyof Shape]: ReplaceDatesWithStrings<Shape[k]>;
|
5
5
|
}> : T extends ZodArray<infer Item> ? ZodArray<ReplaceDatesWithStrings<Item>> : T extends ZodUnion<infer Options> ? ZodUnion<{
|
6
6
|
[k in keyof Options]: ReplaceDatesWithStrings<Options[k]>;
|
7
|
-
}> : T extends ZodIntersection<infer Left, infer Right> ? ZodIntersection<ReplaceDatesWithStrings<Left>, ReplaceDatesWithStrings<Right>> : T extends ZodNullable<infer Inner> ? ZodNullable<ReplaceDatesWithStrings<Inner>> : T extends ZodOptional<infer Inner> ? ZodOptional<ReplaceDatesWithStrings<Inner>> : T;
|
7
|
+
}> : T extends ZodIntersection<infer Left, infer Right> ? ZodIntersection<ReplaceDatesWithStrings<Left>, ReplaceDatesWithStrings<Right>> : T extends ZodNullable<infer Inner> ? ZodNullable<ReplaceDatesWithStrings<Inner>> : T extends ZodOptional<infer Inner> ? ZodOptional<ReplaceDatesWithStrings<Inner>> : T extends ZodPipeline<infer A, infer B> ? ZodPipeline<ReplaceDatesWithStrings<A>, ReplaceDatesWithStrings<B>> : T;
|
8
8
|
export declare const replaceDatesWithStrings: <T extends OpenApiZodAny>(schema: T) => ReplaceDatesWithStrings<T>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"zod-without-dates.js","sourceRoot":"","sources":["../../../../src/shared/dto-modification/zod-without-dates.ts"],"names":[],"mappings":";;;AACA,
|
1
|
+
{"version":3,"file":"zod-without-dates.js","sourceRoot":"","sources":["../../../../src/shared/dto-modification/zod-without-dates.ts"],"names":[],"mappings":";;;AACA,6BAYa;AA6BN,MAAM,uBAAuB,GAAG,CACrC,MAAS,EACmB,EAAE;IAC9B,IAAI,MAAM,YAAY,aAAO,EAAE,CAAC;QAC9B,OAAO,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAgC,CAAC;IAC7D,CAAC;IAED,IAAI,MAAM,YAAY,eAAS,EAAE,CAAC;QAChC,MAAM,QAAQ,GAAgB,EAAE,CAAC;QACjC,KAAK,MAAM,GAAG,IAAI,MAAM,CAAC,KAAK,EAAE,CAAC;YAC/B,QAAQ,CAAC,GAAG,CAAC,GAAG,IAAA,+BAAuB,EAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;QAC7D,CAAC;QACD,OAAO,OAAC,CAAC,MAAM,CAAC,QAAQ,CAA+B,CAAC;IAC1D,CAAC;IAED,IAAI,MAAM,YAAY,cAAQ,EAAE,CAAC;QAC/B,OAAO,OAAC,CAAC,KAAK,CACZ,IAAA,+BAAuB,EAAC,MAAM,CAAC,OAAO,CAAC,CACV,CAAC;IAClC,CAAC;IAED,IAAI,MAAM,YAAY,cAAQ,EAAE,CAAC;QAC/B,OAAO,OAAC,CAAC,KAAK,CACZ,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,MAAS,EAAE,EAAE,CAAC,IAAA,+BAAuB,EAAC,MAAM,CAAC,CAAC,CAC1C,CAAC;IAClC,CAAC;IAED,IAAI,MAAM,YAAY,qBAAe,EAAE,CAAC;QACtC,OAAO,OAAC,CAAC,YAAY,CACnB,IAAA,+BAAuB,EAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,EACzC,IAAA,+BAAuB,EAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CACb,CAAC;IAClC,CAAC;IAGD,OAAO,MAAoC,CAAC;AAC9C,CAAC,CAAC;AApCW,QAAA,uBAAuB,2BAoClC"}
|
@@ -161,7 +161,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
161
161
|
fullName: z.ZodString;
|
162
162
|
firstName: z.ZodNullable<z.ZodString>;
|
163
163
|
gender: z.ZodNullable<z.ZodString>;
|
164
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
164
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
165
165
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
166
166
|
instagram: z.ZodNullable<z.ZodString>;
|
167
167
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -189,7 +189,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
189
189
|
isPhoneVerified: boolean;
|
190
190
|
firstName: string | null;
|
191
191
|
gender: string | null;
|
192
|
-
birthDate:
|
192
|
+
birthDate: string | null;
|
193
193
|
instagram: string | null;
|
194
194
|
dni: string | null;
|
195
195
|
alternativeNames: string[];
|
@@ -239,7 +239,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
239
239
|
isPhoneVerified: boolean;
|
240
240
|
firstName: string | null;
|
241
241
|
gender: string | null;
|
242
|
-
birthDate:
|
242
|
+
birthDate: string | null;
|
243
243
|
instagram: string | null;
|
244
244
|
dni: string | null;
|
245
245
|
alternativeNames: string[];
|
@@ -161,7 +161,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
161
161
|
fullName: z.ZodString;
|
162
162
|
firstName: z.ZodNullable<z.ZodString>;
|
163
163
|
gender: z.ZodNullable<z.ZodString>;
|
164
|
-
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.
|
164
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
165
165
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
166
166
|
instagram: z.ZodNullable<z.ZodString>;
|
167
167
|
mail: z.ZodNullable<z.ZodString>;
|
@@ -189,7 +189,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
189
189
|
isPhoneVerified: boolean;
|
190
190
|
firstName: string | null;
|
191
191
|
gender: string | null;
|
192
|
-
birthDate:
|
192
|
+
birthDate: string | null;
|
193
193
|
instagram: string | null;
|
194
194
|
dni: string | null;
|
195
195
|
alternativeNames: string[];
|
@@ -239,7 +239,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
239
239
|
isPhoneVerified: boolean;
|
240
240
|
firstName: string | null;
|
241
241
|
gender: string | null;
|
242
|
-
birthDate:
|
242
|
+
birthDate: string | null;
|
243
243
|
instagram: string | null;
|
244
244
|
dni: string | null;
|
245
245
|
alternativeNames: string[];
|
package/dist/types/schema.d.ts
CHANGED
@@ -991,6 +991,22 @@ export interface paths {
|
|
991
991
|
patch?: never;
|
992
992
|
trace?: never;
|
993
993
|
};
|
994
|
+
"/mi-expo/me": {
|
995
|
+
parameters: {
|
996
|
+
query?: never;
|
997
|
+
header?: never;
|
998
|
+
path?: never;
|
999
|
+
cookie?: never;
|
1000
|
+
};
|
1001
|
+
get: operations["MiExpoController_me"];
|
1002
|
+
put?: never;
|
1003
|
+
post?: never;
|
1004
|
+
delete?: never;
|
1005
|
+
options?: never;
|
1006
|
+
head?: never;
|
1007
|
+
patch?: never;
|
1008
|
+
trace?: never;
|
1009
|
+
};
|
994
1010
|
}
|
995
1011
|
export type webhooks = Record<string, never>;
|
996
1012
|
export interface components {
|
@@ -2340,6 +2356,30 @@ export interface components {
|
|
2340
2356
|
updated_at: string;
|
2341
2357
|
};
|
2342
2358
|
};
|
2359
|
+
MeResponseDto: {
|
2360
|
+
id: string;
|
2361
|
+
shortId: number;
|
2362
|
+
firstTimeMiExpo: boolean;
|
2363
|
+
username: string | null;
|
2364
|
+
phoneNumber: string;
|
2365
|
+
isPhoneVerified: boolean;
|
2366
|
+
secondaryPhoneNumber: string | null;
|
2367
|
+
fullName: string;
|
2368
|
+
firstName: string | null;
|
2369
|
+
gender: string | null;
|
2370
|
+
birthDate: string | null;
|
2371
|
+
profilePictureUrl: string | null;
|
2372
|
+
instagram: string | null;
|
2373
|
+
mail: string | null;
|
2374
|
+
dni: string | null;
|
2375
|
+
alternativeNames: string[];
|
2376
|
+
birthLocationId: string | null;
|
2377
|
+
residenceLocationId: string | null;
|
2378
|
+
isInTrash: boolean;
|
2379
|
+
movedToTrashDate: string | null;
|
2380
|
+
created_at: string;
|
2381
|
+
updated_at: string;
|
2382
|
+
};
|
2343
2383
|
};
|
2344
2384
|
responses: never;
|
2345
2385
|
parameters: never;
|
@@ -4365,4 +4405,23 @@ export interface operations {
|
|
4365
4405
|
};
|
4366
4406
|
};
|
4367
4407
|
};
|
4408
|
+
MiExpoController_me: {
|
4409
|
+
parameters: {
|
4410
|
+
query?: never;
|
4411
|
+
header?: never;
|
4412
|
+
path?: never;
|
4413
|
+
cookie?: never;
|
4414
|
+
};
|
4415
|
+
requestBody?: never;
|
4416
|
+
responses: {
|
4417
|
+
200: {
|
4418
|
+
headers: {
|
4419
|
+
[name: string]: unknown;
|
4420
|
+
};
|
4421
|
+
content: {
|
4422
|
+
"application/json": components["schemas"]["MeResponseDto"];
|
4423
|
+
};
|
4424
|
+
};
|
4425
|
+
};
|
4426
|
+
};
|
4368
4427
|
}
|