expo-backend-types 0.30.0-EXPO-308-auth.1 → 0.30.0-EXPO-308-auth.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/src/exports.d.ts +1 -0
  2. package/dist/src/exports.js +1 -0
  3. package/dist/src/i18n/es.d.ts +17 -0
  4. package/dist/src/i18n/es.js +17 -0
  5. package/dist/src/i18n/es.js.map +1 -1
  6. package/dist/src/otp/dto/send-otp.dto.d.ts +34 -0
  7. package/dist/src/otp/dto/send-otp.dto.js +22 -0
  8. package/dist/src/otp/dto/verify-otp.dto.d.ts +266 -0
  9. package/dist/src/otp/dto/verify-otp.dto.js +28 -0
  10. package/dist/src/otp/exports.d.ts +2 -0
  11. package/dist/src/otp/exports.js +19 -0
  12. package/dist/src/profile/dto/create-profile.dto.d.ts +8 -0
  13. package/dist/src/profile/dto/delete-profile.dto.d.ts +12 -0
  14. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
  15. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -0
  16. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +12 -0
  17. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +12 -0
  18. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
  19. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -0
  20. package/dist/src/profile/dto/find-trash.dto.d.ts +2 -0
  21. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
  22. package/dist/src/profile/dto/profile.dto.d.ts +6 -0
  23. package/dist/src/profile/dto/profile.dto.js +2 -0
  24. package/dist/src/profile/dto/update-profile.dto.d.ts +12 -0
  25. package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
  26. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
  27. package/dist/types/prisma-schema/edge.js +15 -3
  28. package/dist/types/prisma-schema/index-browser.js +12 -0
  29. package/dist/types/prisma-schema/index.d.ts +1649 -9
  30. package/dist/types/prisma-schema/index.js +15 -3
  31. package/dist/types/prisma-schema/package.json +1 -1
  32. package/dist/types/prisma-schema/schema.prisma +19 -1
  33. package/dist/types/prisma-schema/wasm.js +12 -0
  34. package/dist/types/schema.d.ts +101 -0
  35. package/package.json +1 -1
@@ -4,6 +4,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
6
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
7
+ isPhoneVerified: z.ZodBoolean;
7
8
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
8
9
  fullName: z.ZodString;
9
10
  firstName: z.ZodNullable<z.ZodString>;
@@ -18,6 +19,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
18
19
  residenceLocationId: z.ZodNullable<z.ZodString>;
19
20
  isInTrash: z.ZodBoolean;
20
21
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
22
+ firstTimeMiExpo: z.ZodBoolean;
21
23
  created_at: z.ZodDate;
22
24
  updated_at: z.ZodDate;
23
25
  }, {
@@ -81,6 +83,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
81
83
  created_at: Date;
82
84
  updated_at: Date;
83
85
  shortId: number;
86
+ firstTimeMiExpo: boolean;
87
+ isPhoneVerified: boolean;
84
88
  firstName: string | null;
85
89
  gender: string | null;
86
90
  birthDate: Date | null;
@@ -113,6 +117,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
113
117
  created_at: Date;
114
118
  updated_at: Date;
115
119
  shortId: number;
120
+ firstTimeMiExpo: boolean;
121
+ isPhoneVerified: boolean;
116
122
  firstName: string | null;
117
123
  gender: string | null;
118
124
  birthDate: string | null;
@@ -147,6 +153,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
147
153
  created_at: Date;
148
154
  updated_at: Date;
149
155
  shortId: number;
156
+ firstTimeMiExpo: boolean;
157
+ isPhoneVerified: boolean;
150
158
  firstName: string | null;
151
159
  gender: string | null;
152
160
  birthDate: Date | null;
@@ -181,6 +189,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
181
189
  created_at: Date;
182
190
  updated_at: Date;
183
191
  shortId: number;
192
+ firstTimeMiExpo: boolean;
193
+ isPhoneVerified: boolean;
184
194
  firstName: string | null;
185
195
  gender: string | null;
186
196
  birthDate: string | null;
@@ -210,6 +220,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
210
220
  id: z.ZodString;
211
221
  shortId: z.ZodNumber;
212
222
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
223
+ isPhoneVerified: z.ZodBoolean;
213
224
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
214
225
  fullName: z.ZodString;
215
226
  firstName: z.ZodNullable<z.ZodString>;
@@ -224,6 +235,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
224
235
  residenceLocationId: z.ZodNullable<z.ZodString>;
225
236
  isInTrash: z.ZodBoolean;
226
237
  movedToTrashDate: z.ZodNullable<z.ZodString>;
238
+ firstTimeMiExpo: z.ZodBoolean;
227
239
  created_at: z.ZodString;
228
240
  updated_at: z.ZodString;
229
241
  tags: z.ZodArray<z.ZodObject<{
@@ -281,6 +293,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
281
293
  created_at: string;
282
294
  updated_at: string;
283
295
  shortId: number;
296
+ firstTimeMiExpo: boolean;
297
+ isPhoneVerified: boolean;
284
298
  firstName: string | null;
285
299
  gender: string | null;
286
300
  birthDate: Date | null;
@@ -313,6 +327,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
313
327
  created_at: string;
314
328
  updated_at: string;
315
329
  shortId: number;
330
+ firstTimeMiExpo: boolean;
331
+ isPhoneVerified: boolean;
316
332
  firstName: string | null;
317
333
  gender: string | null;
318
334
  birthDate: string | null;
@@ -347,6 +363,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
347
363
  created_at: string;
348
364
  updated_at: string;
349
365
  shortId: number;
366
+ firstTimeMiExpo: boolean;
367
+ isPhoneVerified: boolean;
350
368
  firstName: string | null;
351
369
  gender: string | null;
352
370
  birthDate: Date | null;
@@ -381,6 +399,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
381
399
  created_at: string;
382
400
  updated_at: string;
383
401
  shortId: number;
402
+ firstTimeMiExpo: boolean;
403
+ isPhoneVerified: boolean;
384
404
  firstName: string | null;
385
405
  gender: string | null;
386
406
  birthDate: string | null;
@@ -4,6 +4,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
6
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
7
+ isPhoneVerified: z.ZodBoolean;
7
8
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
8
9
  fullName: z.ZodString;
9
10
  firstName: z.ZodNullable<z.ZodString>;
@@ -18,6 +19,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
18
19
  residenceLocationId: z.ZodNullable<z.ZodString>;
19
20
  isInTrash: z.ZodBoolean;
20
21
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
22
+ firstTimeMiExpo: z.ZodBoolean;
21
23
  created_at: z.ZodDate;
22
24
  updated_at: z.ZodDate;
23
25
  }, {
@@ -77,6 +79,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
77
79
  created_at: Date;
78
80
  updated_at: Date;
79
81
  shortId: number;
82
+ firstTimeMiExpo: boolean;
83
+ isPhoneVerified: boolean;
80
84
  firstName: string | null;
81
85
  gender: string | null;
82
86
  birthDate: Date | null;
@@ -108,6 +112,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
108
112
  created_at: Date;
109
113
  updated_at: Date;
110
114
  shortId: number;
115
+ firstTimeMiExpo: boolean;
116
+ isPhoneVerified: boolean;
111
117
  firstName: string | null;
112
118
  gender: string | null;
113
119
  birthDate: string | null;
@@ -141,6 +147,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
141
147
  created_at: Date;
142
148
  updated_at: Date;
143
149
  shortId: number;
150
+ firstTimeMiExpo: boolean;
151
+ isPhoneVerified: boolean;
144
152
  firstName: string | null;
145
153
  gender: string | null;
146
154
  birthDate: Date | null;
@@ -174,6 +182,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
174
182
  created_at: Date;
175
183
  updated_at: Date;
176
184
  shortId: number;
185
+ firstTimeMiExpo: boolean;
186
+ isPhoneVerified: boolean;
177
187
  firstName: string | null;
178
188
  gender: string | null;
179
189
  birthDate: string | null;
@@ -202,6 +212,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
202
212
  id: z.ZodString;
203
213
  shortId: z.ZodNumber;
204
214
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
215
+ isPhoneVerified: z.ZodBoolean;
205
216
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
206
217
  fullName: z.ZodString;
207
218
  firstName: z.ZodNullable<z.ZodString>;
@@ -216,6 +227,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
216
227
  residenceLocationId: z.ZodNullable<z.ZodString>;
217
228
  isInTrash: z.ZodBoolean;
218
229
  movedToTrashDate: z.ZodNullable<z.ZodString>;
230
+ firstTimeMiExpo: z.ZodBoolean;
219
231
  created_at: z.ZodString;
220
232
  updated_at: z.ZodString;
221
233
  tags: z.ZodArray<z.ZodObject<{
@@ -268,6 +280,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
268
280
  created_at: string;
269
281
  updated_at: string;
270
282
  shortId: number;
283
+ firstTimeMiExpo: boolean;
284
+ isPhoneVerified: boolean;
271
285
  firstName: string | null;
272
286
  gender: string | null;
273
287
  birthDate: Date | null;
@@ -299,6 +313,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
299
313
  created_at: string;
300
314
  updated_at: string;
301
315
  shortId: number;
316
+ firstTimeMiExpo: boolean;
317
+ isPhoneVerified: boolean;
302
318
  firstName: string | null;
303
319
  gender: string | null;
304
320
  birthDate: string | null;
@@ -332,6 +348,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
332
348
  created_at: string;
333
349
  updated_at: string;
334
350
  shortId: number;
351
+ firstTimeMiExpo: boolean;
352
+ isPhoneVerified: boolean;
335
353
  firstName: string | null;
336
354
  gender: string | null;
337
355
  birthDate: Date | null;
@@ -365,6 +383,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
365
383
  created_at: string;
366
384
  updated_at: string;
367
385
  shortId: number;
386
+ firstTimeMiExpo: boolean;
387
+ isPhoneVerified: boolean;
368
388
  firstName: string | null;
369
389
  gender: string | null;
370
390
  birthDate: string | null;
@@ -394,6 +414,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
394
414
  id: z.ZodString;
395
415
  shortId: z.ZodNumber;
396
416
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
417
+ isPhoneVerified: z.ZodBoolean;
397
418
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
398
419
  fullName: z.ZodString;
399
420
  firstName: z.ZodNullable<z.ZodString>;
@@ -408,6 +429,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
408
429
  residenceLocationId: z.ZodNullable<z.ZodString>;
409
430
  isInTrash: z.ZodBoolean;
410
431
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
432
+ firstTimeMiExpo: z.ZodBoolean;
411
433
  created_at: z.ZodDate;
412
434
  updated_at: z.ZodDate;
413
435
  }, {
@@ -467,6 +489,8 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
467
489
  created_at: Date;
468
490
  updated_at: Date;
469
491
  shortId: number;
492
+ firstTimeMiExpo: boolean;
493
+ isPhoneVerified: boolean;
470
494
  firstName: string | null;
471
495
  gender: string | null;
472
496
  birthDate: Date | null;
@@ -498,6 +522,8 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
498
522
  created_at: Date;
499
523
  updated_at: Date;
500
524
  shortId: number;
525
+ firstTimeMiExpo: boolean;
526
+ isPhoneVerified: boolean;
501
527
  firstName: string | null;
502
528
  gender: string | null;
503
529
  birthDate: string | null;
@@ -524,6 +550,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
524
550
  id: z.ZodString;
525
551
  shortId: z.ZodNumber;
526
552
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
553
+ isPhoneVerified: z.ZodBoolean;
527
554
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
528
555
  fullName: z.ZodString;
529
556
  firstName: z.ZodNullable<z.ZodString>;
@@ -538,6 +565,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
538
565
  residenceLocationId: z.ZodNullable<z.ZodString>;
539
566
  isInTrash: z.ZodBoolean;
540
567
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
568
+ firstTimeMiExpo: z.ZodBoolean;
541
569
  created_at: z.ZodDate;
542
570
  updated_at: z.ZodDate;
543
571
  }, {
@@ -597,6 +625,8 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
597
625
  created_at: Date;
598
626
  updated_at: Date;
599
627
  shortId: number;
628
+ firstTimeMiExpo: boolean;
629
+ isPhoneVerified: boolean;
600
630
  firstName: string | null;
601
631
  gender: string | null;
602
632
  birthDate: Date | null;
@@ -628,6 +658,8 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
628
658
  created_at: Date;
629
659
  updated_at: Date;
630
660
  shortId: number;
661
+ firstTimeMiExpo: boolean;
662
+ isPhoneVerified: boolean;
631
663
  firstName: string | null;
632
664
  gender: string | null;
633
665
  birthDate: string | null;
@@ -3,6 +3,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
3
3
  id: z.ZodString;
4
4
  shortId: z.ZodNumber;
5
5
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
6
+ isPhoneVerified: z.ZodBoolean;
6
7
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
7
8
  fullName: z.ZodString;
8
9
  firstName: z.ZodNullable<z.ZodString>;
@@ -17,6 +18,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
17
18
  residenceLocationId: z.ZodNullable<z.ZodString>;
18
19
  isInTrash: z.ZodBoolean;
19
20
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
21
+ firstTimeMiExpo: z.ZodBoolean;
20
22
  created_at: z.ZodDate;
21
23
  updated_at: z.ZodDate;
22
24
  }, {
@@ -140,6 +142,8 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
140
142
  created_at: Date;
141
143
  updated_at: Date;
142
144
  shortId: number;
145
+ firstTimeMiExpo: boolean;
146
+ isPhoneVerified: boolean;
143
147
  firstName: string | null;
144
148
  gender: string | null;
145
149
  birthDate: Date | null;
@@ -193,6 +197,8 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
193
197
  created_at: Date;
194
198
  updated_at: Date;
195
199
  shortId: number;
200
+ firstTimeMiExpo: boolean;
201
+ isPhoneVerified: boolean;
196
202
  firstName: string | null;
197
203
  gender: string | null;
198
204
  birthDate: string | null;
@@ -241,6 +247,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
241
247
  id: z.ZodString;
242
248
  shortId: z.ZodNumber;
243
249
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
250
+ isPhoneVerified: z.ZodBoolean;
244
251
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
245
252
  fullName: z.ZodString;
246
253
  firstName: z.ZodNullable<z.ZodString>;
@@ -255,6 +262,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
255
262
  residenceLocationId: z.ZodNullable<z.ZodString>;
256
263
  isInTrash: z.ZodBoolean;
257
264
  movedToTrashDate: z.ZodNullable<z.ZodString>;
265
+ firstTimeMiExpo: z.ZodBoolean;
258
266
  created_at: z.ZodString;
259
267
  updated_at: z.ZodString;
260
268
  residenceLocation: z.ZodNullable<z.ZodObject<{
@@ -373,6 +381,8 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
373
381
  created_at: string;
374
382
  updated_at: string;
375
383
  shortId: number;
384
+ firstTimeMiExpo: boolean;
385
+ isPhoneVerified: boolean;
376
386
  firstName: string | null;
377
387
  gender: string | null;
378
388
  birthDate: Date | null;
@@ -426,6 +436,8 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
426
436
  created_at: string;
427
437
  updated_at: string;
428
438
  shortId: number;
439
+ firstTimeMiExpo: boolean;
440
+ isPhoneVerified: boolean;
429
441
  firstName: string | null;
430
442
  gender: string | null;
431
443
  birthDate: string | null;
@@ -2,6 +2,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
2
2
  id: import("zod").ZodString;
3
3
  shortId: import("zod").ZodNumber;
4
4
  phoneNumber: import("zod").ZodEffects<import("zod").ZodString, string, string>;
5
+ isPhoneVerified: import("zod").ZodBoolean;
5
6
  secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>;
6
7
  fullName: import("zod").ZodString;
7
8
  firstName: import("zod").ZodNullable<import("zod").ZodString>;
@@ -16,6 +17,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
16
17
  residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
17
18
  isInTrash: import("zod").ZodBoolean;
18
19
  movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
20
+ firstTimeMiExpo: import("zod").ZodBoolean;
19
21
  created_at: import("zod").ZodDate;
20
22
  updated_at: import("zod").ZodDate;
21
23
  }, "strip", import("zod").ZodTypeAny, {
@@ -28,6 +30,8 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
28
30
  created_at: Date;
29
31
  updated_at: Date;
30
32
  shortId: number;
33
+ firstTimeMiExpo: boolean;
34
+ isPhoneVerified: boolean;
31
35
  firstName: string | null;
32
36
  gender: string | null;
33
37
  birthDate: Date | null;
@@ -48,6 +52,8 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
48
52
  created_at: Date;
49
53
  updated_at: Date;
50
54
  shortId: number;
55
+ firstTimeMiExpo: boolean;
56
+ isPhoneVerified: boolean;
51
57
  firstName: string | null;
52
58
  gender: string | null;
53
59
  birthDate: string | null;
@@ -63,6 +69,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
63
69
  id: import("zod").ZodString;
64
70
  shortId: import("zod").ZodNumber;
65
71
  phoneNumber: import("zod").ZodEffects<import("zod").ZodString, string, string>;
72
+ isPhoneVerified: import("zod").ZodBoolean;
66
73
  secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>;
67
74
  fullName: import("zod").ZodString;
68
75
  firstName: import("zod").ZodNullable<import("zod").ZodString>;
@@ -77,6 +84,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
77
84
  residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
78
85
  isInTrash: import("zod").ZodBoolean;
79
86
  movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
87
+ firstTimeMiExpo: import("zod").ZodBoolean;
80
88
  created_at: import("zod").ZodString;
81
89
  updated_at: import("zod").ZodString;
82
90
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
@@ -89,6 +97,8 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
89
97
  created_at: string;
90
98
  updated_at: string;
91
99
  shortId: number;
100
+ firstTimeMiExpo: boolean;
101
+ isPhoneVerified: boolean;
92
102
  firstName: string | null;
93
103
  gender: string | null;
94
104
  birthDate: Date | null;
@@ -109,6 +119,8 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
109
119
  created_at: string;
110
120
  updated_at: string;
111
121
  shortId: number;
122
+ firstTimeMiExpo: boolean;
123
+ isPhoneVerified: boolean;
112
124
  firstName: string | null;
113
125
  gender: string | null;
114
126
  birthDate: string | null;
@@ -4,6 +4,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
6
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
7
+ isPhoneVerified: z.ZodBoolean;
7
8
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
8
9
  fullName: z.ZodString;
9
10
  firstName: z.ZodNullable<z.ZodString>;
@@ -18,6 +19,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
18
19
  residenceLocationId: z.ZodNullable<z.ZodString>;
19
20
  isInTrash: z.ZodBoolean;
20
21
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
22
+ firstTimeMiExpo: z.ZodBoolean;
21
23
  created_at: z.ZodDate;
22
24
  updated_at: z.ZodDate;
23
25
  }, {
@@ -58,6 +60,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
58
60
  created_at: Date;
59
61
  updated_at: Date;
60
62
  shortId: number;
63
+ firstTimeMiExpo: boolean;
64
+ isPhoneVerified: boolean;
61
65
  firstName: string | null;
62
66
  gender: string | null;
63
67
  birthDate: Date | null;
@@ -86,6 +90,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
86
90
  created_at: Date;
87
91
  updated_at: Date;
88
92
  shortId: number;
93
+ firstTimeMiExpo: boolean;
94
+ isPhoneVerified: boolean;
89
95
  firstName: string | null;
90
96
  gender: string | null;
91
97
  birthDate: string | null;
@@ -116,6 +122,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
116
122
  created_at: Date;
117
123
  updated_at: Date;
118
124
  shortId: number;
125
+ firstTimeMiExpo: boolean;
126
+ isPhoneVerified: boolean;
119
127
  firstName: string | null;
120
128
  gender: string | null;
121
129
  birthDate: Date | null;
@@ -146,6 +154,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
146
154
  created_at: Date;
147
155
  updated_at: Date;
148
156
  shortId: number;
157
+ firstTimeMiExpo: boolean;
158
+ isPhoneVerified: boolean;
149
159
  firstName: string | null;
150
160
  gender: string | null;
151
161
  birthDate: string | null;
@@ -171,6 +181,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
171
181
  id: z.ZodString;
172
182
  shortId: z.ZodNumber;
173
183
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
184
+ isPhoneVerified: z.ZodBoolean;
174
185
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
175
186
  fullName: z.ZodString;
176
187
  firstName: z.ZodNullable<z.ZodString>;
@@ -185,6 +196,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
185
196
  residenceLocationId: z.ZodNullable<z.ZodString>;
186
197
  isInTrash: z.ZodBoolean;
187
198
  movedToTrashDate: z.ZodNullable<z.ZodString>;
199
+ firstTimeMiExpo: z.ZodBoolean;
188
200
  created_at: z.ZodString;
189
201
  updated_at: z.ZodString;
190
202
  tags: z.ZodArray<z.ZodObject<{
@@ -224,6 +236,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
224
236
  created_at: string;
225
237
  updated_at: string;
226
238
  shortId: number;
239
+ firstTimeMiExpo: boolean;
240
+ isPhoneVerified: boolean;
227
241
  firstName: string | null;
228
242
  gender: string | null;
229
243
  birthDate: Date | null;
@@ -252,6 +266,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
252
266
  created_at: string;
253
267
  updated_at: string;
254
268
  shortId: number;
269
+ firstTimeMiExpo: boolean;
270
+ isPhoneVerified: boolean;
255
271
  firstName: string | null;
256
272
  gender: string | null;
257
273
  birthDate: string | null;
@@ -282,6 +298,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
282
298
  created_at: string;
283
299
  updated_at: string;
284
300
  shortId: number;
301
+ firstTimeMiExpo: boolean;
302
+ isPhoneVerified: boolean;
285
303
  firstName: string | null;
286
304
  gender: string | null;
287
305
  birthDate: Date | null;
@@ -312,6 +330,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
312
330
  created_at: string;
313
331
  updated_at: string;
314
332
  shortId: number;
333
+ firstTimeMiExpo: boolean;
334
+ isPhoneVerified: boolean;
315
335
  firstName: string | null;
316
336
  gender: string | null;
317
337
  birthDate: string | null;
@@ -4,6 +4,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
6
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
7
+ isPhoneVerified: z.ZodBoolean;
7
8
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
8
9
  fullName: z.ZodString;
9
10
  firstName: z.ZodNullable<z.ZodString>;
@@ -18,6 +19,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
18
19
  residenceLocationId: z.ZodNullable<z.ZodString>;
19
20
  isInTrash: z.ZodBoolean;
20
21
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
22
+ firstTimeMiExpo: z.ZodBoolean;
21
23
  created_at: z.ZodDate;
22
24
  updated_at: z.ZodDate;
23
25
  }, {
@@ -77,6 +79,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
77
79
  created_at: Date;
78
80
  updated_at: Date;
79
81
  shortId: number;
82
+ firstTimeMiExpo: boolean;
83
+ isPhoneVerified: boolean;
80
84
  firstName: string | null;
81
85
  gender: string | null;
82
86
  birthDate: Date | null;
@@ -108,6 +112,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
108
112
  created_at: Date;
109
113
  updated_at: Date;
110
114
  shortId: number;
115
+ firstTimeMiExpo: boolean;
116
+ isPhoneVerified: boolean;
111
117
  firstName: string | null;
112
118
  gender: string | null;
113
119
  birthDate: string | null;
@@ -141,6 +147,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
141
147
  created_at: Date;
142
148
  updated_at: Date;
143
149
  shortId: number;
150
+ firstTimeMiExpo: boolean;
151
+ isPhoneVerified: boolean;
144
152
  firstName: string | null;
145
153
  gender: string | null;
146
154
  birthDate: Date | null;
@@ -174,6 +182,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
174
182
  created_at: Date;
175
183
  updated_at: Date;
176
184
  shortId: number;
185
+ firstTimeMiExpo: boolean;
186
+ isPhoneVerified: boolean;
177
187
  firstName: string | null;
178
188
  gender: string | null;
179
189
  birthDate: string | null;
@@ -202,6 +212,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
202
212
  id: z.ZodString;
203
213
  shortId: z.ZodNumber;
204
214
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
215
+ isPhoneVerified: z.ZodBoolean;
205
216
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
206
217
  fullName: z.ZodString;
207
218
  firstName: z.ZodNullable<z.ZodString>;
@@ -216,6 +227,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
216
227
  residenceLocationId: z.ZodNullable<z.ZodString>;
217
228
  isInTrash: z.ZodBoolean;
218
229
  movedToTrashDate: z.ZodNullable<z.ZodString>;
230
+ firstTimeMiExpo: z.ZodBoolean;
219
231
  created_at: z.ZodString;
220
232
  updated_at: z.ZodString;
221
233
  tags: z.ZodArray<z.ZodObject<{
@@ -268,6 +280,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
268
280
  created_at: string;
269
281
  updated_at: string;
270
282
  shortId: number;
283
+ firstTimeMiExpo: boolean;
284
+ isPhoneVerified: boolean;
271
285
  firstName: string | null;
272
286
  gender: string | null;
273
287
  birthDate: Date | null;
@@ -299,6 +313,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
299
313
  created_at: string;
300
314
  updated_at: string;
301
315
  shortId: number;
316
+ firstTimeMiExpo: boolean;
317
+ isPhoneVerified: boolean;
302
318
  firstName: string | null;
303
319
  gender: string | null;
304
320
  birthDate: string | null;
@@ -332,6 +348,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
332
348
  created_at: string;
333
349
  updated_at: string;
334
350
  shortId: number;
351
+ firstTimeMiExpo: boolean;
352
+ isPhoneVerified: boolean;
335
353
  firstName: string | null;
336
354
  gender: string | null;
337
355
  birthDate: Date | null;
@@ -365,6 +383,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
365
383
  created_at: string;
366
384
  updated_at: string;
367
385
  shortId: number;
386
+ firstTimeMiExpo: boolean;
387
+ isPhoneVerified: boolean;
368
388
  firstName: string | null;
369
389
  gender: string | null;
370
390
  birthDate: string | null;
@@ -4,6 +4,7 @@ export declare const findTrashResponseSchema: z.ZodObject<{
4
4
  id: z.ZodString;
5
5
  shortId: z.ZodNumber;
6
6
  phoneNumber: z.ZodEffects<z.ZodString, string, string>;
7
+ isPhoneVerified: z.ZodBoolean;
7
8
  secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
8
9
  fullName: z.ZodString;
9
10
  firstName: z.ZodNullable<z.ZodString>;
@@ -18,6 +19,7 @@ export declare const findTrashResponseSchema: z.ZodObject<{
18
19
  residenceLocationId: z.ZodNullable<z.ZodString>;
19
20
  isInTrash: z.ZodBoolean;
20
21
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
22
+ firstTimeMiExpo: z.ZodBoolean;
21
23
  created_at: z.ZodDate;
22
24
  updated_at: z.ZodDate;
23
25
  }, "id" | "phoneNumber" | "fullName" | "profilePictureUrl" | "created_at" | "isInTrash" | "movedToTrashDate">, "strip", z.ZodTypeAny, {