expo-backend-types 0.17.0-EXPO-244-EB-CSV.2 → 0.17.0-EXPO-289-EB-Filtro-base.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/event/dto/event.dto.js +1 -1
- package/dist/src/i18n/es.d.ts +3 -22
- package/dist/src/i18n/es.js +3 -22
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/profile.dto.js +6 -1
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/types/schema.d.ts +0 -110
- package/package.json +2 -5
- 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/csv/exports.js +0 -20
@@ -8,7 +8,7 @@ const zod_1 = require("zod");
|
|
8
8
|
exports.eventSchema = zod_1.z.object({
|
9
9
|
id: zod_1.z.string().uuid({ message: (0, translate_1.translate)('model.event.id.uuid') }),
|
10
10
|
name: zod_1.z.string().min(1, (0, translate_1.translate)('model.event.name.required')),
|
11
|
-
date: zod_1.z.date({
|
11
|
+
date: zod_1.z.coerce.date({
|
12
12
|
required_error: (0, translate_1.translate)('model.event.date.required'),
|
13
13
|
invalid_type_error: (0, translate_1.translate)('model.event.date.invalid'),
|
14
14
|
}),
|
package/dist/src/i18n/es.d.ts
CHANGED
@@ -118,6 +118,9 @@ declare const _default: {
|
|
118
118
|
readonly profilePictureUrl: {
|
119
119
|
readonly invalid: "La URL de la imagen de perfil no es válida";
|
120
120
|
};
|
121
|
+
readonly mail: {
|
122
|
+
readonly invalid: "El email no es válido. Debe tener el formato \"algo@dominio.algo\"";
|
123
|
+
};
|
121
124
|
};
|
122
125
|
readonly location: {
|
123
126
|
readonly id: {
|
@@ -148,12 +151,6 @@ declare const _default: {
|
|
148
151
|
readonly uuid: "El ID debe ser un UUID";
|
149
152
|
};
|
150
153
|
};
|
151
|
-
readonly csv: {
|
152
|
-
readonly password: {
|
153
|
-
readonly required: "La contraseña es obligatoria";
|
154
|
-
readonly empty: "La contraseña no puede estar vacía";
|
155
|
-
};
|
156
|
-
};
|
157
154
|
};
|
158
155
|
readonly route: {
|
159
156
|
readonly auth: {
|
@@ -178,10 +175,6 @@ declare const _default: {
|
|
178
175
|
readonly me: {
|
179
176
|
readonly success: "Cuenta obtenida";
|
180
177
|
};
|
181
|
-
readonly 'check-password': {
|
182
|
-
readonly 'not-found': "Cuenta no encontrada";
|
183
|
-
readonly 'invalid-password': "Contraseña inválida";
|
184
|
-
};
|
185
178
|
};
|
186
179
|
readonly tag: {
|
187
180
|
readonly create: {
|
@@ -386,18 +379,6 @@ declare const _default: {
|
|
386
379
|
readonly success: "Perfiles obtenido";
|
387
380
|
};
|
388
381
|
};
|
389
|
-
readonly csv: {
|
390
|
-
readonly 'download-profiles': {
|
391
|
-
readonly success: "CSV de modelos descargado con éxito";
|
392
|
-
readonly unauthorized: "No tienes autorización para descargar el archivo de modelos";
|
393
|
-
readonly error: "Error al descargar el archivo CSV de modelos";
|
394
|
-
};
|
395
|
-
readonly 'download-all-tables': {
|
396
|
-
readonly success: "CSV de todas las tablas descargado con éxito";
|
397
|
-
readonly unauthorized: "No tienes autorización para descargar todas las tablas";
|
398
|
-
readonly error: "Error al descargar el archivo CSV de todas las tablas";
|
399
|
-
};
|
400
|
-
};
|
401
382
|
};
|
402
383
|
};
|
403
384
|
export default _default;
|
package/dist/src/i18n/es.js
CHANGED
@@ -120,6 +120,9 @@ exports.default = {
|
|
120
120
|
profilePictureUrl: {
|
121
121
|
invalid: 'La URL de la imagen de perfil no es válida',
|
122
122
|
},
|
123
|
+
mail: {
|
124
|
+
invalid: 'El email no es válido. Debe tener el formato "algo@dominio.algo"',
|
125
|
+
},
|
123
126
|
},
|
124
127
|
location: {
|
125
128
|
id: {
|
@@ -150,12 +153,6 @@ exports.default = {
|
|
150
153
|
uuid: 'El ID debe ser un UUID',
|
151
154
|
},
|
152
155
|
},
|
153
|
-
csv: {
|
154
|
-
password: {
|
155
|
-
required: 'La contraseña es obligatoria',
|
156
|
-
empty: 'La contraseña no puede estar vacía',
|
157
|
-
},
|
158
|
-
},
|
159
156
|
},
|
160
157
|
route: {
|
161
158
|
auth: {
|
@@ -180,10 +177,6 @@ exports.default = {
|
|
180
177
|
me: {
|
181
178
|
success: 'Cuenta obtenida',
|
182
179
|
},
|
183
|
-
'check-password': {
|
184
|
-
'not-found': 'Cuenta no encontrada',
|
185
|
-
'invalid-password': 'Contraseña inválida',
|
186
|
-
},
|
187
180
|
},
|
188
181
|
tag: {
|
189
182
|
create: {
|
@@ -388,18 +381,6 @@ exports.default = {
|
|
388
381
|
success: 'Perfiles obtenido',
|
389
382
|
},
|
390
383
|
},
|
391
|
-
csv: {
|
392
|
-
'download-profiles': {
|
393
|
-
success: 'CSV de modelos descargado con éxito',
|
394
|
-
unauthorized: 'No tienes autorización para descargar el archivo de modelos',
|
395
|
-
error: 'Error al descargar el archivo CSV de modelos',
|
396
|
-
},
|
397
|
-
'download-all-tables': {
|
398
|
-
success: 'CSV de todas las tablas descargado con éxito',
|
399
|
-
unauthorized: 'No tienes autorización para descargar todas las tablas',
|
400
|
-
error: 'Error al descargar el archivo CSV de todas las tablas',
|
401
|
-
},
|
402
|
-
},
|
403
384
|
},
|
404
385
|
};
|
405
386
|
//# sourceMappingURL=es.js.map
|
package/dist/src/i18n/es.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":"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"}
|
@@ -20,7 +20,7 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
20
20
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
21
21
|
created_at: z.ZodDate;
|
22
22
|
updated_at: z.ZodDate;
|
23
|
-
}, "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "
|
23
|
+
}, "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "gender" | "birthDate" | "instagram" | "dni" | "alternativeNames">, {
|
24
24
|
comments: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
25
25
|
id: z.ZodString;
|
26
26
|
content: z.ZodString;
|
@@ -89,10 +89,10 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
89
89
|
secondaryPhoneNumber: string | null;
|
90
90
|
fullName: string;
|
91
91
|
profilePictureUrl: string | null;
|
92
|
+
mail: string | null;
|
92
93
|
gender: string | null;
|
93
94
|
birthDate: Date | null;
|
94
95
|
instagram: string | null;
|
95
|
-
mail: string | null;
|
96
96
|
dni: string | null;
|
97
97
|
alternativeNames: string[];
|
98
98
|
comments?: {
|
@@ -119,10 +119,10 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
119
119
|
secondaryPhoneNumber: string | null;
|
120
120
|
fullName: string;
|
121
121
|
profilePictureUrl: string | null;
|
122
|
+
mail: string | null;
|
122
123
|
gender: string | null;
|
123
124
|
birthDate: string | null;
|
124
125
|
instagram: string | null;
|
125
|
-
mail: string | null;
|
126
126
|
dni: string | null;
|
127
127
|
alternativeNames: string[];
|
128
128
|
comments?: {
|
@@ -152,10 +152,10 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
152
152
|
secondaryPhoneNumber: string | null;
|
153
153
|
fullName: string;
|
154
154
|
profilePictureUrl: string | null;
|
155
|
+
mail: string | null;
|
155
156
|
gender: string | null;
|
156
157
|
birthDate: Date | null;
|
157
158
|
instagram: string | null;
|
158
|
-
mail: string | null;
|
159
159
|
dni: string | null;
|
160
160
|
alternativeNames: string[];
|
161
161
|
comments?: {
|
@@ -185,10 +185,10 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
185
185
|
secondaryPhoneNumber: string | null;
|
186
186
|
fullName: string;
|
187
187
|
profilePictureUrl: string | null;
|
188
|
+
mail: string | null;
|
188
189
|
gender: string | null;
|
189
190
|
birthDate: string | null;
|
190
191
|
instagram: string | null;
|
191
|
-
mail: string | null;
|
192
192
|
dni: string | null;
|
193
193
|
alternativeNames: string[];
|
194
194
|
comments?: {
|
@@ -219,10 +219,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
219
219
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
220
220
|
fullName: z.ZodString;
|
221
221
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
222
|
+
mail: z.ZodNullable<z.ZodString>;
|
222
223
|
gender: z.ZodNullable<z.ZodString>;
|
223
224
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
|
224
225
|
instagram: z.ZodNullable<z.ZodString>;
|
225
|
-
mail: z.ZodNullable<z.ZodString>;
|
226
226
|
dni: z.ZodNullable<z.ZodString>;
|
227
227
|
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
228
228
|
comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
@@ -279,10 +279,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
279
279
|
secondaryPhoneNumber: string | null;
|
280
280
|
fullName: string;
|
281
281
|
profilePictureUrl: string | null;
|
282
|
+
mail: string | null;
|
282
283
|
gender: string | null;
|
283
284
|
birthDate: Date | null;
|
284
285
|
instagram: string | null;
|
285
|
-
mail: string | null;
|
286
286
|
dni: string | null;
|
287
287
|
alternativeNames: string[];
|
288
288
|
comments?: {
|
@@ -309,10 +309,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
309
309
|
secondaryPhoneNumber: string | null;
|
310
310
|
fullName: string;
|
311
311
|
profilePictureUrl: string | null;
|
312
|
+
mail: string | null;
|
312
313
|
gender: string | null;
|
313
314
|
birthDate: string | null;
|
314
315
|
instagram: string | null;
|
315
|
-
mail: string | null;
|
316
316
|
dni: string | null;
|
317
317
|
alternativeNames: string[];
|
318
318
|
comments?: {
|
@@ -342,10 +342,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
342
342
|
secondaryPhoneNumber: string | null;
|
343
343
|
fullName: string;
|
344
344
|
profilePictureUrl: string | null;
|
345
|
+
mail: string | null;
|
345
346
|
gender: string | null;
|
346
347
|
birthDate: Date | null;
|
347
348
|
instagram: string | null;
|
348
|
-
mail: string | null;
|
349
349
|
dni: string | null;
|
350
350
|
alternativeNames: string[];
|
351
351
|
comments?: {
|
@@ -375,10 +375,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
375
375
|
secondaryPhoneNumber: string | null;
|
376
376
|
fullName: string;
|
377
377
|
profilePictureUrl: string | null;
|
378
|
+
mail: string | null;
|
378
379
|
gender: string | null;
|
379
380
|
birthDate: string | null;
|
380
381
|
instagram: string | null;
|
381
|
-
mail: string | null;
|
382
382
|
dni: string | null;
|
383
383
|
alternativeNames: string[];
|
384
384
|
comments?: {
|
@@ -24,6 +24,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
24
24
|
secondaryPhoneNumber: string | null;
|
25
25
|
fullName: string;
|
26
26
|
profilePictureUrl: string | null;
|
27
|
+
mail: string | null;
|
27
28
|
created_at: Date;
|
28
29
|
updated_at: Date;
|
29
30
|
shortId: number;
|
@@ -31,7 +32,6 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
31
32
|
gender: string | null;
|
32
33
|
birthDate: Date | null;
|
33
34
|
instagram: string | null;
|
34
|
-
mail: string | null;
|
35
35
|
dni: string | null;
|
36
36
|
alternativeNames: string[];
|
37
37
|
birthLocationId: string | null;
|
@@ -44,6 +44,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
44
44
|
secondaryPhoneNumber: string | null;
|
45
45
|
fullName: string;
|
46
46
|
profilePictureUrl: string | null;
|
47
|
+
mail: string | null;
|
47
48
|
created_at: Date;
|
48
49
|
updated_at: Date;
|
49
50
|
shortId: number;
|
@@ -51,7 +52,6 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
51
52
|
gender: string | null;
|
52
53
|
birthDate: string | null;
|
53
54
|
instagram: string | null;
|
54
|
-
mail: string | null;
|
55
55
|
dni: string | null;
|
56
56
|
alternativeNames: string[];
|
57
57
|
birthLocationId: string | null;
|
@@ -85,6 +85,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
85
85
|
secondaryPhoneNumber: string | null;
|
86
86
|
fullName: string;
|
87
87
|
profilePictureUrl: string | null;
|
88
|
+
mail: string | null;
|
88
89
|
created_at: string;
|
89
90
|
updated_at: string;
|
90
91
|
shortId: number;
|
@@ -92,7 +93,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
92
93
|
gender: string | null;
|
93
94
|
birthDate: Date | null;
|
94
95
|
instagram: string | null;
|
95
|
-
mail: string | null;
|
96
96
|
dni: string | null;
|
97
97
|
alternativeNames: string[];
|
98
98
|
birthLocationId: string | null;
|
@@ -105,6 +105,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
105
105
|
secondaryPhoneNumber: string | null;
|
106
106
|
fullName: string;
|
107
107
|
profilePictureUrl: string | null;
|
108
|
+
mail: string | null;
|
108
109
|
created_at: string;
|
109
110
|
updated_at: string;
|
110
111
|
shortId: number;
|
@@ -112,7 +113,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
112
113
|
gender: string | null;
|
113
114
|
birthDate: string | null;
|
114
115
|
instagram: string | null;
|
115
|
-
mail: string | null;
|
116
116
|
dni: string | null;
|
117
117
|
alternativeNames: string[];
|
118
118
|
birthLocationId: string | null;
|
@@ -77,6 +77,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
77
77
|
secondaryPhoneNumber: string | null;
|
78
78
|
fullName: string;
|
79
79
|
profilePictureUrl: string | null;
|
80
|
+
mail: string | null;
|
80
81
|
created_at: Date;
|
81
82
|
updated_at: Date;
|
82
83
|
tags: {
|
@@ -96,7 +97,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
96
97
|
gender: string | null;
|
97
98
|
birthDate: Date | null;
|
98
99
|
instagram: string | null;
|
99
|
-
mail: string | null;
|
100
100
|
dni: string | null;
|
101
101
|
alternativeNames: string[];
|
102
102
|
birthLocationId: string | null;
|
@@ -109,6 +109,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
109
109
|
secondaryPhoneNumber: string | null;
|
110
110
|
fullName: string;
|
111
111
|
profilePictureUrl: string | null;
|
112
|
+
mail: string | null;
|
112
113
|
created_at: Date;
|
113
114
|
updated_at: Date;
|
114
115
|
tags: {
|
@@ -128,7 +129,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
128
129
|
gender: string | null;
|
129
130
|
birthDate: string | null;
|
130
131
|
instagram: string | null;
|
131
|
-
mail: string | null;
|
132
132
|
dni: string | null;
|
133
133
|
alternativeNames: string[];
|
134
134
|
birthLocationId: string | null;
|
@@ -143,6 +143,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
143
143
|
secondaryPhoneNumber: string | null;
|
144
144
|
fullName: string;
|
145
145
|
profilePictureUrl: string | null;
|
146
|
+
mail: string | null;
|
146
147
|
created_at: Date;
|
147
148
|
updated_at: Date;
|
148
149
|
tags: {
|
@@ -162,7 +163,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
162
163
|
gender: string | null;
|
163
164
|
birthDate: Date | null;
|
164
165
|
instagram: string | null;
|
165
|
-
mail: string | null;
|
166
166
|
dni: string | null;
|
167
167
|
alternativeNames: string[];
|
168
168
|
birthLocationId: string | null;
|
@@ -177,6 +177,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
177
177
|
secondaryPhoneNumber: string | null;
|
178
178
|
fullName: string;
|
179
179
|
profilePictureUrl: string | null;
|
180
|
+
mail: string | null;
|
180
181
|
created_at: Date;
|
181
182
|
updated_at: Date;
|
182
183
|
tags: {
|
@@ -196,7 +197,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
196
197
|
gender: string | null;
|
197
198
|
birthDate: string | null;
|
198
199
|
instagram: string | null;
|
199
|
-
mail: string | null;
|
200
200
|
dni: string | null;
|
201
201
|
alternativeNames: string[];
|
202
202
|
birthLocationId: string | null;
|
@@ -277,6 +277,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
277
277
|
secondaryPhoneNumber: string | null;
|
278
278
|
fullName: string;
|
279
279
|
profilePictureUrl: string | null;
|
280
|
+
mail: string | null;
|
280
281
|
created_at: string;
|
281
282
|
updated_at: string;
|
282
283
|
tags: {
|
@@ -296,7 +297,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
296
297
|
gender: string | null;
|
297
298
|
birthDate: Date | null;
|
298
299
|
instagram: string | null;
|
299
|
-
mail: string | null;
|
300
300
|
dni: string | null;
|
301
301
|
alternativeNames: string[];
|
302
302
|
birthLocationId: string | null;
|
@@ -309,6 +309,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
309
309
|
secondaryPhoneNumber: string | null;
|
310
310
|
fullName: string;
|
311
311
|
profilePictureUrl: string | null;
|
312
|
+
mail: string | null;
|
312
313
|
created_at: string;
|
313
314
|
updated_at: string;
|
314
315
|
tags: {
|
@@ -328,7 +329,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
328
329
|
gender: string | null;
|
329
330
|
birthDate: string | null;
|
330
331
|
instagram: string | null;
|
331
|
-
mail: string | null;
|
332
332
|
dni: string | null;
|
333
333
|
alternativeNames: string[];
|
334
334
|
birthLocationId: string | null;
|
@@ -343,6 +343,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
343
343
|
secondaryPhoneNumber: string | null;
|
344
344
|
fullName: string;
|
345
345
|
profilePictureUrl: string | null;
|
346
|
+
mail: string | null;
|
346
347
|
created_at: string;
|
347
348
|
updated_at: string;
|
348
349
|
tags: {
|
@@ -362,7 +363,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
362
363
|
gender: string | null;
|
363
364
|
birthDate: Date | null;
|
364
365
|
instagram: string | null;
|
365
|
-
mail: string | null;
|
366
366
|
dni: string | null;
|
367
367
|
alternativeNames: string[];
|
368
368
|
birthLocationId: string | null;
|
@@ -377,6 +377,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
377
377
|
secondaryPhoneNumber: string | null;
|
378
378
|
fullName: string;
|
379
379
|
profilePictureUrl: string | null;
|
380
|
+
mail: string | null;
|
380
381
|
created_at: string;
|
381
382
|
updated_at: string;
|
382
383
|
tags: {
|
@@ -396,7 +397,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
396
397
|
gender: string | null;
|
397
398
|
birthDate: string | null;
|
398
399
|
instagram: string | null;
|
399
|
-
mail: string | null;
|
400
400
|
dni: string | null;
|
401
401
|
alternativeNames: string[];
|
402
402
|
birthLocationId: string | null;
|
@@ -73,6 +73,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
73
73
|
secondaryPhoneNumber: string | null;
|
74
74
|
fullName: string;
|
75
75
|
profilePictureUrl: string | null;
|
76
|
+
mail: string | null;
|
76
77
|
created_at: Date;
|
77
78
|
updated_at: Date;
|
78
79
|
tags: {
|
@@ -91,7 +92,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
91
92
|
gender: string | null;
|
92
93
|
birthDate: Date | null;
|
93
94
|
instagram: string | null;
|
94
|
-
mail: string | null;
|
95
95
|
dni: string | null;
|
96
96
|
alternativeNames: string[];
|
97
97
|
birthLocationId: string | null;
|
@@ -104,6 +104,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
104
104
|
secondaryPhoneNumber: string | null;
|
105
105
|
fullName: string;
|
106
106
|
profilePictureUrl: string | null;
|
107
|
+
mail: string | null;
|
107
108
|
created_at: Date;
|
108
109
|
updated_at: Date;
|
109
110
|
tags: {
|
@@ -122,7 +123,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
122
123
|
gender: string | null;
|
123
124
|
birthDate: string | null;
|
124
125
|
instagram: string | null;
|
125
|
-
mail: string | null;
|
126
126
|
dni: string | null;
|
127
127
|
alternativeNames: string[];
|
128
128
|
birthLocationId: string | null;
|
@@ -137,6 +137,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
137
137
|
secondaryPhoneNumber: string | null;
|
138
138
|
fullName: string;
|
139
139
|
profilePictureUrl: string | null;
|
140
|
+
mail: string | null;
|
140
141
|
created_at: Date;
|
141
142
|
updated_at: Date;
|
142
143
|
tags: {
|
@@ -155,7 +156,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
155
156
|
gender: string | null;
|
156
157
|
birthDate: Date | null;
|
157
158
|
instagram: string | null;
|
158
|
-
mail: string | null;
|
159
159
|
dni: string | null;
|
160
160
|
alternativeNames: string[];
|
161
161
|
birthLocationId: string | null;
|
@@ -170,6 +170,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
170
170
|
secondaryPhoneNumber: string | null;
|
171
171
|
fullName: string;
|
172
172
|
profilePictureUrl: string | null;
|
173
|
+
mail: string | null;
|
173
174
|
created_at: Date;
|
174
175
|
updated_at: Date;
|
175
176
|
tags: {
|
@@ -188,7 +189,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
188
189
|
gender: string | null;
|
189
190
|
birthDate: string | null;
|
190
191
|
instagram: string | null;
|
191
|
-
mail: string | null;
|
192
192
|
dni: string | null;
|
193
193
|
alternativeNames: string[];
|
194
194
|
birthLocationId: string | null;
|
@@ -264,6 +264,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
264
264
|
secondaryPhoneNumber: string | null;
|
265
265
|
fullName: string;
|
266
266
|
profilePictureUrl: string | null;
|
267
|
+
mail: string | null;
|
267
268
|
created_at: string;
|
268
269
|
updated_at: string;
|
269
270
|
tags: {
|
@@ -282,7 +283,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
282
283
|
gender: string | null;
|
283
284
|
birthDate: Date | null;
|
284
285
|
instagram: string | null;
|
285
|
-
mail: string | null;
|
286
286
|
dni: string | null;
|
287
287
|
alternativeNames: string[];
|
288
288
|
birthLocationId: string | null;
|
@@ -295,6 +295,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
295
295
|
secondaryPhoneNumber: string | null;
|
296
296
|
fullName: string;
|
297
297
|
profilePictureUrl: string | null;
|
298
|
+
mail: string | null;
|
298
299
|
created_at: string;
|
299
300
|
updated_at: string;
|
300
301
|
tags: {
|
@@ -313,7 +314,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
313
314
|
gender: string | null;
|
314
315
|
birthDate: string | null;
|
315
316
|
instagram: string | null;
|
316
|
-
mail: string | null;
|
317
317
|
dni: string | null;
|
318
318
|
alternativeNames: string[];
|
319
319
|
birthLocationId: string | null;
|
@@ -328,6 +328,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
328
328
|
secondaryPhoneNumber: string | null;
|
329
329
|
fullName: string;
|
330
330
|
profilePictureUrl: string | null;
|
331
|
+
mail: string | null;
|
331
332
|
created_at: string;
|
332
333
|
updated_at: string;
|
333
334
|
tags: {
|
@@ -346,7 +347,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
346
347
|
gender: string | null;
|
347
348
|
birthDate: Date | null;
|
348
349
|
instagram: string | null;
|
349
|
-
mail: string | null;
|
350
350
|
dni: string | null;
|
351
351
|
alternativeNames: string[];
|
352
352
|
birthLocationId: string | null;
|
@@ -361,6 +361,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
361
361
|
secondaryPhoneNumber: string | null;
|
362
362
|
fullName: string;
|
363
363
|
profilePictureUrl: string | null;
|
364
|
+
mail: string | null;
|
364
365
|
created_at: string;
|
365
366
|
updated_at: string;
|
366
367
|
tags: {
|
@@ -379,7 +380,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
379
380
|
gender: string | null;
|
380
381
|
birthDate: string | null;
|
381
382
|
instagram: string | null;
|
382
|
-
mail: string | null;
|
383
383
|
dni: string | null;
|
384
384
|
alternativeNames: string[];
|
385
385
|
birthLocationId: string | null;
|
@@ -463,6 +463,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
463
463
|
secondaryPhoneNumber: string | null;
|
464
464
|
fullName: string;
|
465
465
|
profilePictureUrl: string | null;
|
466
|
+
mail: string | null;
|
466
467
|
created_at: Date;
|
467
468
|
updated_at: Date;
|
468
469
|
tags: {
|
@@ -481,7 +482,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
481
482
|
gender: string | null;
|
482
483
|
birthDate: Date | null;
|
483
484
|
instagram: string | null;
|
484
|
-
mail: string | null;
|
485
485
|
dni: string | null;
|
486
486
|
alternativeNames: string[];
|
487
487
|
birthLocationId: string | null;
|
@@ -494,6 +494,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
494
494
|
secondaryPhoneNumber: string | null;
|
495
495
|
fullName: string;
|
496
496
|
profilePictureUrl: string | null;
|
497
|
+
mail: string | null;
|
497
498
|
created_at: Date;
|
498
499
|
updated_at: Date;
|
499
500
|
tags: {
|
@@ -512,7 +513,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
512
513
|
gender: string | null;
|
513
514
|
birthDate: string | null;
|
514
515
|
instagram: string | null;
|
515
|
-
mail: string | null;
|
516
516
|
dni: string | null;
|
517
517
|
alternativeNames: string[];
|
518
518
|
birthLocationId: string | null;
|
@@ -593,6 +593,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
593
593
|
secondaryPhoneNumber: string | null;
|
594
594
|
fullName: string;
|
595
595
|
profilePictureUrl: string | null;
|
596
|
+
mail: string | null;
|
596
597
|
created_at: Date;
|
597
598
|
updated_at: Date;
|
598
599
|
tags: {
|
@@ -611,7 +612,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
611
612
|
gender: string | null;
|
612
613
|
birthDate: Date | null;
|
613
614
|
instagram: string | null;
|
614
|
-
mail: string | null;
|
615
615
|
dni: string | null;
|
616
616
|
alternativeNames: string[];
|
617
617
|
birthLocationId: string | null;
|
@@ -624,6 +624,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
624
624
|
secondaryPhoneNumber: string | null;
|
625
625
|
fullName: string;
|
626
626
|
profilePictureUrl: string | null;
|
627
|
+
mail: string | null;
|
627
628
|
created_at: Date;
|
628
629
|
updated_at: Date;
|
629
630
|
tags: {
|
@@ -642,7 +643,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
642
643
|
gender: string | null;
|
643
644
|
birthDate: string | null;
|
644
645
|
instagram: string | null;
|
645
|
-
mail: string | null;
|
646
646
|
dni: string | null;
|
647
647
|
alternativeNames: string[];
|
648
648
|
birthLocationId: string | null;
|