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
@@ -1,7 +1,7 @@
|
|
1
1
|
import z from 'zod';
|
2
2
|
export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
3
|
-
phoneNumber: z.ZodOptional<z.ZodEffects<z.
|
4
|
-
secondaryPhoneNumber: z.ZodOptional<z.ZodEffects<z.
|
3
|
+
phoneNumber: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
4
|
+
secondaryPhoneNumber: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>>;
|
5
5
|
fullName: z.ZodOptional<z.ZodString>;
|
6
6
|
profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7
7
|
mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -116,8 +116,8 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
116
116
|
} | undefined;
|
117
117
|
}>;
|
118
118
|
declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
119
|
-
phoneNumber: z.ZodOptional<z.ZodEffects<z.
|
120
|
-
secondaryPhoneNumber: z.ZodOptional<z.ZodEffects<z.
|
119
|
+
phoneNumber: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
120
|
+
secondaryPhoneNumber: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>>;
|
121
121
|
fullName: z.ZodOptional<z.ZodString>;
|
122
122
|
profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
123
123
|
mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -229,12 +229,8 @@ export declare class UpdateProfileDto extends UpdateProfileDto_base {
|
|
229
229
|
export declare const updateProfileResponseSchema: z.ZodObject<{
|
230
230
|
id: z.ZodString;
|
231
231
|
shortId: z.ZodNumber;
|
232
|
-
|
233
|
-
|
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>;
|
232
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
233
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
238
234
|
fullName: z.ZodString;
|
239
235
|
firstName: z.ZodNullable<z.ZodString>;
|
240
236
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -252,8 +248,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
252
248
|
updated_at: z.ZodDate;
|
253
249
|
}, "strip", z.ZodTypeAny, {
|
254
250
|
id: string;
|
255
|
-
username: string | null;
|
256
|
-
password: string | null;
|
257
251
|
phoneNumber: string;
|
258
252
|
secondaryPhoneNumber: string | null;
|
259
253
|
fullName: string;
|
@@ -262,8 +256,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
262
256
|
created_at: Date;
|
263
257
|
updated_at: Date;
|
264
258
|
shortId: number;
|
265
|
-
firstTimeMiExpo: boolean;
|
266
|
-
isPhoneVerified: boolean;
|
267
259
|
firstName: string | null;
|
268
260
|
gender: string | null;
|
269
261
|
birthDate: Date | null;
|
@@ -276,8 +268,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
276
268
|
movedToTrashDate: Date | null;
|
277
269
|
}, {
|
278
270
|
id: string;
|
279
|
-
username: string | null;
|
280
|
-
password: string | null;
|
281
271
|
phoneNumber: string;
|
282
272
|
secondaryPhoneNumber: string | null;
|
283
273
|
fullName: string;
|
@@ -286,8 +276,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
286
276
|
created_at: Date;
|
287
277
|
updated_at: Date;
|
288
278
|
shortId: number;
|
289
|
-
firstTimeMiExpo: boolean;
|
290
|
-
isPhoneVerified: boolean;
|
291
279
|
firstName: string | null;
|
292
280
|
gender: string | null;
|
293
281
|
birthDate: string | null;
|
@@ -302,12 +290,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
|
|
302
290
|
declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
303
291
|
id: z.ZodString;
|
304
292
|
shortId: z.ZodNumber;
|
305
|
-
|
306
|
-
|
307
|
-
password: z.ZodNullable<z.ZodString>;
|
308
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
309
|
-
isPhoneVerified: z.ZodBoolean;
|
310
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
293
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
294
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
311
295
|
fullName: z.ZodString;
|
312
296
|
firstName: z.ZodNullable<z.ZodString>;
|
313
297
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -325,8 +309,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
325
309
|
updated_at: z.ZodString;
|
326
310
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
327
311
|
id: string;
|
328
|
-
username: string | null;
|
329
|
-
password: string | null;
|
330
312
|
phoneNumber: string;
|
331
313
|
secondaryPhoneNumber: string | null;
|
332
314
|
fullName: string;
|
@@ -335,8 +317,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
335
317
|
created_at: string;
|
336
318
|
updated_at: string;
|
337
319
|
shortId: number;
|
338
|
-
firstTimeMiExpo: boolean;
|
339
|
-
isPhoneVerified: boolean;
|
340
320
|
firstName: string | null;
|
341
321
|
gender: string | null;
|
342
322
|
birthDate: Date | null;
|
@@ -349,8 +329,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
349
329
|
movedToTrashDate: string | null;
|
350
330
|
}, {
|
351
331
|
id: string;
|
352
|
-
username: string | null;
|
353
|
-
password: string | null;
|
354
332
|
phoneNumber: string;
|
355
333
|
secondaryPhoneNumber: string | null;
|
356
334
|
fullName: string;
|
@@ -359,8 +337,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
359
337
|
created_at: string;
|
360
338
|
updated_at: string;
|
361
339
|
shortId: number;
|
362
|
-
firstTimeMiExpo: boolean;
|
363
|
-
isPhoneVerified: boolean;
|
364
340
|
firstName: string | null;
|
365
341
|
gender: string | null;
|
366
342
|
birthDate: string | null;
|
@@ -25,12 +25,8 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
25
25
|
profiles: z.ZodArray<z.ZodObject<{
|
26
26
|
id: z.ZodString;
|
27
27
|
shortId: z.ZodNumber;
|
28
|
-
|
29
|
-
|
30
|
-
password: z.ZodNullable<z.ZodString>;
|
31
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
32
|
-
isPhoneVerified: z.ZodBoolean;
|
33
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
28
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
29
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
34
30
|
fullName: z.ZodString;
|
35
31
|
firstName: z.ZodNullable<z.ZodString>;
|
36
32
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -48,8 +44,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
48
44
|
updated_at: z.ZodDate;
|
49
45
|
}, "strip", z.ZodTypeAny, {
|
50
46
|
id: string;
|
51
|
-
username: string | null;
|
52
|
-
password: string | null;
|
53
47
|
phoneNumber: string;
|
54
48
|
secondaryPhoneNumber: string | null;
|
55
49
|
fullName: string;
|
@@ -58,8 +52,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
58
52
|
created_at: Date;
|
59
53
|
updated_at: Date;
|
60
54
|
shortId: number;
|
61
|
-
firstTimeMiExpo: boolean;
|
62
|
-
isPhoneVerified: boolean;
|
63
55
|
firstName: string | null;
|
64
56
|
gender: string | null;
|
65
57
|
birthDate: Date | null;
|
@@ -72,8 +64,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
72
64
|
movedToTrashDate: Date | null;
|
73
65
|
}, {
|
74
66
|
id: string;
|
75
|
-
username: string | null;
|
76
|
-
password: string | null;
|
77
67
|
phoneNumber: string;
|
78
68
|
secondaryPhoneNumber: string | null;
|
79
69
|
fullName: string;
|
@@ -82,8 +72,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
82
72
|
created_at: Date;
|
83
73
|
updated_at: Date;
|
84
74
|
shortId: number;
|
85
|
-
firstTimeMiExpo: boolean;
|
86
|
-
isPhoneVerified: boolean;
|
87
75
|
firstName: string | null;
|
88
76
|
gender: string | null;
|
89
77
|
birthDate: string | null;
|
@@ -98,8 +86,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
98
86
|
}, "strip", z.ZodTypeAny, {
|
99
87
|
profiles: {
|
100
88
|
id: string;
|
101
|
-
username: string | null;
|
102
|
-
password: string | null;
|
103
89
|
phoneNumber: string;
|
104
90
|
secondaryPhoneNumber: string | null;
|
105
91
|
fullName: string;
|
@@ -108,8 +94,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
108
94
|
created_at: Date;
|
109
95
|
updated_at: Date;
|
110
96
|
shortId: number;
|
111
|
-
firstTimeMiExpo: boolean;
|
112
|
-
isPhoneVerified: boolean;
|
113
97
|
firstName: string | null;
|
114
98
|
gender: string | null;
|
115
99
|
birthDate: Date | null;
|
@@ -124,8 +108,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
124
108
|
}, {
|
125
109
|
profiles: {
|
126
110
|
id: string;
|
127
|
-
username: string | null;
|
128
|
-
password: string | null;
|
129
111
|
phoneNumber: string;
|
130
112
|
secondaryPhoneNumber: string | null;
|
131
113
|
fullName: string;
|
@@ -134,8 +116,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
134
116
|
created_at: Date;
|
135
117
|
updated_at: Date;
|
136
118
|
shortId: number;
|
137
|
-
firstTimeMiExpo: boolean;
|
138
|
-
isPhoneVerified: boolean;
|
139
119
|
firstName: string | null;
|
140
120
|
gender: string | null;
|
141
121
|
birthDate: string | null;
|
@@ -152,12 +132,8 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
152
132
|
profiles: z.ZodArray<z.ZodObject<{
|
153
133
|
id: z.ZodString;
|
154
134
|
shortId: z.ZodNumber;
|
155
|
-
|
156
|
-
|
157
|
-
password: z.ZodNullable<z.ZodString>;
|
158
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
159
|
-
isPhoneVerified: z.ZodBoolean;
|
160
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
135
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
136
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
161
137
|
fullName: z.ZodString;
|
162
138
|
firstName: z.ZodNullable<z.ZodString>;
|
163
139
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -175,8 +151,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
175
151
|
updated_at: z.ZodString;
|
176
152
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
177
153
|
id: string;
|
178
|
-
username: string | null;
|
179
|
-
password: string | null;
|
180
154
|
phoneNumber: string;
|
181
155
|
secondaryPhoneNumber: string | null;
|
182
156
|
fullName: string;
|
@@ -185,8 +159,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
185
159
|
created_at: string;
|
186
160
|
updated_at: string;
|
187
161
|
shortId: number;
|
188
|
-
firstTimeMiExpo: boolean;
|
189
|
-
isPhoneVerified: boolean;
|
190
162
|
firstName: string | null;
|
191
163
|
gender: string | null;
|
192
164
|
birthDate: Date | null;
|
@@ -199,8 +171,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
199
171
|
movedToTrashDate: string | null;
|
200
172
|
}, {
|
201
173
|
id: string;
|
202
|
-
username: string | null;
|
203
|
-
password: string | null;
|
204
174
|
phoneNumber: string;
|
205
175
|
secondaryPhoneNumber: string | null;
|
206
176
|
fullName: string;
|
@@ -209,8 +179,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
209
179
|
created_at: string;
|
210
180
|
updated_at: string;
|
211
181
|
shortId: number;
|
212
|
-
firstTimeMiExpo: boolean;
|
213
|
-
isPhoneVerified: boolean;
|
214
182
|
firstName: string | null;
|
215
183
|
gender: string | null;
|
216
184
|
birthDate: string | null;
|
@@ -225,8 +193,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
225
193
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
226
194
|
profiles: {
|
227
195
|
id: string;
|
228
|
-
username: string | null;
|
229
|
-
password: string | null;
|
230
196
|
phoneNumber: string;
|
231
197
|
secondaryPhoneNumber: string | null;
|
232
198
|
fullName: string;
|
@@ -235,8 +201,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
235
201
|
created_at: string;
|
236
202
|
updated_at: string;
|
237
203
|
shortId: number;
|
238
|
-
firstTimeMiExpo: boolean;
|
239
|
-
isPhoneVerified: boolean;
|
240
204
|
firstName: string | null;
|
241
205
|
gender: string | null;
|
242
206
|
birthDate: Date | null;
|
@@ -251,8 +215,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
251
215
|
}, {
|
252
216
|
profiles: {
|
253
217
|
id: string;
|
254
|
-
username: string | null;
|
255
|
-
password: string | null;
|
256
218
|
phoneNumber: string;
|
257
219
|
secondaryPhoneNumber: string | null;
|
258
220
|
fullName: string;
|
@@ -261,8 +223,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
261
223
|
created_at: string;
|
262
224
|
updated_at: string;
|
263
225
|
shortId: number;
|
264
|
-
firstTimeMiExpo: boolean;
|
265
|
-
isPhoneVerified: boolean;
|
266
226
|
firstName: string | null;
|
267
227
|
gender: string | null;
|
268
228
|
birthDate: string | null;
|
@@ -25,12 +25,8 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
25
25
|
profiles: z.ZodArray<z.ZodObject<{
|
26
26
|
id: z.ZodString;
|
27
27
|
shortId: z.ZodNumber;
|
28
|
-
|
29
|
-
|
30
|
-
password: z.ZodNullable<z.ZodString>;
|
31
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
32
|
-
isPhoneVerified: z.ZodBoolean;
|
33
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
28
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
29
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
34
30
|
fullName: z.ZodString;
|
35
31
|
firstName: z.ZodNullable<z.ZodString>;
|
36
32
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -48,8 +44,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
48
44
|
updated_at: z.ZodDate;
|
49
45
|
}, "strip", z.ZodTypeAny, {
|
50
46
|
id: string;
|
51
|
-
username: string | null;
|
52
|
-
password: string | null;
|
53
47
|
phoneNumber: string;
|
54
48
|
secondaryPhoneNumber: string | null;
|
55
49
|
fullName: string;
|
@@ -58,8 +52,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
58
52
|
created_at: Date;
|
59
53
|
updated_at: Date;
|
60
54
|
shortId: number;
|
61
|
-
firstTimeMiExpo: boolean;
|
62
|
-
isPhoneVerified: boolean;
|
63
55
|
firstName: string | null;
|
64
56
|
gender: string | null;
|
65
57
|
birthDate: Date | null;
|
@@ -72,8 +64,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
72
64
|
movedToTrashDate: Date | null;
|
73
65
|
}, {
|
74
66
|
id: string;
|
75
|
-
username: string | null;
|
76
|
-
password: string | null;
|
77
67
|
phoneNumber: string;
|
78
68
|
secondaryPhoneNumber: string | null;
|
79
69
|
fullName: string;
|
@@ -82,8 +72,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
82
72
|
created_at: Date;
|
83
73
|
updated_at: Date;
|
84
74
|
shortId: number;
|
85
|
-
firstTimeMiExpo: boolean;
|
86
|
-
isPhoneVerified: boolean;
|
87
75
|
firstName: string | null;
|
88
76
|
gender: string | null;
|
89
77
|
birthDate: string | null;
|
@@ -98,8 +86,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
98
86
|
}, "strip", z.ZodTypeAny, {
|
99
87
|
profiles: {
|
100
88
|
id: string;
|
101
|
-
username: string | null;
|
102
|
-
password: string | null;
|
103
89
|
phoneNumber: string;
|
104
90
|
secondaryPhoneNumber: string | null;
|
105
91
|
fullName: string;
|
@@ -108,8 +94,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
108
94
|
created_at: Date;
|
109
95
|
updated_at: Date;
|
110
96
|
shortId: number;
|
111
|
-
firstTimeMiExpo: boolean;
|
112
|
-
isPhoneVerified: boolean;
|
113
97
|
firstName: string | null;
|
114
98
|
gender: string | null;
|
115
99
|
birthDate: Date | null;
|
@@ -124,8 +108,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
124
108
|
}, {
|
125
109
|
profiles: {
|
126
110
|
id: string;
|
127
|
-
username: string | null;
|
128
|
-
password: string | null;
|
129
111
|
phoneNumber: string;
|
130
112
|
secondaryPhoneNumber: string | null;
|
131
113
|
fullName: string;
|
@@ -134,8 +116,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
134
116
|
created_at: Date;
|
135
117
|
updated_at: Date;
|
136
118
|
shortId: number;
|
137
|
-
firstTimeMiExpo: boolean;
|
138
|
-
isPhoneVerified: boolean;
|
139
119
|
firstName: string | null;
|
140
120
|
gender: string | null;
|
141
121
|
birthDate: string | null;
|
@@ -152,12 +132,8 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
152
132
|
profiles: z.ZodArray<z.ZodObject<{
|
153
133
|
id: z.ZodString;
|
154
134
|
shortId: z.ZodNumber;
|
155
|
-
|
156
|
-
|
157
|
-
password: z.ZodNullable<z.ZodString>;
|
158
|
-
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
159
|
-
isPhoneVerified: z.ZodBoolean;
|
160
|
-
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
135
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
136
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
161
137
|
fullName: z.ZodString;
|
162
138
|
firstName: z.ZodNullable<z.ZodString>;
|
163
139
|
gender: z.ZodNullable<z.ZodString>;
|
@@ -175,8 +151,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
175
151
|
updated_at: z.ZodString;
|
176
152
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
177
153
|
id: string;
|
178
|
-
username: string | null;
|
179
|
-
password: string | null;
|
180
154
|
phoneNumber: string;
|
181
155
|
secondaryPhoneNumber: string | null;
|
182
156
|
fullName: string;
|
@@ -185,8 +159,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
185
159
|
created_at: string;
|
186
160
|
updated_at: string;
|
187
161
|
shortId: number;
|
188
|
-
firstTimeMiExpo: boolean;
|
189
|
-
isPhoneVerified: boolean;
|
190
162
|
firstName: string | null;
|
191
163
|
gender: string | null;
|
192
164
|
birthDate: Date | null;
|
@@ -199,8 +171,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
199
171
|
movedToTrashDate: string | null;
|
200
172
|
}, {
|
201
173
|
id: string;
|
202
|
-
username: string | null;
|
203
|
-
password: string | null;
|
204
174
|
phoneNumber: string;
|
205
175
|
secondaryPhoneNumber: string | null;
|
206
176
|
fullName: string;
|
@@ -209,8 +179,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
209
179
|
created_at: string;
|
210
180
|
updated_at: string;
|
211
181
|
shortId: number;
|
212
|
-
firstTimeMiExpo: boolean;
|
213
|
-
isPhoneVerified: boolean;
|
214
182
|
firstName: string | null;
|
215
183
|
gender: string | null;
|
216
184
|
birthDate: string | null;
|
@@ -225,8 +193,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
225
193
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
226
194
|
profiles: {
|
227
195
|
id: string;
|
228
|
-
username: string | null;
|
229
|
-
password: string | null;
|
230
196
|
phoneNumber: string;
|
231
197
|
secondaryPhoneNumber: string | null;
|
232
198
|
fullName: string;
|
@@ -235,8 +201,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
235
201
|
created_at: string;
|
236
202
|
updated_at: string;
|
237
203
|
shortId: number;
|
238
|
-
firstTimeMiExpo: boolean;
|
239
|
-
isPhoneVerified: boolean;
|
240
204
|
firstName: string | null;
|
241
205
|
gender: string | null;
|
242
206
|
birthDate: Date | null;
|
@@ -251,8 +215,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
251
215
|
}, {
|
252
216
|
profiles: {
|
253
217
|
id: string;
|
254
|
-
username: string | null;
|
255
|
-
password: string | null;
|
256
218
|
phoneNumber: string;
|
257
219
|
secondaryPhoneNumber: string | null;
|
258
220
|
fullName: string;
|
@@ -261,8 +223,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
261
223
|
created_at: string;
|
262
224
|
updated_at: string;
|
263
225
|
shortId: number;
|
264
|
-
firstTimeMiExpo: boolean;
|
265
|
-
isPhoneVerified: boolean;
|
266
226
|
firstName: string | null;
|
267
227
|
gender: string | null;
|
268
228
|
birthDate: string | null;
|