expo-backend-types 0.30.0-EXPO-308-auth.14 → 0.30.0-EXPO-308-auth.16

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.
Files changed (62) hide show
  1. package/dist/src/auth/dto/login-mi-expo.dto.js +1 -1
  2. package/dist/src/exports.d.ts +1 -0
  3. package/dist/src/exports.js +1 -0
  4. package/dist/src/message/dto/non-read-messages.dto.js +1 -1
  5. package/dist/src/message/dto/send-message-to-phone.dto.js +1 -1
  6. package/dist/src/otp/dto/send-otp.dto.js +1 -1
  7. package/dist/src/otp/dto/verify-otp.dto.js +1 -1
  8. package/dist/src/profile/dto/create-profile.dto.d.ts +468 -82
  9. package/dist/src/profile/dto/create-profile.dto.js +80 -4
  10. package/dist/src/profile/dto/delete-profile.dto.d.ts +73 -0
  11. package/dist/src/profile/dto/delete-profile.dto.js +4 -3
  12. package/dist/src/profile/dto/find-all-profile.dto.d.ts +266 -39
  13. package/dist/src/profile/dto/find-all-profile.dto.js +19 -3
  14. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +440 -79
  15. package/dist/src/profile/dto/find-by-date-range-profile.dto.js +26 -4
  16. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +309 -58
  17. package/dist/src/profile/dto/find-by-id-profile.dto.js +21 -3
  18. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +73 -0
  19. package/dist/src/profile/dto/find-by-phone-number.dto.js +4 -3
  20. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +223 -35
  21. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +13 -3
  22. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +257 -38
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.js +18 -3
  24. package/dist/src/profile/dto/find-trash.dto.d.ts +75 -11
  25. package/dist/src/profile/dto/find-trash.dto.js +18 -3
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +443 -58
  27. package/dist/src/profile/dto/find-with-active-chat.dto.js +20 -3
  28. package/dist/src/profile/dto/profile.dto.js +1 -1
  29. package/dist/src/profile/dto/update-profile.dto.d.ts +244 -60
  30. package/dist/src/profile/dto/update-profile.dto.js +48 -4
  31. package/dist/src/profile/exports.d.ts +12 -12
  32. package/dist/src/profile/exports.js +12 -12
  33. package/dist/src/schema/exports.d.ts +1 -0
  34. package/dist/src/schema/exports.js +18 -0
  35. package/dist/src/{profile/schema → schema}/profile.schema.js +1 -1
  36. package/dist/src/tag/dto/massive-allocation.dto.js +1 -1
  37. package/dist/src/tag/dto/massive-deallocation.dto.js +1 -1
  38. package/dist/types/schema.d.ts +0 -4
  39. package/package.json +23 -25
  40. package/dist/src/profile/schema/create-profile.schema.d.ts +0 -405
  41. package/dist/src/profile/schema/create-profile.schema.js +0 -83
  42. package/dist/src/profile/schema/delete-profile.schema.d.ts +0 -73
  43. package/dist/src/profile/schema/delete-profile.schema.js +0 -6
  44. package/dist/src/profile/schema/find-all-profile.schema.d.ts +0 -227
  45. package/dist/src/profile/schema/find-all-profile.schema.js +0 -21
  46. package/dist/src/profile/schema/find-by-date-range-profile.schema.d.ts +0 -361
  47. package/dist/src/profile/schema/find-by-date-range-profile.schema.js +0 -27
  48. package/dist/src/profile/schema/find-by-id-profile.schema.d.ts +0 -251
  49. package/dist/src/profile/schema/find-by-id-profile.schema.js +0 -23
  50. package/dist/src/profile/schema/find-by-phone-number.schema.d.ts +0 -73
  51. package/dist/src/profile/schema/find-by-phone-number.schema.js +0 -6
  52. package/dist/src/profile/schema/find-by-tag-groups-profile.schema.d.ts +0 -188
  53. package/dist/src/profile/schema/find-by-tag-groups-profile.schema.js +0 -15
  54. package/dist/src/profile/schema/find-by-tags-profile.schema.d.ts +0 -219
  55. package/dist/src/profile/schema/find-by-tags-profile.schema.js +0 -20
  56. package/dist/src/profile/schema/find-trash.schema.d.ts +0 -64
  57. package/dist/src/profile/schema/find-trash.schema.js +0 -20
  58. package/dist/src/profile/schema/find-with-active-chat.schema.d.ts +0 -385
  59. package/dist/src/profile/schema/find-with-active-chat.schema.js +0 -22
  60. package/dist/src/profile/schema/update-profile.schema.d.ts +0 -196
  61. package/dist/src/profile/schema/update-profile.schema.js +0 -51
  62. /package/dist/src/{profile/schema → schema}/profile.schema.d.ts +0 -0
@@ -1,37 +1,288 @@
1
- declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
2
- id: import("zod").ZodString;
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>;
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>;
10
- fullName: import("zod").ZodString;
11
- firstName: import("zod").ZodNullable<import("zod").ZodString>;
12
- gender: import("zod").ZodNullable<import("zod").ZodString>;
13
- birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodDate>>;
14
- profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
15
- instagram: import("zod").ZodNullable<import("zod").ZodString>;
16
- mail: import("zod").ZodNullable<import("zod").ZodString>;
17
- dni: import("zod").ZodNullable<import("zod").ZodString>;
18
- alternativeNames: import("zod").ZodArray<import("zod").ZodString, "many">;
19
- birthLocationId: import("zod").ZodNullable<import("zod").ZodString>;
20
- residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
21
- isInTrash: import("zod").ZodBoolean;
22
- movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
23
- created_at: import("zod").ZodString;
24
- updated_at: import("zod").ZodString;
25
- residenceLocation: import("zod").ZodNullable<import("zod").ZodObject<{
26
- id: import("zod").ZodString;
27
- latitude: import("zod").ZodNumber;
28
- longitude: import("zod").ZodNumber;
29
- country: import("zod").ZodString;
30
- state: import("zod").ZodString;
31
- city: import("zod").ZodString;
32
- created_at: import("zod").ZodString;
33
- updated_at: import("zod").ZodString;
34
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
1
+ import z from 'zod';
2
+ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
3
+ id: z.ZodString;
4
+ shortId: z.ZodNumber;
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>;
11
+ fullName: z.ZodString;
12
+ firstName: z.ZodNullable<z.ZodString>;
13
+ gender: z.ZodNullable<z.ZodString>;
14
+ birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
15
+ profilePictureUrl: z.ZodNullable<z.ZodString>;
16
+ instagram: z.ZodNullable<z.ZodString>;
17
+ mail: z.ZodNullable<z.ZodString>;
18
+ dni: z.ZodNullable<z.ZodString>;
19
+ alternativeNames: z.ZodArray<z.ZodString, "many">;
20
+ birthLocationId: z.ZodNullable<z.ZodString>;
21
+ residenceLocationId: z.ZodNullable<z.ZodString>;
22
+ isInTrash: z.ZodBoolean;
23
+ movedToTrashDate: z.ZodNullable<z.ZodDate>;
24
+ created_at: z.ZodDate;
25
+ updated_at: z.ZodDate;
26
+ }, {
27
+ residenceLocation: z.ZodNullable<z.ZodObject<{
28
+ id: z.ZodString;
29
+ latitude: z.ZodNumber;
30
+ longitude: z.ZodNumber;
31
+ country: z.ZodString;
32
+ state: z.ZodString;
33
+ city: z.ZodString;
34
+ created_at: z.ZodDate;
35
+ updated_at: z.ZodDate;
36
+ }, "strip", z.ZodTypeAny, {
37
+ id: string;
38
+ latitude: number;
39
+ longitude: number;
40
+ created_at: Date;
41
+ updated_at: Date;
42
+ state: string;
43
+ country: string;
44
+ city: string;
45
+ }, {
46
+ id: string;
47
+ latitude: number;
48
+ longitude: number;
49
+ created_at: Date;
50
+ updated_at: Date;
51
+ state: string;
52
+ country: string;
53
+ city: string;
54
+ }>>;
55
+ birthLocation: z.ZodNullable<z.ZodObject<{
56
+ id: z.ZodString;
57
+ latitude: z.ZodNumber;
58
+ longitude: z.ZodNumber;
59
+ country: z.ZodString;
60
+ state: z.ZodString;
61
+ city: z.ZodString;
62
+ created_at: z.ZodDate;
63
+ updated_at: z.ZodDate;
64
+ }, "strip", z.ZodTypeAny, {
65
+ id: string;
66
+ latitude: number;
67
+ longitude: number;
68
+ created_at: Date;
69
+ updated_at: Date;
70
+ state: string;
71
+ country: string;
72
+ city: string;
73
+ }, {
74
+ id: string;
75
+ latitude: number;
76
+ longitude: number;
77
+ created_at: Date;
78
+ updated_at: Date;
79
+ state: string;
80
+ country: string;
81
+ city: string;
82
+ }>>;
83
+ tags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
84
+ id: z.ZodString;
85
+ name: z.ZodString;
86
+ groupId: z.ZodString;
87
+ type: z.ZodNativeEnum<{
88
+ PROFILE: "PROFILE";
89
+ EVENT: "EVENT";
90
+ PARTICIPANT: "PARTICIPANT";
91
+ NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
92
+ }>;
93
+ created_at: z.ZodDate;
94
+ updated_at: z.ZodDate;
95
+ }, {
96
+ group: z.ZodObject<Pick<{
97
+ id: z.ZodString;
98
+ name: z.ZodString;
99
+ color: z.ZodString;
100
+ isExclusive: z.ZodBoolean;
101
+ created_at: z.ZodDate;
102
+ updated_at: z.ZodDate;
103
+ }, "id" | "color" | "isExclusive">, "strip", z.ZodTypeAny, {
104
+ id: string;
105
+ color: string;
106
+ isExclusive: boolean;
107
+ }, {
108
+ id: string;
109
+ color: string;
110
+ isExclusive: boolean;
111
+ }>;
112
+ }>, "strip", z.ZodTypeAny, {
113
+ id: string;
114
+ name: string;
115
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
116
+ created_at: Date;
117
+ updated_at: Date;
118
+ groupId: string;
119
+ group: {
120
+ id: string;
121
+ color: string;
122
+ isExclusive: boolean;
123
+ };
124
+ }, {
125
+ id: string;
126
+ name: string;
127
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
128
+ created_at: Date;
129
+ updated_at: Date;
130
+ groupId: string;
131
+ group: {
132
+ id: string;
133
+ color: string;
134
+ isExclusive: boolean;
135
+ };
136
+ }>, "many">;
137
+ }>, "strip", z.ZodTypeAny, {
138
+ id: string;
139
+ username: string | null;
140
+ password: string | null;
141
+ phoneNumber: string;
142
+ secondaryPhoneNumber: string | null;
143
+ fullName: string;
144
+ profilePictureUrl: string | null;
145
+ mail: string | null;
146
+ created_at: Date;
147
+ updated_at: Date;
148
+ shortId: number;
149
+ firstTimeMiExpo: boolean;
150
+ isPhoneVerified: boolean;
151
+ firstName: string | null;
152
+ gender: string | null;
153
+ birthDate: Date | null;
154
+ instagram: string | null;
155
+ dni: string | null;
156
+ alternativeNames: string[];
157
+ birthLocationId: string | null;
158
+ residenceLocationId: string | null;
159
+ isInTrash: boolean;
160
+ movedToTrashDate: Date | null;
161
+ tags: {
162
+ id: string;
163
+ name: string;
164
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
165
+ created_at: Date;
166
+ updated_at: Date;
167
+ groupId: string;
168
+ group: {
169
+ id: string;
170
+ color: string;
171
+ isExclusive: boolean;
172
+ };
173
+ }[];
174
+ birthLocation: {
175
+ id: string;
176
+ latitude: number;
177
+ longitude: number;
178
+ created_at: Date;
179
+ updated_at: Date;
180
+ state: string;
181
+ country: string;
182
+ city: string;
183
+ } | null;
184
+ residenceLocation: {
185
+ id: string;
186
+ latitude: number;
187
+ longitude: number;
188
+ created_at: Date;
189
+ updated_at: Date;
190
+ state: string;
191
+ country: string;
192
+ city: string;
193
+ } | null;
194
+ }, {
195
+ id: string;
196
+ username: string | null;
197
+ password: string | null;
198
+ phoneNumber: string;
199
+ secondaryPhoneNumber: string | null;
200
+ fullName: string;
201
+ profilePictureUrl: string | null;
202
+ mail: string | null;
203
+ created_at: Date;
204
+ updated_at: Date;
205
+ shortId: number;
206
+ firstTimeMiExpo: boolean;
207
+ isPhoneVerified: boolean;
208
+ firstName: string | null;
209
+ gender: string | null;
210
+ birthDate: string | null;
211
+ instagram: string | null;
212
+ dni: string | null;
213
+ alternativeNames: string[];
214
+ birthLocationId: string | null;
215
+ residenceLocationId: string | null;
216
+ isInTrash: boolean;
217
+ movedToTrashDate: Date | null;
218
+ tags: {
219
+ id: string;
220
+ name: string;
221
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
222
+ created_at: Date;
223
+ updated_at: Date;
224
+ groupId: string;
225
+ group: {
226
+ id: string;
227
+ color: string;
228
+ isExclusive: boolean;
229
+ };
230
+ }[];
231
+ birthLocation: {
232
+ id: string;
233
+ latitude: number;
234
+ longitude: number;
235
+ created_at: Date;
236
+ updated_at: Date;
237
+ state: string;
238
+ country: string;
239
+ city: string;
240
+ } | null;
241
+ residenceLocation: {
242
+ id: string;
243
+ latitude: number;
244
+ longitude: number;
245
+ created_at: Date;
246
+ updated_at: Date;
247
+ state: string;
248
+ country: string;
249
+ city: string;
250
+ } | null;
251
+ }>;
252
+ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
253
+ id: z.ZodString;
254
+ shortId: z.ZodNumber;
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>;
261
+ fullName: z.ZodString;
262
+ firstName: z.ZodNullable<z.ZodString>;
263
+ gender: z.ZodNullable<z.ZodString>;
264
+ birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
265
+ profilePictureUrl: z.ZodNullable<z.ZodString>;
266
+ instagram: z.ZodNullable<z.ZodString>;
267
+ mail: z.ZodNullable<z.ZodString>;
268
+ dni: z.ZodNullable<z.ZodString>;
269
+ alternativeNames: z.ZodArray<z.ZodString, "many">;
270
+ birthLocationId: z.ZodNullable<z.ZodString>;
271
+ residenceLocationId: z.ZodNullable<z.ZodString>;
272
+ isInTrash: z.ZodBoolean;
273
+ movedToTrashDate: z.ZodNullable<z.ZodString>;
274
+ created_at: z.ZodString;
275
+ updated_at: z.ZodString;
276
+ residenceLocation: z.ZodNullable<z.ZodObject<{
277
+ id: z.ZodString;
278
+ latitude: z.ZodNumber;
279
+ longitude: z.ZodNumber;
280
+ country: z.ZodString;
281
+ state: z.ZodString;
282
+ city: z.ZodString;
283
+ created_at: z.ZodString;
284
+ updated_at: z.ZodString;
285
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
35
286
  id: string;
36
287
  latitude: number;
37
288
  longitude: number;
@@ -50,16 +301,16 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
50
301
  country: string;
51
302
  city: string;
52
303
  }>>;
53
- birthLocation: import("zod").ZodNullable<import("zod").ZodObject<{
54
- id: import("zod").ZodString;
55
- latitude: import("zod").ZodNumber;
56
- longitude: import("zod").ZodNumber;
57
- country: import("zod").ZodString;
58
- state: import("zod").ZodString;
59
- city: import("zod").ZodString;
60
- created_at: import("zod").ZodString;
61
- updated_at: import("zod").ZodString;
62
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
304
+ birthLocation: z.ZodNullable<z.ZodObject<{
305
+ id: z.ZodString;
306
+ latitude: z.ZodNumber;
307
+ longitude: z.ZodNumber;
308
+ country: z.ZodString;
309
+ state: z.ZodString;
310
+ city: z.ZodString;
311
+ created_at: z.ZodString;
312
+ updated_at: z.ZodString;
313
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
63
314
  id: string;
64
315
  latitude: number;
65
316
  longitude: number;
@@ -78,23 +329,23 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
78
329
  country: string;
79
330
  city: string;
80
331
  }>>;
81
- tags: import("zod").ZodArray<import("zod").ZodObject<{
82
- id: import("zod").ZodString;
83
- name: import("zod").ZodString;
84
- groupId: import("zod").ZodString;
85
- type: import("zod").ZodNativeEnum<{
332
+ tags: z.ZodArray<z.ZodObject<{
333
+ id: z.ZodString;
334
+ name: z.ZodString;
335
+ groupId: z.ZodString;
336
+ type: z.ZodNativeEnum<{
86
337
  PROFILE: "PROFILE";
87
338
  EVENT: "EVENT";
88
339
  PARTICIPANT: "PARTICIPANT";
89
340
  NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
90
341
  }>;
91
- created_at: import("zod").ZodString;
92
- updated_at: import("zod").ZodString;
93
- group: import("zod").ZodObject<{
94
- id: import("zod").ZodString;
95
- color: import("zod").ZodString;
96
- isExclusive: import("zod").ZodBoolean;
97
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
342
+ created_at: z.ZodString;
343
+ updated_at: z.ZodString;
344
+ group: z.ZodObject<{
345
+ id: z.ZodString;
346
+ color: z.ZodString;
347
+ isExclusive: z.ZodBoolean;
348
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
98
349
  id: string;
99
350
  color: string;
100
351
  isExclusive: boolean;
@@ -103,7 +354,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
103
354
  color: string;
104
355
  isExclusive: boolean;
105
356
  }>;
106
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
357
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
107
358
  id: string;
108
359
  name: string;
109
360
  type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
@@ -128,7 +379,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
128
379
  isExclusive: boolean;
129
380
  };
130
381
  }>, "many">;
131
- }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
382
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
132
383
  id: string;
133
384
  username: string | null;
134
385
  password: string | null;
@@ -1,9 +1,27 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FindByIdProfileResponseDto = void 0;
4
- const find_by_id_profile_schema_1 = require("../schema/find-by-id-profile.schema");
6
+ exports.FindByIdProfileResponseDto = exports.findByIdProfileResponseSchema = void 0;
7
+ const location_dto_1 = require("../../location/dto/location.dto");
8
+ const profile_schema_1 = require("../../schema/profile.schema");
5
9
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
6
- class FindByIdProfileResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(find_by_id_profile_schema_1.findByIdProfileResponseSchema) {
10
+ const tag_group_dto_1 = require("../../tag-group/dto/tag-group.dto");
11
+ const tag_dto_1 = require("../../tag/dto/tag.dto");
12
+ const zod_1 = __importDefault(require("zod"));
13
+ exports.findByIdProfileResponseSchema = profile_schema_1.profileSchema.merge(zod_1.default.object({
14
+ residenceLocation: location_dto_1.locationSchema.nullable(),
15
+ birthLocation: location_dto_1.locationSchema.nullable(),
16
+ tags: zod_1.default.array(tag_dto_1.tagSchema.merge(zod_1.default.object({
17
+ group: tag_group_dto_1.tagGroupSchema.pick({
18
+ id: true,
19
+ color: true,
20
+ isExclusive: true,
21
+ }),
22
+ }))),
23
+ }));
24
+ class FindByIdProfileResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByIdProfileResponseSchema) {
7
25
  }
8
26
  exports.FindByIdProfileResponseDto = FindByIdProfileResponseDto;
9
27
  //# sourceMappingURL=find-by-id-profile.dto.js.map
@@ -1,3 +1,76 @@
1
+ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
2
+ id: import("zod").ZodString;
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>;
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>;
10
+ fullName: import("zod").ZodString;
11
+ firstName: import("zod").ZodNullable<import("zod").ZodString>;
12
+ gender: import("zod").ZodNullable<import("zod").ZodString>;
13
+ birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodDate>>;
14
+ profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
15
+ instagram: import("zod").ZodNullable<import("zod").ZodString>;
16
+ mail: import("zod").ZodNullable<import("zod").ZodString>;
17
+ dni: import("zod").ZodNullable<import("zod").ZodString>;
18
+ alternativeNames: import("zod").ZodArray<import("zod").ZodString, "many">;
19
+ birthLocationId: import("zod").ZodNullable<import("zod").ZodString>;
20
+ residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
21
+ isInTrash: import("zod").ZodBoolean;
22
+ movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
23
+ created_at: import("zod").ZodDate;
24
+ updated_at: import("zod").ZodDate;
25
+ }, "strip", import("zod").ZodTypeAny, {
26
+ id: string;
27
+ username: string | null;
28
+ password: string | null;
29
+ phoneNumber: string;
30
+ secondaryPhoneNumber: string | null;
31
+ fullName: string;
32
+ profilePictureUrl: string | null;
33
+ mail: string | null;
34
+ created_at: Date;
35
+ updated_at: Date;
36
+ shortId: number;
37
+ firstTimeMiExpo: boolean;
38
+ isPhoneVerified: boolean;
39
+ firstName: string | null;
40
+ gender: string | null;
41
+ birthDate: Date | null;
42
+ instagram: string | null;
43
+ dni: string | null;
44
+ alternativeNames: string[];
45
+ birthLocationId: string | null;
46
+ residenceLocationId: string | null;
47
+ isInTrash: boolean;
48
+ movedToTrashDate: Date | null;
49
+ }, {
50
+ id: string;
51
+ username: string | null;
52
+ password: string | null;
53
+ phoneNumber: string;
54
+ secondaryPhoneNumber: string | null;
55
+ fullName: string;
56
+ profilePictureUrl: string | null;
57
+ mail: string | null;
58
+ created_at: Date;
59
+ updated_at: Date;
60
+ shortId: number;
61
+ firstTimeMiExpo: boolean;
62
+ isPhoneVerified: boolean;
63
+ firstName: string | null;
64
+ gender: string | null;
65
+ birthDate: string | null;
66
+ instagram: string | null;
67
+ dni: string | null;
68
+ alternativeNames: string[];
69
+ birthLocationId: string | null;
70
+ residenceLocationId: string | null;
71
+ isInTrash: boolean;
72
+ movedToTrashDate: Date | null;
73
+ }>;
1
74
  declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
2
75
  id: import("zod").ZodString;
3
76
  shortId: import("zod").ZodNumber;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FindByPhoneNumberResponseDto = void 0;
4
- const find_by_phone_number_schema_1 = require("../schema/find-by-phone-number.schema");
3
+ exports.FindByPhoneNumberResponseDto = exports.findByPhoneNumberResponseSchema = void 0;
4
+ const profile_schema_1 = require("../../schema/profile.schema");
5
5
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
6
- class FindByPhoneNumberResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(find_by_phone_number_schema_1.findByPhoneNumberResponseSchema) {
6
+ exports.findByPhoneNumberResponseSchema = profile_schema_1.profileSchema;
7
+ class FindByPhoneNumberResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByPhoneNumberResponseSchema) {
7
8
  }
8
9
  exports.FindByPhoneNumberResponseDto = FindByPhoneNumberResponseDto;
9
10
  //# sourceMappingURL=find-by-phone-number.dto.js.map