expo-backend-types 0.30.0-EXPO-308-auth.20 → 0.30.0-EXPO-308-auth.21

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.
@@ -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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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").ZodDate>>;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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").ZodDate>>;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
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").ZodDate>>;
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: Date | null;
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.ZodDate>>>;
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?: Date | null | undefined;
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.ZodDate>>;
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: Date | null;
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,6BAWa;AAwBN,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"}
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.ZodDate>>;
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: Date | null;
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: Date | null;
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.ZodDate>>;
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: Date | null;
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: Date | null;
242
+ birthDate: string | null;
243
243
  instagram: string | null;
244
244
  dni: string | null;
245
245
  alternativeNames: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.30.0-EXPO-308-auth.20",
3
+ "version": "0.30.0-EXPO-308-auth.21",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,