expo-backend-types 0.22.0-EXPO-251-EB-Whatsapp.3 → 0.22.0-EXPO-288-EB-Imagenes.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/src/event/dto/event.dto.js +1 -1
- package/dist/src/event/dto/get-all-event.dto.d.ts +160 -160
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -48
- package/dist/src/event/dto/update-event.dto.d.ts +20 -20
- package/dist/src/i18n/es.d.ts +18 -44
- package/dist/src/i18n/es.js +18 -44
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/image/dto/delete-image.dto.d.ts +18 -0
- package/dist/src/image/dto/delete-image.dto.js +12 -0
- package/dist/src/image/dto/image.dto.d.ts +24 -0
- package/dist/src/image/dto/image.dto.js +18 -0
- package/dist/src/image/dto/update-image.dto.d.ts +18 -0
- package/dist/src/image/dto/update-image.dto.js +15 -0
- package/dist/src/image/exports.d.ts +3 -0
- package/dist/src/{csv → image}/exports.js +3 -3
- package/dist/src/location/dto/find-all-location.dto.d.ts +16 -16
- package/dist/src/message/dto/message.dto.d.ts +2 -2
- package/dist/src/message/exports.d.ts +0 -4
- package/dist/src/message/exports.js +0 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +86 -86
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +124 -124
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +52 -52
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +64 -64
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +84 -84
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +72 -72
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/types/prisma-schema/default.d.ts +1 -1
- package/dist/types/prisma-schema/edge.d.ts +1 -1
- package/dist/types/prisma-schema/edge.js +11 -7
- package/dist/types/prisma-schema/index-browser.js +7 -4
- package/dist/types/prisma-schema/index.d.ts +803 -1034
- package/dist/types/prisma-schema/index.js +11 -7
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-1.1.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +14 -1
- package/dist/types/prisma-schema/runtime/edge-esm.js +21 -18
- package/dist/types/prisma-schema/runtime/edge.js +21 -18
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +297 -87
- package/dist/types/prisma-schema/runtime/library.js +64 -61
- package/dist/types/prisma-schema/runtime/react-native.js +31 -28
- package/dist/types/prisma-schema/runtime/wasm.js +22 -19
- package/dist/types/prisma-schema/wasm.d.ts +1 -1
- package/dist/types/prisma-schema/wasm.js +7 -4
- package/dist/types/schema.d.ts +30 -145
- package/package.json +5 -7
- package/dist/src/csv/dto/csv.dto.d.ts +0 -18
- package/dist/src/csv/dto/csv.dto.js +0 -17
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +0 -23
- package/dist/src/csv/dto/download-all-tables.dto.js +0 -19
- package/dist/src/csv/dto/download-profiles.dto.d.ts +0 -18
- package/dist/src/csv/dto/download-profiles.dto.js +0 -15
- package/dist/src/csv/exports.d.ts +0 -3
- package/dist/src/message/dto/create-template.dto.d.ts +0 -93
- package/dist/src/message/dto/create-template.dto.js +0 -24
- package/dist/src/message/dto/find-template-by-id.dto.d.ts +0 -245
- package/dist/src/message/dto/find-template-by-id.dto.js +0 -23
- package/dist/src/message/dto/find-templates.dto.d.ts +0 -109
- package/dist/src/message/dto/find-templates.dto.js +0 -20
- package/dist/src/message/dto/template.dto.d.ts +0 -154
- package/dist/src/message/dto/template.dto.js +0 -63
@@ -76,6 +76,17 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
76
76
|
mail: string | null;
|
77
77
|
created_at: Date;
|
78
78
|
updated_at: Date;
|
79
|
+
tags: {
|
80
|
+
id: string;
|
81
|
+
name: string;
|
82
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
83
|
+
created_at: Date;
|
84
|
+
updated_at: Date;
|
85
|
+
groupId: string;
|
86
|
+
group: {
|
87
|
+
id: string;
|
88
|
+
};
|
89
|
+
}[];
|
79
90
|
shortId: number;
|
80
91
|
firstName: string | null;
|
81
92
|
gender: string | null;
|
@@ -87,6 +98,15 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
87
98
|
residenceLocationId: string | null;
|
88
99
|
isInTrash: boolean;
|
89
100
|
movedToTrashDate: Date | null;
|
101
|
+
}, {
|
102
|
+
id: string;
|
103
|
+
phoneNumber: string;
|
104
|
+
secondaryPhoneNumber: string | null;
|
105
|
+
fullName: string;
|
106
|
+
profilePictureUrl: string | null;
|
107
|
+
mail: string | null;
|
108
|
+
created_at: Date;
|
109
|
+
updated_at: Date;
|
90
110
|
tags: {
|
91
111
|
id: string;
|
92
112
|
name: string;
|
@@ -98,15 +118,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
98
118
|
id: string;
|
99
119
|
};
|
100
120
|
}[];
|
101
|
-
}, {
|
102
|
-
id: string;
|
103
|
-
phoneNumber: string;
|
104
|
-
secondaryPhoneNumber: string | null;
|
105
|
-
fullName: string;
|
106
|
-
profilePictureUrl: string | null;
|
107
|
-
mail: string | null;
|
108
|
-
created_at: Date;
|
109
|
-
updated_at: Date;
|
110
121
|
shortId: number;
|
111
122
|
firstName: string | null;
|
112
123
|
gender: string | null;
|
@@ -118,17 +129,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
118
129
|
residenceLocationId: string | null;
|
119
130
|
isInTrash: boolean;
|
120
131
|
movedToTrashDate: Date | null;
|
121
|
-
tags: {
|
122
|
-
id: string;
|
123
|
-
name: string;
|
124
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
125
|
-
created_at: Date;
|
126
|
-
updated_at: Date;
|
127
|
-
groupId: string;
|
128
|
-
group: {
|
129
|
-
id: string;
|
130
|
-
};
|
131
|
-
}[];
|
132
132
|
}>, "many">;
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
134
134
|
profiles: {
|
@@ -140,17 +140,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
140
140
|
mail: string | null;
|
141
141
|
created_at: Date;
|
142
142
|
updated_at: Date;
|
143
|
-
shortId: number;
|
144
|
-
firstName: string | null;
|
145
|
-
gender: string | null;
|
146
|
-
birthDate: Date | null;
|
147
|
-
instagram: string | null;
|
148
|
-
dni: string | null;
|
149
|
-
alternativeNames: string[];
|
150
|
-
birthLocationId: string | null;
|
151
|
-
residenceLocationId: string | null;
|
152
|
-
isInTrash: boolean;
|
153
|
-
movedToTrashDate: Date | null;
|
154
143
|
tags: {
|
155
144
|
id: string;
|
156
145
|
name: string;
|
@@ -162,6 +151,17 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
162
151
|
id: string;
|
163
152
|
};
|
164
153
|
}[];
|
154
|
+
shortId: number;
|
155
|
+
firstName: string | null;
|
156
|
+
gender: string | null;
|
157
|
+
birthDate: Date | null;
|
158
|
+
instagram: string | null;
|
159
|
+
dni: string | null;
|
160
|
+
alternativeNames: string[];
|
161
|
+
birthLocationId: string | null;
|
162
|
+
residenceLocationId: string | null;
|
163
|
+
isInTrash: boolean;
|
164
|
+
movedToTrashDate: Date | null;
|
165
165
|
}[];
|
166
166
|
}, {
|
167
167
|
profiles: {
|
@@ -173,17 +173,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
173
173
|
mail: string | null;
|
174
174
|
created_at: Date;
|
175
175
|
updated_at: Date;
|
176
|
-
shortId: number;
|
177
|
-
firstName: string | null;
|
178
|
-
gender: string | null;
|
179
|
-
birthDate: string | null;
|
180
|
-
instagram: string | null;
|
181
|
-
dni: string | null;
|
182
|
-
alternativeNames: string[];
|
183
|
-
birthLocationId: string | null;
|
184
|
-
residenceLocationId: string | null;
|
185
|
-
isInTrash: boolean;
|
186
|
-
movedToTrashDate: Date | null;
|
187
176
|
tags: {
|
188
177
|
id: string;
|
189
178
|
name: string;
|
@@ -195,6 +184,17 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
195
184
|
id: string;
|
196
185
|
};
|
197
186
|
}[];
|
187
|
+
shortId: number;
|
188
|
+
firstName: string | null;
|
189
|
+
gender: string | null;
|
190
|
+
birthDate: string | null;
|
191
|
+
instagram: string | null;
|
192
|
+
dni: string | null;
|
193
|
+
alternativeNames: string[];
|
194
|
+
birthLocationId: string | null;
|
195
|
+
residenceLocationId: string | null;
|
196
|
+
isInTrash: boolean;
|
197
|
+
movedToTrashDate: Date | null;
|
198
198
|
}[];
|
199
199
|
}>;
|
200
200
|
declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -267,6 +267,17 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
267
267
|
mail: string | null;
|
268
268
|
created_at: string;
|
269
269
|
updated_at: string;
|
270
|
+
tags: {
|
271
|
+
id: string;
|
272
|
+
name: string;
|
273
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
274
|
+
created_at: string;
|
275
|
+
updated_at: string;
|
276
|
+
groupId: string;
|
277
|
+
group: {
|
278
|
+
id: string;
|
279
|
+
};
|
280
|
+
}[];
|
270
281
|
shortId: number;
|
271
282
|
firstName: string | null;
|
272
283
|
gender: string | null;
|
@@ -278,6 +289,15 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
278
289
|
residenceLocationId: string | null;
|
279
290
|
isInTrash: boolean;
|
280
291
|
movedToTrashDate: string | null;
|
292
|
+
}, {
|
293
|
+
id: string;
|
294
|
+
phoneNumber: string;
|
295
|
+
secondaryPhoneNumber: string | null;
|
296
|
+
fullName: string;
|
297
|
+
profilePictureUrl: string | null;
|
298
|
+
mail: string | null;
|
299
|
+
created_at: string;
|
300
|
+
updated_at: string;
|
281
301
|
tags: {
|
282
302
|
id: string;
|
283
303
|
name: string;
|
@@ -289,15 +309,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
289
309
|
id: string;
|
290
310
|
};
|
291
311
|
}[];
|
292
|
-
}, {
|
293
|
-
id: string;
|
294
|
-
phoneNumber: string;
|
295
|
-
secondaryPhoneNumber: string | null;
|
296
|
-
fullName: string;
|
297
|
-
profilePictureUrl: string | null;
|
298
|
-
mail: string | null;
|
299
|
-
created_at: string;
|
300
|
-
updated_at: string;
|
301
312
|
shortId: number;
|
302
313
|
firstName: string | null;
|
303
314
|
gender: string | null;
|
@@ -309,17 +320,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
309
320
|
residenceLocationId: string | null;
|
310
321
|
isInTrash: boolean;
|
311
322
|
movedToTrashDate: string | null;
|
312
|
-
tags: {
|
313
|
-
id: string;
|
314
|
-
name: string;
|
315
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
316
|
-
created_at: string;
|
317
|
-
updated_at: string;
|
318
|
-
groupId: string;
|
319
|
-
group: {
|
320
|
-
id: string;
|
321
|
-
};
|
322
|
-
}[];
|
323
323
|
}>, "many">;
|
324
324
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
325
325
|
profiles: {
|
@@ -331,17 +331,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
331
331
|
mail: string | null;
|
332
332
|
created_at: string;
|
333
333
|
updated_at: string;
|
334
|
-
shortId: number;
|
335
|
-
firstName: string | null;
|
336
|
-
gender: string | null;
|
337
|
-
birthDate: Date | null;
|
338
|
-
instagram: string | null;
|
339
|
-
dni: string | null;
|
340
|
-
alternativeNames: string[];
|
341
|
-
birthLocationId: string | null;
|
342
|
-
residenceLocationId: string | null;
|
343
|
-
isInTrash: boolean;
|
344
|
-
movedToTrashDate: string | null;
|
345
334
|
tags: {
|
346
335
|
id: string;
|
347
336
|
name: string;
|
@@ -353,6 +342,17 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
353
342
|
id: string;
|
354
343
|
};
|
355
344
|
}[];
|
345
|
+
shortId: number;
|
346
|
+
firstName: string | null;
|
347
|
+
gender: string | null;
|
348
|
+
birthDate: Date | null;
|
349
|
+
instagram: string | null;
|
350
|
+
dni: string | null;
|
351
|
+
alternativeNames: string[];
|
352
|
+
birthLocationId: string | null;
|
353
|
+
residenceLocationId: string | null;
|
354
|
+
isInTrash: boolean;
|
355
|
+
movedToTrashDate: string | null;
|
356
356
|
}[];
|
357
357
|
}, {
|
358
358
|
profiles: {
|
@@ -364,17 +364,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
364
364
|
mail: string | null;
|
365
365
|
created_at: string;
|
366
366
|
updated_at: string;
|
367
|
-
shortId: number;
|
368
|
-
firstName: string | null;
|
369
|
-
gender: string | null;
|
370
|
-
birthDate: string | null;
|
371
|
-
instagram: string | null;
|
372
|
-
dni: string | null;
|
373
|
-
alternativeNames: string[];
|
374
|
-
birthLocationId: string | null;
|
375
|
-
residenceLocationId: string | null;
|
376
|
-
isInTrash: boolean;
|
377
|
-
movedToTrashDate: string | null;
|
378
367
|
tags: {
|
379
368
|
id: string;
|
380
369
|
name: string;
|
@@ -386,6 +375,17 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
386
375
|
id: string;
|
387
376
|
};
|
388
377
|
}[];
|
378
|
+
shortId: number;
|
379
|
+
firstName: string | null;
|
380
|
+
gender: string | null;
|
381
|
+
birthDate: string | null;
|
382
|
+
instagram: string | null;
|
383
|
+
dni: string | null;
|
384
|
+
alternativeNames: string[];
|
385
|
+
birthLocationId: string | null;
|
386
|
+
residenceLocationId: string | null;
|
387
|
+
isInTrash: boolean;
|
388
|
+
movedToTrashDate: string | null;
|
389
389
|
}[];
|
390
390
|
}>>;
|
391
391
|
export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
|
@@ -466,6 +466,17 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
466
466
|
mail: string | null;
|
467
467
|
created_at: Date;
|
468
468
|
updated_at: Date;
|
469
|
+
tags: {
|
470
|
+
id: string;
|
471
|
+
name: string;
|
472
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
473
|
+
created_at: Date;
|
474
|
+
updated_at: Date;
|
475
|
+
groupId: string;
|
476
|
+
group: {
|
477
|
+
id: string;
|
478
|
+
};
|
479
|
+
}[];
|
469
480
|
shortId: number;
|
470
481
|
firstName: string | null;
|
471
482
|
gender: string | null;
|
@@ -477,6 +488,15 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
477
488
|
residenceLocationId: string | null;
|
478
489
|
isInTrash: boolean;
|
479
490
|
movedToTrashDate: Date | null;
|
491
|
+
}, {
|
492
|
+
id: string;
|
493
|
+
phoneNumber: string;
|
494
|
+
secondaryPhoneNumber: string | null;
|
495
|
+
fullName: string;
|
496
|
+
profilePictureUrl: string | null;
|
497
|
+
mail: string | null;
|
498
|
+
created_at: Date;
|
499
|
+
updated_at: Date;
|
480
500
|
tags: {
|
481
501
|
id: string;
|
482
502
|
name: string;
|
@@ -488,15 +508,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
488
508
|
id: string;
|
489
509
|
};
|
490
510
|
}[];
|
491
|
-
}, {
|
492
|
-
id: string;
|
493
|
-
phoneNumber: string;
|
494
|
-
secondaryPhoneNumber: string | null;
|
495
|
-
fullName: string;
|
496
|
-
profilePictureUrl: string | null;
|
497
|
-
mail: string | null;
|
498
|
-
created_at: Date;
|
499
|
-
updated_at: Date;
|
500
511
|
shortId: number;
|
501
512
|
firstName: string | null;
|
502
513
|
gender: string | null;
|
@@ -508,17 +519,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
508
519
|
residenceLocationId: string | null;
|
509
520
|
isInTrash: boolean;
|
510
521
|
movedToTrashDate: Date | null;
|
511
|
-
tags: {
|
512
|
-
id: string;
|
513
|
-
name: string;
|
514
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
515
|
-
created_at: Date;
|
516
|
-
updated_at: Date;
|
517
|
-
groupId: string;
|
518
|
-
group: {
|
519
|
-
id: string;
|
520
|
-
};
|
521
|
-
}[];
|
522
522
|
}>, "many">>;
|
523
523
|
declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
524
524
|
id: z.ZodString;
|
@@ -596,6 +596,17 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
596
596
|
mail: string | null;
|
597
597
|
created_at: Date;
|
598
598
|
updated_at: Date;
|
599
|
+
tags: {
|
600
|
+
id: string;
|
601
|
+
name: string;
|
602
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
603
|
+
created_at: Date;
|
604
|
+
updated_at: Date;
|
605
|
+
groupId: string;
|
606
|
+
group: {
|
607
|
+
id: string;
|
608
|
+
};
|
609
|
+
}[];
|
599
610
|
shortId: number;
|
600
611
|
firstName: string | null;
|
601
612
|
gender: string | null;
|
@@ -607,6 +618,15 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
607
618
|
residenceLocationId: string | null;
|
608
619
|
isInTrash: boolean;
|
609
620
|
movedToTrashDate: Date | null;
|
621
|
+
}, {
|
622
|
+
id: string;
|
623
|
+
phoneNumber: string;
|
624
|
+
secondaryPhoneNumber: string | null;
|
625
|
+
fullName: string;
|
626
|
+
profilePictureUrl: string | null;
|
627
|
+
mail: string | null;
|
628
|
+
created_at: Date;
|
629
|
+
updated_at: Date;
|
610
630
|
tags: {
|
611
631
|
id: string;
|
612
632
|
name: string;
|
@@ -618,15 +638,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
618
638
|
id: string;
|
619
639
|
};
|
620
640
|
}[];
|
621
|
-
}, {
|
622
|
-
id: string;
|
623
|
-
phoneNumber: string;
|
624
|
-
secondaryPhoneNumber: string | null;
|
625
|
-
fullName: string;
|
626
|
-
profilePictureUrl: string | null;
|
627
|
-
mail: string | null;
|
628
|
-
created_at: Date;
|
629
|
-
updated_at: Date;
|
630
641
|
shortId: number;
|
631
642
|
firstName: string | null;
|
632
643
|
gender: string | null;
|
@@ -638,17 +649,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
638
649
|
residenceLocationId: string | null;
|
639
650
|
isInTrash: boolean;
|
640
651
|
movedToTrashDate: Date | null;
|
641
|
-
tags: {
|
642
|
-
id: string;
|
643
|
-
name: string;
|
644
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
645
|
-
created_at: Date;
|
646
|
-
updated_at: Date;
|
647
|
-
groupId: string;
|
648
|
-
group: {
|
649
|
-
id: string;
|
650
|
-
};
|
651
|
-
}[];
|
652
652
|
}>, "many">>>;
|
653
653
|
export declare class FindByDateRangeResponseDto extends FindByDateRangeResponseDto_base {
|
654
654
|
}
|
@@ -139,17 +139,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
139
139
|
mail: string | null;
|
140
140
|
created_at: Date;
|
141
141
|
updated_at: Date;
|
142
|
-
shortId: number;
|
143
|
-
firstName: string | null;
|
144
|
-
gender: string | null;
|
145
|
-
birthDate: Date | null;
|
146
|
-
instagram: string | null;
|
147
|
-
dni: string | null;
|
148
|
-
alternativeNames: string[];
|
149
|
-
birthLocationId: string | null;
|
150
|
-
residenceLocationId: string | null;
|
151
|
-
isInTrash: boolean;
|
152
|
-
movedToTrashDate: Date | null;
|
153
142
|
tags: {
|
154
143
|
id: string;
|
155
144
|
name: string;
|
@@ -163,7 +152,18 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
163
152
|
isExclusive: boolean;
|
164
153
|
};
|
165
154
|
}[];
|
166
|
-
|
155
|
+
shortId: number;
|
156
|
+
firstName: string | null;
|
157
|
+
gender: string | null;
|
158
|
+
birthDate: Date | null;
|
159
|
+
instagram: string | null;
|
160
|
+
dni: string | null;
|
161
|
+
alternativeNames: string[];
|
162
|
+
birthLocationId: string | null;
|
163
|
+
residenceLocationId: string | null;
|
164
|
+
isInTrash: boolean;
|
165
|
+
movedToTrashDate: Date | null;
|
166
|
+
residenceLocation: {
|
167
167
|
id: string;
|
168
168
|
latitude: number;
|
169
169
|
longitude: number;
|
@@ -173,7 +173,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
173
173
|
country: string;
|
174
174
|
city: string;
|
175
175
|
} | null;
|
176
|
-
|
176
|
+
birthLocation: {
|
177
177
|
id: string;
|
178
178
|
latitude: number;
|
179
179
|
longitude: number;
|
@@ -192,17 +192,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
192
192
|
mail: string | null;
|
193
193
|
created_at: Date;
|
194
194
|
updated_at: Date;
|
195
|
-
shortId: number;
|
196
|
-
firstName: string | null;
|
197
|
-
gender: string | null;
|
198
|
-
birthDate: string | null;
|
199
|
-
instagram: string | null;
|
200
|
-
dni: string | null;
|
201
|
-
alternativeNames: string[];
|
202
|
-
birthLocationId: string | null;
|
203
|
-
residenceLocationId: string | null;
|
204
|
-
isInTrash: boolean;
|
205
|
-
movedToTrashDate: Date | null;
|
206
195
|
tags: {
|
207
196
|
id: string;
|
208
197
|
name: string;
|
@@ -216,7 +205,18 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
216
205
|
isExclusive: boolean;
|
217
206
|
};
|
218
207
|
}[];
|
219
|
-
|
208
|
+
shortId: number;
|
209
|
+
firstName: string | null;
|
210
|
+
gender: string | null;
|
211
|
+
birthDate: string | null;
|
212
|
+
instagram: string | null;
|
213
|
+
dni: string | null;
|
214
|
+
alternativeNames: string[];
|
215
|
+
birthLocationId: string | null;
|
216
|
+
residenceLocationId: string | null;
|
217
|
+
isInTrash: boolean;
|
218
|
+
movedToTrashDate: Date | null;
|
219
|
+
residenceLocation: {
|
220
220
|
id: string;
|
221
221
|
latitude: number;
|
222
222
|
longitude: number;
|
@@ -226,7 +226,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
226
226
|
country: string;
|
227
227
|
city: string;
|
228
228
|
} | null;
|
229
|
-
|
229
|
+
birthLocation: {
|
230
230
|
id: string;
|
231
231
|
latitude: number;
|
232
232
|
longitude: number;
|
@@ -372,17 +372,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
372
372
|
mail: string | null;
|
373
373
|
created_at: string;
|
374
374
|
updated_at: string;
|
375
|
-
shortId: number;
|
376
|
-
firstName: string | null;
|
377
|
-
gender: string | null;
|
378
|
-
birthDate: Date | null;
|
379
|
-
instagram: string | null;
|
380
|
-
dni: string | null;
|
381
|
-
alternativeNames: string[];
|
382
|
-
birthLocationId: string | null;
|
383
|
-
residenceLocationId: string | null;
|
384
|
-
isInTrash: boolean;
|
385
|
-
movedToTrashDate: string | null;
|
386
375
|
tags: {
|
387
376
|
id: string;
|
388
377
|
name: string;
|
@@ -396,7 +385,18 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
396
385
|
isExclusive: boolean;
|
397
386
|
};
|
398
387
|
}[];
|
399
|
-
|
388
|
+
shortId: number;
|
389
|
+
firstName: string | null;
|
390
|
+
gender: string | null;
|
391
|
+
birthDate: Date | null;
|
392
|
+
instagram: string | null;
|
393
|
+
dni: string | null;
|
394
|
+
alternativeNames: string[];
|
395
|
+
birthLocationId: string | null;
|
396
|
+
residenceLocationId: string | null;
|
397
|
+
isInTrash: boolean;
|
398
|
+
movedToTrashDate: string | null;
|
399
|
+
residenceLocation: {
|
400
400
|
id: string;
|
401
401
|
latitude: number;
|
402
402
|
longitude: number;
|
@@ -406,7 +406,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
406
406
|
country: string;
|
407
407
|
city: string;
|
408
408
|
} | null;
|
409
|
-
|
409
|
+
birthLocation: {
|
410
410
|
id: string;
|
411
411
|
latitude: number;
|
412
412
|
longitude: number;
|
@@ -425,17 +425,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
425
425
|
mail: string | null;
|
426
426
|
created_at: string;
|
427
427
|
updated_at: string;
|
428
|
-
shortId: number;
|
429
|
-
firstName: string | null;
|
430
|
-
gender: string | null;
|
431
|
-
birthDate: string | null;
|
432
|
-
instagram: string | null;
|
433
|
-
dni: string | null;
|
434
|
-
alternativeNames: string[];
|
435
|
-
birthLocationId: string | null;
|
436
|
-
residenceLocationId: string | null;
|
437
|
-
isInTrash: boolean;
|
438
|
-
movedToTrashDate: string | null;
|
439
428
|
tags: {
|
440
429
|
id: string;
|
441
430
|
name: string;
|
@@ -449,7 +438,18 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
449
438
|
isExclusive: boolean;
|
450
439
|
};
|
451
440
|
}[];
|
452
|
-
|
441
|
+
shortId: number;
|
442
|
+
firstName: string | null;
|
443
|
+
gender: string | null;
|
444
|
+
birthDate: string | null;
|
445
|
+
instagram: string | null;
|
446
|
+
dni: string | null;
|
447
|
+
alternativeNames: string[];
|
448
|
+
birthLocationId: string | null;
|
449
|
+
residenceLocationId: string | null;
|
450
|
+
isInTrash: boolean;
|
451
|
+
movedToTrashDate: string | null;
|
452
|
+
residenceLocation: {
|
453
453
|
id: string;
|
454
454
|
latitude: number;
|
455
455
|
longitude: number;
|
@@ -459,7 +459,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
459
459
|
country: string;
|
460
460
|
city: string;
|
461
461
|
} | null;
|
462
|
-
|
462
|
+
birthLocation: {
|
463
463
|
id: string;
|
464
464
|
latitude: number;
|
465
465
|
longitude: number;
|