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

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 (60) hide show
  1. package/dist/src/auth/dto/login-mi-expo.dto.js +2 -2
  2. package/dist/src/exports.d.ts +0 -1
  3. package/dist/src/exports.js +0 -1
  4. package/dist/src/message/dto/non-read-messages.dto.js +2 -2
  5. package/dist/src/message/dto/send-message-to-phone.dto.js +2 -2
  6. package/dist/src/otp/dto/send-otp.dto.js +2 -2
  7. package/dist/src/otp/dto/verify-otp.dto.js +3 -3
  8. package/dist/src/profile/dto/create-profile.dto.d.ts +82 -468
  9. package/dist/src/profile/dto/create-profile.dto.js +4 -80
  10. package/dist/src/profile/dto/delete-profile.dto.d.ts +0 -73
  11. package/dist/src/profile/dto/delete-profile.dto.js +3 -4
  12. package/dist/src/profile/dto/find-all-profile.dto.d.ts +39 -266
  13. package/dist/src/profile/dto/find-all-profile.dto.js +3 -19
  14. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +79 -440
  15. package/dist/src/profile/dto/find-by-date-range-profile.dto.js +4 -26
  16. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +58 -309
  17. package/dist/src/profile/dto/find-by-id-profile.dto.js +3 -21
  18. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +0 -73
  19. package/dist/src/profile/dto/find-by-phone-number.dto.js +3 -4
  20. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +35 -223
  21. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +3 -13
  22. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +38 -257
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.js +3 -18
  24. package/dist/src/profile/dto/find-trash.dto.d.ts +11 -75
  25. package/dist/src/profile/dto/find-trash.dto.js +3 -18
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +58 -443
  27. package/dist/src/profile/dto/find-with-active-chat.dto.js +3 -20
  28. package/dist/src/profile/dto/profile.dto.js +2 -2
  29. package/dist/src/profile/dto/update-profile.dto.d.ts +60 -244
  30. package/dist/src/profile/dto/update-profile.dto.js +4 -48
  31. package/dist/src/profile/exports.d.ts +12 -12
  32. package/dist/src/profile/exports.js +12 -12
  33. package/dist/src/profile/schema/create-profile.schema.d.ts +405 -0
  34. package/dist/src/profile/schema/create-profile.schema.js +83 -0
  35. package/dist/src/profile/schema/delete-profile.schema.d.ts +73 -0
  36. package/dist/src/profile/schema/delete-profile.schema.js +6 -0
  37. package/dist/src/profile/schema/find-all-profile.schema.d.ts +227 -0
  38. package/dist/src/profile/schema/find-all-profile.schema.js +21 -0
  39. package/dist/src/profile/schema/find-by-date-range-profile.schema.d.ts +361 -0
  40. package/dist/src/profile/schema/find-by-date-range-profile.schema.js +27 -0
  41. package/dist/src/profile/schema/find-by-id-profile.schema.d.ts +251 -0
  42. package/dist/src/profile/schema/find-by-id-profile.schema.js +23 -0
  43. package/dist/src/profile/schema/find-by-phone-number.schema.d.ts +73 -0
  44. package/dist/src/profile/schema/find-by-phone-number.schema.js +6 -0
  45. package/dist/src/profile/schema/find-by-tag-groups-profile.schema.d.ts +188 -0
  46. package/dist/src/profile/schema/find-by-tag-groups-profile.schema.js +15 -0
  47. package/dist/src/profile/schema/find-by-tags-profile.schema.d.ts +219 -0
  48. package/dist/src/profile/schema/find-by-tags-profile.schema.js +20 -0
  49. package/dist/src/profile/schema/find-trash.schema.d.ts +64 -0
  50. package/dist/src/profile/schema/find-trash.schema.js +20 -0
  51. package/dist/src/profile/schema/find-with-active-chat.schema.d.ts +385 -0
  52. package/dist/src/profile/schema/find-with-active-chat.schema.js +22 -0
  53. package/dist/src/{prisma/dtos.dto.js → profile/schema/profile.schema.js} +2 -2
  54. package/dist/src/profile/schema/update-profile.schema.d.ts +196 -0
  55. package/dist/src/profile/schema/update-profile.schema.js +51 -0
  56. package/dist/src/tag/dto/massive-allocation.dto.js +3 -3
  57. package/dist/src/tag/dto/massive-deallocation.dto.js +3 -3
  58. package/dist/types/schema.d.ts +4 -0
  59. package/package.json +2 -5
  60. /package/dist/src/{prisma/dtos.dto.d.ts → profile/schema/profile.schema.d.ts} +0 -0
@@ -1,288 +1,37 @@
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, {
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, {
286
35
  id: string;
287
36
  latitude: number;
288
37
  longitude: number;
@@ -301,16 +50,16 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
301
50
  country: string;
302
51
  city: string;
303
52
  }>>;
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, {
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, {
314
63
  id: string;
315
64
  latitude: number;
316
65
  longitude: number;
@@ -329,23 +78,23 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
329
78
  country: string;
330
79
  city: string;
331
80
  }>>;
332
- tags: z.ZodArray<z.ZodObject<{
333
- id: z.ZodString;
334
- name: z.ZodString;
335
- groupId: z.ZodString;
336
- type: z.ZodNativeEnum<{
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<{
337
86
  PROFILE: "PROFILE";
338
87
  EVENT: "EVENT";
339
88
  PARTICIPANT: "PARTICIPANT";
340
89
  NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
341
90
  }>;
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, {
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, {
349
98
  id: string;
350
99
  color: string;
351
100
  isExclusive: boolean;
@@ -354,7 +103,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
354
103
  color: string;
355
104
  isExclusive: boolean;
356
105
  }>;
357
- }, z.UnknownKeysParam, z.ZodTypeAny, {
106
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
358
107
  id: string;
359
108
  name: string;
360
109
  type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
@@ -379,7 +128,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
379
128
  isExclusive: boolean;
380
129
  };
381
130
  }>, "many">;
382
- }, z.UnknownKeysParam, z.ZodTypeAny, {
131
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
383
132
  id: string;
384
133
  username: string | null;
385
134
  password: string | null;
@@ -1,27 +1,9 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.FindByIdProfileResponseDto = exports.findByIdProfileResponseSchema = void 0;
7
- const location_dto_1 = require("../../location/dto/location.dto");
8
- const dtos_dto_1 = require("../../prisma/dtos.dto");
3
+ exports.FindByIdProfileResponseDto = void 0;
4
+ const find_by_id_profile_schema_1 = require("../schema/find-by-id-profile.schema");
9
5
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
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 = dtos_dto_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) {
6
+ class FindByIdProfileResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(find_by_id_profile_schema_1.findByIdProfileResponseSchema) {
25
7
  }
26
8
  exports.FindByIdProfileResponseDto = FindByIdProfileResponseDto;
27
9
  //# sourceMappingURL=find-by-id-profile.dto.js.map
@@ -1,76 +1,3 @@
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
- }>;
74
1
  declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
75
2
  id: import("zod").ZodString;
76
3
  shortId: import("zod").ZodNumber;
@@ -1,10 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FindByPhoneNumberResponseDto = exports.findByPhoneNumberResponseSchema = void 0;
4
- const dtos_dto_1 = require("../../prisma/dtos.dto");
3
+ exports.FindByPhoneNumberResponseDto = void 0;
4
+ const find_by_phone_number_schema_1 = require("../schema/find-by-phone-number.schema");
5
5
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
6
- exports.findByPhoneNumberResponseSchema = dtos_dto_1.profileSchema;
7
- class FindByPhoneNumberResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByPhoneNumberResponseSchema) {
6
+ class FindByPhoneNumberResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(find_by_phone_number_schema_1.findByPhoneNumberResponseSchema) {
8
7
  }
9
8
  exports.FindByPhoneNumberResponseDto = FindByPhoneNumberResponseDto;
10
9
  //# sourceMappingURL=find-by-phone-number.dto.js.map