expo-backend-types 0.4.0-EXPO-212.3 → 0.4.0-EXPO-212.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/comment/dto/comment.dto.d.ts +12 -12
- package/dist/src/comment/dto/comment.dto.js +3 -3
- package/dist/src/event/dto/event.dto.d.ts +10 -16
- package/dist/src/event/dto/event.dto.js +6 -10
- package/dist/src/event-folder/dto/event-folder.dto.d.ts +6 -0
- package/dist/src/event-folder/dto/event-folder.dto.js +2 -0
- package/dist/src/event-folder/exports.d.ts +1 -0
- package/dist/src/event-folder/exports.js +18 -0
- package/dist/src/exports.d.ts +2 -0
- package/dist/src/exports.js +2 -0
- package/dist/src/i18n/es.d.ts +18 -0
- package/dist/src/i18n/es.js +18 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/profile.dto.d.ts +68 -0
- package/dist/src/profile/dto/profile.dto.js +56 -0
- package/dist/src/profile/exports.d.ts +1 -0
- package/dist/src/profile/exports.js +18 -0
- package/package.json +1 -1
@@ -5,29 +5,29 @@ export declare const commentSchema: z.ZodObject<{
|
|
5
5
|
createdBy: z.ZodString;
|
6
6
|
isSolvable: z.ZodDefault<z.ZodBoolean>;
|
7
7
|
isSolved: z.ZodDefault<z.ZodBoolean>;
|
8
|
-
solvedAt: z.ZodOptional<z.
|
8
|
+
solvedAt: z.ZodOptional<z.ZodDate>;
|
9
9
|
solvedBy: z.ZodOptional<z.ZodString>;
|
10
|
-
created_at: z.
|
11
|
-
updated_at: z.
|
10
|
+
created_at: z.ZodDate;
|
11
|
+
updated_at: z.ZodDate;
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
13
13
|
id: string;
|
14
14
|
content: string;
|
15
|
-
created_at:
|
16
|
-
updated_at:
|
15
|
+
created_at: Date;
|
16
|
+
updated_at: Date;
|
17
17
|
createdBy: string;
|
18
18
|
isSolvable: boolean;
|
19
19
|
isSolved: boolean;
|
20
|
-
solvedAt?:
|
20
|
+
solvedAt?: Date | undefined;
|
21
21
|
solvedBy?: string | undefined;
|
22
22
|
}, {
|
23
23
|
id: string;
|
24
24
|
content: string;
|
25
|
-
created_at:
|
26
|
-
updated_at:
|
25
|
+
created_at: Date;
|
26
|
+
updated_at: Date;
|
27
27
|
createdBy: string;
|
28
28
|
isSolvable?: boolean | undefined;
|
29
29
|
isSolved?: boolean | undefined;
|
30
|
-
solvedAt?:
|
30
|
+
solvedAt?: Date | undefined;
|
31
31
|
solvedBy?: string | undefined;
|
32
32
|
}>;
|
33
33
|
declare const CommentDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -36,7 +36,7 @@ declare const CommentDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodO
|
|
36
36
|
createdBy: z.ZodString;
|
37
37
|
isSolvable: z.ZodDefault<z.ZodBoolean>;
|
38
38
|
isSolved: z.ZodDefault<z.ZodBoolean>;
|
39
|
-
solvedAt: z.ZodOptional<z.
|
39
|
+
solvedAt: z.ZodOptional<z.ZodDate>;
|
40
40
|
solvedBy: z.ZodOptional<z.ZodString>;
|
41
41
|
created_at: z.ZodString;
|
42
42
|
updated_at: z.ZodString;
|
@@ -48,7 +48,7 @@ declare const CommentDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodO
|
|
48
48
|
createdBy: string;
|
49
49
|
isSolvable: boolean;
|
50
50
|
isSolved: boolean;
|
51
|
-
solvedAt?:
|
51
|
+
solvedAt?: Date | undefined;
|
52
52
|
solvedBy?: string | undefined;
|
53
53
|
}, {
|
54
54
|
id: string;
|
@@ -58,7 +58,7 @@ declare const CommentDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodO
|
|
58
58
|
createdBy: string;
|
59
59
|
isSolvable?: boolean | undefined;
|
60
60
|
isSolved?: boolean | undefined;
|
61
|
-
solvedAt?:
|
61
|
+
solvedAt?: Date | undefined;
|
62
62
|
solvedBy?: string | undefined;
|
63
63
|
}>>;
|
64
64
|
export declare class CommentDto extends CommentDto_base {
|
@@ -15,10 +15,10 @@ exports.commentSchema = zod_1.z.object({
|
|
15
15
|
createdBy: account_dto_1.accountSchema.shape.id,
|
16
16
|
isSolvable: zod_1.z.boolean().default(false),
|
17
17
|
isSolved: zod_1.z.boolean().default(false),
|
18
|
-
solvedAt: zod_1.z.
|
18
|
+
solvedAt: zod_1.z.date().optional(),
|
19
19
|
solvedBy: account_dto_1.accountSchema.shape.id.optional(),
|
20
|
-
created_at: zod_1.z.
|
21
|
-
updated_at: zod_1.z.
|
20
|
+
created_at: zod_1.z.date(),
|
21
|
+
updated_at: zod_1.z.date(),
|
22
22
|
});
|
23
23
|
class CommentDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.commentSchema) {
|
24
24
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { z } from 'zod';
|
2
|
-
declare const
|
2
|
+
export declare const eventSchema: z.ZodObject<{
|
3
3
|
id: z.ZodString;
|
4
4
|
name: z.ZodString;
|
5
5
|
date: z.ZodString;
|
@@ -7,35 +7,29 @@ declare const eventSchemaBase: z.ZodObject<{
|
|
7
7
|
folderId: z.ZodString;
|
8
8
|
tagAssistedId: z.ZodString;
|
9
9
|
tagConfirmedId: z.ZodString;
|
10
|
-
|
11
|
-
created_at: z.
|
12
|
-
updated_at: z.
|
10
|
+
supraEventId: z.ZodOptional<z.ZodString>;
|
11
|
+
created_at: z.ZodDate;
|
12
|
+
updated_at: z.ZodDate;
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
14
14
|
location: string;
|
15
15
|
id: string;
|
16
16
|
name: string;
|
17
17
|
date: string;
|
18
|
-
created_at:
|
19
|
-
updated_at:
|
18
|
+
created_at: Date;
|
19
|
+
updated_at: Date;
|
20
20
|
folderId: string;
|
21
21
|
tagAssistedId: string;
|
22
22
|
tagConfirmedId: string;
|
23
|
-
|
23
|
+
supraEventId?: string | undefined;
|
24
24
|
}, {
|
25
25
|
location: string;
|
26
26
|
id: string;
|
27
27
|
name: string;
|
28
28
|
date: string;
|
29
|
-
created_at:
|
30
|
-
updated_at:
|
29
|
+
created_at: Date;
|
30
|
+
updated_at: Date;
|
31
31
|
folderId: string;
|
32
32
|
tagAssistedId: string;
|
33
33
|
tagConfirmedId: string;
|
34
|
-
|
34
|
+
supraEventId?: string | undefined;
|
35
35
|
}>;
|
36
|
-
type Event = z.infer<typeof eventSchemaBase> & {
|
37
|
-
supraEvent: z.infer<typeof eventSchemaBase>;
|
38
|
-
subEvents: Array<z.infer<typeof eventSchemaBase>>;
|
39
|
-
};
|
40
|
-
export declare const eventSchema: z.ZodType<Event>;
|
41
|
-
export {};
|
@@ -1,11 +1,11 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.eventSchema = void 0;
|
4
|
-
const
|
4
|
+
const event_folder_dto_1 = require("../../event-folder/dto/event-folder.dto");
|
5
5
|
const translate_1 = require("../../i18n/translate");
|
6
|
+
const tag_dto_1 = require("../../tag/dto/tag.dto");
|
6
7
|
const zod_1 = require("zod");
|
7
|
-
|
8
|
-
const eventSchemaBase = zod_1.z.object({
|
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
11
|
date: zod_1.z
|
@@ -17,17 +17,13 @@ const eventSchemaBase = zod_1.z.object({
|
|
17
17
|
folderId: event_folder_dto_1.eventFolderSchema.shape.id,
|
18
18
|
tagAssistedId: tag_dto_1.tagSchema.shape.id,
|
19
19
|
tagConfirmedId: tag_dto_1.tagSchema.shape.id,
|
20
|
-
|
20
|
+
supraEventId: zod_1.z
|
21
21
|
.string()
|
22
22
|
.uuid({
|
23
23
|
message: (0, translate_1.translate)('model.event.id.uuid'),
|
24
24
|
})
|
25
25
|
.optional(),
|
26
|
-
created_at: zod_1.z.
|
27
|
-
updated_at: zod_1.z.
|
28
|
-
});
|
29
|
-
exports.eventSchema = eventSchemaBase.extend({
|
30
|
-
supraEvent: zod_1.z.lazy(() => exports.eventSchema),
|
31
|
-
subEvents: zod_1.z.array(zod_1.z.lazy(() => eventSchemaBase)),
|
26
|
+
created_at: zod_1.z.date(),
|
27
|
+
updated_at: zod_1.z.date(),
|
32
28
|
});
|
33
29
|
//# sourceMappingURL=event.dto.js.map
|
@@ -3,12 +3,18 @@ export declare const eventFolderSchema: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
4
4
|
name: z.ZodString;
|
5
5
|
color: z.ZodString;
|
6
|
+
created_at: z.ZodDate;
|
7
|
+
updated_at: z.ZodDate;
|
6
8
|
}, "strip", z.ZodTypeAny, {
|
7
9
|
id: string;
|
8
10
|
name: string;
|
9
11
|
color: string;
|
12
|
+
created_at: Date;
|
13
|
+
updated_at: Date;
|
10
14
|
}, {
|
11
15
|
id: string;
|
12
16
|
name: string;
|
13
17
|
color: string;
|
18
|
+
created_at: Date;
|
19
|
+
updated_at: Date;
|
14
20
|
}>;
|
@@ -18,5 +18,7 @@ exports.eventFolderSchema = zod_1.default.object({
|
|
18
18
|
message: (0, translate_1.translate)('model.eventFolder.color.invalid'),
|
19
19
|
})
|
20
20
|
.toLowerCase(),
|
21
|
+
created_at: zod_1.default.date(),
|
22
|
+
updated_at: zod_1.default.date(),
|
21
23
|
});
|
22
24
|
//# sourceMappingURL=event-folder.dto.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './dto/event-folder.dto';
|
@@ -0,0 +1,18 @@
|
|
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/event-folder.dto"), exports);
|
18
|
+
//# sourceMappingURL=exports.js.map
|
package/dist/src/exports.d.ts
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
export * from './account/exports';
|
2
2
|
export * from './auth/exports';
|
3
3
|
export * from './comment/exports';
|
4
|
+
export * from './event-folder/exports';
|
4
5
|
export * from './event/exports';
|
6
|
+
export * from './profile/exports';
|
5
7
|
export * from './tag-group/exports';
|
6
8
|
export * from './tag/exports';
|
package/dist/src/exports.js
CHANGED
@@ -17,7 +17,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./account/exports"), exports);
|
18
18
|
__exportStar(require("./auth/exports"), exports);
|
19
19
|
__exportStar(require("./comment/exports"), exports);
|
20
|
+
__exportStar(require("./event-folder/exports"), exports);
|
20
21
|
__exportStar(require("./event/exports"), exports);
|
22
|
+
__exportStar(require("./profile/exports"), exports);
|
21
23
|
__exportStar(require("./tag-group/exports"), exports);
|
22
24
|
__exportStar(require("./tag/exports"), exports);
|
23
25
|
//# sourceMappingURL=exports.js.map
|
package/dist/src/i18n/es.d.ts
CHANGED
@@ -91,6 +91,24 @@ declare const _default: {
|
|
91
91
|
readonly invalid: "El color debe tener el formato hexadecimal (#ABCDEF)";
|
92
92
|
};
|
93
93
|
};
|
94
|
+
readonly profile: {
|
95
|
+
readonly id: {
|
96
|
+
readonly uuid: "El ID debe ser un UUID";
|
97
|
+
};
|
98
|
+
readonly phoneNumber: {
|
99
|
+
readonly required: "El teléfono es un campo obligatorio";
|
100
|
+
readonly invalid: "El teléfono no es válido";
|
101
|
+
};
|
102
|
+
readonly secondaryPhoneNumber: {
|
103
|
+
readonly invalid: "El teléfono secundario no es válido";
|
104
|
+
};
|
105
|
+
readonly fullName: {
|
106
|
+
readonly required: "El nombre es un campo obligatorio";
|
107
|
+
};
|
108
|
+
readonly profilePictureUrl: {
|
109
|
+
readonly invalid: "La URL de la imagen de perfil no es válida";
|
110
|
+
};
|
111
|
+
};
|
94
112
|
};
|
95
113
|
readonly route: {
|
96
114
|
readonly auth: {
|
package/dist/src/i18n/es.js
CHANGED
@@ -93,6 +93,24 @@ exports.default = {
|
|
93
93
|
invalid: 'El color debe tener el formato hexadecimal (#ABCDEF)',
|
94
94
|
},
|
95
95
|
},
|
96
|
+
profile: {
|
97
|
+
id: {
|
98
|
+
uuid: 'El ID debe ser un UUID',
|
99
|
+
},
|
100
|
+
phoneNumber: {
|
101
|
+
required: 'El teléfono es un campo obligatorio',
|
102
|
+
invalid: 'El teléfono no es válido',
|
103
|
+
},
|
104
|
+
secondaryPhoneNumber: {
|
105
|
+
invalid: 'El teléfono secundario no es válido',
|
106
|
+
},
|
107
|
+
fullName: {
|
108
|
+
required: 'El nombre es un campo obligatorio',
|
109
|
+
},
|
110
|
+
profilePictureUrl: {
|
111
|
+
invalid: 'La URL de la imagen de perfil no es válida',
|
112
|
+
},
|
113
|
+
},
|
96
114
|
},
|
97
115
|
route: {
|
98
116
|
auth: {
|
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,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;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,WAAW,EAAE;YACX,EAAE,EAAE;gBACF,IAAI,EAAE,wBAAwB;aAC/B;YACD,KAAK,EAAE;gBACL,OAAO,EAAE,sDAAsD;aAChE;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;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;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;KACF;CACO,CAAC"}
|
1
|
+
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const profileSchema: z.ZodObject<{
|
3
|
+
id: z.ZodString;
|
4
|
+
shortId: z.ZodNumber;
|
5
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
6
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
7
|
+
fullName: z.ZodString;
|
8
|
+
firstName: z.ZodString;
|
9
|
+
gender: z.ZodOptional<z.ZodString>;
|
10
|
+
birthDate: z.ZodOptional<z.ZodDate>;
|
11
|
+
profilePictureUrl: z.ZodOptional<z.ZodString>;
|
12
|
+
instagram: z.ZodOptional<z.ZodString>;
|
13
|
+
mail: z.ZodOptional<z.ZodString>;
|
14
|
+
dni: z.ZodOptional<z.ZodString>;
|
15
|
+
alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
16
|
+
birthLongitude: z.ZodOptional<z.ZodNumber>;
|
17
|
+
birthLatitude: z.ZodOptional<z.ZodNumber>;
|
18
|
+
residenceLongitude: z.ZodOptional<z.ZodNumber>;
|
19
|
+
residenceLatitude: z.ZodOptional<z.ZodNumber>;
|
20
|
+
isInTrash: z.ZodBoolean;
|
21
|
+
movedToTrashDate: z.ZodOptional<z.ZodDate>;
|
22
|
+
created_at: z.ZodDate;
|
23
|
+
updated_at: z.ZodDate;
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
25
|
+
id: string;
|
26
|
+
phoneNumber: string;
|
27
|
+
fullName: string;
|
28
|
+
created_at: Date;
|
29
|
+
updated_at: Date;
|
30
|
+
shortId: number;
|
31
|
+
firstName: string;
|
32
|
+
isInTrash: boolean;
|
33
|
+
secondaryPhoneNumber?: string | undefined;
|
34
|
+
profilePictureUrl?: string | undefined;
|
35
|
+
gender?: string | undefined;
|
36
|
+
birthDate?: Date | undefined;
|
37
|
+
instagram?: string | undefined;
|
38
|
+
mail?: string | undefined;
|
39
|
+
dni?: string | undefined;
|
40
|
+
alternativeNames?: string[] | undefined;
|
41
|
+
birthLongitude?: number | undefined;
|
42
|
+
birthLatitude?: number | undefined;
|
43
|
+
residenceLongitude?: number | undefined;
|
44
|
+
residenceLatitude?: number | undefined;
|
45
|
+
movedToTrashDate?: Date | undefined;
|
46
|
+
}, {
|
47
|
+
id: string;
|
48
|
+
phoneNumber: string;
|
49
|
+
fullName: string;
|
50
|
+
created_at: Date;
|
51
|
+
updated_at: Date;
|
52
|
+
shortId: number;
|
53
|
+
firstName: string;
|
54
|
+
isInTrash: boolean;
|
55
|
+
secondaryPhoneNumber?: string | undefined;
|
56
|
+
profilePictureUrl?: string | undefined;
|
57
|
+
gender?: string | undefined;
|
58
|
+
birthDate?: Date | undefined;
|
59
|
+
instagram?: string | undefined;
|
60
|
+
mail?: string | undefined;
|
61
|
+
dni?: string | undefined;
|
62
|
+
alternativeNames?: string[] | undefined;
|
63
|
+
birthLongitude?: number | undefined;
|
64
|
+
birthLatitude?: number | undefined;
|
65
|
+
residenceLongitude?: number | undefined;
|
66
|
+
residenceLatitude?: number | undefined;
|
67
|
+
movedToTrashDate?: Date | undefined;
|
68
|
+
}>;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.profileSchema = void 0;
|
7
|
+
const translate_1 = require("../../i18n/translate");
|
8
|
+
const validator_1 = __importDefault(require("validator"));
|
9
|
+
const zod_1 = __importDefault(require("zod"));
|
10
|
+
exports.profileSchema = zod_1.default.object({
|
11
|
+
id: zod_1.default.string().uuid({
|
12
|
+
message: (0, translate_1.translate)('model.profile.id.uuid'),
|
13
|
+
}),
|
14
|
+
shortId: zod_1.default.number(),
|
15
|
+
phoneNumber: zod_1.default
|
16
|
+
.string()
|
17
|
+
.min(1, {
|
18
|
+
message: (0, translate_1.translate)('model.profile.phoneNumber.required'),
|
19
|
+
})
|
20
|
+
.refine(validator_1.default.isMobilePhone, {
|
21
|
+
message: (0, translate_1.translate)('model.profile.phoneNumber.invalid'),
|
22
|
+
}),
|
23
|
+
secondaryPhoneNumber: zod_1.default
|
24
|
+
.string()
|
25
|
+
.optional()
|
26
|
+
.refine(validator_1.default.isMobilePhone, {
|
27
|
+
message: (0, translate_1.translate)('model.profile.secondaryPhoneNumber.invalid'),
|
28
|
+
}),
|
29
|
+
fullName: zod_1.default.string().min(1, {
|
30
|
+
message: (0, translate_1.translate)('model.profile.fullName.required'),
|
31
|
+
}),
|
32
|
+
firstName: zod_1.default.string().min(1, {
|
33
|
+
message: (0, translate_1.translate)('model.profile.fullName.required'),
|
34
|
+
}),
|
35
|
+
gender: zod_1.default.string().optional(),
|
36
|
+
birthDate: zod_1.default.date().optional(),
|
37
|
+
profilePictureUrl: zod_1.default
|
38
|
+
.string()
|
39
|
+
.url({
|
40
|
+
message: (0, translate_1.translate)('model.profile.profilePictureUrl.invalid'),
|
41
|
+
})
|
42
|
+
.optional(),
|
43
|
+
instagram: zod_1.default.string().optional(),
|
44
|
+
mail: zod_1.default.string().email().optional(),
|
45
|
+
dni: zod_1.default.string().optional(),
|
46
|
+
alternativeNames: zod_1.default.array(zod_1.default.string()).optional(),
|
47
|
+
birthLongitude: zod_1.default.number().min(-180).max(180).optional(),
|
48
|
+
birthLatitude: zod_1.default.number().min(-90).max(90).optional(),
|
49
|
+
residenceLongitude: zod_1.default.number().min(-180).max(180).optional(),
|
50
|
+
residenceLatitude: zod_1.default.number().min(-90).max(90).optional(),
|
51
|
+
isInTrash: zod_1.default.boolean(),
|
52
|
+
movedToTrashDate: zod_1.default.date().optional(),
|
53
|
+
created_at: zod_1.default.date(),
|
54
|
+
updated_at: zod_1.default.date(),
|
55
|
+
});
|
56
|
+
//# sourceMappingURL=profile.dto.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './dto/profile.dto';
|
@@ -0,0 +1,18 @@
|
|
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/profile.dto"), exports);
|
18
|
+
//# sourceMappingURL=exports.js.map
|