expo-backend-types 0.9.0-EXPO-249-EB-Modelo.7 → 0.9.0-EXPO-247-EB-Evento.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/account/dto/account.dto.d.ts +4 -6
- package/dist/src/account/dto/create-account.dto.d.ts +8 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +0 -1
- package/dist/src/account/dto/get-me.dto.d.ts +4 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +4 -6
- package/dist/src/auth/dto/login.dto.d.ts +8 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +0 -1
- package/dist/src/event/dto/create-event.dto.d.ts +126 -0
- package/dist/src/event/dto/create-event.dto.js +22 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +71 -0
- package/dist/src/event/dto/delete-event.dto.js +10 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +223 -0
- package/dist/src/event/dto/get-all-event.dto.js +19 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +139 -0
- package/dist/src/event/dto/get-by-id-event.dto.js +17 -0
- package/dist/src/event/dto/update-event.dto.d.ts +126 -0
- package/dist/src/event/dto/update-event.dto.js +22 -0
- package/dist/src/event/exports.d.ts +5 -0
- package/dist/src/event/exports.js +5 -0
- package/dist/src/event-folder/dto/update-event-folder.dto.d.ts +14 -17
- package/dist/src/event-folder/dto/update-event-folder.dto.js +4 -2
- package/dist/src/i18n/es.d.ts +15 -33
- package/dist/src/i18n/es.js +15 -33
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/profile.dto.js +3 -7
- package/dist/src/profile/exports.d.ts +0 -8
- package/dist/src/profile/exports.js +0 -8
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +16 -16
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +16 -16
- package/dist/types/prisma-schema/edge.js +4 -5
- package/dist/types/prisma-schema/index-browser.js +1 -2
- package/dist/types/prisma-schema/index.d.ts +2 -9
- package/dist/types/prisma-schema/index.js +4 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +0 -2
- package/dist/types/prisma-schema/wasm.js +1 -2
- package/dist/types/schema.d.ts +158 -479
- package/package.json +1 -4
- package/dist/src/profile/dto/create-profile.dto.d.ts +0 -694
- package/dist/src/profile/dto/create-profile.dto.js +0 -84
- package/dist/src/profile/dto/delete-profile.dto.d.ts +0 -125
- package/dist/src/profile/dto/delete-profile.dto.js +0 -10
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +0 -410
- package/dist/src/profile/dto/find-all-profile.dto.js +0 -25
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +0 -655
- package/dist/src/profile/dto/find-by-date-range-profile.dto.js +0 -34
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +0 -475
- package/dist/src/profile/dto/find-by-id-profile.dto.js +0 -27
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +0 -337
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +0 -19
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +0 -393
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +0 -24
- package/dist/src/profile/dto/update-profile.dto.d.ts +0 -360
- package/dist/src/profile/dto/update-profile.dto.js +0 -55
package/dist/src/i18n/es.js
CHANGED
@@ -291,44 +291,26 @@ exports.default = {
|
|
291
291
|
'not-found': 'Carpeta de evento no encontrada',
|
292
292
|
},
|
293
293
|
},
|
294
|
-
|
295
|
-
'find-all': {
|
296
|
-
success: 'Perfiles obtenidos',
|
297
|
-
},
|
298
|
-
'find-by-id': {
|
299
|
-
'not-found': 'Perfil no encontrado',
|
300
|
-
success: 'Perfil obtenido',
|
301
|
-
},
|
302
|
-
'find-by-tag': {
|
303
|
-
'not-found': 'Perfil no encontrado',
|
304
|
-
'tags-not-found': 'Alguna de las etiquetas no existe',
|
305
|
-
success: 'Perfiles obtenidos',
|
306
|
-
},
|
307
|
-
'find-by-tag-groups': {
|
308
|
-
'not-found': 'Perfil no encontrado',
|
309
|
-
'tag-groups-not-found': 'Alguno de los grupos de etiquetas no existe',
|
310
|
-
success: 'Perfiles obtenidos',
|
311
|
-
},
|
294
|
+
event: {
|
312
295
|
create: {
|
313
|
-
|
314
|
-
|
315
|
-
'dni-already-exists': 'Ya existe un perfil con ese DNI',
|
316
|
-
'phone-number-already-exists': 'Ya existe un perfil con ese teléfono',
|
317
|
-
'secondary-phone-number-already-exists': 'Ya existe un perfil con ese teléfono secundario',
|
318
|
-
conflict: 'Error en la creación del perfil',
|
296
|
+
success: 'Evento creado con éxito',
|
297
|
+
conflict: 'Error en la creación del evento',
|
319
298
|
},
|
320
|
-
|
321
|
-
success: '
|
322
|
-
'not-found': '
|
299
|
+
'get-all': {
|
300
|
+
success: 'Eventos obtenidos con éxito',
|
301
|
+
'not-found': 'No se encontraron eventos',
|
302
|
+
},
|
303
|
+
'get-by-id': {
|
304
|
+
success: 'Evento obtenido con éxito',
|
305
|
+
'not-found': 'Evento no encontrado',
|
323
306
|
},
|
324
307
|
update: {
|
325
|
-
success: '
|
326
|
-
'not-found': '
|
327
|
-
conflict: 'Error en la actualización del perfil',
|
308
|
+
success: 'Evento actualizado con éxito',
|
309
|
+
'not-found': 'Evento no encontrado',
|
328
310
|
},
|
329
|
-
|
330
|
-
success: '
|
331
|
-
'
|
311
|
+
delete: {
|
312
|
+
success: 'Evento eliminado con éxito',
|
313
|
+
'not-found': 'Evento no encontrado',
|
332
314
|
},
|
333
315
|
},
|
334
316
|
},
|
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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"}
|
@@ -7,12 +7,12 @@ export declare const profileSchema: z.ZodObject<{
|
|
7
7
|
fullName: z.ZodString;
|
8
8
|
firstName: z.ZodNullable<z.ZodString>;
|
9
9
|
gender: z.ZodNullable<z.ZodString>;
|
10
|
-
birthDate: z.ZodNullable<z.
|
10
|
+
birthDate: z.ZodNullable<z.ZodDate>;
|
11
11
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
12
12
|
instagram: z.ZodNullable<z.ZodString>;
|
13
13
|
mail: z.ZodNullable<z.ZodString>;
|
14
14
|
dni: z.ZodNullable<z.ZodString>;
|
15
|
-
alternativeNames: z.ZodArray<z.ZodString, "many"
|
15
|
+
alternativeNames: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
16
16
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
17
17
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
18
18
|
isInTrash: z.ZodBoolean;
|
@@ -34,7 +34,7 @@ export declare const profileSchema: z.ZodObject<{
|
|
34
34
|
instagram: string | null;
|
35
35
|
mail: string | null;
|
36
36
|
dni: string | null;
|
37
|
-
alternativeNames: string[];
|
37
|
+
alternativeNames: string[] | null;
|
38
38
|
birthLocationId: string | null;
|
39
39
|
residenceLocationId: string | null;
|
40
40
|
isInTrash: boolean;
|
@@ -50,11 +50,11 @@ export declare const profileSchema: z.ZodObject<{
|
|
50
50
|
shortId: number;
|
51
51
|
firstName: string | null;
|
52
52
|
gender: string | null;
|
53
|
-
birthDate:
|
53
|
+
birthDate: Date | null;
|
54
54
|
instagram: string | null;
|
55
55
|
mail: string | null;
|
56
56
|
dni: string | null;
|
57
|
-
alternativeNames: string[];
|
57
|
+
alternativeNames: string[] | null;
|
58
58
|
birthLocationId: string | null;
|
59
59
|
residenceLocationId: string | null;
|
60
60
|
isInTrash: boolean;
|
@@ -23,11 +23,7 @@ exports.profileSchema = zod_1.default.object({
|
|
23
23
|
secondaryPhoneNumber: zod_1.default
|
24
24
|
.string()
|
25
25
|
.nullable()
|
26
|
-
.refine(
|
27
|
-
if (value === null)
|
28
|
-
return true;
|
29
|
-
return validator_1.default.isMobilePhone(value);
|
30
|
-
}, {
|
26
|
+
.refine(validator_1.default.isMobilePhone, {
|
31
27
|
message: (0, translate_1.translate)('model.profile.secondaryPhoneNumber.invalid'),
|
32
28
|
}),
|
33
29
|
fullName: zod_1.default.string().min(1, {
|
@@ -40,7 +36,7 @@ exports.profileSchema = zod_1.default.object({
|
|
40
36
|
})
|
41
37
|
.nullable(),
|
42
38
|
gender: zod_1.default.string().nullable(),
|
43
|
-
birthDate: zod_1.default.
|
39
|
+
birthDate: zod_1.default.date().nullable(),
|
44
40
|
profilePictureUrl: zod_1.default
|
45
41
|
.string()
|
46
42
|
.url({
|
@@ -50,7 +46,7 @@ exports.profileSchema = zod_1.default.object({
|
|
50
46
|
instagram: zod_1.default.string().nullable(),
|
51
47
|
mail: zod_1.default.string().email().nullable(),
|
52
48
|
dni: zod_1.default.string().nullable(),
|
53
|
-
alternativeNames: zod_1.default.array(zod_1.default.string()),
|
49
|
+
alternativeNames: zod_1.default.array(zod_1.default.string()).nullable(),
|
54
50
|
birthLocationId: zod_1.default.string().uuid().nullable(),
|
55
51
|
residenceLocationId: zod_1.default.string().uuid().nullable(),
|
56
52
|
isInTrash: zod_1.default.boolean(),
|
@@ -1,9 +1 @@
|
|
1
|
-
export * from './dto/create-profile.dto';
|
2
|
-
export * from './dto/delete-profile.dto';
|
3
|
-
export * from './dto/find-all-profile.dto';
|
4
|
-
export * from './dto/find-by-date-range-profile.dto';
|
5
|
-
export * from './dto/find-by-id-profile.dto';
|
6
|
-
export * from './dto/find-by-tag-groups-profile.dto';
|
7
|
-
export * from './dto/find-by-tags-profile.dto';
|
8
1
|
export * from './dto/profile.dto';
|
9
|
-
export * from './dto/update-profile.dto';
|
@@ -14,13 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
__exportStar(require("./dto/create-profile.dto"), exports);
|
18
|
-
__exportStar(require("./dto/delete-profile.dto"), exports);
|
19
|
-
__exportStar(require("./dto/find-all-profile.dto"), exports);
|
20
|
-
__exportStar(require("./dto/find-by-date-range-profile.dto"), exports);
|
21
|
-
__exportStar(require("./dto/find-by-id-profile.dto"), exports);
|
22
|
-
__exportStar(require("./dto/find-by-tag-groups-profile.dto"), exports);
|
23
|
-
__exportStar(require("./dto/find-by-tags-profile.dto"), exports);
|
24
17
|
__exportStar(require("./dto/profile.dto"), exports);
|
25
|
-
__exportStar(require("./dto/update-profile.dto"), exports);
|
26
18
|
//# sourceMappingURL=exports.js.map
|
@@ -30,12 +30,12 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
30
30
|
fullName: z.ZodString;
|
31
31
|
firstName: z.ZodNullable<z.ZodString>;
|
32
32
|
gender: z.ZodNullable<z.ZodString>;
|
33
|
-
birthDate: z.ZodNullable<z.
|
33
|
+
birthDate: z.ZodNullable<z.ZodDate>;
|
34
34
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
35
35
|
instagram: z.ZodNullable<z.ZodString>;
|
36
36
|
mail: z.ZodNullable<z.ZodString>;
|
37
37
|
dni: z.ZodNullable<z.ZodString>;
|
38
|
-
alternativeNames: z.ZodArray<z.ZodString, "many"
|
38
|
+
alternativeNames: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
39
39
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
40
40
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
41
41
|
isInTrash: z.ZodBoolean;
|
@@ -57,7 +57,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
57
57
|
instagram: string | null;
|
58
58
|
mail: string | null;
|
59
59
|
dni: string | null;
|
60
|
-
alternativeNames: string[];
|
60
|
+
alternativeNames: string[] | null;
|
61
61
|
birthLocationId: string | null;
|
62
62
|
residenceLocationId: string | null;
|
63
63
|
isInTrash: boolean;
|
@@ -73,11 +73,11 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
73
73
|
shortId: number;
|
74
74
|
firstName: string | null;
|
75
75
|
gender: string | null;
|
76
|
-
birthDate:
|
76
|
+
birthDate: Date | null;
|
77
77
|
instagram: string | null;
|
78
78
|
mail: string | null;
|
79
79
|
dni: string | null;
|
80
|
-
alternativeNames: string[];
|
80
|
+
alternativeNames: string[] | null;
|
81
81
|
birthLocationId: string | null;
|
82
82
|
residenceLocationId: string | null;
|
83
83
|
isInTrash: boolean;
|
@@ -99,7 +99,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
99
99
|
instagram: string | null;
|
100
100
|
mail: string | null;
|
101
101
|
dni: string | null;
|
102
|
-
alternativeNames: string[];
|
102
|
+
alternativeNames: string[] | null;
|
103
103
|
birthLocationId: string | null;
|
104
104
|
residenceLocationId: string | null;
|
105
105
|
isInTrash: boolean;
|
@@ -117,11 +117,11 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
117
117
|
shortId: number;
|
118
118
|
firstName: string | null;
|
119
119
|
gender: string | null;
|
120
|
-
birthDate:
|
120
|
+
birthDate: Date | null;
|
121
121
|
instagram: string | null;
|
122
122
|
mail: string | null;
|
123
123
|
dni: string | null;
|
124
|
-
alternativeNames: string[];
|
124
|
+
alternativeNames: string[] | null;
|
125
125
|
birthLocationId: string | null;
|
126
126
|
residenceLocationId: string | null;
|
127
127
|
isInTrash: boolean;
|
@@ -137,12 +137,12 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
137
137
|
fullName: z.ZodString;
|
138
138
|
firstName: z.ZodNullable<z.ZodString>;
|
139
139
|
gender: z.ZodNullable<z.ZodString>;
|
140
|
-
birthDate: z.ZodNullable<z.
|
140
|
+
birthDate: z.ZodNullable<z.ZodString>;
|
141
141
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
142
142
|
instagram: z.ZodNullable<z.ZodString>;
|
143
143
|
mail: z.ZodNullable<z.ZodString>;
|
144
144
|
dni: z.ZodNullable<z.ZodString>;
|
145
|
-
alternativeNames: z.ZodArray<z.ZodString, "many"
|
145
|
+
alternativeNames: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
146
146
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
147
147
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
148
148
|
isInTrash: z.ZodBoolean;
|
@@ -160,11 +160,11 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
160
160
|
shortId: number;
|
161
161
|
firstName: string | null;
|
162
162
|
gender: string | null;
|
163
|
-
birthDate:
|
163
|
+
birthDate: string | null;
|
164
164
|
instagram: string | null;
|
165
165
|
mail: string | null;
|
166
166
|
dni: string | null;
|
167
|
-
alternativeNames: string[];
|
167
|
+
alternativeNames: string[] | null;
|
168
168
|
birthLocationId: string | null;
|
169
169
|
residenceLocationId: string | null;
|
170
170
|
isInTrash: boolean;
|
@@ -184,7 +184,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
184
184
|
instagram: string | null;
|
185
185
|
mail: string | null;
|
186
186
|
dni: string | null;
|
187
|
-
alternativeNames: string[];
|
187
|
+
alternativeNames: string[] | null;
|
188
188
|
birthLocationId: string | null;
|
189
189
|
residenceLocationId: string | null;
|
190
190
|
isInTrash: boolean;
|
@@ -202,11 +202,11 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
202
202
|
shortId: number;
|
203
203
|
firstName: string | null;
|
204
204
|
gender: string | null;
|
205
|
-
birthDate:
|
205
|
+
birthDate: string | null;
|
206
206
|
instagram: string | null;
|
207
207
|
mail: string | null;
|
208
208
|
dni: string | null;
|
209
|
-
alternativeNames: string[];
|
209
|
+
alternativeNames: string[] | null;
|
210
210
|
birthLocationId: string | null;
|
211
211
|
residenceLocationId: string | null;
|
212
212
|
isInTrash: boolean;
|
@@ -228,7 +228,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
228
228
|
instagram: string | null;
|
229
229
|
mail: string | null;
|
230
230
|
dni: string | null;
|
231
|
-
alternativeNames: string[];
|
231
|
+
alternativeNames: string[] | null;
|
232
232
|
birthLocationId: string | null;
|
233
233
|
residenceLocationId: string | null;
|
234
234
|
isInTrash: boolean;
|
@@ -30,12 +30,12 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
30
30
|
fullName: z.ZodString;
|
31
31
|
firstName: z.ZodNullable<z.ZodString>;
|
32
32
|
gender: z.ZodNullable<z.ZodString>;
|
33
|
-
birthDate: z.ZodNullable<z.
|
33
|
+
birthDate: z.ZodNullable<z.ZodDate>;
|
34
34
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
35
35
|
instagram: z.ZodNullable<z.ZodString>;
|
36
36
|
mail: z.ZodNullable<z.ZodString>;
|
37
37
|
dni: z.ZodNullable<z.ZodString>;
|
38
|
-
alternativeNames: z.ZodArray<z.ZodString, "many"
|
38
|
+
alternativeNames: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
39
39
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
40
40
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
41
41
|
isInTrash: z.ZodBoolean;
|
@@ -57,7 +57,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
57
57
|
instagram: string | null;
|
58
58
|
mail: string | null;
|
59
59
|
dni: string | null;
|
60
|
-
alternativeNames: string[];
|
60
|
+
alternativeNames: string[] | null;
|
61
61
|
birthLocationId: string | null;
|
62
62
|
residenceLocationId: string | null;
|
63
63
|
isInTrash: boolean;
|
@@ -73,11 +73,11 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
73
73
|
shortId: number;
|
74
74
|
firstName: string | null;
|
75
75
|
gender: string | null;
|
76
|
-
birthDate:
|
76
|
+
birthDate: Date | null;
|
77
77
|
instagram: string | null;
|
78
78
|
mail: string | null;
|
79
79
|
dni: string | null;
|
80
|
-
alternativeNames: string[];
|
80
|
+
alternativeNames: string[] | null;
|
81
81
|
birthLocationId: string | null;
|
82
82
|
residenceLocationId: string | null;
|
83
83
|
isInTrash: boolean;
|
@@ -99,7 +99,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
99
99
|
instagram: string | null;
|
100
100
|
mail: string | null;
|
101
101
|
dni: string | null;
|
102
|
-
alternativeNames: string[];
|
102
|
+
alternativeNames: string[] | null;
|
103
103
|
birthLocationId: string | null;
|
104
104
|
residenceLocationId: string | null;
|
105
105
|
isInTrash: boolean;
|
@@ -117,11 +117,11 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
117
117
|
shortId: number;
|
118
118
|
firstName: string | null;
|
119
119
|
gender: string | null;
|
120
|
-
birthDate:
|
120
|
+
birthDate: Date | null;
|
121
121
|
instagram: string | null;
|
122
122
|
mail: string | null;
|
123
123
|
dni: string | null;
|
124
|
-
alternativeNames: string[];
|
124
|
+
alternativeNames: string[] | null;
|
125
125
|
birthLocationId: string | null;
|
126
126
|
residenceLocationId: string | null;
|
127
127
|
isInTrash: boolean;
|
@@ -137,12 +137,12 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
137
137
|
fullName: z.ZodString;
|
138
138
|
firstName: z.ZodNullable<z.ZodString>;
|
139
139
|
gender: z.ZodNullable<z.ZodString>;
|
140
|
-
birthDate: z.ZodNullable<z.
|
140
|
+
birthDate: z.ZodNullable<z.ZodString>;
|
141
141
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
142
142
|
instagram: z.ZodNullable<z.ZodString>;
|
143
143
|
mail: z.ZodNullable<z.ZodString>;
|
144
144
|
dni: z.ZodNullable<z.ZodString>;
|
145
|
-
alternativeNames: z.ZodArray<z.ZodString, "many"
|
145
|
+
alternativeNames: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
146
146
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
147
147
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
148
148
|
isInTrash: z.ZodBoolean;
|
@@ -160,11 +160,11 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
160
160
|
shortId: number;
|
161
161
|
firstName: string | null;
|
162
162
|
gender: string | null;
|
163
|
-
birthDate:
|
163
|
+
birthDate: string | null;
|
164
164
|
instagram: string | null;
|
165
165
|
mail: string | null;
|
166
166
|
dni: string | null;
|
167
|
-
alternativeNames: string[];
|
167
|
+
alternativeNames: string[] | null;
|
168
168
|
birthLocationId: string | null;
|
169
169
|
residenceLocationId: string | null;
|
170
170
|
isInTrash: boolean;
|
@@ -184,7 +184,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
184
184
|
instagram: string | null;
|
185
185
|
mail: string | null;
|
186
186
|
dni: string | null;
|
187
|
-
alternativeNames: string[];
|
187
|
+
alternativeNames: string[] | null;
|
188
188
|
birthLocationId: string | null;
|
189
189
|
residenceLocationId: string | null;
|
190
190
|
isInTrash: boolean;
|
@@ -202,11 +202,11 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
202
202
|
shortId: number;
|
203
203
|
firstName: string | null;
|
204
204
|
gender: string | null;
|
205
|
-
birthDate:
|
205
|
+
birthDate: string | null;
|
206
206
|
instagram: string | null;
|
207
207
|
mail: string | null;
|
208
208
|
dni: string | null;
|
209
|
-
alternativeNames: string[];
|
209
|
+
alternativeNames: string[] | null;
|
210
210
|
birthLocationId: string | null;
|
211
211
|
residenceLocationId: string | null;
|
212
212
|
isInTrash: boolean;
|
@@ -228,7 +228,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
228
228
|
instagram: string | null;
|
229
229
|
mail: string | null;
|
230
230
|
dni: string | null;
|
231
|
-
alternativeNames: string[];
|
231
|
+
alternativeNames: string[] | null;
|
232
232
|
birthLocationId: string | null;
|
233
233
|
residenceLocationId: string | null;
|
234
234
|
isInTrash: boolean;
|