@solidstarters/solid-core 1.2.6 → 1.2.10
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/dist/commands/refresh-model.command.d.ts +4 -4
- package/dist/commands/refresh-model.command.d.ts.map +1 -1
- package/dist/commands/refresh-model.command.js +8 -8
- package/dist/commands/refresh-model.command.js.map +1 -1
- package/dist/commands/refresh-module.command.d.ts +4 -4
- package/dist/commands/refresh-module.command.d.ts.map +1 -1
- package/dist/commands/refresh-module.command.js +8 -8
- package/dist/commands/refresh-module.command.js.map +1 -1
- package/dist/controllers/setting.controller.d.ts +34 -0
- package/dist/controllers/setting.controller.d.ts.map +1 -0
- package/dist/controllers/setting.controller.js +161 -0
- package/dist/controllers/setting.controller.js.map +1 -0
- package/dist/dtos/create-field-metadata.dto.d.ts +1 -0
- package/dist/dtos/create-field-metadata.dto.d.ts.map +1 -1
- package/dist/dtos/create-field-metadata.dto.js +7 -1
- package/dist/dtos/create-field-metadata.dto.js.map +1 -1
- package/dist/dtos/create-model-metadata.dto.d.ts +0 -1
- package/dist/dtos/create-model-metadata.dto.d.ts.map +1 -1
- package/dist/dtos/create-model-metadata.dto.js +1 -6
- package/dist/dtos/create-model-metadata.dto.js.map +1 -1
- package/dist/dtos/create-setting.dto.d.ts +18 -0
- package/dist/dtos/create-setting.dto.d.ts.map +1 -0
- package/dist/dtos/create-setting.dto.js +106 -0
- package/dist/dtos/create-setting.dto.js.map +1 -0
- package/dist/dtos/update-setting.dto.d.ts +19 -0
- package/dist/dtos/update-setting.dto.d.ts.map +1 -0
- package/dist/dtos/update-setting.dto.js +110 -0
- package/dist/dtos/update-setting.dto.js.map +1 -0
- package/dist/entities/field-metadata.entity.d.ts +1 -0
- package/dist/entities/field-metadata.entity.d.ts.map +1 -1
- package/dist/entities/field-metadata.entity.js +5 -1
- package/dist/entities/field-metadata.entity.js.map +1 -1
- package/dist/entities/model-metadata.entity.d.ts +0 -1
- package/dist/entities/model-metadata.entity.d.ts.map +1 -1
- package/dist/entities/model-metadata.entity.js +1 -5
- package/dist/entities/model-metadata.entity.js.map +1 -1
- package/dist/entities/setting.entity.d.ts +19 -0
- package/dist/entities/setting.entity.d.ts.map +1 -0
- package/dist/entities/setting.entity.js +95 -0
- package/dist/entities/setting.entity.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/seeders/seed-data/solid-core-metadata.json +410 -94
- package/dist/services/field-metadata.service.d.ts.map +1 -1
- package/dist/services/field-metadata.service.js +2 -1
- package/dist/services/field-metadata.service.js.map +1 -1
- package/dist/services/file.service.d.ts +1 -0
- package/dist/services/file.service.d.ts.map +1 -1
- package/dist/services/file.service.js +8 -0
- package/dist/services/file.service.js.map +1 -1
- package/dist/services/model-metadata.service.d.ts.map +1 -1
- package/dist/services/model-metadata.service.js +28 -10
- package/dist/services/model-metadata.service.js.map +1 -1
- package/dist/services/setting.service.d.ts +31 -0
- package/dist/services/setting.service.d.ts.map +1 -0
- package/dist/services/setting.service.js +94 -0
- package/dist/services/setting.service.js.map +1 -0
- package/dist/solid-core.module.d.ts.map +1 -1
- package/dist/solid-core.module.js +6 -0
- package/dist/solid-core.module.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/commands/refresh-model.command.ts +31 -31
- package/src/commands/refresh-module.command.ts +32 -32
- package/src/controllers/setting.controller.ts +80 -0
- package/src/dtos/create-field-metadata.dto.ts +5 -0
- package/src/dtos/create-model-metadata.dto.ts +0 -4
- package/src/dtos/create-setting.dto.ts +63 -0
- package/src/dtos/update-setting.dto.ts +66 -0
- package/src/entities/field-metadata.entity.ts +2 -0
- package/src/entities/model-metadata.entity.ts +0 -3
- package/src/entities/setting.entity.ts +49 -0
- package/src/index.ts +5 -0
- package/src/seeders/seed-data/solid-core-metadata.json +410 -94
- package/src/services/1.js +6 -0
- package/src/services/field-metadata.service.ts +2 -1
- package/src/services/file.service.ts +9 -0
- package/src/services/model-metadata.service.ts +36 -11
- package/src/services/setting.service.ts +71 -0
- package/src/solid-core.module.ts +6 -0
- package/logs/application.log +0 -1855
- package/logs/error.log +0 -0
- package/solidstarters-solid-core-module-1.1.3.tgz +0 -0
|
@@ -0,0 +1,106 @@
|
|
|
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
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreateSettingDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const class_validator_2 = require("class-validator");
|
|
16
|
+
class CreateSettingDto {
|
|
17
|
+
constructor() {
|
|
18
|
+
this.iamAllowPublicRegistration = false;
|
|
19
|
+
this.iamPasswordRegistrationEnabled = false;
|
|
20
|
+
this.iamPasswordLessRegistrationEnabled = false;
|
|
21
|
+
this.iamActivateUserOnRegistration = false;
|
|
22
|
+
this.iamGoogleOAuthEnabled = false;
|
|
23
|
+
this.shouldQueueEmails = false;
|
|
24
|
+
this.shouldQueueSms = false;
|
|
25
|
+
}
|
|
26
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
27
|
+
return { authPagesLayout: { required: true, type: () => String }, authPagesTheme: { required: true, type: () => String }, appTitle: { required: true, type: () => String }, appLogo: { required: true, type: () => String }, appDescription: { required: true, type: () => String }, appTnc: { required: true, type: () => String }, appPrivacyPolicy: { required: true, type: () => String }, iamAllowPublicRegistration: { required: true, type: () => Boolean, default: false }, iamPasswordRegistrationEnabled: { required: true, type: () => Boolean, default: false }, iamPasswordLessRegistrationEnabled: { required: true, type: () => Boolean, default: false }, iamActivateUserOnRegistration: { required: true, type: () => Boolean, default: false }, iamDefaultRole: { required: true, type: () => String }, iamGoogleOAuthEnabled: { required: true, type: () => Boolean, default: false }, shouldQueueEmails: { required: true, type: () => Boolean, default: false }, shouldQueueSms: { required: true, type: () => Boolean, default: false } };
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.CreateSettingDto = CreateSettingDto;
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_2.IsOptional)(),
|
|
33
|
+
(0, class_validator_1.IsString)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], CreateSettingDto.prototype, "authPagesLayout", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_validator_2.IsOptional)(),
|
|
38
|
+
(0, class_validator_1.IsString)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], CreateSettingDto.prototype, "authPagesTheme", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_validator_2.IsOptional)(),
|
|
43
|
+
(0, class_validator_1.IsString)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], CreateSettingDto.prototype, "appTitle", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, class_validator_2.IsOptional)(),
|
|
48
|
+
(0, class_validator_1.IsString)(),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], CreateSettingDto.prototype, "appLogo", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_2.IsOptional)(),
|
|
53
|
+
(0, class_validator_1.IsString)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], CreateSettingDto.prototype, "appDescription", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, class_validator_2.IsOptional)(),
|
|
58
|
+
(0, class_validator_1.IsString)(),
|
|
59
|
+
__metadata("design:type", String)
|
|
60
|
+
], CreateSettingDto.prototype, "appTnc", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_validator_2.IsOptional)(),
|
|
63
|
+
(0, class_validator_1.IsString)(),
|
|
64
|
+
__metadata("design:type", String)
|
|
65
|
+
], CreateSettingDto.prototype, "appPrivacyPolicy", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, class_validator_2.IsOptional)(),
|
|
68
|
+
(0, class_validator_2.IsBoolean)(),
|
|
69
|
+
__metadata("design:type", Boolean)
|
|
70
|
+
], CreateSettingDto.prototype, "iamAllowPublicRegistration", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, class_validator_2.IsOptional)(),
|
|
73
|
+
(0, class_validator_2.IsBoolean)(),
|
|
74
|
+
__metadata("design:type", Boolean)
|
|
75
|
+
], CreateSettingDto.prototype, "iamPasswordRegistrationEnabled", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, class_validator_2.IsOptional)(),
|
|
78
|
+
(0, class_validator_2.IsBoolean)(),
|
|
79
|
+
__metadata("design:type", Boolean)
|
|
80
|
+
], CreateSettingDto.prototype, "iamPasswordLessRegistrationEnabled", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, class_validator_2.IsOptional)(),
|
|
83
|
+
(0, class_validator_2.IsBoolean)(),
|
|
84
|
+
__metadata("design:type", Boolean)
|
|
85
|
+
], CreateSettingDto.prototype, "iamActivateUserOnRegistration", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, class_validator_2.IsOptional)(),
|
|
88
|
+
(0, class_validator_1.IsString)(),
|
|
89
|
+
__metadata("design:type", String)
|
|
90
|
+
], CreateSettingDto.prototype, "iamDefaultRole", void 0);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, class_validator_2.IsOptional)(),
|
|
93
|
+
(0, class_validator_2.IsBoolean)(),
|
|
94
|
+
__metadata("design:type", Boolean)
|
|
95
|
+
], CreateSettingDto.prototype, "iamGoogleOAuthEnabled", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
(0, class_validator_2.IsOptional)(),
|
|
98
|
+
(0, class_validator_2.IsBoolean)(),
|
|
99
|
+
__metadata("design:type", Boolean)
|
|
100
|
+
], CreateSettingDto.prototype, "shouldQueueEmails", void 0);
|
|
101
|
+
__decorate([
|
|
102
|
+
(0, class_validator_2.IsOptional)(),
|
|
103
|
+
(0, class_validator_2.IsBoolean)(),
|
|
104
|
+
__metadata("design:type", Boolean)
|
|
105
|
+
], CreateSettingDto.prototype, "shouldQueueSms", void 0);
|
|
106
|
+
//# sourceMappingURL=create-setting.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-setting.dto.js","sourceRoot":"","sources":["../../src/dtos/create-setting.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAA2C;AAC3C,qDAAwD;AACxD,MAAa,gBAAgB;IAA7B;QA+BA,+BAA0B,GAAY,KAAK,CAAC;QAI5C,mCAA8B,GAAY,KAAK,CAAC;QAIhD,uCAAkC,GAAY,KAAK,CAAC;QAIpD,kCAA6B,GAAY,KAAK,CAAC;QAQ/C,0BAAqB,GAAY,KAAK,CAAC;QAIvC,sBAAiB,GAAY,KAAK,CAAC;QAInC,mBAAc,GAAY,KAAK,CAAC;KAC/B;;mdA7BqC,KAAK,oFAID,KAAK,wFAID,KAAK,mFAIV,KAAK,mIAQb,KAAK,uEAIT,KAAK,oEAIR,KAAK;;CAC9B;AA5DD,4CA4DC;AAzDD;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;yDACa;AAIxB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACY;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;kDACM;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;iDACK;AAIhB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACY;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;gDACI;AAIf;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;0DACc;AAIzB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;oEACgC;AAI5C;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;wEACoC;AAIhD;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;4EACwC;AAIpD;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;uEACmC;AAI/C;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACY;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;+DAC2B;AAIvC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;2DACuB;AAInC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;wDACoB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare class UpdateSettingDto {
|
|
2
|
+
id: number;
|
|
3
|
+
authPagesLayout: string;
|
|
4
|
+
authPagesTheme: string;
|
|
5
|
+
appTitle: string;
|
|
6
|
+
appLogo: string;
|
|
7
|
+
appDescription: string;
|
|
8
|
+
appTnc: string;
|
|
9
|
+
appPrivacyPolicy: string;
|
|
10
|
+
iamAllowPublicRegistration: boolean;
|
|
11
|
+
iamPasswordRegistrationEnabled: boolean;
|
|
12
|
+
iamPasswordLessRegistrationEnabled: boolean;
|
|
13
|
+
iamActivateUserOnRegistration: boolean;
|
|
14
|
+
iamDefaultRole: string;
|
|
15
|
+
iamGoogleOAuthEnabled: boolean;
|
|
16
|
+
shouldQueueEmails: boolean;
|
|
17
|
+
shouldQueueSms: boolean;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=update-setting.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-setting.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/update-setting.dto.ts"],"names":[],"mappings":"AACA,qBAAa,gBAAgB;IAGzB,EAAE,EAAE,MAAM,CAAC;IAIf,eAAe,EAAE,MAAM,CAAC;IAIxB,cAAc,EAAE,MAAM,CAAC;IAIvB,QAAQ,EAAE,MAAM,CAAC;IAIjB,OAAO,EAAE,MAAM,CAAC;IAIhB,cAAc,EAAE,MAAM,CAAC;IAIvB,MAAM,EAAE,MAAM,CAAC;IAIf,gBAAgB,EAAE,MAAM,CAAC;IAIzB,0BAA0B,EAAE,OAAO,CAAS;IAI5C,8BAA8B,EAAE,OAAO,CAAS;IAIhD,kCAAkC,EAAE,OAAO,CAAS;IAIpD,6BAA6B,EAAE,OAAO,CAAS;IAI/C,cAAc,EAAE,MAAM,CAAC;IAIvB,qBAAqB,EAAE,OAAO,CAAS;IAIvC,iBAAiB,EAAE,OAAO,CAAS;IAInC,cAAc,EAAE,OAAO,CAAS;CAC/B"}
|
|
@@ -0,0 +1,110 @@
|
|
|
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
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.UpdateSettingDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class UpdateSettingDto {
|
|
16
|
+
constructor() {
|
|
17
|
+
this.iamAllowPublicRegistration = false;
|
|
18
|
+
this.iamPasswordRegistrationEnabled = false;
|
|
19
|
+
this.iamPasswordLessRegistrationEnabled = false;
|
|
20
|
+
this.iamActivateUserOnRegistration = false;
|
|
21
|
+
this.iamGoogleOAuthEnabled = false;
|
|
22
|
+
this.shouldQueueEmails = false;
|
|
23
|
+
this.shouldQueueSms = false;
|
|
24
|
+
}
|
|
25
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
26
|
+
return { id: { required: true, type: () => Number }, authPagesLayout: { required: true, type: () => String }, authPagesTheme: { required: true, type: () => String }, appTitle: { required: true, type: () => String }, appLogo: { required: true, type: () => String }, appDescription: { required: true, type: () => String }, appTnc: { required: true, type: () => String }, appPrivacyPolicy: { required: true, type: () => String }, iamAllowPublicRegistration: { required: true, type: () => Boolean, default: false }, iamPasswordRegistrationEnabled: { required: true, type: () => Boolean, default: false }, iamPasswordLessRegistrationEnabled: { required: true, type: () => Boolean, default: false }, iamActivateUserOnRegistration: { required: true, type: () => Boolean, default: false }, iamDefaultRole: { required: true, type: () => String }, iamGoogleOAuthEnabled: { required: true, type: () => Boolean, default: false }, shouldQueueEmails: { required: true, type: () => Boolean, default: false }, shouldQueueSms: { required: true, type: () => Boolean, default: false } };
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.UpdateSettingDto = UpdateSettingDto;
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
(0, class_validator_1.IsInt)(),
|
|
33
|
+
__metadata("design:type", Number)
|
|
34
|
+
], UpdateSettingDto.prototype, "id", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsOptional)(),
|
|
37
|
+
(0, class_validator_1.IsString)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], UpdateSettingDto.prototype, "authPagesLayout", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_validator_1.IsOptional)(),
|
|
42
|
+
(0, class_validator_1.IsString)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], UpdateSettingDto.prototype, "authPagesTheme", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsOptional)(),
|
|
47
|
+
(0, class_validator_1.IsString)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], UpdateSettingDto.prototype, "appTitle", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_validator_1.IsOptional)(),
|
|
52
|
+
(0, class_validator_1.IsString)(),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], UpdateSettingDto.prototype, "appLogo", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_validator_1.IsOptional)(),
|
|
57
|
+
(0, class_validator_1.IsString)(),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], UpdateSettingDto.prototype, "appDescription", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, class_validator_1.IsOptional)(),
|
|
62
|
+
(0, class_validator_1.IsString)(),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], UpdateSettingDto.prototype, "appTnc", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_validator_1.IsOptional)(),
|
|
67
|
+
(0, class_validator_1.IsString)(),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], UpdateSettingDto.prototype, "appPrivacyPolicy", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, class_validator_1.IsOptional)(),
|
|
72
|
+
(0, class_validator_1.IsBoolean)(),
|
|
73
|
+
__metadata("design:type", Boolean)
|
|
74
|
+
], UpdateSettingDto.prototype, "iamAllowPublicRegistration", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, class_validator_1.IsOptional)(),
|
|
77
|
+
(0, class_validator_1.IsBoolean)(),
|
|
78
|
+
__metadata("design:type", Boolean)
|
|
79
|
+
], UpdateSettingDto.prototype, "iamPasswordRegistrationEnabled", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, class_validator_1.IsOptional)(),
|
|
82
|
+
(0, class_validator_1.IsBoolean)(),
|
|
83
|
+
__metadata("design:type", Boolean)
|
|
84
|
+
], UpdateSettingDto.prototype, "iamPasswordLessRegistrationEnabled", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, class_validator_1.IsOptional)(),
|
|
87
|
+
(0, class_validator_1.IsBoolean)(),
|
|
88
|
+
__metadata("design:type", Boolean)
|
|
89
|
+
], UpdateSettingDto.prototype, "iamActivateUserOnRegistration", void 0);
|
|
90
|
+
__decorate([
|
|
91
|
+
(0, class_validator_1.IsOptional)(),
|
|
92
|
+
(0, class_validator_1.IsString)(),
|
|
93
|
+
__metadata("design:type", String)
|
|
94
|
+
], UpdateSettingDto.prototype, "iamDefaultRole", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, class_validator_1.IsOptional)(),
|
|
97
|
+
(0, class_validator_1.IsBoolean)(),
|
|
98
|
+
__metadata("design:type", Boolean)
|
|
99
|
+
], UpdateSettingDto.prototype, "iamGoogleOAuthEnabled", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, class_validator_1.IsOptional)(),
|
|
102
|
+
(0, class_validator_1.IsBoolean)(),
|
|
103
|
+
__metadata("design:type", Boolean)
|
|
104
|
+
], UpdateSettingDto.prototype, "shouldQueueEmails", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
(0, class_validator_1.IsOptional)(),
|
|
107
|
+
(0, class_validator_1.IsBoolean)(),
|
|
108
|
+
__metadata("design:type", Boolean)
|
|
109
|
+
], UpdateSettingDto.prototype, "shouldQueueSms", void 0);
|
|
110
|
+
//# sourceMappingURL=update-setting.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-setting.dto.js","sourceRoot":"","sources":["../../src/dtos/update-setting.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAAwE;AACxE,MAAa,gBAAgB;IAA7B;QAmCA,+BAA0B,GAAY,KAAK,CAAC;QAI5C,mCAA8B,GAAY,KAAK,CAAC;QAIhD,uCAAkC,GAAY,KAAK,CAAC;QAIpD,kCAA6B,GAAY,KAAK,CAAC;QAQ/C,0BAAqB,GAAY,KAAK,CAAC;QAIvC,sBAAiB,GAAY,KAAK,CAAC;QAInC,mBAAc,GAAY,KAAK,CAAC;KAC/B;;+fA7BqC,KAAK,oFAID,KAAK,wFAID,KAAK,mFAIV,KAAK,mIAQb,KAAK,uEAIT,KAAK,oEAIR,KAAK;;CAC9B;AAhED,4CAgEC;AA7DG;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;;4CACG;AAIf;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;yDACa;AAIxB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACY;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;kDACM;AAIjB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;iDACK;AAIhB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACY;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;gDACI;AAIf;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;0DACc;AAIzB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;oEACgC;AAI5C;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;wEACoC;AAIhD;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;4EACwC;AAIpD;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;uEACmC;AAI/C;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;wDACY;AAIvB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;+DAC2B;AAIvC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;2DACuB;AAInC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;wDACoB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field-metadata.entity.d.ts","sourceRoot":"","sources":["../../src/entities/field-metadata.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,4BAA4B,EAAE,MAAM,0CAA0C,CAAC;AACxF,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAExD,qBACa,aAAc,SAAQ,YAAY;IAI3C,IAAI,EAAE,MAAM,CAAC;IAGb,WAAW,EAAE,MAAM,CAAC;IAGpB,WAAW,EAAE,MAAM,CAAC;IAIpB,IAAI,EAAE,MAAM,CAAC;IAGb,OAAO,EAAE,MAAM,CAAC;IAKhB,KAAK,EAAE,aAAa,CAAC;IAGrB,YAAY,EAAE,MAAM,CAAC;IAGrB,YAAY,EAAE,MAAM,CAAC;IAGrB,+BAA+B,EAAE,MAAM,CAAC;IAGxC,QAAQ,EAAE,OAAO,CAAC;IAGlB,MAAM,EAAE,OAAO,CAAC;IAGhB,OAAO,EAAE,OAAO,CAAC;IAGjB,cAAc,EAAE,MAAM,CAAC;IAGvB,WAAW,EAAE,MAAM,CAAC;IAGpB,KAAK,EAAE,OAAO,CAAC;IAGf,MAAM,EAAE,MAAM,CAAC;IAGf,GAAG,EAAE,MAAM,CAAC;IAGZ,GAAG,EAAE,MAAM,CAAC;IAGZ,OAAO,EAAE,OAAO,CAAC;IAGjB,UAAU,EAAE,MAAM,EAAE,CAAC;IAGrB,cAAc,EAAE,MAAM,CAAC;IAIvB,oBAAoB,EAAE,4BAA4B,CAAC;IAMnD,YAAY,EAAE,MAAM,CAAC;IAGrB,yBAAyB,EAAE,MAAM,CAAC;IAGlC,qBAAqB,EAAE,OAAO,CAAC;IAG/B,eAAe,EAAE,MAAM,CAAC;IAGxB,uBAAuB,EAAE,MAAM,CAAC;IAIhC,sBAAsB,EAAE,MAAM,CAAC;IAG/B,wBAAwB,EAAE,MAAM,CAAC;IAGjC,4BAA4B,EAAE,MAAM,CAAC;IAGrC,qBAAqB,EAAE,MAAM,EAAE,CAAC;IAGhC,kBAAkB,EAAE,MAAM,CAAY;IAMtC,0BAA0B,EAAE,MAAM,CAAC;IAGnC,8BAA8B,EAAE,MAAM,CAAC;IAGvC,sBAAsB,EAAE,MAAM,CAAC;IAG/B,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,kBAAkB,EAAE,OAAO,CAAC;IAG5B,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"field-metadata.entity.d.ts","sourceRoot":"","sources":["../../src/entities/field-metadata.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,4BAA4B,EAAE,MAAM,0CAA0C,CAAC;AACxF,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAExD,qBACa,aAAc,SAAQ,YAAY;IAI3C,IAAI,EAAE,MAAM,CAAC;IAGb,WAAW,EAAE,MAAM,CAAC;IAGpB,WAAW,EAAE,MAAM,CAAC;IAIpB,IAAI,EAAE,MAAM,CAAC;IAGb,OAAO,EAAE,MAAM,CAAC;IAKhB,KAAK,EAAE,aAAa,CAAC;IAGrB,YAAY,EAAE,MAAM,CAAC;IAGrB,YAAY,EAAE,MAAM,CAAC;IAGrB,+BAA+B,EAAE,MAAM,CAAC;IAGxC,QAAQ,EAAE,OAAO,CAAC;IAGlB,MAAM,EAAE,OAAO,CAAC;IAGhB,OAAO,EAAE,OAAO,CAAC;IAGjB,cAAc,EAAE,MAAM,CAAC;IAGvB,WAAW,EAAE,MAAM,CAAC;IAGpB,KAAK,EAAE,OAAO,CAAC;IAGf,MAAM,EAAE,MAAM,CAAC;IAGf,GAAG,EAAE,MAAM,CAAC;IAGZ,GAAG,EAAE,MAAM,CAAC;IAGZ,OAAO,EAAE,OAAO,CAAC;IAGjB,UAAU,EAAE,MAAM,EAAE,CAAC;IAGrB,cAAc,EAAE,MAAM,CAAC;IAIvB,oBAAoB,EAAE,4BAA4B,CAAC;IAMnD,YAAY,EAAE,MAAM,CAAC;IAGrB,yBAAyB,EAAE,MAAM,CAAC;IAGlC,qBAAqB,EAAE,OAAO,CAAC;IAG/B,eAAe,EAAE,MAAM,CAAC;IAGxB,uBAAuB,EAAE,MAAM,CAAC;IAIhC,sBAAsB,EAAE,MAAM,CAAC;IAG/B,wBAAwB,EAAE,MAAM,CAAC;IAGjC,4BAA4B,EAAE,MAAM,CAAC;IAGrC,qBAAqB,EAAE,MAAM,EAAE,CAAC;IAGhC,kBAAkB,EAAE,MAAM,CAAY;IAMtC,0BAA0B,EAAE,MAAM,CAAC;IAGnC,8BAA8B,EAAE,MAAM,CAAC;IAGvC,sBAAsB,EAAE,MAAM,CAAC;IAG/B,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,kBAAkB,EAAE,OAAO,CAAC;IAG5B,UAAU,EAAE,MAAM,CAAC;IAGnB,SAAS,EAAE,OAAO,CAAC;CACtB"}
|
|
@@ -21,7 +21,7 @@ let FieldMetadata = class FieldMetadata extends common_entity_1.CommonEntity {
|
|
|
21
21
|
this.selectionValueType = 'string';
|
|
22
22
|
}
|
|
23
23
|
static _OPENAPI_METADATA_FACTORY() {
|
|
24
|
-
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, description: { required: true, type: () => String }, type: { required: true, type: () => String }, ormType: { required: true, type: () => String }, model: { required: true, type: () => require("./model-metadata.entity").ModelMetadata }, defaultValue: { required: true, type: () => String }, regexPattern: { required: true, type: () => String }, regexPatternNotMatchingErrorMsg: { required: true, type: () => String }, required: { required: true, type: () => Boolean }, unique: { required: true, type: () => Boolean }, encrypt: { required: true, type: () => Boolean }, encryptionType: { required: true, type: () => String }, decryptWhen: { required: true, type: () => String }, index: { required: true, type: () => Boolean }, length: { required: true, type: () => Number }, max: { required: true, type: () => Number }, min: { required: true, type: () => Number }, private: { required: true, type: () => Boolean }, mediaTypes: { required: true, type: () => [String] }, mediaMaxSizeKb: { required: true, type: () => Number }, mediaStorageProvider: { required: true, type: () => require("./media-storage-provider-metadata.entity").MediaStorageProviderMetadata }, relationType: { required: true, type: () => String }, relationModelSingularName: { required: true, type: () => String }, relationCreateInverse: { required: true, type: () => Boolean }, relationCascade: { required: true, type: () => String }, relationModelModuleName: { required: true, type: () => String }, relationModelFieldName: { required: true, type: () => String }, selectionDynamicProvider: { required: true, type: () => String }, selectionDynamicProviderCtxt: { required: true, type: () => String }, selectionStaticValues: { required: true, type: () => [String] }, selectionValueType: { required: true, type: () => String, default: "string" }, computedFieldValueProvider: { required: true, type: () => String }, computedFieldValueProviderCtxt: { required: true, type: () => String }, computedFieldValueType: { required: true, type: () => String }, uuid: { required: true, type: () => String }, isSystem: { required: true, type: () => Boolean }, isMarkedForRemoval: { required: true, type: () => Boolean }, columnName: { required: true, type: () => String } };
|
|
24
|
+
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, description: { required: true, type: () => String }, type: { required: true, type: () => String }, ormType: { required: true, type: () => String }, model: { required: true, type: () => require("./model-metadata.entity").ModelMetadata }, defaultValue: { required: true, type: () => String }, regexPattern: { required: true, type: () => String }, regexPatternNotMatchingErrorMsg: { required: true, type: () => String }, required: { required: true, type: () => Boolean }, unique: { required: true, type: () => Boolean }, encrypt: { required: true, type: () => Boolean }, encryptionType: { required: true, type: () => String }, decryptWhen: { required: true, type: () => String }, index: { required: true, type: () => Boolean }, length: { required: true, type: () => Number }, max: { required: true, type: () => Number }, min: { required: true, type: () => Number }, private: { required: true, type: () => Boolean }, mediaTypes: { required: true, type: () => [String] }, mediaMaxSizeKb: { required: true, type: () => Number }, mediaStorageProvider: { required: true, type: () => require("./media-storage-provider-metadata.entity").MediaStorageProviderMetadata }, relationType: { required: true, type: () => String }, relationModelSingularName: { required: true, type: () => String }, relationCreateInverse: { required: true, type: () => Boolean }, relationCascade: { required: true, type: () => String }, relationModelModuleName: { required: true, type: () => String }, relationModelFieldName: { required: true, type: () => String }, selectionDynamicProvider: { required: true, type: () => String }, selectionDynamicProviderCtxt: { required: true, type: () => String }, selectionStaticValues: { required: true, type: () => [String] }, selectionValueType: { required: true, type: () => String, default: "string" }, computedFieldValueProvider: { required: true, type: () => String }, computedFieldValueProviderCtxt: { required: true, type: () => String }, computedFieldValueType: { required: true, type: () => String }, uuid: { required: true, type: () => String }, isSystem: { required: true, type: () => Boolean }, isMarkedForRemoval: { required: true, type: () => Boolean }, columnName: { required: true, type: () => String }, isUserKey: { required: true, type: () => Boolean } };
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
exports.FieldMetadata = FieldMetadata;
|
|
@@ -184,6 +184,10 @@ __decorate([
|
|
|
184
184
|
(0, typeorm_1.Column)({ name: 'column_name', nullable: true }),
|
|
185
185
|
__metadata("design:type", String)
|
|
186
186
|
], FieldMetadata.prototype, "columnName", void 0);
|
|
187
|
+
__decorate([
|
|
188
|
+
(0, typeorm_1.Column)({ name: "isUserKey", default: false }),
|
|
189
|
+
__metadata("design:type", Boolean)
|
|
190
|
+
], FieldMetadata.prototype, "isUserKey", void 0);
|
|
187
191
|
exports.FieldMetadata = FieldMetadata = __decorate([
|
|
188
192
|
(0, typeorm_1.Entity)("ss_field_metadata")
|
|
189
193
|
], FieldMetadata);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"field-metadata.entity.js","sourceRoot":"","sources":["../../src/entities/field-metadata.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAA0D;AAC1D,qCAAuE;AACvE,qGAAwF;AACxF,mEAAwD;AAGjD,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,4BAAY;IAAxC;;QAyGH,uBAAkB,GAAW,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"field-metadata.entity.js","sourceRoot":"","sources":["../../src/entities/field-metadata.entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model-metadata.entity.d.ts","sourceRoot":"","sources":["../../src/entities/model-metadata.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,qBACa,aAAc,SAAQ,YAAY;IAG3C,YAAY,EAAE,MAAM,CAAC;IAIrB,SAAS,EAAE,MAAM,CAAC;IAIlB,UAAU,EAAE,MAAM,CAAC;IAGnB,WAAW,EAAE,MAAM,CAAC;IAGpB,WAAW,EAAE,MAAM,CAAC;IAGpB,UAAU,EAAE,MAAM,CAAC;IAInB,cAAc,EAAE,MAAM,CAAC;IAGvB,gBAAgB,EAAE,OAAO,CAAC;IAG1B,mBAAmB,EAAE,OAAO,CAAC;IAG7B,oBAAoB,EAAE,OAAO,CAAC;IAG9B,MAAM,EAAE,aAAa,EAAE,CAAC;IAKxB,MAAM,EAAE,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"model-metadata.entity.d.ts","sourceRoot":"","sources":["../../src/entities/model-metadata.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE1D,qBACa,aAAc,SAAQ,YAAY;IAG3C,YAAY,EAAE,MAAM,CAAC;IAIrB,SAAS,EAAE,MAAM,CAAC;IAIlB,UAAU,EAAE,MAAM,CAAC;IAGnB,WAAW,EAAE,MAAM,CAAC;IAGpB,WAAW,EAAE,MAAM,CAAC;IAGpB,UAAU,EAAE,MAAM,CAAC;IAInB,cAAc,EAAE,MAAM,CAAC;IAGvB,gBAAgB,EAAE,OAAO,CAAC;IAG1B,mBAAmB,EAAE,OAAO,CAAC;IAG7B,oBAAoB,EAAE,OAAO,CAAC;IAG9B,MAAM,EAAE,aAAa,EAAE,CAAC;IAKxB,MAAM,EAAE,cAAc,CAAC;IAOvB,YAAY,EAAE,aAAa,CAAC;IAG5B,QAAQ,EAAE,OAAO,CAAC;CACrB"}
|
|
@@ -17,7 +17,7 @@ const field_metadata_entity_1 = require("./field-metadata.entity");
|
|
|
17
17
|
const module_metadata_entity_1 = require("./module-metadata.entity");
|
|
18
18
|
let ModelMetadata = class ModelMetadata extends common_entity_1.CommonEntity {
|
|
19
19
|
static _OPENAPI_METADATA_FACTORY() {
|
|
20
|
-
return { singularName: { required: true, type: () => String }, tableName: { required: true, type: () => String }, pluralName: { required: true, type: () => String }, displayName: { required: true, type: () => String }, description: { required: true, type: () => String }, dataSource: { required: true, type: () => String }, dataSourceType: { required: true, type: () => String }, enableSoftDelete: { required: true, type: () => Boolean }, enableAuditTracking: { required: true, type: () => Boolean }, internationalisation: { required: true, type: () => Boolean }, fields: { required: true, type: () => [require("./field-metadata.entity").FieldMetadata] }, module: { required: true, type: () => require("./module-metadata.entity").ModuleMetadata },
|
|
20
|
+
return { singularName: { required: true, type: () => String }, tableName: { required: true, type: () => String }, pluralName: { required: true, type: () => String }, displayName: { required: true, type: () => String }, description: { required: true, type: () => String }, dataSource: { required: true, type: () => String }, dataSourceType: { required: true, type: () => String }, enableSoftDelete: { required: true, type: () => Boolean }, enableAuditTracking: { required: true, type: () => Boolean }, internationalisation: { required: true, type: () => Boolean }, fields: { required: true, type: () => [require("./field-metadata.entity").FieldMetadata] }, module: { required: true, type: () => require("./module-metadata.entity").ModuleMetadata }, userKeyField: { required: true, type: () => require("./field-metadata.entity").FieldMetadata }, isSystem: { required: true, type: () => Boolean } };
|
|
21
21
|
}
|
|
22
22
|
};
|
|
23
23
|
exports.ModelMetadata = ModelMetadata;
|
|
@@ -74,10 +74,6 @@ __decorate([
|
|
|
74
74
|
(0, typeorm_1.JoinColumn)({ name: 'module_id', referencedColumnName: 'id' }),
|
|
75
75
|
__metadata("design:type", module_metadata_entity_1.ModuleMetadata)
|
|
76
76
|
], ModelMetadata.prototype, "module", void 0);
|
|
77
|
-
__decorate([
|
|
78
|
-
(0, typeorm_1.Column)({ name: "is_exportable", default: false }),
|
|
79
|
-
__metadata("design:type", Boolean)
|
|
80
|
-
], ModelMetadata.prototype, "isExportable", void 0);
|
|
81
77
|
__decorate([
|
|
82
78
|
(0, typeorm_1.ManyToOne)(() => field_metadata_entity_1.FieldMetadata, { onDelete: 'SET NULL' }),
|
|
83
79
|
__metadata("design:type", field_metadata_entity_1.FieldMetadata)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model-metadata.entity.js","sourceRoot":"","sources":["../../src/entities/model-metadata.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAA0D;AAC1D,qCAAkF;AAClF,mEAAwD;AACxD,qEAA0D;AAGnD,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,4BAAY;;;;
|
|
1
|
+
{"version":3,"file":"model-metadata.entity.js","sourceRoot":"","sources":["../../src/entities/model-metadata.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAA0D;AAC1D,qCAAkF;AAClF,mEAAwD;AACxD,qEAA0D;AAGnD,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,4BAAY;;;;CAoD9C,CAAA;AApDY,sCAAa;AAGtB;IAFC,IAAA,eAAK,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACvB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,CAAC;;mDACb;AAIrB;IAFC,IAAA,eAAK,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACvB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC7B;AAIlB;IAFC,IAAA,eAAK,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACvB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;;iDACb;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,CAAC;;kDACb;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;;iDACb;AAInB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;;qDACd;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;uDAC5B;AAG1B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;0DAC7B;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,sBAAsB,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;2DAC3B;AAG9B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,qCAAa,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC;;6CAC/B;AAKxB;IAHC,IAAA,eAAK,GAAE;IACP,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAc,EAAE,EAAE,QAAQ,EAAE,UAAU,EAAE,CAAC;IACzD,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,oBAAoB,EAAE,IAAI,EAAE,CAAC;8BACtD,uCAAc;6CAAC;AAOvB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,qCAAa,EAAE,EAAE,QAAQ,EAAE,UAAU,EAAE,CAAC;8BAC3C,qCAAa;mDAAC;AAG5B;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;+CACT;wBAnDT,aAAa;IADzB,IAAA,gBAAM,EAAC,mBAAmB,CAAC;GACf,aAAa,CAoDzB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CommonEntity } from 'src/entities/common.entity';
|
|
2
|
+
export declare class Setting extends CommonEntity {
|
|
3
|
+
authPagesLayout: string;
|
|
4
|
+
authPagesTheme: string;
|
|
5
|
+
appTitle: string;
|
|
6
|
+
appLogo: string;
|
|
7
|
+
appDescription: string;
|
|
8
|
+
appTnc: string;
|
|
9
|
+
appPrivacyPolicy: string;
|
|
10
|
+
iamAllowPublicRegistration: boolean;
|
|
11
|
+
iamPasswordRegistrationEnabled: boolean;
|
|
12
|
+
iamPasswordLessRegistrationEnabled: boolean;
|
|
13
|
+
iamActivateUserOnRegistration: boolean;
|
|
14
|
+
iamDefaultRole: string;
|
|
15
|
+
iamGoogleOAuthEnabled: boolean;
|
|
16
|
+
shouldQueueEmails: boolean;
|
|
17
|
+
shouldQueueSms: boolean;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=setting.entity.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"setting.entity.d.ts","sourceRoot":"","sources":["../../src/entities/setting.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAEzD,qBACa,OAAQ,SAAQ,YAAY;IAEzC,eAAe,EAAE,MAAM,CAAC;IAGxB,cAAc,EAAE,MAAM,CAAC;IAGvB,QAAQ,EAAE,MAAM,CAAC;IAGjB,OAAO,EAAE,MAAM,CAAC;IAGhB,cAAc,EAAE,MAAM,CAAC;IAGvB,MAAM,EAAE,MAAM,CAAC;IAGf,gBAAgB,EAAE,MAAM,CAAC;IAGzB,0BAA0B,EAAE,OAAO,CAAS;IAG5C,8BAA8B,EAAE,OAAO,CAAS;IAGhD,kCAAkC,EAAE,OAAO,CAAS;IAGpD,6BAA6B,EAAE,OAAO,CAAS;IAG/C,cAAc,EAAE,MAAM,CAAC;IAGvB,qBAAqB,EAAE,OAAO,CAAS;IAGvC,iBAAiB,EAAE,OAAO,CAAS;IAGnC,cAAc,EAAE,OAAO,CAAS;CAC/B"}
|
|
@@ -0,0 +1,95 @@
|
|
|
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
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.Setting = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const common_entity_1 = require("./common.entity");
|
|
15
|
+
const typeorm_1 = require("typeorm");
|
|
16
|
+
let Setting = class Setting extends common_entity_1.CommonEntity {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments);
|
|
19
|
+
this.iamAllowPublicRegistration = false;
|
|
20
|
+
this.iamPasswordRegistrationEnabled = false;
|
|
21
|
+
this.iamPasswordLessRegistrationEnabled = false;
|
|
22
|
+
this.iamActivateUserOnRegistration = false;
|
|
23
|
+
this.iamGoogleOAuthEnabled = false;
|
|
24
|
+
this.shouldQueueEmails = false;
|
|
25
|
+
this.shouldQueueSms = false;
|
|
26
|
+
}
|
|
27
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
28
|
+
return { authPagesLayout: { required: true, type: () => String }, authPagesTheme: { required: true, type: () => String }, appTitle: { required: true, type: () => String }, appLogo: { required: true, type: () => String }, appDescription: { required: true, type: () => String }, appTnc: { required: true, type: () => String }, appPrivacyPolicy: { required: true, type: () => String }, iamAllowPublicRegistration: { required: true, type: () => Boolean, default: false }, iamPasswordRegistrationEnabled: { required: true, type: () => Boolean, default: false }, iamPasswordLessRegistrationEnabled: { required: true, type: () => Boolean, default: false }, iamActivateUserOnRegistration: { required: true, type: () => Boolean, default: false }, iamDefaultRole: { required: true, type: () => String }, iamGoogleOAuthEnabled: { required: true, type: () => Boolean, default: false }, shouldQueueEmails: { required: true, type: () => Boolean, default: false }, shouldQueueSms: { required: true, type: () => Boolean, default: false } };
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
exports.Setting = Setting;
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], Setting.prototype, "authPagesLayout", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], Setting.prototype, "authPagesTheme", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], Setting.prototype, "appTitle", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], Setting.prototype, "appLogo", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], Setting.prototype, "appDescription", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], Setting.prototype, "appTnc", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], Setting.prototype, "appPrivacyPolicy", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: true, default: false }),
|
|
62
|
+
__metadata("design:type", Boolean)
|
|
63
|
+
], Setting.prototype, "iamAllowPublicRegistration", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: true, default: false }),
|
|
66
|
+
__metadata("design:type", Boolean)
|
|
67
|
+
], Setting.prototype, "iamPasswordRegistrationEnabled", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: true, default: false }),
|
|
70
|
+
__metadata("design:type", Boolean)
|
|
71
|
+
], Setting.prototype, "iamPasswordLessRegistrationEnabled", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: true, default: false }),
|
|
74
|
+
__metadata("design:type", Boolean)
|
|
75
|
+
], Setting.prototype, "iamActivateUserOnRegistration", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], Setting.prototype, "iamDefaultRole", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: true, default: false }),
|
|
82
|
+
__metadata("design:type", Boolean)
|
|
83
|
+
], Setting.prototype, "iamGoogleOAuthEnabled", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: true, default: false }),
|
|
86
|
+
__metadata("design:type", Boolean)
|
|
87
|
+
], Setting.prototype, "shouldQueueEmails", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, typeorm_1.Column)({ type: "boolean", nullable: true, default: false }),
|
|
90
|
+
__metadata("design:type", Boolean)
|
|
91
|
+
], Setting.prototype, "shouldQueueSms", void 0);
|
|
92
|
+
exports.Setting = Setting = __decorate([
|
|
93
|
+
(0, typeorm_1.Entity)("ss_setting")
|
|
94
|
+
], Setting);
|
|
95
|
+
//# sourceMappingURL=setting.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"setting.entity.js","sourceRoot":"","sources":["../../src/entities/setting.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAAyD;AACzD,qCAAsC;AAE/B,IAAM,OAAO,GAAb,MAAM,OAAQ,SAAQ,4BAAY;IAAlC;;QAuBP,+BAA0B,GAAY,KAAK,CAAC;QAG5C,mCAA8B,GAAY,KAAK,CAAC;QAGhD,uCAAkC,GAAY,KAAK,CAAC;QAGpD,kCAA6B,GAAY,KAAK,CAAC;QAM/C,0BAAqB,GAAY,KAAK,CAAC;QAGvC,sBAAiB,GAAY,KAAK,CAAC;QAGnC,mBAAc,GAAY,KAAK,CAAC;KAC/B;;mdAtBqC,KAAK,oFAGD,KAAK,wFAGD,KAAK,mFAGV,KAAK,mIAMb,KAAK,uEAGT,KAAK,oEAGR,KAAK;;CAC9B,CAAA;AA7CY,0BAAO;AAEpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACpB;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACrB;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCAC3B;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCAC5B;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACrB;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uCAC7B;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACnB;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;2DAChB;AAG5C;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;+DACZ;AAGhD;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;mEACR;AAGpD;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;8DACb;AAG/C;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACrB;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;sDACrB;AAGvC;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;kDACzB;AAGnC;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;+CAC5B;kBA5CnB,OAAO;IADnB,IAAA,gBAAM,EAAC,YAAY,CAAC;GACR,OAAO,CA6CnB"}
|
package/dist/index.d.ts
CHANGED
|
@@ -73,6 +73,8 @@ export * from './dtos/update-role-metadata.dto';
|
|
|
73
73
|
export * from './dtos/update-sms-template.dto';
|
|
74
74
|
export * from './dtos/update-user.dto';
|
|
75
75
|
export * from './dtos/update-view-metadata.dto';
|
|
76
|
+
export * from './dtos/create-setting.dto';
|
|
77
|
+
export * from './dtos/update-setting.dto';
|
|
76
78
|
export * from './entities/action-metadata.entity';
|
|
77
79
|
export * from './entities/common.entity';
|
|
78
80
|
export * from './entities/email-attachment.entity';
|
|
@@ -92,6 +94,7 @@ export * from './entities/sms-template.entity';
|
|
|
92
94
|
export * from './entities/user-password-history.entity';
|
|
93
95
|
export * from './entities/user.entity';
|
|
94
96
|
export * from './entities/view-metadata.entity';
|
|
97
|
+
export * from './entities/setting.entity';
|
|
95
98
|
export * from './enums/auth-type.enum';
|
|
96
99
|
export * from './filters/http-exception.filter';
|
|
97
100
|
export * from './guards/access-token.guard';
|
|
@@ -190,6 +193,7 @@ export * from './services/solid-introspect.service';
|
|
|
190
193
|
export * from './services/user.service';
|
|
191
194
|
export * from './services/view-metadata.service';
|
|
192
195
|
export * from './services/whatsapp/Msg91WhatsappService';
|
|
196
|
+
export * from './services/setting.service';
|
|
193
197
|
export * from './subscribers/model.subscriber';
|
|
194
198
|
export * from './subscribers/softDeleteAwareEventSubscriber.subscriber';
|
|
195
199
|
export * from './transformers/array-transformer';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAA;AACxC,cAAc,mBAAmB,CAAA;AACjC,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,yBAAyB,CAAA;AAEvC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA;AACnC,cAAc,wBAAwB,CAAA;AAEtC,cAAc,oCAAoC,CAAA;AAClD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gDAAgD,CAAA;AAC9D,cAAc,uCAAuC,CAAA;AACrD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,2CAA2C,CAAA;AACzD,cAAc,8CAA8C,CAAA;AAC5D,cAAc,sCAAsC,CAAA;AAEpD,cAAc,0BAA0B,CAAA;AACxC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,kCAAkC,CAAA;AAChD,cAAc,kCAAkC,CAAA;AAChD,cAAc,kCAAkC,CAAA;AAChD,cAAc,mDAAmD,CAAA;AACjE,cAAc,yBAAyB,CAAA;AACvC,cAAc,sCAAsC,CAAA;AACpD,cAAc,2BAA2B,CAAA;AACzC,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uCAAuC,CAAA;AACrD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,wBAAwB,CAAA;AACtC,cAAc,iCAAiC,CAAA;AAC/C,cAAc,wBAAwB,CAAA;AACtC,cAAc,qCAAqC,CAAA;AACnD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,wBAAwB,CAAA;AACtC,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,kBAAkB,CAAA;AAChC,cAAc,0BAA0B,CAAA;AACxC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,oCAAoC,CAAA;AAClD,cAAc,oBAAoB,CAAA;AAClC,cAAc,oBAAoB,CAAA;AAClC,cAAc,wBAAwB,CAAA;AACtC,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,kCAAkC,CAAA;AAChD,cAAc,0CAA0C,CAAA;AACxD,cAAc,yBAAyB,CAAA;AACvC,cAAc,sCAAsC,CAAA;AACpD,cAAc,2BAA2B,CAAA;AACzC,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uCAAuC,CAAA;AACrD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,wBAAwB,CAAA;AACtC,cAAc,iCAAiC,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -89,6 +89,8 @@ __exportStar(require("./dtos/update-role-metadata.dto"), exports);
|
|
|
89
89
|
__exportStar(require("./dtos/update-sms-template.dto"), exports);
|
|
90
90
|
__exportStar(require("./dtos/update-user.dto"), exports);
|
|
91
91
|
__exportStar(require("./dtos/update-view-metadata.dto"), exports);
|
|
92
|
+
__exportStar(require("./dtos/create-setting.dto"), exports);
|
|
93
|
+
__exportStar(require("./dtos/update-setting.dto"), exports);
|
|
92
94
|
__exportStar(require("./entities/action-metadata.entity"), exports);
|
|
93
95
|
__exportStar(require("./entities/common.entity"), exports);
|
|
94
96
|
__exportStar(require("./entities/email-attachment.entity"), exports);
|
|
@@ -108,6 +110,7 @@ __exportStar(require("./entities/sms-template.entity"), exports);
|
|
|
108
110
|
__exportStar(require("./entities/user-password-history.entity"), exports);
|
|
109
111
|
__exportStar(require("./entities/user.entity"), exports);
|
|
110
112
|
__exportStar(require("./entities/view-metadata.entity"), exports);
|
|
113
|
+
__exportStar(require("./entities/setting.entity"), exports);
|
|
111
114
|
__exportStar(require("./enums/auth-type.enum"), exports);
|
|
112
115
|
__exportStar(require("./filters/http-exception.filter"), exports);
|
|
113
116
|
__exportStar(require("./guards/access-token.guard"), exports);
|
|
@@ -206,6 +209,7 @@ __exportStar(require("./services/solid-introspect.service"), exports);
|
|
|
206
209
|
__exportStar(require("./services/user.service"), exports);
|
|
207
210
|
__exportStar(require("./services/view-metadata.service"), exports);
|
|
208
211
|
__exportStar(require("./services/whatsapp/Msg91WhatsappService"), exports);
|
|
212
|
+
__exportStar(require("./services/setting.service"), exports);
|
|
209
213
|
__exportStar(require("./subscribers/model.subscriber"), exports);
|
|
210
214
|
__exportStar(require("./subscribers/softDeleteAwareEventSubscriber.subscriber"), exports);
|
|
211
215
|
__exportStar(require("./transformers/array-transformer"), exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAwC;AACxC,oDAAiC;AACjC,mEAAgD;AAChD,oEAAiD;AACjD,mEAAgD;AAChD,0DAAuC;AAEvC,8DAA2C;AAC3C,yDAAsC;AACtC,sDAAmC;AACnC,yDAAsC;AAEtC,qEAAkD;AAClD,8DAA2C;AAC3C,iFAA8D;AAC9D,wEAAqD;AACrD,kEAA+C;AAC/C,gEAA6C;AAC7C,+DAA4C;AAC5C,4EAAyD;AACzD,+EAA4D;AAC5D,uEAAoD;AAEpD,2DAAwC;AACxC,6DAA0C;AAC1C,qEAAkD;AAClD,oEAAiD;AACjD,qEAAkD;AAClD,mEAAgD;AAChD,mEAAgD;AAChD,mEAAgD;AAChD,oFAAiE;AACjE,0DAAuC;AACvC,uEAAoD;AACpD,4DAAyC;AACzC,mEAAgD;AAChD,oEAAiD;AACjD,qEAAkD;AAClD,+DAA4C;AAC5C,wEAAqD;AACrD,kEAA+C;AAC/C,8DAA2C;AAC3C,iEAA8C;AAC9C,yDAAsC;AACtC,kEAA+C;AAC/C,yDAAsC;AACtC,sEAAmD;AACnD,qEAAkD;AAClD,oEAAiD;AACjD,+DAA4C;AAC5C,wDAAqC;AACrC,6DAA0C;AAC1C,yDAAsC;AACtC,yDAAsC;AACtC,8DAA2C;AAC3C,mDAAgC;AAChC,2DAAwC;AACxC,8DAA2C;AAC3C,qEAAkD;AAClD,qDAAkC;AAClC,qDAAkC;AAClC,yDAAsC;AACtC,oEAAiD;AACjD,mEAAgD;AAChD,mEAAgD;AAChD,2EAAwD;AACxD,0DAAuC;AACvC,uEAAoD;AACpD,4DAAyC;AACzC,mEAAgD;AAChD,oEAAiD;AACjD,qEAAkD;AAClD,+DAA4C;AAC5C,wEAAqD;AACrD,kEAA+C;AAC/C,iEAA8C;AAC9C,yDAAsC;AACtC,kEAA+C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|