expo-backend-types 0.16.0 → 0.17.0-EXPO-244-EB-CSV.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/csv/dto/csv.dto.d.ts +18 -0
- package/dist/src/csv/dto/csv.dto.js +17 -0
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +23 -0
- package/dist/src/csv/dto/download-all-tables.dto.js +19 -0
- package/dist/src/csv/dto/download-profiles.dto.d.ts +18 -0
- package/dist/src/csv/dto/download-profiles.dto.js +15 -0
- package/dist/src/csv/exports.d.ts +3 -0
- package/dist/src/csv/exports.js +20 -0
- package/dist/src/i18n/es.d.ts +22 -3
- package/dist/src/i18n/es.js +22 -3
- 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 +1 -6
- 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 +110 -0
- package/package.json +4 -1
@@ -0,0 +1,18 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const csvDownloadSchema: z.ZodObject<{
|
3
|
+
password: z.ZodString;
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
5
|
+
password: string;
|
6
|
+
}, {
|
7
|
+
password: string;
|
8
|
+
}>;
|
9
|
+
declare const CsvDownloadDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
10
|
+
password: z.ZodString;
|
11
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
12
|
+
password: string;
|
13
|
+
}, {
|
14
|
+
password: string;
|
15
|
+
}>>;
|
16
|
+
export declare class CsvDownloadDto extends CsvDownloadDto_base {
|
17
|
+
}
|
18
|
+
export {};
|
@@ -0,0 +1,17 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CsvDownloadDto = exports.csvDownloadSchema = void 0;
|
4
|
+
const translate_1 = require("../../i18n/translate");
|
5
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
6
|
+
const zod_1 = require("zod");
|
7
|
+
exports.csvDownloadSchema = zod_1.z.object({
|
8
|
+
password: zod_1.z
|
9
|
+
.string({
|
10
|
+
required_error: (0, translate_1.translate)('model.csv.password.required'),
|
11
|
+
})
|
12
|
+
.min(1, (0, translate_1.translate)('model.csv.password.empty')),
|
13
|
+
});
|
14
|
+
class CsvDownloadDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.csvDownloadSchema) {
|
15
|
+
}
|
16
|
+
exports.CsvDownloadDto = CsvDownloadDto;
|
17
|
+
//# sourceMappingURL=csv.dto.js.map
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
import { z } from 'zod';
|
3
|
+
export declare const downloadAllTablesSchema: z.ZodObject<{
|
4
|
+
password: z.ZodString;
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
6
|
+
password: string;
|
7
|
+
}, {
|
8
|
+
password: string;
|
9
|
+
}>;
|
10
|
+
declare const DownloadAllTablesDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
11
|
+
password: z.ZodString;
|
12
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
13
|
+
password: string;
|
14
|
+
}, {
|
15
|
+
password: string;
|
16
|
+
}>>;
|
17
|
+
export declare class DownloadAllTablesDto extends DownloadAllTablesDto_base {
|
18
|
+
}
|
19
|
+
export declare const downloadAllTablesResponseSchema: z.ZodType<Buffer, z.ZodTypeDef, Buffer>;
|
20
|
+
declare const DownloadAllTablesResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodType<Buffer, z.ZodTypeDef, Buffer>>;
|
21
|
+
export declare class DownloadAllTablesResponseDto extends DownloadAllTablesResponseDto_base {
|
22
|
+
}
|
23
|
+
export {};
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DownloadAllTablesResponseDto = exports.downloadAllTablesResponseSchema = exports.DownloadAllTablesDto = exports.downloadAllTablesSchema = void 0;
|
4
|
+
const translate_1 = require("../../i18n/translate");
|
5
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
6
|
+
const zod_1 = require("zod");
|
7
|
+
exports.downloadAllTablesSchema = zod_1.z.object({
|
8
|
+
password: zod_1.z
|
9
|
+
.string({ required_error: (0, translate_1.translate)('model.csv.password.required') })
|
10
|
+
.min(1, (0, translate_1.translate)('model.csv.password.empty')),
|
11
|
+
});
|
12
|
+
class DownloadAllTablesDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.downloadAllTablesSchema) {
|
13
|
+
}
|
14
|
+
exports.DownloadAllTablesDto = DownloadAllTablesDto;
|
15
|
+
exports.downloadAllTablesResponseSchema = zod_1.z.instanceof(Buffer);
|
16
|
+
class DownloadAllTablesResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.downloadAllTablesResponseSchema) {
|
17
|
+
}
|
18
|
+
exports.DownloadAllTablesResponseDto = DownloadAllTablesResponseDto;
|
19
|
+
//# sourceMappingURL=download-all-tables.dto.js.map
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { z } from 'zod';
|
2
|
+
export declare const downloadProfilesSchema: z.ZodObject<{
|
3
|
+
password: z.ZodString;
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
5
|
+
password: string;
|
6
|
+
}, {
|
7
|
+
password: string;
|
8
|
+
}>;
|
9
|
+
declare const DownloadProfilesDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
10
|
+
password: z.ZodString;
|
11
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
12
|
+
password: string;
|
13
|
+
}, {
|
14
|
+
password: string;
|
15
|
+
}>>;
|
16
|
+
export declare class DownloadProfilesDto extends DownloadProfilesDto_base {
|
17
|
+
}
|
18
|
+
export {};
|
@@ -0,0 +1,15 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.DownloadProfilesDto = exports.downloadProfilesSchema = void 0;
|
4
|
+
const translate_1 = require("../../i18n/translate");
|
5
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
6
|
+
const zod_1 = require("zod");
|
7
|
+
exports.downloadProfilesSchema = zod_1.z.object({
|
8
|
+
password: zod_1.z
|
9
|
+
.string({ required_error: (0, translate_1.translate)('model.csv.password.required') })
|
10
|
+
.min(1, (0, translate_1.translate)('model.csv.password.empty')),
|
11
|
+
});
|
12
|
+
class DownloadProfilesDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.downloadProfilesSchema) {
|
13
|
+
}
|
14
|
+
exports.DownloadProfilesDto = DownloadProfilesDto;
|
15
|
+
//# sourceMappingURL=download-profiles.dto.js.map
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./dto/csv.dto"), exports);
|
18
|
+
__exportStar(require("./dto/download-all-tables.dto"), exports);
|
19
|
+
__exportStar(require("./dto/download-profiles.dto"), exports);
|
20
|
+
//# sourceMappingURL=exports.js.map
|
package/dist/src/i18n/es.d.ts
CHANGED
@@ -118,9 +118,6 @@ 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
|
-
};
|
124
121
|
};
|
125
122
|
readonly location: {
|
126
123
|
readonly id: {
|
@@ -151,6 +148,12 @@ declare const _default: {
|
|
151
148
|
readonly uuid: "El ID debe ser un UUID";
|
152
149
|
};
|
153
150
|
};
|
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
|
+
};
|
154
157
|
};
|
155
158
|
readonly route: {
|
156
159
|
readonly auth: {
|
@@ -175,6 +178,10 @@ declare const _default: {
|
|
175
178
|
readonly me: {
|
176
179
|
readonly success: "Cuenta obtenida";
|
177
180
|
};
|
181
|
+
readonly 'check-password': {
|
182
|
+
readonly 'not-found': "Cuenta no encontrada";
|
183
|
+
readonly 'invalid-password': "Contraseña inválida";
|
184
|
+
};
|
178
185
|
};
|
179
186
|
readonly tag: {
|
180
187
|
readonly create: {
|
@@ -379,6 +386,18 @@ declare const _default: {
|
|
379
386
|
readonly success: "Perfiles obtenido";
|
380
387
|
};
|
381
388
|
};
|
389
|
+
readonly csv: {
|
390
|
+
readonly downloadModelos: {
|
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 downloadAllTables: {
|
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
|
+
};
|
382
401
|
};
|
383
402
|
};
|
384
403
|
export default _default;
|
package/dist/src/i18n/es.js
CHANGED
@@ -120,9 +120,6 @@ 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
|
-
},
|
126
123
|
},
|
127
124
|
location: {
|
128
125
|
id: {
|
@@ -153,6 +150,12 @@ exports.default = {
|
|
153
150
|
uuid: 'El ID debe ser un UUID',
|
154
151
|
},
|
155
152
|
},
|
153
|
+
csv: {
|
154
|
+
password: {
|
155
|
+
required: 'La contraseña es obligatoria',
|
156
|
+
empty: 'La contraseña no puede estar vacía',
|
157
|
+
},
|
158
|
+
},
|
156
159
|
},
|
157
160
|
route: {
|
158
161
|
auth: {
|
@@ -177,6 +180,10 @@ exports.default = {
|
|
177
180
|
me: {
|
178
181
|
success: 'Cuenta obtenida',
|
179
182
|
},
|
183
|
+
'check-password': {
|
184
|
+
'not-found': 'Cuenta no encontrada',
|
185
|
+
'invalid-password': 'Contraseña inválida',
|
186
|
+
},
|
180
187
|
},
|
181
188
|
tag: {
|
182
189
|
create: {
|
@@ -381,6 +388,18 @@ exports.default = {
|
|
381
388
|
success: 'Perfiles obtenido',
|
382
389
|
},
|
383
390
|
},
|
391
|
+
csv: {
|
392
|
+
downloadModelos: {
|
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
|
+
downloadAllTables: {
|
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
|
+
},
|
384
403
|
},
|
385
404
|
};
|
386
405
|
//# 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":";;AAAA,kBAAe;IACb,MAAM,EAAE;QACN,KAAK,EAAE;YACL,OAAO,EAAE,QAAQ;YACjB,GAAG,EAAE,UAAU;YACf,QAAQ,EAAE,oBAAoB;YAC9B,KAAK,EAAE,QAAQ;YACf,WAAW,EAAE,oBAAoB;YACjC,OAAO,EAAE,YAAY;YACrB,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,WAAW;YACrB,cAAc,EAAE,oBAAoB;YACpC,OAAO,EAAE,SAAS;SACnB;QACD,GAAG,EAAE;YACH,QAAQ,EAAE,SAAS;YACnB,SAAS,EAAE,qBAAqB;SACjC;QACD,QAAQ,EAAE,+FAA+F;QACzG,WAAW,EAAE,oGAAoG;KAClH;IACD,KAAK,EAAE;QACL,OAAO,EAAE;YACP,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,OAAO,EAAE;gBACP,GAAG,EAAE,6CAA6C;aACnD;YACD,UAAU,EAAE;gBACV,QAAQ,EAAE,4CAA4C;aACvD;SACF;QACD,OAAO,EAAE;YACP,EAAE,EAAE;gBACF,QAAQ,EAAE,oBAAoB;gBAC9B,IAAI,EAAE,wBAAwB;aAC/B;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,mCAAmC;aAC9C;YACD,KAAK,EAAE;gBACL,QAAQ,EAAE,uBAAuB;gBACjC,KAAK,EAAE,mCAAmC;aAC3C;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,4BAA4B;gBACtC,GAAG,EAAE,gDAAgD;aACtD;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,qBAAqB;gBAC/B,OAAO,EAAE,oBAAoB;aAC9B;SACF;QACD,GAAG,EAAE;YACH,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,wBAAwB;gBAClC,GAAG,EAAE,0CAA0C;aAChD;YACD,IAAI,EAAE;gBACJ,OAAO,EAAE,iCAAiC;aAC3C;SACF;QACD,KAAK,EAAE;YACL,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,wBAAwB;aACnC;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,uBAAuB;gBACjC,OAAO,EAAE,oCAAoC;aAC9C;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,2BAA2B;aACtC;SACF;QACD,QAAQ,EAAE;YACR,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,wBAAwB;aACnC;YACD,KAAK,EAAE;gBACL,OAAO,EAAE,sDAAsD;aAChE;SACF;QACD,cAAc,EAAE;YACd,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,GAAG,EAAE,0CAA0C;aAChD;YACD,KAAK,EAAE;gBACL,OAAO,EAAE,sDAAsD;aAChE;SACF;QACD,OAAO,EAAE;YACP,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,WAAW,EAAE;gBACX,QAAQ,EAAE,qCAAqC;gBAC/C,OAAO,EAAE,0BAA0B;aACpC;YACD,oBAAoB,EAAE;gBACpB,OAAO,EAAE,qCAAqC;aAC/C;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,mCAAmC;aAC9C;YACD,iBAAiB,EAAE;gBACjB,OAAO,EAAE,4CAA4C;aACtD;
|
1
|
+
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":";;AAAA,kBAAe;IACb,MAAM,EAAE;QACN,KAAK,EAAE;YACL,OAAO,EAAE,QAAQ;YACjB,GAAG,EAAE,UAAU;YACf,QAAQ,EAAE,oBAAoB;YAC9B,KAAK,EAAE,QAAQ;YACf,WAAW,EAAE,oBAAoB;YACjC,OAAO,EAAE,YAAY;YACrB,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,WAAW;YACrB,cAAc,EAAE,oBAAoB;YACpC,OAAO,EAAE,SAAS;SACnB;QACD,GAAG,EAAE;YACH,QAAQ,EAAE,SAAS;YACnB,SAAS,EAAE,qBAAqB;SACjC;QACD,QAAQ,EAAE,+FAA+F;QACzG,WAAW,EAAE,oGAAoG;KAClH;IACD,KAAK,EAAE;QACL,OAAO,EAAE;YACP,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,OAAO,EAAE;gBACP,GAAG,EAAE,6CAA6C;aACnD;YACD,UAAU,EAAE;gBACV,QAAQ,EAAE,4CAA4C;aACvD;SACF;QACD,OAAO,EAAE;YACP,EAAE,EAAE;gBACF,QAAQ,EAAE,oBAAoB;gBAC9B,IAAI,EAAE,wBAAwB;aAC/B;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,mCAAmC;aAC9C;YACD,KAAK,EAAE;gBACL,QAAQ,EAAE,uBAAuB;gBACjC,KAAK,EAAE,mCAAmC;aAC3C;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,4BAA4B;gBACtC,GAAG,EAAE,gDAAgD;aACtD;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,qBAAqB;gBAC/B,OAAO,EAAE,oBAAoB;aAC9B;SACF;QACD,GAAG,EAAE;YACH,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,wBAAwB;gBAClC,GAAG,EAAE,0CAA0C;aAChD;YACD,IAAI,EAAE;gBACJ,OAAO,EAAE,iCAAiC;aAC3C;SACF;QACD,KAAK,EAAE;YACL,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,wBAAwB;aACnC;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,uBAAuB;gBACjC,OAAO,EAAE,oCAAoC;aAC9C;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,2BAA2B;aACtC;SACF;QACD,QAAQ,EAAE;YACR,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,wBAAwB;aACnC;YACD,KAAK,EAAE;gBACL,OAAO,EAAE,sDAAsD;aAChE;SACF;QACD,cAAc,EAAE;YACd,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,GAAG,EAAE,0CAA0C;aAChD;YACD,KAAK,EAAE;gBACL,OAAO,EAAE,sDAAsD;aAChE;SACF;QACD,OAAO,EAAE;YACP,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,WAAW,EAAE;gBACX,QAAQ,EAAE,qCAAqC;gBAC/C,OAAO,EAAE,0BAA0B;aACpC;YACD,oBAAoB,EAAE;gBACpB,OAAO,EAAE,qCAAqC;aAC/C;YACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,mCAAmC;aAC9C;YACD,iBAAiB,EAAE;gBACjB,OAAO,EAAE,4CAA4C;aACtD;SACF;QACD,QAAQ,EAAE;YACR,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,QAAQ,EAAE;gBACR,MAAM,EAAE,sCAAsC;aAC/C;YACD,SAAS,EAAE;gBACT,MAAM,EAAE,yCAAyC;aAClD;SACF;QACD,iBAAiB,EAAE;YACjB,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,wBAAwB;gBAClC,GAAG,EAAE,0CAA0C;aAChD;YACD,OAAO,EAAE;gBACP,QAAQ,EAAE,2BAA2B;gBACrC,GAAG,EAAE,6CAA6C;aACnD;SACF;QACD,OAAO,EAAE;YACP,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;SACF;QACD,GAAG,EAAE;YACH,QAAQ,EAAE;gBACR,QAAQ,EAAE,8BAA8B;gBACxC,KAAK,EAAE,oCAAoC;aAC5C;SACF;KACF;IACD,KAAK,EAAE;QACL,IAAI,EAAE;YACJ,qBAAqB,EAAE,wBAAwB;YAC/C,UAAU,EAAE,yBAAyB;YACrC,eAAe,EAAE,gBAAgB;YACjC,gBAAgB,EAAE,uBAAuB;SAC1C;QACD,OAAO,EAAE;YACP,MAAM,EAAE;gBACN,OAAO,EAAE,yBAAyB;gBAClC,QAAQ,EAAE,qBAAqB;aAChC;YACD,qBAAqB,EAAE;gBACrB,OAAO,EAAE,yBAAyB;gBAClC,QAAQ,EAAE,qBAAqB;aAChC;YACD,mBAAmB,EAAE;gBACnB,OAAO,EAAE,sBAAsB;gBAC/B,WAAW,EAAE,sBAAsB;aACpC;YACD,EAAE,EAAE;gBACF,OAAO,EAAE,iBAAiB;aAC3B;YACD,gBAAgB,EAAE;gBAChB,WAAW,EAAE,sBAAsB;gBACnC,kBAAkB,EAAE,qBAAqB;aAC1C;SACF;QACD,GAAG,EAAE;YACH,MAAM,EAAE;gBACN,OAAO,EAAE,2BAA2B;aACrC;YACD,UAAU,EAAE;gBACV,OAAO,EAAE,qBAAqB;aAC/B;YACD,UAAU,EAAE;gBACV,OAAO,EAAE,mBAAmB;gBAC5B,WAAW,EAAE,wBAAwB;aACtC;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,sBAAsB;gBAC/B,WAAW,EAAE,wBAAwB;aACtC;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,oBAAoB;gBAC7B,WAAW,EAAE,wBAAwB;aACtC;YACD,eAAe,EAAE;gBACf,OAAO,EAAE,qBAAqB;gBAC9B,WAAW,EAAE,kCAAkC;aAChD;YACD,oBAAoB,EAAE;gBACpB,OAAO,EAAE,+BAA+B;aACzC;YACD,sBAAsB,EAAE;gBACtB,OAAO,EAAE,kCAAkC;aAC5C;SACF;QACD,WAAW,EAAE;YACX,MAAM,EAAE;gBACN,OAAO,EAAE,qCAAqC;aAC/C;YACD,UAAU,EAAE;gBACV,OAAO,EAAE,+BAA+B;aACzC;YACD,oBAAoB,EAAE;gBACpB,OAAO,EAAE,qBAAqB;aAC/B;YACD,UAAU,EAAE;gBACV,OAAO,EAAE,6BAA6B;gBACtC,WAAW,EAAE,kCAAkC;aAChD;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,gCAAgC;gBACzC,WAAW,EAAE,kCAAkC;aAChD;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,8BAA8B;gBACvC,WAAW,EAAE,kCAAkC;aAChD;SACF;QACD,OAAO,EAAE;YACP,MAAM,EAAE;gBACN,OAAO,EAAE,6BAA6B;gBACtC,WAAW,EAAE,sBAAsB;aACpC;YACD,gBAAgB,EAAE;gBAChB,OAAO,EAAE,uBAAuB;gBAChC,WAAW,EAAE,sBAAsB;aACpC;YACD,cAAc,EAAE;gBACd,OAAO,EAAE,kDAAkD;gBAC3D,WAAW,EAAE,0BAA0B;gBACvC,QAAQ,EAAE,+BAA+B;aAC1C;SACF;QACD,QAAQ,EAAE;YACR,UAAU,EAAE;gBACV,OAAO,EAAE,uBAAuB;aACjC;YACD,0BAA0B,EAAE;gBAC1B,OAAO,EAAE,oCAAoC;gBAC7C,WAAW,EAAE,4CAA4C;aAC1D;YACD,YAAY,EAAE;gBACZ,OAAO,EAAE,mCAAmC;aAC7C;YACD,eAAe,EAAE;gBACf,OAAO,EAAE,kBAAkB;aAC5B;YACD,mBAAmB,EAAE;gBACnB,OAAO,EAAE,mBAAmB;gBAC5B,iBAAiB,EAAE,4DAA4D;gBAC/E,WAAW,EAAE,oBAAoB;aAClC;SACF;QACD,iBAAiB,EAAE;YACjB,MAAM,EAAE;gBACN,OAAO,EAAE,qCAAqC;gBAC9C,QAAQ,EAAE,sCAAsC;aACjD;YACD,SAAS,EAAE;gBACT,OAAO,EAAE,0CAA0C;gBACnD,WAAW,EAAE,wCAAwC;aACtD;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,0CAA0C;gBACnD,WAAW,EAAE,kCAAkC;aAChD;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,wCAAwC;gBACjD,WAAW,EAAE,kCAAkC;aAChD;SACF;QACD,cAAc,EAAE;YACd,MAAM,EAAE;gBACN,OAAO,EAAE,oCAAoC;gBAC7C,QAAQ,EAAE,8CAA8C;aACzD;YACD,SAAS,EAAE;gBACT,OAAO,EAAE,wCAAwC;gBACjD,WAAW,EAAE,sCAAsC;aACpD;YACD,WAAW,EAAE;gBACX,OAAO,EAAE,sCAAsC;gBAC/C,WAAW,EAAE,iCAAiC;aAC/C;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,yCAAyC;gBAClD,WAAW,EAAE,iCAAiC;aAC/C;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,uCAAuC;gBAChD,WAAW,EAAE,iCAAiC;aAC/C;SACF;QACD,KAAK,EAAE;YACL,MAAM,EAAE;gBACN,OAAO,EAAE,yBAAyB;gBAClC,QAAQ,EAAE,iCAAiC;gBAC3C,kBAAkB,EAAE,iCAAiC;aACtD;YACD,SAAS,EAAE;gBACT,OAAO,EAAE,6BAA6B;gBACtC,WAAW,EAAE,2BAA2B;aACzC;YACD,WAAW,EAAE;gBACX,OAAO,EAAE,2BAA2B;gBACpC,WAAW,EAAE,sBAAsB;aACpC;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,8BAA8B;gBACvC,WAAW,EAAE,sBAAsB;gBACnC,oBAAoB,EAAE,yBAAyB;aAChD;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,4BAA4B;gBACrC,WAAW,EAAE,sBAAsB;aACpC;SACF;QACD,OAAO,EAAE;YACP,UAAU,EAAE;gBACV,OAAO,EAAE,oBAAoB;aAC9B;YACD,YAAY,EAAE;gBACZ,WAAW,EAAE,sBAAsB;gBACnC,OAAO,EAAE,iBAAiB;aAC3B;YACD,aAAa,EAAE;gBACb,WAAW,EAAE,sBAAsB;gBACnC,gBAAgB,EAAE,mCAAmC;gBACrD,OAAO,EAAE,oBAAoB;aAC9B;YACD,oBAAoB,EAAE;gBACpB,WAAW,EAAE,sBAAsB;gBACnC,sBAAsB,EAAE,6CAA6C;gBACrE,OAAO,EAAE,oBAAoB;aAC9B;YACD,MAAM,EAAE;gBACN,2BAA2B,EACzB,4CAA4C;gBAC9C,OAAO,EAAE,yBAAyB;gBAClC,oBAAoB,EAAE,iCAAiC;gBACvD,6BAA6B,EAAE,sCAAsC;gBACrE,uCAAuC,EACrC,iDAAiD;gBACnD,QAAQ,EAAE,iCAAiC;aAC5C;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,4BAA4B;gBACrC,WAAW,EAAE,sBAAsB;aACpC;YACD,MAAM,EAAE;gBACN,OAAO,EAAE,8BAA8B;gBACvC,WAAW,EAAE,sBAAsB;gBACnC,QAAQ,EAAE,sCAAsC;gBAChD,gBAAgB,EAAE,0EAA0E;aAC7F;YACD,oBAAoB,EAAE;gBACpB,OAAO,EAAE,oBAAoB;gBAC7B,cAAc,EAAE,gBAAgB;aACjC;YACD,sBAAsB,EAAE;gBACtB,OAAO,EAAE,iBAAiB;gBAC1B,WAAW,EAAE,sBAAsB;aACpC;YACD,YAAY,EAAE;gBACZ,OAAO,EAAE,oBAAoB;aAC9B;YACD,2BAA2B,EAAE;gBAC3B,OAAO,EAAE,mBAAmB;aAC7B;SACF;QACD,GAAG,EAAE;YACH,eAAe,EAAE;gBACf,OAAO,EAAE,qCAAqC;gBAC9C,YAAY,EACV,6DAA6D;gBAC/D,KAAK,EAAE,8CAA8C;aACtD;YACD,iBAAiB,EAAE;gBACjB,OAAO,EAAE,8CAA8C;gBACvD,YAAY,EAAE,wDAAwD;gBACtE,KAAK,EAAE,uDAAuD;aAC/D;SACF;KACF;CACO,CAAC"}
|
@@ -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" | "gender" | "birthDate" | "instagram" | "mail" | "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;
|
93
92
|
gender: string | null;
|
94
93
|
birthDate: Date | null;
|
95
94
|
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;
|
123
122
|
gender: string | null;
|
124
123
|
birthDate: string | null;
|
125
124
|
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;
|
156
155
|
gender: string | null;
|
157
156
|
birthDate: Date | null;
|
158
157
|
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;
|
189
188
|
gender: string | null;
|
190
189
|
birthDate: string | null;
|
191
190
|
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>;
|
223
222
|
gender: z.ZodNullable<z.ZodString>;
|
224
223
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
|
225
224
|
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;
|
283
282
|
gender: string | null;
|
284
283
|
birthDate: Date | null;
|
285
284
|
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;
|
313
312
|
gender: string | null;
|
314
313
|
birthDate: string | null;
|
315
314
|
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;
|
346
345
|
gender: string | null;
|
347
346
|
birthDate: Date | null;
|
348
347
|
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;
|
379
378
|
gender: string | null;
|
380
379
|
birthDate: string | null;
|
381
380
|
instagram: string | null;
|
381
|
+
mail: string | null;
|
382
382
|
dni: string | null;
|
383
383
|
alternativeNames: string[];
|
384
384
|
comments?: {
|
@@ -24,7 +24,6 @@ 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;
|
28
27
|
created_at: Date;
|
29
28
|
updated_at: Date;
|
30
29
|
shortId: number;
|
@@ -32,6 +31,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
32
31
|
gender: string | null;
|
33
32
|
birthDate: Date | null;
|
34
33
|
instagram: string | null;
|
34
|
+
mail: string | null;
|
35
35
|
dni: string | null;
|
36
36
|
alternativeNames: string[];
|
37
37
|
birthLocationId: string | null;
|
@@ -44,7 +44,6 @@ 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;
|
48
47
|
created_at: Date;
|
49
48
|
updated_at: Date;
|
50
49
|
shortId: number;
|
@@ -52,6 +51,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
52
51
|
gender: string | null;
|
53
52
|
birthDate: string | null;
|
54
53
|
instagram: string | null;
|
54
|
+
mail: string | null;
|
55
55
|
dni: string | null;
|
56
56
|
alternativeNames: string[];
|
57
57
|
birthLocationId: string | null;
|
@@ -85,7 +85,6 @@ 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;
|
89
88
|
created_at: string;
|
90
89
|
updated_at: string;
|
91
90
|
shortId: number;
|
@@ -93,6 +92,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
93
92
|
gender: string | null;
|
94
93
|
birthDate: Date | null;
|
95
94
|
instagram: string | null;
|
95
|
+
mail: string | null;
|
96
96
|
dni: string | null;
|
97
97
|
alternativeNames: string[];
|
98
98
|
birthLocationId: string | null;
|
@@ -105,7 +105,6 @@ 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;
|
109
108
|
created_at: string;
|
110
109
|
updated_at: string;
|
111
110
|
shortId: number;
|
@@ -113,6 +112,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
113
112
|
gender: string | null;
|
114
113
|
birthDate: string | null;
|
115
114
|
instagram: string | null;
|
115
|
+
mail: string | null;
|
116
116
|
dni: string | null;
|
117
117
|
alternativeNames: string[];
|
118
118
|
birthLocationId: string | null;
|
@@ -77,7 +77,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
77
77
|
secondaryPhoneNumber: string | null;
|
78
78
|
fullName: string;
|
79
79
|
profilePictureUrl: string | null;
|
80
|
-
mail: string | null;
|
81
80
|
created_at: Date;
|
82
81
|
updated_at: Date;
|
83
82
|
tags: {
|
@@ -97,6 +96,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
97
96
|
gender: string | null;
|
98
97
|
birthDate: Date | null;
|
99
98
|
instagram: string | null;
|
99
|
+
mail: string | null;
|
100
100
|
dni: string | null;
|
101
101
|
alternativeNames: string[];
|
102
102
|
birthLocationId: string | null;
|
@@ -109,7 +109,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
109
109
|
secondaryPhoneNumber: string | null;
|
110
110
|
fullName: string;
|
111
111
|
profilePictureUrl: string | null;
|
112
|
-
mail: string | null;
|
113
112
|
created_at: Date;
|
114
113
|
updated_at: Date;
|
115
114
|
tags: {
|
@@ -129,6 +128,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
129
128
|
gender: string | null;
|
130
129
|
birthDate: string | null;
|
131
130
|
instagram: string | null;
|
131
|
+
mail: string | null;
|
132
132
|
dni: string | null;
|
133
133
|
alternativeNames: string[];
|
134
134
|
birthLocationId: string | null;
|
@@ -143,7 +143,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
143
143
|
secondaryPhoneNumber: string | null;
|
144
144
|
fullName: string;
|
145
145
|
profilePictureUrl: string | null;
|
146
|
-
mail: string | null;
|
147
146
|
created_at: Date;
|
148
147
|
updated_at: Date;
|
149
148
|
tags: {
|
@@ -163,6 +162,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
163
162
|
gender: string | null;
|
164
163
|
birthDate: Date | null;
|
165
164
|
instagram: string | null;
|
165
|
+
mail: string | null;
|
166
166
|
dni: string | null;
|
167
167
|
alternativeNames: string[];
|
168
168
|
birthLocationId: string | null;
|
@@ -177,7 +177,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
177
177
|
secondaryPhoneNumber: string | null;
|
178
178
|
fullName: string;
|
179
179
|
profilePictureUrl: string | null;
|
180
|
-
mail: string | null;
|
181
180
|
created_at: Date;
|
182
181
|
updated_at: Date;
|
183
182
|
tags: {
|
@@ -197,6 +196,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
197
196
|
gender: string | null;
|
198
197
|
birthDate: string | null;
|
199
198
|
instagram: string | null;
|
199
|
+
mail: string | null;
|
200
200
|
dni: string | null;
|
201
201
|
alternativeNames: string[];
|
202
202
|
birthLocationId: string | null;
|
@@ -277,7 +277,6 @@ 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;
|
281
280
|
created_at: string;
|
282
281
|
updated_at: string;
|
283
282
|
tags: {
|
@@ -297,6 +296,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
297
296
|
gender: string | null;
|
298
297
|
birthDate: Date | null;
|
299
298
|
instagram: string | null;
|
299
|
+
mail: string | null;
|
300
300
|
dni: string | null;
|
301
301
|
alternativeNames: string[];
|
302
302
|
birthLocationId: string | null;
|
@@ -309,7 +309,6 @@ 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;
|
313
312
|
created_at: string;
|
314
313
|
updated_at: string;
|
315
314
|
tags: {
|
@@ -329,6 +328,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
329
328
|
gender: string | null;
|
330
329
|
birthDate: string | null;
|
331
330
|
instagram: string | null;
|
331
|
+
mail: string | null;
|
332
332
|
dni: string | null;
|
333
333
|
alternativeNames: string[];
|
334
334
|
birthLocationId: string | null;
|
@@ -343,7 +343,6 @@ 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;
|
347
346
|
created_at: string;
|
348
347
|
updated_at: string;
|
349
348
|
tags: {
|
@@ -363,6 +362,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
363
362
|
gender: string | null;
|
364
363
|
birthDate: Date | null;
|
365
364
|
instagram: string | null;
|
365
|
+
mail: string | null;
|
366
366
|
dni: string | null;
|
367
367
|
alternativeNames: string[];
|
368
368
|
birthLocationId: string | null;
|
@@ -377,7 +377,6 @@ 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;
|
381
380
|
created_at: string;
|
382
381
|
updated_at: string;
|
383
382
|
tags: {
|
@@ -397,6 +396,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
397
396
|
gender: string | null;
|
398
397
|
birthDate: string | null;
|
399
398
|
instagram: string | null;
|
399
|
+
mail: string | null;
|
400
400
|
dni: string | null;
|
401
401
|
alternativeNames: string[];
|
402
402
|
birthLocationId: string | null;
|