expo-backend-types 0.30.0-EXPO-308-auth.6 → 0.30.0-EXPO-308-auth.7
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/auth/dto/login-mi-expo.dto.d.ts +327 -0
- package/dist/src/auth/dto/login-mi-expo.dto.js +31 -0
- package/dist/src/otp/constants.d.ts +1 -0
- package/dist/src/otp/constants.js +2 -1
- package/dist/src/otp/dto/verify-otp.dto.d.ts +22 -2
- package/dist/src/profile/dto/create-profile.dto.d.ts +12 -4
- package/dist/src/profile/dto/delete-profile.dto.d.ts +14 -2
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +22 -2
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -4
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +14 -2
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +14 -2
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +22 -2
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +22 -2
- package/dist/src/profile/dto/find-trash.dto.d.ts +3 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +22 -2
- package/dist/src/profile/dto/profile.dto.d.ts +7 -1
- package/dist/src/profile/dto/profile.dto.js +3 -1
- package/dist/src/profile/dto/update-profile.dto.d.ts +14 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +22 -2
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +22 -2
- package/dist/types/prisma-schema/edge.js +26 -24
- package/dist/types/prisma-schema/index-browser.js +6 -9
- package/dist/types/prisma-schema/index.d.ts +2126 -415
- package/dist/types/prisma-schema/index.js +26 -24
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +2 -2
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
- package/dist/types/prisma-schema/runtime/edge.js +18 -18
- package/dist/types/prisma-schema/runtime/index-browser.d.ts +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +177 -133
- package/dist/types/prisma-schema/runtime/library.js +51 -51
- package/dist/types/prisma-schema/runtime/react-native.js +26 -26
- package/dist/types/prisma-schema/runtime/wasm.js +19 -19
- package/dist/types/prisma-schema/schema.prisma +3 -0
- package/dist/types/prisma-schema/wasm.js +6 -9
- package/dist/types/schema.d.ts +113 -13
- package/package.json +4 -4
@@ -3,6 +3,9 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
3
3
|
profiles: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
4
4
|
id: z.ZodString;
|
5
5
|
shortId: z.ZodNumber;
|
6
|
+
firstTimeMiExpo: z.ZodBoolean;
|
7
|
+
username: z.ZodNullable<z.ZodString>;
|
8
|
+
password: z.ZodNullable<z.ZodString>;
|
6
9
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
7
10
|
isPhoneVerified: z.ZodBoolean;
|
8
11
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -19,7 +22,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
19
22
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
20
23
|
isInTrash: z.ZodBoolean;
|
21
24
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
22
|
-
firstTimeMiExpo: z.ZodBoolean;
|
23
25
|
created_at: z.ZodDate;
|
24
26
|
updated_at: z.ZodDate;
|
25
27
|
}, {
|
@@ -161,6 +163,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
161
163
|
}>, "many">;
|
162
164
|
}>, "strip", z.ZodTypeAny, {
|
163
165
|
id: string;
|
166
|
+
username: string | null;
|
167
|
+
password: string | null;
|
164
168
|
phoneNumber: string;
|
165
169
|
secondaryPhoneNumber: string | null;
|
166
170
|
fullName: string;
|
@@ -213,6 +217,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
213
217
|
inChat: boolean;
|
214
218
|
}, {
|
215
219
|
id: string;
|
220
|
+
username: string | null;
|
221
|
+
password: string | null;
|
216
222
|
phoneNumber: string;
|
217
223
|
secondaryPhoneNumber: string | null;
|
218
224
|
fullName: string;
|
@@ -267,6 +273,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
267
273
|
}, "strip", z.ZodTypeAny, {
|
268
274
|
profiles: {
|
269
275
|
id: string;
|
276
|
+
username: string | null;
|
277
|
+
password: string | null;
|
270
278
|
phoneNumber: string;
|
271
279
|
secondaryPhoneNumber: string | null;
|
272
280
|
fullName: string;
|
@@ -321,6 +329,8 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
|
|
321
329
|
}, {
|
322
330
|
profiles: {
|
323
331
|
id: string;
|
332
|
+
username: string | null;
|
333
|
+
password: string | null;
|
324
334
|
phoneNumber: string;
|
325
335
|
secondaryPhoneNumber: string | null;
|
326
336
|
fullName: string;
|
@@ -377,6 +387,9 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
377
387
|
profiles: z.ZodArray<z.ZodObject<{
|
378
388
|
id: z.ZodString;
|
379
389
|
shortId: z.ZodNumber;
|
390
|
+
firstTimeMiExpo: z.ZodBoolean;
|
391
|
+
username: z.ZodNullable<z.ZodString>;
|
392
|
+
password: z.ZodNullable<z.ZodString>;
|
380
393
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
381
394
|
isPhoneVerified: z.ZodBoolean;
|
382
395
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -393,7 +406,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
393
406
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
394
407
|
isInTrash: z.ZodBoolean;
|
395
408
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
396
|
-
firstTimeMiExpo: z.ZodBoolean;
|
397
409
|
created_at: z.ZodString;
|
398
410
|
updated_at: z.ZodString;
|
399
411
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -531,6 +543,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
531
543
|
}>, "many">;
|
532
544
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
533
545
|
id: string;
|
546
|
+
username: string | null;
|
547
|
+
password: string | null;
|
534
548
|
phoneNumber: string;
|
535
549
|
secondaryPhoneNumber: string | null;
|
536
550
|
fullName: string;
|
@@ -583,6 +597,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
583
597
|
inChat: boolean;
|
584
598
|
}, {
|
585
599
|
id: string;
|
600
|
+
username: string | null;
|
601
|
+
password: string | null;
|
586
602
|
phoneNumber: string;
|
587
603
|
secondaryPhoneNumber: string | null;
|
588
604
|
fullName: string;
|
@@ -637,6 +653,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
637
653
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
638
654
|
profiles: {
|
639
655
|
id: string;
|
656
|
+
username: string | null;
|
657
|
+
password: string | null;
|
640
658
|
phoneNumber: string;
|
641
659
|
secondaryPhoneNumber: string | null;
|
642
660
|
fullName: string;
|
@@ -691,6 +709,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
|
|
691
709
|
}, {
|
692
710
|
profiles: {
|
693
711
|
id: string;
|
712
|
+
username: string | null;
|
713
|
+
password: string | null;
|
694
714
|
phoneNumber: string;
|
695
715
|
secondaryPhoneNumber: string | null;
|
696
716
|
fullName: string;
|
@@ -2,6 +2,9 @@ import z from 'zod';
|
|
2
2
|
export declare const profileSchema: z.ZodObject<{
|
3
3
|
id: z.ZodString;
|
4
4
|
shortId: z.ZodNumber;
|
5
|
+
firstTimeMiExpo: z.ZodBoolean;
|
6
|
+
username: z.ZodNullable<z.ZodString>;
|
7
|
+
password: z.ZodNullable<z.ZodString>;
|
5
8
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
6
9
|
isPhoneVerified: z.ZodBoolean;
|
7
10
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -18,11 +21,12 @@ export declare const profileSchema: z.ZodObject<{
|
|
18
21
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
19
22
|
isInTrash: z.ZodBoolean;
|
20
23
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
21
|
-
firstTimeMiExpo: z.ZodBoolean;
|
22
24
|
created_at: z.ZodDate;
|
23
25
|
updated_at: z.ZodDate;
|
24
26
|
}, "strip", z.ZodTypeAny, {
|
25
27
|
id: string;
|
28
|
+
username: string | null;
|
29
|
+
password: string | null;
|
26
30
|
phoneNumber: string;
|
27
31
|
secondaryPhoneNumber: string | null;
|
28
32
|
fullName: string;
|
@@ -45,6 +49,8 @@ export declare const profileSchema: z.ZodObject<{
|
|
45
49
|
movedToTrashDate: Date | null;
|
46
50
|
}, {
|
47
51
|
id: string;
|
52
|
+
username: string | null;
|
53
|
+
password: string | null;
|
48
54
|
phoneNumber: string;
|
49
55
|
secondaryPhoneNumber: string | null;
|
50
56
|
fullName: string;
|
@@ -45,6 +45,9 @@ exports.profileSchema = zod_1.default.object({
|
|
45
45
|
message: (0, translate_1.translate)('model.profile.id.uuid'),
|
46
46
|
}),
|
47
47
|
shortId: zod_1.default.number(),
|
48
|
+
firstTimeMiExpo: zod_1.default.boolean(),
|
49
|
+
username: zod_1.default.string().nullable(),
|
50
|
+
password: zod_1.default.string().nullable(),
|
48
51
|
phoneNumber: zod_1.default
|
49
52
|
.string()
|
50
53
|
.min(1, {
|
@@ -124,7 +127,6 @@ exports.profileSchema = zod_1.default.object({
|
|
124
127
|
residenceLocationId: zod_1.default.string().uuid().nullable(),
|
125
128
|
isInTrash: zod_1.default.boolean(),
|
126
129
|
movedToTrashDate: zod_1.default.coerce.date().nullable(),
|
127
|
-
firstTimeMiExpo: zod_1.default.boolean(),
|
128
130
|
created_at: zod_1.default.date(),
|
129
131
|
updated_at: zod_1.default.date(),
|
130
132
|
});
|
@@ -229,6 +229,9 @@ export declare class UpdateProfileDto extends UpdateProfileDto_base {
|
|
229
229
|
export declare const updateProfileResponseSchema: z.ZodObject<{
|
230
230
|
id: z.ZodString;
|
231
231
|
shortId: z.ZodNumber;
|
232
|
+
firstTimeMiExpo: z.ZodBoolean;
|
233
|
+
username: z.ZodNullable<z.ZodString>;
|
234
|
+
password: z.ZodNullable<z.ZodString>;
|
232
235
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
233
236
|
isPhoneVerified: z.ZodBoolean;
|
234
237
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -245,11 +248,12 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
245
248
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
246
249
|
isInTrash: z.ZodBoolean;
|
247
250
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
248
|
-
firstTimeMiExpo: z.ZodBoolean;
|
249
251
|
created_at: z.ZodDate;
|
250
252
|
updated_at: z.ZodDate;
|
251
253
|
}, "strip", z.ZodTypeAny, {
|
252
254
|
id: string;
|
255
|
+
username: string | null;
|
256
|
+
password: string | null;
|
253
257
|
phoneNumber: string;
|
254
258
|
secondaryPhoneNumber: string | null;
|
255
259
|
fullName: string;
|
@@ -272,6 +276,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
272
276
|
movedToTrashDate: Date | null;
|
273
277
|
}, {
|
274
278
|
id: string;
|
279
|
+
username: string | null;
|
280
|
+
password: string | null;
|
275
281
|
phoneNumber: string;
|
276
282
|
secondaryPhoneNumber: string | null;
|
277
283
|
fullName: string;
|
@@ -296,6 +302,9 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
296
302
|
declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
297
303
|
id: z.ZodString;
|
298
304
|
shortId: z.ZodNumber;
|
305
|
+
firstTimeMiExpo: z.ZodBoolean;
|
306
|
+
username: z.ZodNullable<z.ZodString>;
|
307
|
+
password: z.ZodNullable<z.ZodString>;
|
299
308
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
300
309
|
isPhoneVerified: z.ZodBoolean;
|
301
310
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -312,11 +321,12 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
312
321
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
313
322
|
isInTrash: z.ZodBoolean;
|
314
323
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
315
|
-
firstTimeMiExpo: z.ZodBoolean;
|
316
324
|
created_at: z.ZodString;
|
317
325
|
updated_at: z.ZodString;
|
318
326
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
319
327
|
id: string;
|
328
|
+
username: string | null;
|
329
|
+
password: string | null;
|
320
330
|
phoneNumber: string;
|
321
331
|
secondaryPhoneNumber: string | null;
|
322
332
|
fullName: string;
|
@@ -339,6 +349,8 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
339
349
|
movedToTrashDate: string | null;
|
340
350
|
}, {
|
341
351
|
id: string;
|
352
|
+
username: string | null;
|
353
|
+
password: string | null;
|
342
354
|
phoneNumber: string;
|
343
355
|
secondaryPhoneNumber: string | null;
|
344
356
|
fullName: string;
|
@@ -25,6 +25,9 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
25
25
|
profiles: z.ZodArray<z.ZodObject<{
|
26
26
|
id: z.ZodString;
|
27
27
|
shortId: z.ZodNumber;
|
28
|
+
firstTimeMiExpo: z.ZodBoolean;
|
29
|
+
username: z.ZodNullable<z.ZodString>;
|
30
|
+
password: z.ZodNullable<z.ZodString>;
|
28
31
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
29
32
|
isPhoneVerified: z.ZodBoolean;
|
30
33
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -41,11 +44,12 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
41
44
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
42
45
|
isInTrash: z.ZodBoolean;
|
43
46
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
44
|
-
firstTimeMiExpo: z.ZodBoolean;
|
45
47
|
created_at: z.ZodDate;
|
46
48
|
updated_at: z.ZodDate;
|
47
49
|
}, "strip", z.ZodTypeAny, {
|
48
50
|
id: string;
|
51
|
+
username: string | null;
|
52
|
+
password: string | null;
|
49
53
|
phoneNumber: string;
|
50
54
|
secondaryPhoneNumber: string | null;
|
51
55
|
fullName: string;
|
@@ -68,6 +72,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
68
72
|
movedToTrashDate: Date | null;
|
69
73
|
}, {
|
70
74
|
id: string;
|
75
|
+
username: string | null;
|
76
|
+
password: string | null;
|
71
77
|
phoneNumber: string;
|
72
78
|
secondaryPhoneNumber: string | null;
|
73
79
|
fullName: string;
|
@@ -92,6 +98,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
92
98
|
}, "strip", z.ZodTypeAny, {
|
93
99
|
profiles: {
|
94
100
|
id: string;
|
101
|
+
username: string | null;
|
102
|
+
password: string | null;
|
95
103
|
phoneNumber: string;
|
96
104
|
secondaryPhoneNumber: string | null;
|
97
105
|
fullName: string;
|
@@ -116,6 +124,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
116
124
|
}, {
|
117
125
|
profiles: {
|
118
126
|
id: string;
|
127
|
+
username: string | null;
|
128
|
+
password: string | null;
|
119
129
|
phoneNumber: string;
|
120
130
|
secondaryPhoneNumber: string | null;
|
121
131
|
fullName: string;
|
@@ -142,6 +152,9 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
142
152
|
profiles: z.ZodArray<z.ZodObject<{
|
143
153
|
id: z.ZodString;
|
144
154
|
shortId: z.ZodNumber;
|
155
|
+
firstTimeMiExpo: z.ZodBoolean;
|
156
|
+
username: z.ZodNullable<z.ZodString>;
|
157
|
+
password: z.ZodNullable<z.ZodString>;
|
145
158
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
146
159
|
isPhoneVerified: z.ZodBoolean;
|
147
160
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -158,11 +171,12 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
158
171
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
159
172
|
isInTrash: z.ZodBoolean;
|
160
173
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
161
|
-
firstTimeMiExpo: z.ZodBoolean;
|
162
174
|
created_at: z.ZodString;
|
163
175
|
updated_at: z.ZodString;
|
164
176
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
165
177
|
id: string;
|
178
|
+
username: string | null;
|
179
|
+
password: string | null;
|
166
180
|
phoneNumber: string;
|
167
181
|
secondaryPhoneNumber: string | null;
|
168
182
|
fullName: string;
|
@@ -185,6 +199,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
185
199
|
movedToTrashDate: string | null;
|
186
200
|
}, {
|
187
201
|
id: string;
|
202
|
+
username: string | null;
|
203
|
+
password: string | null;
|
188
204
|
phoneNumber: string;
|
189
205
|
secondaryPhoneNumber: string | null;
|
190
206
|
fullName: string;
|
@@ -209,6 +225,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
209
225
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
210
226
|
profiles: {
|
211
227
|
id: string;
|
228
|
+
username: string | null;
|
229
|
+
password: string | null;
|
212
230
|
phoneNumber: string;
|
213
231
|
secondaryPhoneNumber: string | null;
|
214
232
|
fullName: string;
|
@@ -233,6 +251,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
233
251
|
}, {
|
234
252
|
profiles: {
|
235
253
|
id: string;
|
254
|
+
username: string | null;
|
255
|
+
password: string | null;
|
236
256
|
phoneNumber: string;
|
237
257
|
secondaryPhoneNumber: string | null;
|
238
258
|
fullName: string;
|
@@ -25,6 +25,9 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
25
25
|
profiles: z.ZodArray<z.ZodObject<{
|
26
26
|
id: z.ZodString;
|
27
27
|
shortId: z.ZodNumber;
|
28
|
+
firstTimeMiExpo: z.ZodBoolean;
|
29
|
+
username: z.ZodNullable<z.ZodString>;
|
30
|
+
password: z.ZodNullable<z.ZodString>;
|
28
31
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
29
32
|
isPhoneVerified: z.ZodBoolean;
|
30
33
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -41,11 +44,12 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
41
44
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
42
45
|
isInTrash: z.ZodBoolean;
|
43
46
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
44
|
-
firstTimeMiExpo: z.ZodBoolean;
|
45
47
|
created_at: z.ZodDate;
|
46
48
|
updated_at: z.ZodDate;
|
47
49
|
}, "strip", z.ZodTypeAny, {
|
48
50
|
id: string;
|
51
|
+
username: string | null;
|
52
|
+
password: string | null;
|
49
53
|
phoneNumber: string;
|
50
54
|
secondaryPhoneNumber: string | null;
|
51
55
|
fullName: string;
|
@@ -68,6 +72,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
68
72
|
movedToTrashDate: Date | null;
|
69
73
|
}, {
|
70
74
|
id: string;
|
75
|
+
username: string | null;
|
76
|
+
password: string | null;
|
71
77
|
phoneNumber: string;
|
72
78
|
secondaryPhoneNumber: string | null;
|
73
79
|
fullName: string;
|
@@ -92,6 +98,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
92
98
|
}, "strip", z.ZodTypeAny, {
|
93
99
|
profiles: {
|
94
100
|
id: string;
|
101
|
+
username: string | null;
|
102
|
+
password: string | null;
|
95
103
|
phoneNumber: string;
|
96
104
|
secondaryPhoneNumber: string | null;
|
97
105
|
fullName: string;
|
@@ -116,6 +124,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
116
124
|
}, {
|
117
125
|
profiles: {
|
118
126
|
id: string;
|
127
|
+
username: string | null;
|
128
|
+
password: string | null;
|
119
129
|
phoneNumber: string;
|
120
130
|
secondaryPhoneNumber: string | null;
|
121
131
|
fullName: string;
|
@@ -142,6 +152,9 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
142
152
|
profiles: z.ZodArray<z.ZodObject<{
|
143
153
|
id: z.ZodString;
|
144
154
|
shortId: z.ZodNumber;
|
155
|
+
firstTimeMiExpo: z.ZodBoolean;
|
156
|
+
username: z.ZodNullable<z.ZodString>;
|
157
|
+
password: z.ZodNullable<z.ZodString>;
|
145
158
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
146
159
|
isPhoneVerified: z.ZodBoolean;
|
147
160
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -158,11 +171,12 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
158
171
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
159
172
|
isInTrash: z.ZodBoolean;
|
160
173
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
161
|
-
firstTimeMiExpo: z.ZodBoolean;
|
162
174
|
created_at: z.ZodString;
|
163
175
|
updated_at: z.ZodString;
|
164
176
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
165
177
|
id: string;
|
178
|
+
username: string | null;
|
179
|
+
password: string | null;
|
166
180
|
phoneNumber: string;
|
167
181
|
secondaryPhoneNumber: string | null;
|
168
182
|
fullName: string;
|
@@ -185,6 +199,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
185
199
|
movedToTrashDate: string | null;
|
186
200
|
}, {
|
187
201
|
id: string;
|
202
|
+
username: string | null;
|
203
|
+
password: string | null;
|
188
204
|
phoneNumber: string;
|
189
205
|
secondaryPhoneNumber: string | null;
|
190
206
|
fullName: string;
|
@@ -209,6 +225,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
209
225
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
210
226
|
profiles: {
|
211
227
|
id: string;
|
228
|
+
username: string | null;
|
229
|
+
password: string | null;
|
212
230
|
phoneNumber: string;
|
213
231
|
secondaryPhoneNumber: string | null;
|
214
232
|
fullName: string;
|
@@ -233,6 +251,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
233
251
|
}, {
|
234
252
|
profiles: {
|
235
253
|
id: string;
|
254
|
+
username: string | null;
|
255
|
+
password: string | null;
|
236
256
|
phoneNumber: string;
|
237
257
|
secondaryPhoneNumber: string | null;
|
238
258
|
fullName: string;
|