@senhainfo/shared-utils 1.0.11 → 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/exceptions/bad-request-exception.d.ts +5 -0
- package/lib/exceptions/bad-request-exception.d.ts.map +1 -0
- package/lib/exceptions/bad-request-exception.js +12 -0
- package/lib/exceptions/bad-request-exception.js.map +1 -0
- package/lib/exceptions/forbidden-exception.d.ts +5 -0
- package/lib/exceptions/forbidden-exception.d.ts.map +1 -0
- package/lib/exceptions/forbidden-exception.js +12 -0
- package/lib/exceptions/forbidden-exception.js.map +1 -0
- package/lib/exceptions/inactive-exception.d.ts +5 -0
- package/lib/exceptions/inactive-exception.d.ts.map +1 -0
- package/lib/exceptions/inactive-exception.js +12 -0
- package/lib/exceptions/inactive-exception.js.map +1 -0
- package/lib/exceptions/index.d.ts +8 -7
- package/lib/exceptions/index.d.ts.map +1 -1
- package/lib/exceptions/index.js +8 -7
- package/lib/exceptions/index.js.map +1 -1
- package/lib/exceptions/invalid-credentials-exception.d.ts +5 -0
- package/lib/exceptions/invalid-credentials-exception.d.ts.map +1 -0
- package/lib/exceptions/invalid-credentials-exception.js +11 -0
- package/lib/exceptions/invalid-credentials-exception.js.map +1 -0
- package/lib/exceptions/invalid-token-exception.d.ts +5 -0
- package/lib/exceptions/invalid-token-exception.d.ts.map +1 -0
- package/lib/exceptions/invalid-token-exception.js +12 -0
- package/lib/exceptions/invalid-token-exception.js.map +1 -0
- package/lib/exceptions/missing-token-exception.d.ts +5 -0
- package/lib/exceptions/missing-token-exception.d.ts.map +1 -0
- package/lib/exceptions/missing-token-exception.js +12 -0
- package/lib/exceptions/missing-token-exception.js.map +1 -0
- package/lib/exceptions/not-found-exception.d.ts +5 -0
- package/lib/exceptions/not-found-exception.d.ts.map +1 -0
- package/lib/exceptions/not-found-exception.js +12 -0
- package/lib/exceptions/not-found-exception.js.map +1 -0
- package/lib/exceptions/unavailable-stock-exception.d.ts +5 -0
- package/lib/exceptions/unavailable-stock-exception.d.ts.map +1 -0
- package/lib/exceptions/unavailable-stock-exception.js +11 -0
- package/lib/exceptions/unavailable-stock-exception.js.map +1 -0
- package/package.json +2 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bad-request-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/bad-request-exception.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAoB,MAAM,iBAAiB,CAAC;AAEjE,qBAAa,mBAAoB,SAAQ,YAAY;gBACvC,OAAO,SAAiC,EAAE,OAAO,CAAC,EAAE,MAAM;CAGvE"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BadRequestException = void 0;
|
|
4
|
+
const http_status_enum_1 = require("../http-status-enum");
|
|
5
|
+
const app_exception_1 = require("./app-exception");
|
|
6
|
+
class BadRequestException extends app_exception_1.AppException {
|
|
7
|
+
constructor(message = "Erro ao processar requisição", details) {
|
|
8
|
+
super(app_exception_1.AppExceptionEnum.BAD_REQUEST, message, http_status_enum_1.HttpStatusCodes.BAD_REQUEST, details);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.BadRequestException = BadRequestException;
|
|
12
|
+
//# sourceMappingURL=bad-request-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bad-request-exception.js","sourceRoot":"","sources":["../../src/exceptions/bad-request-exception.ts"],"names":[],"mappings":";;;AAAA,0DAAsD;AACtD,mDAAiE;AAEjE,MAAa,mBAAoB,SAAQ,4BAAY;IACnD,YAAY,OAAO,GAAG,8BAA8B,EAAE,OAAgB;QACpE,KAAK,CAAC,gCAAgB,CAAC,WAAW,EAAE,OAAO,EAAE,kCAAe,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;IACrF,CAAC;CACF;AAJD,kDAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"forbidden-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/forbidden-exception.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAoB,MAAM,iBAAiB,CAAC;AAEjE,qBAAa,kBAAmB,SAAQ,YAAY;gBACtC,OAAO,SAA4C,EAAE,OAAO,CAAC,EAAE,MAAM;CAGlF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ForbiddenException = void 0;
|
|
4
|
+
const http_status_enum_1 = require("../http-status-enum");
|
|
5
|
+
const app_exception_1 = require("./app-exception");
|
|
6
|
+
class ForbiddenException extends app_exception_1.AppException {
|
|
7
|
+
constructor(message = "Sem permissão para acessar este recurso", details) {
|
|
8
|
+
super(app_exception_1.AppExceptionEnum.FORBIDDEN, message, http_status_enum_1.HttpStatusCodes.FORBIDDEN, details);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.ForbiddenException = ForbiddenException;
|
|
12
|
+
//# sourceMappingURL=forbidden-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"forbidden-exception.js","sourceRoot":"","sources":["../../src/exceptions/forbidden-exception.ts"],"names":[],"mappings":";;;AAAA,0DAAsD;AAEtD,mDAAiE;AAEjE,MAAa,kBAAmB,SAAQ,4BAAY;IAClD,YAAY,OAAO,GAAG,yCAAyC,EAAE,OAAgB;QAC/E,KAAK,CAAC,gCAAgB,CAAC,SAAS,EAAE,OAAO,EAAE,kCAAe,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACjF,CAAC;CACF;AAJD,gDAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inactive-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/inactive-exception.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAoB,MAAM,iBAAiB,CAAC;AAEjE,qBAAa,iBAAkB,SAAQ,YAAY;gBACrC,OAAO,SAAY,EAAE,OAAO,CAAC,EAAE,MAAM;CAGlD"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InactiveException = void 0;
|
|
4
|
+
const http_status_enum_1 = require("../http-status-enum");
|
|
5
|
+
const app_exception_1 = require("./app-exception");
|
|
6
|
+
class InactiveException extends app_exception_1.AppException {
|
|
7
|
+
constructor(message = "Inativo", details) {
|
|
8
|
+
super(app_exception_1.AppExceptionEnum.INACTIVE, message, http_status_enum_1.HttpStatusCodes.FORBIDDEN, details);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.InactiveException = InactiveException;
|
|
12
|
+
//# sourceMappingURL=inactive-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inactive-exception.js","sourceRoot":"","sources":["../../src/exceptions/inactive-exception.ts"],"names":[],"mappings":";;;AAAA,0DAAsD;AAEtD,mDAAiE;AAEjE,MAAa,iBAAkB,SAAQ,4BAAY;IACjD,YAAY,OAAO,GAAG,SAAS,EAAE,OAAgB;QAC/C,KAAK,CAAC,gCAAgB,CAAC,QAAQ,EAAE,OAAO,EAAE,kCAAe,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IAChF,CAAC;CACF;AAJD,8CAIC"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
export * from "./app-exception";
|
|
2
|
-
export * from "./bad-request";
|
|
3
|
-
export * from "./forbidden";
|
|
4
|
-
export * from "./inactive";
|
|
5
|
-
export * from "./invalid-credentials";
|
|
6
|
-
export * from "./invalid-token";
|
|
7
|
-
export * from "./missing-token";
|
|
8
|
-
export * from "./not-found";
|
|
2
|
+
export * from "./bad-request-exception";
|
|
3
|
+
export * from "./forbidden-exception";
|
|
4
|
+
export * from "./inactive-exception";
|
|
5
|
+
export * from "./invalid-credentials-exception";
|
|
6
|
+
export * from "./invalid-token-exception";
|
|
7
|
+
export * from "./missing-token-exception";
|
|
8
|
+
export * from "./not-found-exception";
|
|
9
9
|
export * from "./unauthorized-exception";
|
|
10
|
+
export * from "./unavailable-stock-exception";
|
|
10
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC"}
|
package/lib/exceptions/index.js
CHANGED
|
@@ -15,12 +15,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./app-exception"), exports);
|
|
18
|
-
__exportStar(require("./bad-request"), exports);
|
|
19
|
-
__exportStar(require("./forbidden"), exports);
|
|
20
|
-
__exportStar(require("./inactive"), exports);
|
|
21
|
-
__exportStar(require("./invalid-credentials"), exports);
|
|
22
|
-
__exportStar(require("./invalid-token"), exports);
|
|
23
|
-
__exportStar(require("./missing-token"), exports);
|
|
24
|
-
__exportStar(require("./not-found"), exports);
|
|
18
|
+
__exportStar(require("./bad-request-exception"), exports);
|
|
19
|
+
__exportStar(require("./forbidden-exception"), exports);
|
|
20
|
+
__exportStar(require("./inactive-exception"), exports);
|
|
21
|
+
__exportStar(require("./invalid-credentials-exception"), exports);
|
|
22
|
+
__exportStar(require("./invalid-token-exception"), exports);
|
|
23
|
+
__exportStar(require("./missing-token-exception"), exports);
|
|
24
|
+
__exportStar(require("./not-found-exception"), exports);
|
|
25
25
|
__exportStar(require("./unauthorized-exception"), exports);
|
|
26
|
+
__exportStar(require("./unavailable-stock-exception"), exports);
|
|
26
27
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exceptions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,0DAAwC;AACxC,wDAAsC;AACtC,uDAAqC;AACrC,kEAAgD;AAChD,4DAA0C;AAC1C,4DAA0C;AAC1C,wDAAsC;AACtC,2DAAyC;AACzC,gEAA8C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invalid-credentials-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/invalid-credentials-exception.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAEjE,qBAAa,2BAA4B,SAAQ,qBAAqB;gBACxD,OAAO,SAAgC,EAAE,OAAO,CAAC,EAAE,MAAM;CAGtE"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InvalidCredentialsException = void 0;
|
|
4
|
+
const unauthorized_exception_1 = require("./unauthorized-exception");
|
|
5
|
+
class InvalidCredentialsException extends unauthorized_exception_1.UnauthorizedException {
|
|
6
|
+
constructor(message = "Usuário ou senha incorretos", details) {
|
|
7
|
+
super(message, details);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.InvalidCredentialsException = InvalidCredentialsException;
|
|
11
|
+
//# sourceMappingURL=invalid-credentials-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invalid-credentials-exception.js","sourceRoot":"","sources":["../../src/exceptions/invalid-credentials-exception.ts"],"names":[],"mappings":";;;AAAA,qEAAiE;AAEjE,MAAa,2BAA4B,SAAQ,8CAAqB;IACpE,YAAY,OAAO,GAAG,6BAA6B,EAAE,OAAgB;QACnE,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IAC1B,CAAC;CACF;AAJD,kEAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invalid-token-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/invalid-token-exception.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAoB,MAAM,iBAAiB,CAAC;AAEjE,qBAAa,qBAAsB,SAAQ,YAAY;gBACzC,OAAO,SAA+C,EAAE,OAAO,CAAC,EAAE,MAAM;CAGrF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InvalidTokenException = void 0;
|
|
4
|
+
const http_status_enum_1 = require("../http-status-enum");
|
|
5
|
+
const app_exception_1 = require("./app-exception");
|
|
6
|
+
class InvalidTokenException extends app_exception_1.AppException {
|
|
7
|
+
constructor(message = "Token de acesso inválido, tente novamente!", details) {
|
|
8
|
+
super(app_exception_1.AppExceptionEnum.INVALID_TOKEN, message, http_status_enum_1.HttpStatusCodes.UNAUTHORIZED, details);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.InvalidTokenException = InvalidTokenException;
|
|
12
|
+
//# sourceMappingURL=invalid-token-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invalid-token-exception.js","sourceRoot":"","sources":["../../src/exceptions/invalid-token-exception.ts"],"names":[],"mappings":";;;AAAA,0DAAsD;AACtD,mDAAiE;AAEjE,MAAa,qBAAsB,SAAQ,4BAAY;IACrD,YAAY,OAAO,GAAG,4CAA4C,EAAE,OAAgB;QAClF,KAAK,CAAC,gCAAgB,CAAC,aAAa,EAAE,OAAO,EAAE,kCAAe,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;IACxF,CAAC;CACF;AAJD,sDAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"missing-token-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/missing-token-exception.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAoB,MAAM,iBAAiB,CAAC;AAEjE,qBAAa,qBAAsB,SAAQ,YAAY;gBACzC,OAAO,SAAkC,EAAE,OAAO,CAAC,EAAE,MAAM;CAGxE"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MissingTokenException = void 0;
|
|
4
|
+
const http_status_enum_1 = require("../http-status-enum");
|
|
5
|
+
const app_exception_1 = require("./app-exception");
|
|
6
|
+
class MissingTokenException extends app_exception_1.AppException {
|
|
7
|
+
constructor(message = "Token de acesso não informado", details) {
|
|
8
|
+
super(app_exception_1.AppExceptionEnum.MISSING_TOKEN, message, http_status_enum_1.HttpStatusCodes.UNAUTHORIZED, details);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.MissingTokenException = MissingTokenException;
|
|
12
|
+
//# sourceMappingURL=missing-token-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"missing-token-exception.js","sourceRoot":"","sources":["../../src/exceptions/missing-token-exception.ts"],"names":[],"mappings":";;;AAAA,0DAAsD;AACtD,mDAAiE;AAEjE,MAAa,qBAAsB,SAAQ,4BAAY;IACrD,YAAY,OAAO,GAAG,+BAA+B,EAAE,OAAgB;QACrE,KAAK,CAAC,gCAAgB,CAAC,aAAa,EAAE,OAAO,EAAE,kCAAe,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC;IACxF,CAAC;CACF;AAJD,sDAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"not-found-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/not-found-exception.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAoB,MAAM,iBAAiB,CAAC;AAEjE,qBAAa,iBAAkB,SAAQ,YAAY;gBACrC,OAAO,SAAmB,EAAE,OAAO,CAAC,EAAE,MAAM;CAGzD"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NotFoundException = void 0;
|
|
4
|
+
const http_status_enum_1 = require("../http-status-enum");
|
|
5
|
+
const app_exception_1 = require("./app-exception");
|
|
6
|
+
class NotFoundException extends app_exception_1.AppException {
|
|
7
|
+
constructor(message = "Não encontrado", details) {
|
|
8
|
+
super(app_exception_1.AppExceptionEnum.NOT_FOUND, message, http_status_enum_1.HttpStatusCodes.NOT_FOUND, details);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.NotFoundException = NotFoundException;
|
|
12
|
+
//# sourceMappingURL=not-found-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"not-found-exception.js","sourceRoot":"","sources":["../../src/exceptions/not-found-exception.ts"],"names":[],"mappings":";;;AAAA,0DAAsD;AACtD,mDAAiE;AAEjE,MAAa,iBAAkB,SAAQ,4BAAY;IACjD,YAAY,OAAO,GAAG,gBAAgB,EAAE,OAAgB;QACtD,KAAK,CAAC,gCAAgB,CAAC,SAAS,EAAE,OAAO,EAAE,kCAAe,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACjF,CAAC;CACF;AAJD,8CAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unavailable-stock-exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/unavailable-stock-exception.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,qBAAa,yBAA0B,SAAQ,mBAAmB;gBACpD,OAAO,SAAyB,EAAE,OAAO,CAAC,EAAE,MAAM;CAG/D"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnavailableStockException = void 0;
|
|
4
|
+
const bad_request_exception_1 = require("./bad-request-exception");
|
|
5
|
+
class UnavailableStockException extends bad_request_exception_1.BadRequestException {
|
|
6
|
+
constructor(message = "Estoque indisponível", details) {
|
|
7
|
+
super(message, details);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
exports.UnavailableStockException = UnavailableStockException;
|
|
11
|
+
//# sourceMappingURL=unavailable-stock-exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unavailable-stock-exception.js","sourceRoot":"","sources":["../../src/exceptions/unavailable-stock-exception.ts"],"names":[],"mappings":";;;AAAA,mEAA8D;AAE9D,MAAa,yBAA0B,SAAQ,2CAAmB;IAChE,YAAY,OAAO,GAAG,sBAAsB,EAAE,OAAgB;QAC5D,KAAK,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IAC1B,CAAC;CACF;AAJD,8DAIC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@senhainfo/shared-utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"repository": "https://github.com/senha-info/senha-shared-utils.git",
|
|
5
5
|
"author": "Bruno Gaspar <bruninhoogaspar@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"lib"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
+
"types:check": "tsc --noEmit",
|
|
13
14
|
"build": "tsc",
|
|
14
15
|
"prepare": "npm run build"
|
|
15
16
|
},
|