expo-backend-types 0.3.0-EXPO-245.5 → 0.3.0-EXPO-245.6
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,9 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.GetMeResponseDto = exports.getMeResponseSchema = void 0;
|
4
|
-
const
|
4
|
+
const cuenta_dto_1 = require("../dto/cuenta.dto");
|
5
5
|
const zod_nestjs_1 = require("@anatine/zod-nestjs");
|
6
|
-
exports.getMeResponseSchema =
|
6
|
+
exports.getMeResponseSchema = cuenta_dto_1.cuentaSchema.omit({
|
7
7
|
password: true,
|
8
8
|
});
|
9
9
|
class GetMeResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.getMeResponseSchema) {
|
@@ -15,4 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
17
|
__exportStar(require("./dto/cuenta.dto"), exports);
|
18
|
+
__exportStar(require("./dto/createCuenta.dto"), exports);
|
19
|
+
__exportStar(require("./dto/getFiltroBase.dto"), exports);
|
20
|
+
__exportStar(require("./dto/getMe.dto"), exports);
|
21
|
+
__exportStar(require("./dto/updateFiltroBase.dto"), exports);
|
18
22
|
//# sourceMappingURL=exports.js.map
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.3.0-EXPO-245.
|
3
|
+
"version": "0.3.0-EXPO-245.6",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"dev": "npx prisma generate && nest start --watch",
|
24
24
|
"start:debug": "nest start --debug --watch",
|
25
25
|
"start:prod": "node dist/src/main",
|
26
|
-
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
26
|
+
"lint": "eslint \"{src,apps,libs,test,types}/**/*.ts\" --fix",
|
27
27
|
"test": "jest",
|
28
28
|
"test:watch": "jest --watch",
|
29
29
|
"test:cov": "jest --coverage",
|