@kominal/common-nestjs 0.0.14 → 0.0.16
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.
|
@@ -1,29 +1,115 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
12
|
exports.EntityService = exports.ChangeContext = exports.OpenApiPaginationResponse = exports.ListResponse = exports.ListParams = exports.GlobalEntityPathParams = exports.EntityPathParams = exports.OptionalEntityPathParams = exports.EntitiesPathParams = void 0;
|
|
4
13
|
exports.created = created;
|
|
5
14
|
exports.changed = changed;
|
|
6
15
|
const common_1 = require("@nestjs/common");
|
|
7
16
|
const swagger_1 = require("@nestjs/swagger");
|
|
17
|
+
const class_validator_1 = require("class-validator");
|
|
8
18
|
const uuid_1 = require("uuid");
|
|
9
19
|
class EntitiesPathParams {
|
|
10
20
|
}
|
|
11
21
|
exports.EntitiesPathParams = EntitiesPathParams;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, swagger_1.ApiProperty)(),
|
|
24
|
+
(0, class_validator_1.IsString)(),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], EntitiesPathParams.prototype, "tenantId", void 0);
|
|
12
27
|
class OptionalEntityPathParams {
|
|
13
28
|
}
|
|
14
29
|
exports.OptionalEntityPathParams = OptionalEntityPathParams;
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, swagger_1.ApiProperty)(),
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], OptionalEntityPathParams.prototype, "tenantId", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, swagger_1.ApiProperty)(),
|
|
37
|
+
(0, class_validator_1.IsOptional)(),
|
|
38
|
+
(0, class_validator_1.IsString)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], OptionalEntityPathParams.prototype, "uuid", void 0);
|
|
15
41
|
class EntityPathParams {
|
|
16
42
|
}
|
|
17
43
|
exports.EntityPathParams = EntityPathParams;
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, swagger_1.ApiProperty)(),
|
|
46
|
+
(0, class_validator_1.IsString)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], EntityPathParams.prototype, "tenantId", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, swagger_1.ApiProperty)(),
|
|
51
|
+
(0, class_validator_1.IsString)(),
|
|
52
|
+
__metadata("design:type", String)
|
|
53
|
+
], EntityPathParams.prototype, "uuid", void 0);
|
|
18
54
|
class GlobalEntityPathParams {
|
|
19
55
|
}
|
|
20
56
|
exports.GlobalEntityPathParams = GlobalEntityPathParams;
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, swagger_1.ApiProperty)(),
|
|
59
|
+
(0, class_validator_1.IsString)(),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], GlobalEntityPathParams.prototype, "uuid", void 0);
|
|
21
62
|
class ListParams {
|
|
22
63
|
}
|
|
23
64
|
exports.ListParams = ListParams;
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, swagger_1.ApiProperty)(),
|
|
67
|
+
(0, class_validator_1.IsOptional)(),
|
|
68
|
+
(0, class_validator_1.IsString)(),
|
|
69
|
+
__metadata("design:type", String)
|
|
70
|
+
], ListParams.prototype, "active", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, swagger_1.ApiProperty)(),
|
|
73
|
+
(0, class_validator_1.IsOptional)(),
|
|
74
|
+
(0, class_validator_1.IsString)(),
|
|
75
|
+
__metadata("design:type", String)
|
|
76
|
+
], ListParams.prototype, "direction", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, swagger_1.ApiProperty)(),
|
|
79
|
+
(0, class_validator_1.IsOptional)(),
|
|
80
|
+
(0, class_validator_1.IsNumber)(),
|
|
81
|
+
__metadata("design:type", Number)
|
|
82
|
+
], ListParams.prototype, "pageIndex", void 0);
|
|
83
|
+
__decorate([
|
|
84
|
+
(0, swagger_1.ApiProperty)(),
|
|
85
|
+
(0, class_validator_1.IsOptional)(),
|
|
86
|
+
(0, class_validator_1.IsNumber)(),
|
|
87
|
+
__metadata("design:type", Number)
|
|
88
|
+
], ListParams.prototype, "pageSize", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, swagger_1.ApiProperty)(),
|
|
91
|
+
(0, class_validator_1.IsOptional)(),
|
|
92
|
+
(0, class_validator_1.IsString)(),
|
|
93
|
+
__metadata("design:type", String)
|
|
94
|
+
], ListParams.prototype, "filter", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, swagger_1.ApiProperty)(),
|
|
97
|
+
(0, class_validator_1.IsOptional)(),
|
|
98
|
+
(0, class_validator_1.IsString)(),
|
|
99
|
+
__metadata("design:type", String)
|
|
100
|
+
], ListParams.prototype, "select", void 0);
|
|
24
101
|
class ListResponse {
|
|
25
102
|
}
|
|
26
103
|
exports.ListResponse = ListResponse;
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, swagger_1.ApiProperty)(),
|
|
106
|
+
__metadata("design:type", Array)
|
|
107
|
+
], ListResponse.prototype, "items", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, swagger_1.ApiProperty)(),
|
|
110
|
+
(0, class_validator_1.IsNumber)(),
|
|
111
|
+
__metadata("design:type", Number)
|
|
112
|
+
], ListResponse.prototype, "count", void 0);
|
|
27
113
|
const OpenApiPaginationResponse = (model) => (0, common_1.applyDecorators)((0, swagger_1.ApiOkResponse)({ schema: { properties: { items: { type: 'array', items: { $ref: (0, swagger_1.getSchemaPath)(model) } }, count: { type: 'number' } }, required: ['items', 'count'] } }), (0, swagger_1.ApiExtraModels)(model));
|
|
28
114
|
exports.OpenApiPaginationResponse = OpenApiPaginationResponse;
|
|
29
115
|
class ChangeContext {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity-service.helper.js","sourceRoot":"","sources":["../../src/helpers/entity-service.helper.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"entity-service.helper.js","sourceRoot":"","sources":["../../src/helpers/entity-service.helper.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class ListParams {
|
|
2
|
+
active?: string;
|
|
3
|
+
direction?: string;
|
|
4
|
+
pageIndex?: number;
|
|
5
|
+
pageSize?: number;
|
|
6
|
+
filter?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class ListResponse<T> {
|
|
9
|
+
items: T[];
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
12
|
+
export declare const OpenApiPaginationResponse: (model: any) => (<TFunction extends Function, Y>(target: object | TFunction, propertyKey?: string | symbol, descriptor?: TypedPropertyDescriptor<Y>) => void);
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OpenApiPaginationResponse = exports.ListResponse = exports.ListParams = void 0;
|
|
4
|
+
const common_1 = require("@nestjs/common");
|
|
5
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
6
|
+
class ListParams {
|
|
7
|
+
}
|
|
8
|
+
exports.ListParams = ListParams;
|
|
9
|
+
class ListResponse {
|
|
10
|
+
}
|
|
11
|
+
exports.ListResponse = ListResponse;
|
|
12
|
+
const OpenApiPaginationResponse = (model) => (0, common_1.applyDecorators)((0, swagger_1.ApiOkResponse)({
|
|
13
|
+
schema: {
|
|
14
|
+
properties: {
|
|
15
|
+
items: {
|
|
16
|
+
type: 'array',
|
|
17
|
+
items: { $ref: (0, swagger_1.getSchemaPath)(model) },
|
|
18
|
+
},
|
|
19
|
+
count: {
|
|
20
|
+
type: 'number',
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
required: ['items', 'count'],
|
|
24
|
+
},
|
|
25
|
+
}), (0, swagger_1.ApiExtraModels)(model));
|
|
26
|
+
exports.OpenApiPaginationResponse = OpenApiPaginationResponse;
|
|
27
|
+
//# sourceMappingURL=pagination.model.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pagination.model.js","sourceRoot":"","sources":["../../src/models/pagination.model.ts"],"names":[],"mappings":";;;AAAA,2CAAiD;AACjD,6CAA+E;AAE/E,MAAa,UAAU;CAMtB;AAND,gCAMC;AAED,MAAa,YAAY;CAGxB;AAHD,oCAGC;AAEM,MAAM,yBAAyB,GAAG,CACxC,KAAU,EAKA,EAAE,CACZ,IAAA,wBAAe,EACd,IAAA,uBAAa,EAAC;IACb,MAAM,EAAE;QACP,UAAU,EAAE;YACX,KAAK,EAAE;gBACN,IAAI,EAAE,OAAO;gBACb,KAAK,EAAE,EAAE,IAAI,EAAE,IAAA,uBAAa,EAAC,KAAK,CAAC,EAAE;aACrC;YACD,KAAK,EAAE;gBACN,IAAI,EAAE,QAAQ;aACd;SACD;QACD,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,CAAC;KAC5B;CACD,CAAC,EACF,IAAA,wBAAc,EAAC,KAAK,CAAC,CACrB,CAAC;AAvBU,QAAA,yBAAyB,6BAuBnC"}
|
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
2
|
+
"name": "@kominal/common-nestjs",
|
|
3
|
+
"version": "0.0.16",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "nest build",
|
|
8
|
+
"postbuild": "cp package.json dist",
|
|
9
|
+
"push": "npm run build && cd dist && npm publish"
|
|
10
|
+
},
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@aws-sdk/client-s3": "^3.787.0",
|
|
18
|
+
"@aws-sdk/s3-request-presigner": "^3.787.0",
|
|
19
|
+
"@nestjs/common": "^11.0.20",
|
|
20
|
+
"@nestjs/mongoose": "^11.0.3",
|
|
21
|
+
"@nestjs/swagger": "^11.1.4",
|
|
22
|
+
"class-transformer": "^0.5.1",
|
|
23
|
+
"class-validator": "^0.14.1",
|
|
24
|
+
"express": "^5.1.0",
|
|
25
|
+
"jsonwebtoken": "^9.0.2",
|
|
26
|
+
"jwks-rsa": "^3.2.0",
|
|
27
|
+
"uuid": "^11.1.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/node": "^22.14.1"
|
|
31
|
+
}
|
|
32
32
|
}
|