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 findAllProfileResponseSchema: 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 findAllProfileResponseSchema: 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
|
}, {
|
@@ -75,6 +77,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
75
77
|
}>, "many">;
|
76
78
|
}>, "strip", z.ZodTypeAny, {
|
77
79
|
id: string;
|
80
|
+
username: string | null;
|
81
|
+
password: string | null;
|
78
82
|
phoneNumber: string;
|
79
83
|
secondaryPhoneNumber: string | null;
|
80
84
|
fullName: string;
|
@@ -109,6 +113,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
109
113
|
}[];
|
110
114
|
}, {
|
111
115
|
id: string;
|
116
|
+
username: string | null;
|
117
|
+
password: string | null;
|
112
118
|
phoneNumber: string;
|
113
119
|
secondaryPhoneNumber: string | null;
|
114
120
|
fullName: string;
|
@@ -145,6 +151,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
145
151
|
}, "strip", z.ZodTypeAny, {
|
146
152
|
profiles: {
|
147
153
|
id: string;
|
154
|
+
username: string | null;
|
155
|
+
password: string | null;
|
148
156
|
phoneNumber: string;
|
149
157
|
secondaryPhoneNumber: string | null;
|
150
158
|
fullName: string;
|
@@ -181,6 +189,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
181
189
|
}, {
|
182
190
|
profiles: {
|
183
191
|
id: string;
|
192
|
+
username: string | null;
|
193
|
+
password: string | null;
|
184
194
|
phoneNumber: string;
|
185
195
|
secondaryPhoneNumber: string | null;
|
186
196
|
fullName: string;
|
@@ -219,6 +229,9 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
219
229
|
profiles: z.ZodArray<z.ZodObject<{
|
220
230
|
id: z.ZodString;
|
221
231
|
shortId: z.ZodNumber;
|
232
|
+
firstTimeMiExpo: z.ZodBoolean;
|
233
|
+
username: z.ZodNullable<z.ZodString>;
|
234
|
+
password: z.ZodNullable<z.ZodString>;
|
222
235
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
223
236
|
isPhoneVerified: z.ZodBoolean;
|
224
237
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -235,7 +248,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
235
248
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
236
249
|
isInTrash: z.ZodBoolean;
|
237
250
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
238
|
-
firstTimeMiExpo: z.ZodBoolean;
|
239
251
|
created_at: z.ZodString;
|
240
252
|
updated_at: z.ZodString;
|
241
253
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -285,6 +297,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
285
297
|
}>, "many">;
|
286
298
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
287
299
|
id: string;
|
300
|
+
username: string | null;
|
301
|
+
password: string | null;
|
288
302
|
phoneNumber: string;
|
289
303
|
secondaryPhoneNumber: string | null;
|
290
304
|
fullName: string;
|
@@ -319,6 +333,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
319
333
|
}[];
|
320
334
|
}, {
|
321
335
|
id: string;
|
336
|
+
username: string | null;
|
337
|
+
password: string | null;
|
322
338
|
phoneNumber: string;
|
323
339
|
secondaryPhoneNumber: string | null;
|
324
340
|
fullName: string;
|
@@ -355,6 +371,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
355
371
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
356
372
|
profiles: {
|
357
373
|
id: string;
|
374
|
+
username: string | null;
|
375
|
+
password: string | null;
|
358
376
|
phoneNumber: string;
|
359
377
|
secondaryPhoneNumber: string | null;
|
360
378
|
fullName: string;
|
@@ -391,6 +409,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
391
409
|
}, {
|
392
410
|
profiles: {
|
393
411
|
id: string;
|
412
|
+
username: string | null;
|
413
|
+
password: string | null;
|
394
414
|
phoneNumber: string;
|
395
415
|
secondaryPhoneNumber: string | null;
|
396
416
|
fullName: string;
|
@@ -3,6 +3,9 @@ export declare const findByDateRangeSchema: 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 findByDateRangeSchema: 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
|
}, {
|
@@ -71,6 +73,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
71
73
|
}>, "many">;
|
72
74
|
}>, "strip", z.ZodTypeAny, {
|
73
75
|
id: string;
|
76
|
+
username: string | null;
|
77
|
+
password: string | null;
|
74
78
|
phoneNumber: string;
|
75
79
|
secondaryPhoneNumber: string | null;
|
76
80
|
fullName: string;
|
@@ -104,6 +108,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
104
108
|
}[];
|
105
109
|
}, {
|
106
110
|
id: string;
|
111
|
+
username: string | null;
|
112
|
+
password: string | null;
|
107
113
|
phoneNumber: string;
|
108
114
|
secondaryPhoneNumber: string | null;
|
109
115
|
fullName: string;
|
@@ -139,6 +145,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
139
145
|
}, "strip", z.ZodTypeAny, {
|
140
146
|
profiles: {
|
141
147
|
id: string;
|
148
|
+
username: string | null;
|
149
|
+
password: string | null;
|
142
150
|
phoneNumber: string;
|
143
151
|
secondaryPhoneNumber: string | null;
|
144
152
|
fullName: string;
|
@@ -174,6 +182,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
174
182
|
}, {
|
175
183
|
profiles: {
|
176
184
|
id: string;
|
185
|
+
username: string | null;
|
186
|
+
password: string | null;
|
177
187
|
phoneNumber: string;
|
178
188
|
secondaryPhoneNumber: string | null;
|
179
189
|
fullName: string;
|
@@ -211,6 +221,9 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
211
221
|
profiles: z.ZodArray<z.ZodObject<{
|
212
222
|
id: z.ZodString;
|
213
223
|
shortId: z.ZodNumber;
|
224
|
+
firstTimeMiExpo: z.ZodBoolean;
|
225
|
+
username: z.ZodNullable<z.ZodString>;
|
226
|
+
password: z.ZodNullable<z.ZodString>;
|
214
227
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
215
228
|
isPhoneVerified: z.ZodBoolean;
|
216
229
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -227,7 +240,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
227
240
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
228
241
|
isInTrash: z.ZodBoolean;
|
229
242
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
230
|
-
firstTimeMiExpo: z.ZodBoolean;
|
231
243
|
created_at: z.ZodString;
|
232
244
|
updated_at: z.ZodString;
|
233
245
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -272,6 +284,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
272
284
|
}>, "many">;
|
273
285
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
274
286
|
id: string;
|
287
|
+
username: string | null;
|
288
|
+
password: string | null;
|
275
289
|
phoneNumber: string;
|
276
290
|
secondaryPhoneNumber: string | null;
|
277
291
|
fullName: string;
|
@@ -305,6 +319,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
305
319
|
}[];
|
306
320
|
}, {
|
307
321
|
id: string;
|
322
|
+
username: string | null;
|
323
|
+
password: string | null;
|
308
324
|
phoneNumber: string;
|
309
325
|
secondaryPhoneNumber: string | null;
|
310
326
|
fullName: string;
|
@@ -340,6 +356,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
340
356
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
341
357
|
profiles: {
|
342
358
|
id: string;
|
359
|
+
username: string | null;
|
360
|
+
password: string | null;
|
343
361
|
phoneNumber: string;
|
344
362
|
secondaryPhoneNumber: string | null;
|
345
363
|
fullName: string;
|
@@ -375,6 +393,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
375
393
|
}, {
|
376
394
|
profiles: {
|
377
395
|
id: string;
|
396
|
+
username: string | null;
|
397
|
+
password: string | null;
|
378
398
|
phoneNumber: string;
|
379
399
|
secondaryPhoneNumber: string | null;
|
380
400
|
fullName: string;
|
@@ -413,6 +433,9 @@ export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
|
|
413
433
|
export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
414
434
|
id: z.ZodString;
|
415
435
|
shortId: z.ZodNumber;
|
436
|
+
firstTimeMiExpo: z.ZodBoolean;
|
437
|
+
username: z.ZodNullable<z.ZodString>;
|
438
|
+
password: z.ZodNullable<z.ZodString>;
|
416
439
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
417
440
|
isPhoneVerified: z.ZodBoolean;
|
418
441
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -429,7 +452,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
429
452
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
430
453
|
isInTrash: z.ZodBoolean;
|
431
454
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
432
|
-
firstTimeMiExpo: z.ZodBoolean;
|
433
455
|
created_at: z.ZodDate;
|
434
456
|
updated_at: z.ZodDate;
|
435
457
|
}, {
|
@@ -481,6 +503,8 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
481
503
|
}>, "many">;
|
482
504
|
}>, "strip", z.ZodTypeAny, {
|
483
505
|
id: string;
|
506
|
+
username: string | null;
|
507
|
+
password: string | null;
|
484
508
|
phoneNumber: string;
|
485
509
|
secondaryPhoneNumber: string | null;
|
486
510
|
fullName: string;
|
@@ -514,6 +538,8 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
514
538
|
}[];
|
515
539
|
}, {
|
516
540
|
id: string;
|
541
|
+
username: string | null;
|
542
|
+
password: string | null;
|
517
543
|
phoneNumber: string;
|
518
544
|
secondaryPhoneNumber: string | null;
|
519
545
|
fullName: string;
|
@@ -549,6 +575,9 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
549
575
|
declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
550
576
|
id: z.ZodString;
|
551
577
|
shortId: z.ZodNumber;
|
578
|
+
firstTimeMiExpo: z.ZodBoolean;
|
579
|
+
username: z.ZodNullable<z.ZodString>;
|
580
|
+
password: z.ZodNullable<z.ZodString>;
|
552
581
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
553
582
|
isPhoneVerified: z.ZodBoolean;
|
554
583
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -565,7 +594,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
565
594
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
566
595
|
isInTrash: z.ZodBoolean;
|
567
596
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
568
|
-
firstTimeMiExpo: z.ZodBoolean;
|
569
597
|
created_at: z.ZodDate;
|
570
598
|
updated_at: z.ZodDate;
|
571
599
|
}, {
|
@@ -617,6 +645,8 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
617
645
|
}>, "many">;
|
618
646
|
}>, "strip", z.ZodTypeAny, {
|
619
647
|
id: string;
|
648
|
+
username: string | null;
|
649
|
+
password: string | null;
|
620
650
|
phoneNumber: string;
|
621
651
|
secondaryPhoneNumber: string | null;
|
622
652
|
fullName: string;
|
@@ -650,6 +680,8 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
650
680
|
}[];
|
651
681
|
}, {
|
652
682
|
id: string;
|
683
|
+
username: string | null;
|
684
|
+
password: string | null;
|
653
685
|
phoneNumber: string;
|
654
686
|
secondaryPhoneNumber: string | null;
|
655
687
|
fullName: string;
|
@@ -2,6 +2,9 @@ import z from 'zod';
|
|
2
2
|
export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
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,7 +21,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
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
|
}, {
|
@@ -134,6 +136,8 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
134
136
|
}>, "many">;
|
135
137
|
}>, "strip", z.ZodTypeAny, {
|
136
138
|
id: string;
|
139
|
+
username: string | null;
|
140
|
+
password: string | null;
|
137
141
|
phoneNumber: string;
|
138
142
|
secondaryPhoneNumber: string | null;
|
139
143
|
fullName: string;
|
@@ -189,6 +193,8 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
189
193
|
} | null;
|
190
194
|
}, {
|
191
195
|
id: string;
|
196
|
+
username: string | null;
|
197
|
+
password: string | null;
|
192
198
|
phoneNumber: string;
|
193
199
|
secondaryPhoneNumber: string | null;
|
194
200
|
fullName: string;
|
@@ -246,6 +252,9 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
246
252
|
declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
247
253
|
id: z.ZodString;
|
248
254
|
shortId: z.ZodNumber;
|
255
|
+
firstTimeMiExpo: z.ZodBoolean;
|
256
|
+
username: z.ZodNullable<z.ZodString>;
|
257
|
+
password: z.ZodNullable<z.ZodString>;
|
249
258
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
250
259
|
isPhoneVerified: z.ZodBoolean;
|
251
260
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -262,7 +271,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
262
271
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
263
272
|
isInTrash: z.ZodBoolean;
|
264
273
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
265
|
-
firstTimeMiExpo: z.ZodBoolean;
|
266
274
|
created_at: z.ZodString;
|
267
275
|
updated_at: z.ZodString;
|
268
276
|
residenceLocation: z.ZodNullable<z.ZodObject<{
|
@@ -373,6 +381,8 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
373
381
|
}>, "many">;
|
374
382
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
375
383
|
id: string;
|
384
|
+
username: string | null;
|
385
|
+
password: string | null;
|
376
386
|
phoneNumber: string;
|
377
387
|
secondaryPhoneNumber: string | null;
|
378
388
|
fullName: string;
|
@@ -428,6 +438,8 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
428
438
|
} | null;
|
429
439
|
}, {
|
430
440
|
id: string;
|
441
|
+
username: string | null;
|
442
|
+
password: string | null;
|
431
443
|
phoneNumber: string;
|
432
444
|
secondaryPhoneNumber: string | null;
|
433
445
|
fullName: string;
|
@@ -1,6 +1,9 @@
|
|
1
1
|
export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
shortId: import("zod").ZodNumber;
|
4
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
5
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
6
|
+
password: import("zod").ZodNullable<import("zod").ZodString>;
|
4
7
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
5
8
|
isPhoneVerified: import("zod").ZodBoolean;
|
6
9
|
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -17,11 +20,12 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
17
20
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
18
21
|
isInTrash: import("zod").ZodBoolean;
|
19
22
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
20
|
-
firstTimeMiExpo: import("zod").ZodBoolean;
|
21
23
|
created_at: import("zod").ZodDate;
|
22
24
|
updated_at: import("zod").ZodDate;
|
23
25
|
}, "strip", import("zod").ZodTypeAny, {
|
24
26
|
id: string;
|
27
|
+
username: string | null;
|
28
|
+
password: string | null;
|
25
29
|
phoneNumber: string;
|
26
30
|
secondaryPhoneNumber: string | null;
|
27
31
|
fullName: string;
|
@@ -44,6 +48,8 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
44
48
|
movedToTrashDate: Date | null;
|
45
49
|
}, {
|
46
50
|
id: string;
|
51
|
+
username: string | null;
|
52
|
+
password: string | null;
|
47
53
|
phoneNumber: string;
|
48
54
|
secondaryPhoneNumber: string | null;
|
49
55
|
fullName: string;
|
@@ -68,6 +74,9 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
68
74
|
declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
69
75
|
id: import("zod").ZodString;
|
70
76
|
shortId: import("zod").ZodNumber;
|
77
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
78
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
79
|
+
password: import("zod").ZodNullable<import("zod").ZodString>;
|
71
80
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
72
81
|
isPhoneVerified: import("zod").ZodBoolean;
|
73
82
|
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -84,11 +93,12 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
84
93
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
85
94
|
isInTrash: import("zod").ZodBoolean;
|
86
95
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
87
|
-
firstTimeMiExpo: import("zod").ZodBoolean;
|
88
96
|
created_at: import("zod").ZodString;
|
89
97
|
updated_at: import("zod").ZodString;
|
90
98
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
91
99
|
id: string;
|
100
|
+
username: string | null;
|
101
|
+
password: string | null;
|
92
102
|
phoneNumber: string;
|
93
103
|
secondaryPhoneNumber: string | null;
|
94
104
|
fullName: string;
|
@@ -111,6 +121,8 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
111
121
|
movedToTrashDate: string | null;
|
112
122
|
}, {
|
113
123
|
id: string;
|
124
|
+
username: string | null;
|
125
|
+
password: string | null;
|
114
126
|
phoneNumber: string;
|
115
127
|
secondaryPhoneNumber: string | null;
|
116
128
|
fullName: string;
|
@@ -3,6 +3,9 @@ export declare const findByTagGroupsProfileResponseSchema: 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 findByTagGroupsProfileResponseSchema: 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
|
}, {
|
@@ -52,6 +54,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
52
54
|
}>, "many">;
|
53
55
|
}>, "strip", z.ZodTypeAny, {
|
54
56
|
id: string;
|
57
|
+
username: string | null;
|
58
|
+
password: string | null;
|
55
59
|
phoneNumber: string;
|
56
60
|
secondaryPhoneNumber: string | null;
|
57
61
|
fullName: string;
|
@@ -82,6 +86,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
82
86
|
}[];
|
83
87
|
}, {
|
84
88
|
id: string;
|
89
|
+
username: string | null;
|
90
|
+
password: string | null;
|
85
91
|
phoneNumber: string;
|
86
92
|
secondaryPhoneNumber: string | null;
|
87
93
|
fullName: string;
|
@@ -114,6 +120,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
114
120
|
}, "strip", z.ZodTypeAny, {
|
115
121
|
profiles: {
|
116
122
|
id: string;
|
123
|
+
username: string | null;
|
124
|
+
password: string | null;
|
117
125
|
phoneNumber: string;
|
118
126
|
secondaryPhoneNumber: string | null;
|
119
127
|
fullName: string;
|
@@ -146,6 +154,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
146
154
|
}, {
|
147
155
|
profiles: {
|
148
156
|
id: string;
|
157
|
+
username: string | null;
|
158
|
+
password: string | null;
|
149
159
|
phoneNumber: string;
|
150
160
|
secondaryPhoneNumber: string | null;
|
151
161
|
fullName: string;
|
@@ -180,6 +190,9 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
180
190
|
profiles: z.ZodArray<z.ZodObject<{
|
181
191
|
id: z.ZodString;
|
182
192
|
shortId: z.ZodNumber;
|
193
|
+
firstTimeMiExpo: z.ZodBoolean;
|
194
|
+
username: z.ZodNullable<z.ZodString>;
|
195
|
+
password: z.ZodNullable<z.ZodString>;
|
183
196
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
184
197
|
isPhoneVerified: z.ZodBoolean;
|
185
198
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -196,7 +209,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
196
209
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
197
210
|
isInTrash: z.ZodBoolean;
|
198
211
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
199
|
-
firstTimeMiExpo: z.ZodBoolean;
|
200
212
|
created_at: z.ZodString;
|
201
213
|
updated_at: z.ZodString;
|
202
214
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -228,6 +240,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
228
240
|
}>, "many">;
|
229
241
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
230
242
|
id: string;
|
243
|
+
username: string | null;
|
244
|
+
password: string | null;
|
231
245
|
phoneNumber: string;
|
232
246
|
secondaryPhoneNumber: string | null;
|
233
247
|
fullName: string;
|
@@ -258,6 +272,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
258
272
|
}[];
|
259
273
|
}, {
|
260
274
|
id: string;
|
275
|
+
username: string | null;
|
276
|
+
password: string | null;
|
261
277
|
phoneNumber: string;
|
262
278
|
secondaryPhoneNumber: string | null;
|
263
279
|
fullName: string;
|
@@ -290,6 +306,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
290
306
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
291
307
|
profiles: {
|
292
308
|
id: string;
|
309
|
+
username: string | null;
|
310
|
+
password: string | null;
|
293
311
|
phoneNumber: string;
|
294
312
|
secondaryPhoneNumber: string | null;
|
295
313
|
fullName: string;
|
@@ -322,6 +340,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
322
340
|
}, {
|
323
341
|
profiles: {
|
324
342
|
id: string;
|
343
|
+
username: string | null;
|
344
|
+
password: string | null;
|
325
345
|
phoneNumber: string;
|
326
346
|
secondaryPhoneNumber: string | null;
|
327
347
|
fullName: string;
|
@@ -3,6 +3,9 @@ export declare const findByTagsProfileResponseSchema: 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 findByTagsProfileResponseSchema: 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
|
}, {
|
@@ -71,6 +73,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
71
73
|
}>, "many">;
|
72
74
|
}>, "strip", z.ZodTypeAny, {
|
73
75
|
id: string;
|
76
|
+
username: string | null;
|
77
|
+
password: string | null;
|
74
78
|
phoneNumber: string;
|
75
79
|
secondaryPhoneNumber: string | null;
|
76
80
|
fullName: string;
|
@@ -104,6 +108,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
104
108
|
}[];
|
105
109
|
}, {
|
106
110
|
id: string;
|
111
|
+
username: string | null;
|
112
|
+
password: string | null;
|
107
113
|
phoneNumber: string;
|
108
114
|
secondaryPhoneNumber: string | null;
|
109
115
|
fullName: string;
|
@@ -139,6 +145,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
139
145
|
}, "strip", z.ZodTypeAny, {
|
140
146
|
profiles: {
|
141
147
|
id: string;
|
148
|
+
username: string | null;
|
149
|
+
password: string | null;
|
142
150
|
phoneNumber: string;
|
143
151
|
secondaryPhoneNumber: string | null;
|
144
152
|
fullName: string;
|
@@ -174,6 +182,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
174
182
|
}, {
|
175
183
|
profiles: {
|
176
184
|
id: string;
|
185
|
+
username: string | null;
|
186
|
+
password: string | null;
|
177
187
|
phoneNumber: string;
|
178
188
|
secondaryPhoneNumber: string | null;
|
179
189
|
fullName: string;
|
@@ -211,6 +221,9 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
211
221
|
profiles: z.ZodArray<z.ZodObject<{
|
212
222
|
id: z.ZodString;
|
213
223
|
shortId: z.ZodNumber;
|
224
|
+
firstTimeMiExpo: z.ZodBoolean;
|
225
|
+
username: z.ZodNullable<z.ZodString>;
|
226
|
+
password: z.ZodNullable<z.ZodString>;
|
214
227
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
215
228
|
isPhoneVerified: z.ZodBoolean;
|
216
229
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -227,7 +240,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
227
240
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
228
241
|
isInTrash: z.ZodBoolean;
|
229
242
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
230
|
-
firstTimeMiExpo: z.ZodBoolean;
|
231
243
|
created_at: z.ZodString;
|
232
244
|
updated_at: z.ZodString;
|
233
245
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -272,6 +284,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
272
284
|
}>, "many">;
|
273
285
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
274
286
|
id: string;
|
287
|
+
username: string | null;
|
288
|
+
password: string | null;
|
275
289
|
phoneNumber: string;
|
276
290
|
secondaryPhoneNumber: string | null;
|
277
291
|
fullName: string;
|
@@ -305,6 +319,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
305
319
|
}[];
|
306
320
|
}, {
|
307
321
|
id: string;
|
322
|
+
username: string | null;
|
323
|
+
password: string | null;
|
308
324
|
phoneNumber: string;
|
309
325
|
secondaryPhoneNumber: string | null;
|
310
326
|
fullName: string;
|
@@ -340,6 +356,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
340
356
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
341
357
|
profiles: {
|
342
358
|
id: string;
|
359
|
+
username: string | null;
|
360
|
+
password: string | null;
|
343
361
|
phoneNumber: string;
|
344
362
|
secondaryPhoneNumber: string | null;
|
345
363
|
fullName: string;
|
@@ -375,6 +393,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
375
393
|
}, {
|
376
394
|
profiles: {
|
377
395
|
id: string;
|
396
|
+
username: string | null;
|
397
|
+
password: string | null;
|
378
398
|
phoneNumber: string;
|
379
399
|
secondaryPhoneNumber: string | null;
|
380
400
|
fullName: string;
|
@@ -3,6 +3,9 @@ export declare const findTrashResponseSchema: z.ZodObject<{
|
|
3
3
|
profiles: z.ZodArray<z.ZodObject<Pick<{
|
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 findTrashResponseSchema: 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
|
}, "id" | "phoneNumber" | "fullName" | "profilePictureUrl" | "created_at" | "isInTrash" | "movedToTrashDate">, "strip", z.ZodTypeAny, {
|