expo-backend-types 0.30.0-EXPO-308-auth.10 → 0.30.0-EXPO-309-Migrar-Configuracion.2
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 +0 -1
- package/dist/src/exports.js +0 -1
- package/dist/src/i18n/es.d.ts +0 -19
- package/dist/src/i18n/es.js +0 -19
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/message/dto/non-read-messages.dto.d.ts +2 -2
- package/dist/src/message/dto/send-message-to-phone.dto.d.ts +2 -2
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -26
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -28
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +4 -44
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +8 -72
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +4 -28
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -28
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +4 -44
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +4 -44
- package/dist/src/profile/dto/find-trash.dto.d.ts +3 -7
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +4 -44
- package/dist/src/profile/dto/profile.dto.d.ts +2 -90
- package/dist/src/profile/dto/profile.dto.js +4 -75
- package/dist/src/profile/dto/update-profile.dto.d.ts +8 -32
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +4 -44
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +4 -44
- package/dist/types/prisma-schema/edge.js +24 -38
- package/dist/types/prisma-schema/index-browser.js +9 -18
- package/dist/types/prisma-schema/index.d.ts +553 -3904
- package/dist/types/prisma-schema/index.js +24 -38
- 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 +133 -177
- 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 +1 -22
- package/dist/types/prisma-schema/wasm.js +9 -18
- package/dist/types/schema.d.ts +2 -277
- package/package.json +4 -5
- package/dist/src/auth/dto/login-mi-expo.dto.d.ts +0 -327
- package/dist/src/auth/dto/login-mi-expo.dto.js +0 -31
- package/dist/src/image/constants.d.ts +0 -5
- package/dist/src/image/constants.js +0 -9
- package/dist/src/otp/constants.d.ts +0 -2
- package/dist/src/otp/constants.js +0 -6
- package/dist/src/otp/dto/send-otp.dto.d.ts +0 -158
- package/dist/src/otp/dto/send-otp.dto.js +0 -35
- package/dist/src/otp/dto/verify-otp.dto.d.ts +0 -286
- package/dist/src/otp/dto/verify-otp.dto.js +0 -28
- package/dist/src/otp/exports.d.ts +0 -2
- package/dist/src/otp/exports.js +0 -19
- package/dist/src/prisma/constants.d.ts +0 -1
- package/dist/src/prisma/constants.js +0 -5
- package/dist/src/webhook/constants.d.ts +0 -1
- package/dist/src/webhook/constants.js +0 -5
@@ -3,12 +3,8 @@ 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
|
-
|
7
|
-
|
8
|
-
password: z.ZodNullable<z.ZodString>;
|
9
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
10
|
-
isPhoneVerified: z.ZodBoolean;
|
11
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
6
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
7
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
12
8
|
fullName: z.ZodString;
|
13
9
|
firstName: z.ZodNullable<z.ZodString>;
|
14
10
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -73,8 +69,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
73
69
|
}>, "many">;
|
74
70
|
}>, "strip", z.ZodTypeAny, {
|
75
71
|
id: string;
|
76
|
-
username: string | null;
|
77
|
-
password: string | null;
|
78
72
|
phoneNumber: string;
|
79
73
|
secondaryPhoneNumber: string | null;
|
80
74
|
fullName: string;
|
@@ -83,8 +77,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
83
77
|
created_at: Date;
|
84
78
|
updated_at: Date;
|
85
79
|
shortId: number;
|
86
|
-
firstTimeMiExpo: boolean;
|
87
|
-
isPhoneVerified: boolean;
|
88
80
|
firstName: string | null;
|
89
81
|
gender: string | null;
|
90
82
|
birthDate: Date | null;
|
@@ -108,8 +100,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
108
100
|
}[];
|
109
101
|
}, {
|
110
102
|
id: string;
|
111
|
-
username: string | null;
|
112
|
-
password: string | null;
|
113
103
|
phoneNumber: string;
|
114
104
|
secondaryPhoneNumber: string | null;
|
115
105
|
fullName: string;
|
@@ -118,8 +108,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
118
108
|
created_at: Date;
|
119
109
|
updated_at: Date;
|
120
110
|
shortId: number;
|
121
|
-
firstTimeMiExpo: boolean;
|
122
|
-
isPhoneVerified: boolean;
|
123
111
|
firstName: string | null;
|
124
112
|
gender: string | null;
|
125
113
|
birthDate: string | null;
|
@@ -145,8 +133,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
145
133
|
}, "strip", z.ZodTypeAny, {
|
146
134
|
profiles: {
|
147
135
|
id: string;
|
148
|
-
username: string | null;
|
149
|
-
password: string | null;
|
150
136
|
phoneNumber: string;
|
151
137
|
secondaryPhoneNumber: string | null;
|
152
138
|
fullName: string;
|
@@ -155,8 +141,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
155
141
|
created_at: Date;
|
156
142
|
updated_at: Date;
|
157
143
|
shortId: number;
|
158
|
-
firstTimeMiExpo: boolean;
|
159
|
-
isPhoneVerified: boolean;
|
160
144
|
firstName: string | null;
|
161
145
|
gender: string | null;
|
162
146
|
birthDate: Date | null;
|
@@ -182,8 +166,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
182
166
|
}, {
|
183
167
|
profiles: {
|
184
168
|
id: string;
|
185
|
-
username: string | null;
|
186
|
-
password: string | null;
|
187
169
|
phoneNumber: string;
|
188
170
|
secondaryPhoneNumber: string | null;
|
189
171
|
fullName: string;
|
@@ -192,8 +174,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
192
174
|
created_at: Date;
|
193
175
|
updated_at: Date;
|
194
176
|
shortId: number;
|
195
|
-
firstTimeMiExpo: boolean;
|
196
|
-
isPhoneVerified: boolean;
|
197
177
|
firstName: string | null;
|
198
178
|
gender: string | null;
|
199
179
|
birthDate: string | null;
|
@@ -221,12 +201,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
221
201
|
profiles: z.ZodArray<z.ZodObject<{
|
222
202
|
id: z.ZodString;
|
223
203
|
shortId: z.ZodNumber;
|
224
|
-
|
225
|
-
|
226
|
-
password: z.ZodNullable<z.ZodString>;
|
227
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
228
|
-
isPhoneVerified: z.ZodBoolean;
|
229
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
204
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
205
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
230
206
|
fullName: z.ZodString;
|
231
207
|
firstName: z.ZodNullable<z.ZodString>;
|
232
208
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -284,8 +260,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
284
260
|
}>, "many">;
|
285
261
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
286
262
|
id: string;
|
287
|
-
username: string | null;
|
288
|
-
password: string | null;
|
289
263
|
phoneNumber: string;
|
290
264
|
secondaryPhoneNumber: string | null;
|
291
265
|
fullName: string;
|
@@ -294,8 +268,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
294
268
|
created_at: string;
|
295
269
|
updated_at: string;
|
296
270
|
shortId: number;
|
297
|
-
firstTimeMiExpo: boolean;
|
298
|
-
isPhoneVerified: boolean;
|
299
271
|
firstName: string | null;
|
300
272
|
gender: string | null;
|
301
273
|
birthDate: Date | null;
|
@@ -319,8 +291,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
319
291
|
}[];
|
320
292
|
}, {
|
321
293
|
id: string;
|
322
|
-
username: string | null;
|
323
|
-
password: string | null;
|
324
294
|
phoneNumber: string;
|
325
295
|
secondaryPhoneNumber: string | null;
|
326
296
|
fullName: string;
|
@@ -329,8 +299,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
329
299
|
created_at: string;
|
330
300
|
updated_at: string;
|
331
301
|
shortId: number;
|
332
|
-
firstTimeMiExpo: boolean;
|
333
|
-
isPhoneVerified: boolean;
|
334
302
|
firstName: string | null;
|
335
303
|
gender: string | null;
|
336
304
|
birthDate: string | null;
|
@@ -356,8 +324,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
356
324
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
357
325
|
profiles: {
|
358
326
|
id: string;
|
359
|
-
username: string | null;
|
360
|
-
password: string | null;
|
361
327
|
phoneNumber: string;
|
362
328
|
secondaryPhoneNumber: string | null;
|
363
329
|
fullName: string;
|
@@ -366,8 +332,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
366
332
|
created_at: string;
|
367
333
|
updated_at: string;
|
368
334
|
shortId: number;
|
369
|
-
firstTimeMiExpo: boolean;
|
370
|
-
isPhoneVerified: boolean;
|
371
335
|
firstName: string | null;
|
372
336
|
gender: string | null;
|
373
337
|
birthDate: Date | null;
|
@@ -393,8 +357,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
393
357
|
}, {
|
394
358
|
profiles: {
|
395
359
|
id: string;
|
396
|
-
username: string | null;
|
397
|
-
password: string | null;
|
398
360
|
phoneNumber: string;
|
399
361
|
secondaryPhoneNumber: string | null;
|
400
362
|
fullName: string;
|
@@ -403,8 +365,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
403
365
|
created_at: string;
|
404
366
|
updated_at: string;
|
405
367
|
shortId: number;
|
406
|
-
firstTimeMiExpo: boolean;
|
407
|
-
isPhoneVerified: boolean;
|
408
368
|
firstName: string | null;
|
409
369
|
gender: string | null;
|
410
370
|
birthDate: string | null;
|
@@ -433,12 +393,8 @@ export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
|
|
433
393
|
export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
434
394
|
id: z.ZodString;
|
435
395
|
shortId: z.ZodNumber;
|
436
|
-
|
437
|
-
|
438
|
-
password: z.ZodNullable<z.ZodString>;
|
439
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
440
|
-
isPhoneVerified: z.ZodBoolean;
|
441
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
396
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
397
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
442
398
|
fullName: z.ZodString;
|
443
399
|
firstName: z.ZodNullable<z.ZodString>;
|
444
400
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -503,8 +459,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
503
459
|
}>, "many">;
|
504
460
|
}>, "strip", z.ZodTypeAny, {
|
505
461
|
id: string;
|
506
|
-
username: string | null;
|
507
|
-
password: string | null;
|
508
462
|
phoneNumber: string;
|
509
463
|
secondaryPhoneNumber: string | null;
|
510
464
|
fullName: string;
|
@@ -513,8 +467,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
513
467
|
created_at: Date;
|
514
468
|
updated_at: Date;
|
515
469
|
shortId: number;
|
516
|
-
firstTimeMiExpo: boolean;
|
517
|
-
isPhoneVerified: boolean;
|
518
470
|
firstName: string | null;
|
519
471
|
gender: string | null;
|
520
472
|
birthDate: Date | null;
|
@@ -538,8 +490,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
538
490
|
}[];
|
539
491
|
}, {
|
540
492
|
id: string;
|
541
|
-
username: string | null;
|
542
|
-
password: string | null;
|
543
493
|
phoneNumber: string;
|
544
494
|
secondaryPhoneNumber: string | null;
|
545
495
|
fullName: string;
|
@@ -548,8 +498,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
548
498
|
created_at: Date;
|
549
499
|
updated_at: Date;
|
550
500
|
shortId: number;
|
551
|
-
firstTimeMiExpo: boolean;
|
552
|
-
isPhoneVerified: boolean;
|
553
501
|
firstName: string | null;
|
554
502
|
gender: string | null;
|
555
503
|
birthDate: string | null;
|
@@ -575,12 +523,8 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
575
523
|
declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
576
524
|
id: z.ZodString;
|
577
525
|
shortId: z.ZodNumber;
|
578
|
-
|
579
|
-
|
580
|
-
password: z.ZodNullable<z.ZodString>;
|
581
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
582
|
-
isPhoneVerified: z.ZodBoolean;
|
583
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
526
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
527
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
584
528
|
fullName: z.ZodString;
|
585
529
|
firstName: z.ZodNullable<z.ZodString>;
|
586
530
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -645,8 +589,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
645
589
|
}>, "many">;
|
646
590
|
}>, "strip", z.ZodTypeAny, {
|
647
591
|
id: string;
|
648
|
-
username: string | null;
|
649
|
-
password: string | null;
|
650
592
|
phoneNumber: string;
|
651
593
|
secondaryPhoneNumber: string | null;
|
652
594
|
fullName: string;
|
@@ -655,8 +597,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
655
597
|
created_at: Date;
|
656
598
|
updated_at: Date;
|
657
599
|
shortId: number;
|
658
|
-
firstTimeMiExpo: boolean;
|
659
|
-
isPhoneVerified: boolean;
|
660
600
|
firstName: string | null;
|
661
601
|
gender: string | null;
|
662
602
|
birthDate: Date | null;
|
@@ -680,8 +620,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
680
620
|
}[];
|
681
621
|
}, {
|
682
622
|
id: string;
|
683
|
-
username: string | null;
|
684
|
-
password: string | null;
|
685
623
|
phoneNumber: string;
|
686
624
|
secondaryPhoneNumber: string | null;
|
687
625
|
fullName: string;
|
@@ -690,8 +628,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
690
628
|
created_at: Date;
|
691
629
|
updated_at: Date;
|
692
630
|
shortId: number;
|
693
|
-
firstTimeMiExpo: boolean;
|
694
|
-
isPhoneVerified: boolean;
|
695
631
|
firstName: string | null;
|
696
632
|
gender: string | null;
|
697
633
|
birthDate: string | null;
|
@@ -2,12 +2,8 @@ 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
|
-
|
6
|
-
|
7
|
-
password: z.ZodNullable<z.ZodString>;
|
8
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
9
|
-
isPhoneVerified: z.ZodBoolean;
|
10
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
5
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
6
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
11
7
|
fullName: z.ZodString;
|
12
8
|
firstName: z.ZodNullable<z.ZodString>;
|
13
9
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -136,8 +132,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
136
132
|
}>, "many">;
|
137
133
|
}>, "strip", z.ZodTypeAny, {
|
138
134
|
id: string;
|
139
|
-
username: string | null;
|
140
|
-
password: string | null;
|
141
135
|
phoneNumber: string;
|
142
136
|
secondaryPhoneNumber: string | null;
|
143
137
|
fullName: string;
|
@@ -146,8 +140,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
146
140
|
created_at: Date;
|
147
141
|
updated_at: Date;
|
148
142
|
shortId: number;
|
149
|
-
firstTimeMiExpo: boolean;
|
150
|
-
isPhoneVerified: boolean;
|
151
143
|
firstName: string | null;
|
152
144
|
gender: string | null;
|
153
145
|
birthDate: Date | null;
|
@@ -193,8 +185,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
193
185
|
} | null;
|
194
186
|
}, {
|
195
187
|
id: string;
|
196
|
-
username: string | null;
|
197
|
-
password: string | null;
|
198
188
|
phoneNumber: string;
|
199
189
|
secondaryPhoneNumber: string | null;
|
200
190
|
fullName: string;
|
@@ -203,8 +193,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
203
193
|
created_at: Date;
|
204
194
|
updated_at: Date;
|
205
195
|
shortId: number;
|
206
|
-
firstTimeMiExpo: boolean;
|
207
|
-
isPhoneVerified: boolean;
|
208
196
|
firstName: string | null;
|
209
197
|
gender: string | null;
|
210
198
|
birthDate: string | null;
|
@@ -252,12 +240,8 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
252
240
|
declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
253
241
|
id: z.ZodString;
|
254
242
|
shortId: z.ZodNumber;
|
255
|
-
|
256
|
-
|
257
|
-
password: z.ZodNullable<z.ZodString>;
|
258
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
259
|
-
isPhoneVerified: z.ZodBoolean;
|
260
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
243
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
244
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
261
245
|
fullName: z.ZodString;
|
262
246
|
firstName: z.ZodNullable<z.ZodString>;
|
263
247
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -381,8 +365,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
381
365
|
}>, "many">;
|
382
366
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
383
367
|
id: string;
|
384
|
-
username: string | null;
|
385
|
-
password: string | null;
|
386
368
|
phoneNumber: string;
|
387
369
|
secondaryPhoneNumber: string | null;
|
388
370
|
fullName: string;
|
@@ -391,8 +373,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
391
373
|
created_at: string;
|
392
374
|
updated_at: string;
|
393
375
|
shortId: number;
|
394
|
-
firstTimeMiExpo: boolean;
|
395
|
-
isPhoneVerified: boolean;
|
396
376
|
firstName: string | null;
|
397
377
|
gender: string | null;
|
398
378
|
birthDate: Date | null;
|
@@ -438,8 +418,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
438
418
|
} | null;
|
439
419
|
}, {
|
440
420
|
id: string;
|
441
|
-
username: string | null;
|
442
|
-
password: string | null;
|
443
421
|
phoneNumber: string;
|
444
422
|
secondaryPhoneNumber: string | null;
|
445
423
|
fullName: string;
|
@@ -448,8 +426,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
448
426
|
created_at: string;
|
449
427
|
updated_at: string;
|
450
428
|
shortId: number;
|
451
|
-
firstTimeMiExpo: boolean;
|
452
|
-
isPhoneVerified: boolean;
|
453
429
|
firstName: string | null;
|
454
430
|
gender: string | null;
|
455
431
|
birthDate: string | null;
|
@@ -1,12 +1,8 @@
|
|
1
1
|
export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
shortId: import("zod").ZodNumber;
|
4
|
-
|
5
|
-
|
6
|
-
password: import("zod").ZodNullable<import("zod").ZodString>;
|
7
|
-
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
8
|
-
isPhoneVerified: import("zod").ZodBoolean;
|
9
|
-
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, string | null, string | null>;
|
4
|
+
phoneNumber: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
5
|
+
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>;
|
10
6
|
fullName: import("zod").ZodString;
|
11
7
|
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
12
8
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -24,8 +20,6 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
24
20
|
updated_at: import("zod").ZodDate;
|
25
21
|
}, "strip", import("zod").ZodTypeAny, {
|
26
22
|
id: string;
|
27
|
-
username: string | null;
|
28
|
-
password: string | null;
|
29
23
|
phoneNumber: string;
|
30
24
|
secondaryPhoneNumber: string | null;
|
31
25
|
fullName: string;
|
@@ -34,8 +28,6 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
34
28
|
created_at: Date;
|
35
29
|
updated_at: Date;
|
36
30
|
shortId: number;
|
37
|
-
firstTimeMiExpo: boolean;
|
38
|
-
isPhoneVerified: boolean;
|
39
31
|
firstName: string | null;
|
40
32
|
gender: string | null;
|
41
33
|
birthDate: Date | null;
|
@@ -48,8 +40,6 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
48
40
|
movedToTrashDate: Date | null;
|
49
41
|
}, {
|
50
42
|
id: string;
|
51
|
-
username: string | null;
|
52
|
-
password: string | null;
|
53
43
|
phoneNumber: string;
|
54
44
|
secondaryPhoneNumber: string | null;
|
55
45
|
fullName: string;
|
@@ -58,8 +48,6 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
58
48
|
created_at: Date;
|
59
49
|
updated_at: Date;
|
60
50
|
shortId: number;
|
61
|
-
firstTimeMiExpo: boolean;
|
62
|
-
isPhoneVerified: boolean;
|
63
51
|
firstName: string | null;
|
64
52
|
gender: string | null;
|
65
53
|
birthDate: string | null;
|
@@ -74,12 +62,8 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
74
62
|
declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
75
63
|
id: import("zod").ZodString;
|
76
64
|
shortId: import("zod").ZodNumber;
|
77
|
-
|
78
|
-
|
79
|
-
password: import("zod").ZodNullable<import("zod").ZodString>;
|
80
|
-
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
81
|
-
isPhoneVerified: import("zod").ZodBoolean;
|
82
|
-
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, string | null, string | null>;
|
65
|
+
phoneNumber: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
66
|
+
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>;
|
83
67
|
fullName: import("zod").ZodString;
|
84
68
|
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
85
69
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -97,8 +81,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
97
81
|
updated_at: import("zod").ZodString;
|
98
82
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
99
83
|
id: string;
|
100
|
-
username: string | null;
|
101
|
-
password: string | null;
|
102
84
|
phoneNumber: string;
|
103
85
|
secondaryPhoneNumber: string | null;
|
104
86
|
fullName: string;
|
@@ -107,8 +89,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
107
89
|
created_at: string;
|
108
90
|
updated_at: string;
|
109
91
|
shortId: number;
|
110
|
-
firstTimeMiExpo: boolean;
|
111
|
-
isPhoneVerified: boolean;
|
112
92
|
firstName: string | null;
|
113
93
|
gender: string | null;
|
114
94
|
birthDate: Date | null;
|
@@ -121,8 +101,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
121
101
|
movedToTrashDate: string | null;
|
122
102
|
}, {
|
123
103
|
id: string;
|
124
|
-
username: string | null;
|
125
|
-
password: string | null;
|
126
104
|
phoneNumber: string;
|
127
105
|
secondaryPhoneNumber: string | null;
|
128
106
|
fullName: string;
|
@@ -131,8 +109,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
131
109
|
created_at: string;
|
132
110
|
updated_at: string;
|
133
111
|
shortId: number;
|
134
|
-
firstTimeMiExpo: boolean;
|
135
|
-
isPhoneVerified: boolean;
|
136
112
|
firstName: string | null;
|
137
113
|
gender: string | null;
|
138
114
|
birthDate: string | null;
|
@@ -3,12 +3,8 @@ 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
|
-
|
7
|
-
|
8
|
-
password: z.ZodNullable<z.ZodString>;
|
9
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
10
|
-
isPhoneVerified: z.ZodBoolean;
|
11
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
6
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
7
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
12
8
|
fullName: z.ZodString;
|
13
9
|
firstName: z.ZodNullable<z.ZodString>;
|
14
10
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -54,8 +50,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
54
50
|
}>, "many">;
|
55
51
|
}>, "strip", z.ZodTypeAny, {
|
56
52
|
id: string;
|
57
|
-
username: string | null;
|
58
|
-
password: string | null;
|
59
53
|
phoneNumber: string;
|
60
54
|
secondaryPhoneNumber: string | null;
|
61
55
|
fullName: string;
|
@@ -64,8 +58,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
64
58
|
created_at: Date;
|
65
59
|
updated_at: Date;
|
66
60
|
shortId: number;
|
67
|
-
firstTimeMiExpo: boolean;
|
68
|
-
isPhoneVerified: boolean;
|
69
61
|
firstName: string | null;
|
70
62
|
gender: string | null;
|
71
63
|
birthDate: Date | null;
|
@@ -86,8 +78,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
86
78
|
}[];
|
87
79
|
}, {
|
88
80
|
id: string;
|
89
|
-
username: string | null;
|
90
|
-
password: string | null;
|
91
81
|
phoneNumber: string;
|
92
82
|
secondaryPhoneNumber: string | null;
|
93
83
|
fullName: string;
|
@@ -96,8 +86,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
96
86
|
created_at: Date;
|
97
87
|
updated_at: Date;
|
98
88
|
shortId: number;
|
99
|
-
firstTimeMiExpo: boolean;
|
100
|
-
isPhoneVerified: boolean;
|
101
89
|
firstName: string | null;
|
102
90
|
gender: string | null;
|
103
91
|
birthDate: string | null;
|
@@ -120,8 +108,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
120
108
|
}, "strip", z.ZodTypeAny, {
|
121
109
|
profiles: {
|
122
110
|
id: string;
|
123
|
-
username: string | null;
|
124
|
-
password: string | null;
|
125
111
|
phoneNumber: string;
|
126
112
|
secondaryPhoneNumber: string | null;
|
127
113
|
fullName: string;
|
@@ -130,8 +116,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
130
116
|
created_at: Date;
|
131
117
|
updated_at: Date;
|
132
118
|
shortId: number;
|
133
|
-
firstTimeMiExpo: boolean;
|
134
|
-
isPhoneVerified: boolean;
|
135
119
|
firstName: string | null;
|
136
120
|
gender: string | null;
|
137
121
|
birthDate: Date | null;
|
@@ -154,8 +138,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
154
138
|
}, {
|
155
139
|
profiles: {
|
156
140
|
id: string;
|
157
|
-
username: string | null;
|
158
|
-
password: string | null;
|
159
141
|
phoneNumber: string;
|
160
142
|
secondaryPhoneNumber: string | null;
|
161
143
|
fullName: string;
|
@@ -164,8 +146,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
164
146
|
created_at: Date;
|
165
147
|
updated_at: Date;
|
166
148
|
shortId: number;
|
167
|
-
firstTimeMiExpo: boolean;
|
168
|
-
isPhoneVerified: boolean;
|
169
149
|
firstName: string | null;
|
170
150
|
gender: string | null;
|
171
151
|
birthDate: string | null;
|
@@ -190,12 +170,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
190
170
|
profiles: z.ZodArray<z.ZodObject<{
|
191
171
|
id: z.ZodString;
|
192
172
|
shortId: z.ZodNumber;
|
193
|
-
|
194
|
-
|
195
|
-
password: z.ZodNullable<z.ZodString>;
|
196
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
197
|
-
isPhoneVerified: z.ZodBoolean;
|
198
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
173
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
174
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
199
175
|
fullName: z.ZodString;
|
200
176
|
firstName: z.ZodNullable<z.ZodString>;
|
201
177
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -240,8 +216,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
240
216
|
}>, "many">;
|
241
217
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
242
218
|
id: string;
|
243
|
-
username: string | null;
|
244
|
-
password: string | null;
|
245
219
|
phoneNumber: string;
|
246
220
|
secondaryPhoneNumber: string | null;
|
247
221
|
fullName: string;
|
@@ -250,8 +224,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
250
224
|
created_at: string;
|
251
225
|
updated_at: string;
|
252
226
|
shortId: number;
|
253
|
-
firstTimeMiExpo: boolean;
|
254
|
-
isPhoneVerified: boolean;
|
255
227
|
firstName: string | null;
|
256
228
|
gender: string | null;
|
257
229
|
birthDate: Date | null;
|
@@ -272,8 +244,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
272
244
|
}[];
|
273
245
|
}, {
|
274
246
|
id: string;
|
275
|
-
username: string | null;
|
276
|
-
password: string | null;
|
277
247
|
phoneNumber: string;
|
278
248
|
secondaryPhoneNumber: string | null;
|
279
249
|
fullName: string;
|
@@ -282,8 +252,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
282
252
|
created_at: string;
|
283
253
|
updated_at: string;
|
284
254
|
shortId: number;
|
285
|
-
firstTimeMiExpo: boolean;
|
286
|
-
isPhoneVerified: boolean;
|
287
255
|
firstName: string | null;
|
288
256
|
gender: string | null;
|
289
257
|
birthDate: string | null;
|
@@ -306,8 +274,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
306
274
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
307
275
|
profiles: {
|
308
276
|
id: string;
|
309
|
-
username: string | null;
|
310
|
-
password: string | null;
|
311
277
|
phoneNumber: string;
|
312
278
|
secondaryPhoneNumber: string | null;
|
313
279
|
fullName: string;
|
@@ -316,8 +282,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
316
282
|
created_at: string;
|
317
283
|
updated_at: string;
|
318
284
|
shortId: number;
|
319
|
-
firstTimeMiExpo: boolean;
|
320
|
-
isPhoneVerified: boolean;
|
321
285
|
firstName: string | null;
|
322
286
|
gender: string | null;
|
323
287
|
birthDate: Date | null;
|
@@ -340,8 +304,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
340
304
|
}, {
|
341
305
|
profiles: {
|
342
306
|
id: string;
|
343
|
-
username: string | null;
|
344
|
-
password: string | null;
|
345
307
|
phoneNumber: string;
|
346
308
|
secondaryPhoneNumber: string | null;
|
347
309
|
fullName: string;
|
@@ -350,8 +312,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
350
312
|
created_at: string;
|
351
313
|
updated_at: string;
|
352
314
|
shortId: number;
|
353
|
-
firstTimeMiExpo: boolean;
|
354
|
-
isPhoneVerified: boolean;
|
355
315
|
firstName: string | null;
|
356
316
|
gender: string | null;
|
357
317
|
birthDate: string | null;
|