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.
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +17 -0
- package/dist/src/i18n/es.js +17 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/otp/dto/send-otp.dto.d.ts +34 -0
- package/dist/src/otp/dto/send-otp.dto.js +22 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +266 -0
- package/dist/src/otp/dto/verify-otp.dto.js +28 -0
- package/dist/src/otp/exports.d.ts +2 -0
- package/dist/src/otp/exports.js +19 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +8 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +12 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +12 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +12 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +2 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
- package/dist/src/profile/dto/profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/profile.dto.js +2 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +12 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
- package/dist/types/prisma-schema/edge.js +15 -3
- package/dist/types/prisma-schema/index-browser.js +12 -0
- package/dist/types/prisma-schema/index.d.ts +1649 -9
- package/dist/types/prisma-schema/index.js +15 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +19 -1
- package/dist/types/prisma-schema/wasm.js +12 -0
- package/dist/types/schema.d.ts +101 -0
- package/package.json +1 -1
@@ -4,6 +4,7 @@ export declare const findWithActiveChatResponseSchema: 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 findWithActiveChatResponseSchema: 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
|
}, {
|
@@ -167,6 +169,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
167
169
|
created_at: Date;
|
168
170
|
updated_at: Date;
|
169
171
|
shortId: number;
|
172
|
+
firstTimeMiExpo: boolean;
|
173
|
+
isPhoneVerified: boolean;
|
170
174
|
firstName: string | null;
|
171
175
|
gender: string | null;
|
172
176
|
birthDate: Date | null;
|
@@ -217,6 +221,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
217
221
|
created_at: Date;
|
218
222
|
updated_at: Date;
|
219
223
|
shortId: number;
|
224
|
+
firstTimeMiExpo: boolean;
|
225
|
+
isPhoneVerified: boolean;
|
220
226
|
firstName: string | null;
|
221
227
|
gender: string | null;
|
222
228
|
birthDate: string | null;
|
@@ -269,6 +275,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
269
275
|
created_at: Date;
|
270
276
|
updated_at: Date;
|
271
277
|
shortId: number;
|
278
|
+
firstTimeMiExpo: boolean;
|
279
|
+
isPhoneVerified: boolean;
|
272
280
|
firstName: string | null;
|
273
281
|
gender: string | null;
|
274
282
|
birthDate: Date | null;
|
@@ -321,6 +329,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
321
329
|
created_at: Date;
|
322
330
|
updated_at: Date;
|
323
331
|
shortId: number;
|
332
|
+
firstTimeMiExpo: boolean;
|
333
|
+
isPhoneVerified: boolean;
|
324
334
|
firstName: string | null;
|
325
335
|
gender: string | null;
|
326
336
|
birthDate: string | null;
|
@@ -368,6 +378,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
368
378
|
id: z.ZodString;
|
369
379
|
shortId: z.ZodNumber;
|
370
380
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
381
|
+
isPhoneVerified: z.ZodBoolean;
|
371
382
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
372
383
|
fullName: z.ZodString;
|
373
384
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -382,6 +393,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
382
393
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
383
394
|
isInTrash: z.ZodBoolean;
|
384
395
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
396
|
+
firstTimeMiExpo: z.ZodBoolean;
|
385
397
|
created_at: z.ZodString;
|
386
398
|
updated_at: z.ZodString;
|
387
399
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -527,6 +539,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
527
539
|
created_at: string;
|
528
540
|
updated_at: string;
|
529
541
|
shortId: number;
|
542
|
+
firstTimeMiExpo: boolean;
|
543
|
+
isPhoneVerified: boolean;
|
530
544
|
firstName: string | null;
|
531
545
|
gender: string | null;
|
532
546
|
birthDate: Date | null;
|
@@ -577,6 +591,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
577
591
|
created_at: string;
|
578
592
|
updated_at: string;
|
579
593
|
shortId: number;
|
594
|
+
firstTimeMiExpo: boolean;
|
595
|
+
isPhoneVerified: boolean;
|
580
596
|
firstName: string | null;
|
581
597
|
gender: string | null;
|
582
598
|
birthDate: string | null;
|
@@ -629,6 +645,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
629
645
|
created_at: string;
|
630
646
|
updated_at: string;
|
631
647
|
shortId: number;
|
648
|
+
firstTimeMiExpo: boolean;
|
649
|
+
isPhoneVerified: boolean;
|
632
650
|
firstName: string | null;
|
633
651
|
gender: string | null;
|
634
652
|
birthDate: Date | null;
|
@@ -681,6 +699,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
681
699
|
created_at: string;
|
682
700
|
updated_at: string;
|
683
701
|
shortId: number;
|
702
|
+
firstTimeMiExpo: boolean;
|
703
|
+
isPhoneVerified: boolean;
|
684
704
|
firstName: string | null;
|
685
705
|
gender: string | null;
|
686
706
|
birthDate: string | null;
|
@@ -3,6 +3,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
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 profileSchema: z.ZodObject<{
|
|
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
|
}, "strip", z.ZodTypeAny, {
|
@@ -29,6 +31,8 @@ export declare const profileSchema: z.ZodObject<{
|
|
29
31
|
created_at: Date;
|
30
32
|
updated_at: Date;
|
31
33
|
shortId: number;
|
34
|
+
firstTimeMiExpo: boolean;
|
35
|
+
isPhoneVerified: boolean;
|
32
36
|
firstName: string | null;
|
33
37
|
gender: string | null;
|
34
38
|
birthDate: Date | null;
|
@@ -49,6 +53,8 @@ export declare const profileSchema: z.ZodObject<{
|
|
49
53
|
created_at: Date;
|
50
54
|
updated_at: Date;
|
51
55
|
shortId: number;
|
56
|
+
firstTimeMiExpo: boolean;
|
57
|
+
isPhoneVerified: boolean;
|
52
58
|
firstName: string | null;
|
53
59
|
gender: string | null;
|
54
60
|
birthDate: string | null;
|
@@ -20,6 +20,7 @@ exports.profileSchema = zod_1.default.object({
|
|
20
20
|
.refine(validator_1.default.isMobilePhone, {
|
21
21
|
message: (0, translate_1.translate)('model.profile.phoneNumber.invalid'),
|
22
22
|
}),
|
23
|
+
isPhoneVerified: zod_1.default.boolean(),
|
23
24
|
secondaryPhoneNumber: zod_1.default
|
24
25
|
.string()
|
25
26
|
.nullable()
|
@@ -60,6 +61,7 @@ exports.profileSchema = zod_1.default.object({
|
|
60
61
|
residenceLocationId: zod_1.default.string().uuid().nullable(),
|
61
62
|
isInTrash: zod_1.default.boolean(),
|
62
63
|
movedToTrashDate: zod_1.default.coerce.date().nullable(),
|
64
|
+
firstTimeMiExpo: zod_1.default.boolean(),
|
63
65
|
created_at: zod_1.default.date(),
|
64
66
|
updated_at: zod_1.default.date(),
|
65
67
|
});
|
@@ -230,6 +230,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
230
230
|
id: z.ZodString;
|
231
231
|
shortId: z.ZodNumber;
|
232
232
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
233
|
+
isPhoneVerified: z.ZodBoolean;
|
233
234
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
234
235
|
fullName: z.ZodString;
|
235
236
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -244,6 +245,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
244
245
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
245
246
|
isInTrash: z.ZodBoolean;
|
246
247
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
248
|
+
firstTimeMiExpo: z.ZodBoolean;
|
247
249
|
created_at: z.ZodDate;
|
248
250
|
updated_at: z.ZodDate;
|
249
251
|
}, "strip", z.ZodTypeAny, {
|
@@ -256,6 +258,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
256
258
|
created_at: Date;
|
257
259
|
updated_at: Date;
|
258
260
|
shortId: number;
|
261
|
+
firstTimeMiExpo: boolean;
|
262
|
+
isPhoneVerified: boolean;
|
259
263
|
firstName: string | null;
|
260
264
|
gender: string | null;
|
261
265
|
birthDate: Date | null;
|
@@ -276,6 +280,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
276
280
|
created_at: Date;
|
277
281
|
updated_at: Date;
|
278
282
|
shortId: number;
|
283
|
+
firstTimeMiExpo: boolean;
|
284
|
+
isPhoneVerified: boolean;
|
279
285
|
firstName: string | null;
|
280
286
|
gender: string | null;
|
281
287
|
birthDate: string | null;
|
@@ -291,6 +297,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
291
297
|
id: z.ZodString;
|
292
298
|
shortId: z.ZodNumber;
|
293
299
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
300
|
+
isPhoneVerified: z.ZodBoolean;
|
294
301
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
295
302
|
fullName: z.ZodString;
|
296
303
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -305,6 +312,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
305
312
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
306
313
|
isInTrash: z.ZodBoolean;
|
307
314
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
315
|
+
firstTimeMiExpo: z.ZodBoolean;
|
308
316
|
created_at: z.ZodString;
|
309
317
|
updated_at: z.ZodString;
|
310
318
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -317,6 +325,8 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
317
325
|
created_at: string;
|
318
326
|
updated_at: string;
|
319
327
|
shortId: number;
|
328
|
+
firstTimeMiExpo: boolean;
|
329
|
+
isPhoneVerified: boolean;
|
320
330
|
firstName: string | null;
|
321
331
|
gender: string | null;
|
322
332
|
birthDate: Date | null;
|
@@ -337,6 +347,8 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
337
347
|
created_at: string;
|
338
348
|
updated_at: string;
|
339
349
|
shortId: number;
|
350
|
+
firstTimeMiExpo: boolean;
|
351
|
+
isPhoneVerified: boolean;
|
340
352
|
firstName: string | null;
|
341
353
|
gender: string | null;
|
342
354
|
birthDate: string | null;
|
@@ -26,6 +26,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
26
26
|
id: z.ZodString;
|
27
27
|
shortId: z.ZodNumber;
|
28
28
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
29
|
+
isPhoneVerified: z.ZodBoolean;
|
29
30
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
30
31
|
fullName: z.ZodString;
|
31
32
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -40,6 +41,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
40
41
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
41
42
|
isInTrash: z.ZodBoolean;
|
42
43
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
44
|
+
firstTimeMiExpo: z.ZodBoolean;
|
43
45
|
created_at: z.ZodDate;
|
44
46
|
updated_at: z.ZodDate;
|
45
47
|
}, "strip", z.ZodTypeAny, {
|
@@ -52,6 +54,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
52
54
|
created_at: Date;
|
53
55
|
updated_at: Date;
|
54
56
|
shortId: number;
|
57
|
+
firstTimeMiExpo: boolean;
|
58
|
+
isPhoneVerified: boolean;
|
55
59
|
firstName: string | null;
|
56
60
|
gender: string | null;
|
57
61
|
birthDate: Date | null;
|
@@ -72,6 +76,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
72
76
|
created_at: Date;
|
73
77
|
updated_at: Date;
|
74
78
|
shortId: number;
|
79
|
+
firstTimeMiExpo: boolean;
|
80
|
+
isPhoneVerified: boolean;
|
75
81
|
firstName: string | null;
|
76
82
|
gender: string | null;
|
77
83
|
birthDate: string | null;
|
@@ -94,6 +100,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
94
100
|
created_at: Date;
|
95
101
|
updated_at: Date;
|
96
102
|
shortId: number;
|
103
|
+
firstTimeMiExpo: boolean;
|
104
|
+
isPhoneVerified: boolean;
|
97
105
|
firstName: string | null;
|
98
106
|
gender: string | null;
|
99
107
|
birthDate: Date | null;
|
@@ -116,6 +124,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
116
124
|
created_at: Date;
|
117
125
|
updated_at: Date;
|
118
126
|
shortId: number;
|
127
|
+
firstTimeMiExpo: boolean;
|
128
|
+
isPhoneVerified: boolean;
|
119
129
|
firstName: string | null;
|
120
130
|
gender: string | null;
|
121
131
|
birthDate: string | null;
|
@@ -133,6 +143,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
133
143
|
id: z.ZodString;
|
134
144
|
shortId: z.ZodNumber;
|
135
145
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
146
|
+
isPhoneVerified: z.ZodBoolean;
|
136
147
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
137
148
|
fullName: z.ZodString;
|
138
149
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -147,6 +158,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
147
158
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
148
159
|
isInTrash: z.ZodBoolean;
|
149
160
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
161
|
+
firstTimeMiExpo: z.ZodBoolean;
|
150
162
|
created_at: z.ZodString;
|
151
163
|
updated_at: z.ZodString;
|
152
164
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -159,6 +171,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
159
171
|
created_at: string;
|
160
172
|
updated_at: string;
|
161
173
|
shortId: number;
|
174
|
+
firstTimeMiExpo: boolean;
|
175
|
+
isPhoneVerified: boolean;
|
162
176
|
firstName: string | null;
|
163
177
|
gender: string | null;
|
164
178
|
birthDate: Date | null;
|
@@ -179,6 +193,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
179
193
|
created_at: string;
|
180
194
|
updated_at: string;
|
181
195
|
shortId: number;
|
196
|
+
firstTimeMiExpo: boolean;
|
197
|
+
isPhoneVerified: boolean;
|
182
198
|
firstName: string | null;
|
183
199
|
gender: string | null;
|
184
200
|
birthDate: string | null;
|
@@ -201,6 +217,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
201
217
|
created_at: string;
|
202
218
|
updated_at: string;
|
203
219
|
shortId: number;
|
220
|
+
firstTimeMiExpo: boolean;
|
221
|
+
isPhoneVerified: boolean;
|
204
222
|
firstName: string | null;
|
205
223
|
gender: string | null;
|
206
224
|
birthDate: Date | null;
|
@@ -223,6 +241,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
223
241
|
created_at: string;
|
224
242
|
updated_at: string;
|
225
243
|
shortId: number;
|
244
|
+
firstTimeMiExpo: boolean;
|
245
|
+
isPhoneVerified: boolean;
|
226
246
|
firstName: string | null;
|
227
247
|
gender: string | null;
|
228
248
|
birthDate: string | null;
|
@@ -26,6 +26,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
26
26
|
id: z.ZodString;
|
27
27
|
shortId: z.ZodNumber;
|
28
28
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
29
|
+
isPhoneVerified: z.ZodBoolean;
|
29
30
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
30
31
|
fullName: z.ZodString;
|
31
32
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -40,6 +41,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
40
41
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
41
42
|
isInTrash: z.ZodBoolean;
|
42
43
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
44
|
+
firstTimeMiExpo: z.ZodBoolean;
|
43
45
|
created_at: z.ZodDate;
|
44
46
|
updated_at: z.ZodDate;
|
45
47
|
}, "strip", z.ZodTypeAny, {
|
@@ -52,6 +54,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
52
54
|
created_at: Date;
|
53
55
|
updated_at: Date;
|
54
56
|
shortId: number;
|
57
|
+
firstTimeMiExpo: boolean;
|
58
|
+
isPhoneVerified: boolean;
|
55
59
|
firstName: string | null;
|
56
60
|
gender: string | null;
|
57
61
|
birthDate: Date | null;
|
@@ -72,6 +76,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
72
76
|
created_at: Date;
|
73
77
|
updated_at: Date;
|
74
78
|
shortId: number;
|
79
|
+
firstTimeMiExpo: boolean;
|
80
|
+
isPhoneVerified: boolean;
|
75
81
|
firstName: string | null;
|
76
82
|
gender: string | null;
|
77
83
|
birthDate: string | null;
|
@@ -94,6 +100,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
94
100
|
created_at: Date;
|
95
101
|
updated_at: Date;
|
96
102
|
shortId: number;
|
103
|
+
firstTimeMiExpo: boolean;
|
104
|
+
isPhoneVerified: boolean;
|
97
105
|
firstName: string | null;
|
98
106
|
gender: string | null;
|
99
107
|
birthDate: Date | null;
|
@@ -116,6 +124,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
116
124
|
created_at: Date;
|
117
125
|
updated_at: Date;
|
118
126
|
shortId: number;
|
127
|
+
firstTimeMiExpo: boolean;
|
128
|
+
isPhoneVerified: boolean;
|
119
129
|
firstName: string | null;
|
120
130
|
gender: string | null;
|
121
131
|
birthDate: string | null;
|
@@ -133,6 +143,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
133
143
|
id: z.ZodString;
|
134
144
|
shortId: z.ZodNumber;
|
135
145
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
146
|
+
isPhoneVerified: z.ZodBoolean;
|
136
147
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
137
148
|
fullName: z.ZodString;
|
138
149
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -147,6 +158,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
147
158
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
148
159
|
isInTrash: z.ZodBoolean;
|
149
160
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
161
|
+
firstTimeMiExpo: z.ZodBoolean;
|
150
162
|
created_at: z.ZodString;
|
151
163
|
updated_at: z.ZodString;
|
152
164
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -159,6 +171,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
159
171
|
created_at: string;
|
160
172
|
updated_at: string;
|
161
173
|
shortId: number;
|
174
|
+
firstTimeMiExpo: boolean;
|
175
|
+
isPhoneVerified: boolean;
|
162
176
|
firstName: string | null;
|
163
177
|
gender: string | null;
|
164
178
|
birthDate: Date | null;
|
@@ -179,6 +193,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
179
193
|
created_at: string;
|
180
194
|
updated_at: string;
|
181
195
|
shortId: number;
|
196
|
+
firstTimeMiExpo: boolean;
|
197
|
+
isPhoneVerified: boolean;
|
182
198
|
firstName: string | null;
|
183
199
|
gender: string | null;
|
184
200
|
birthDate: string | null;
|
@@ -201,6 +217,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
201
217
|
created_at: string;
|
202
218
|
updated_at: string;
|
203
219
|
shortId: number;
|
220
|
+
firstTimeMiExpo: boolean;
|
221
|
+
isPhoneVerified: boolean;
|
204
222
|
firstName: string | null;
|
205
223
|
gender: string | null;
|
206
224
|
birthDate: Date | null;
|
@@ -223,6 +241,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
223
241
|
created_at: string;
|
224
242
|
updated_at: string;
|
225
243
|
shortId: number;
|
244
|
+
firstTimeMiExpo: boolean;
|
245
|
+
isPhoneVerified: boolean;
|
226
246
|
firstName: string | null;
|
227
247
|
gender: string | null;
|
228
248
|
birthDate: string | null;
|