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