@solidstarters/solid-core 1.2.57 → 1.2.59
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/config/iam.config.d.ts +2 -0
- package/dist/config/iam.config.d.ts.map +1 -1
- package/dist/config/iam.config.js +1 -0
- package/dist/config/iam.config.js.map +1 -1
- package/dist/controllers/chatter-message-details.controller.d.ts +41 -0
- package/dist/controllers/chatter-message-details.controller.d.ts.map +1 -0
- package/dist/controllers/chatter-message-details.controller.js +179 -0
- package/dist/controllers/chatter-message-details.controller.js.map +1 -0
- package/dist/controllers/chatter-message.controller.d.ts +44 -0
- package/dist/controllers/chatter-message.controller.d.ts.map +1 -0
- package/dist/controllers/chatter-message.controller.js +199 -0
- package/dist/controllers/chatter-message.controller.js.map +1 -0
- package/dist/controllers/setting.controller.d.ts +3 -0
- package/dist/controllers/setting.controller.d.ts.map +1 -1
- package/dist/controllers/setting.controller.js +23 -0
- package/dist/controllers/setting.controller.js.map +1 -1
- package/dist/dtos/create-chatter-message-details.dto.d.ts +10 -0
- package/dist/dtos/create-chatter-message-details.dto.d.ts.map +1 -0
- package/dist/dtos/create-chatter-message-details.dto.js +66 -0
- package/dist/dtos/create-chatter-message-details.dto.js.map +1 -0
- package/dist/dtos/create-chatter-message.dto.d.ts +10 -0
- package/dist/dtos/create-chatter-message.dto.d.ts.map +1 -0
- package/dist/dtos/create-chatter-message.dto.js +65 -0
- package/dist/dtos/create-chatter-message.dto.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 +6 -1
- package/dist/dtos/create-field-metadata.dto.js.map +1 -1
- package/dist/dtos/create-setting.dto.d.ts +2 -15
- package/dist/dtos/create-setting.dto.d.ts.map +1 -1
- package/dist/dtos/create-setting.dto.js +6 -77
- package/dist/dtos/create-setting.dto.js.map +1 -1
- package/dist/dtos/post-chatter-message.dto.d.ts +7 -0
- package/dist/dtos/post-chatter-message.dto.d.ts.map +1 -0
- package/dist/dtos/post-chatter-message.dto.js +41 -0
- package/dist/dtos/post-chatter-message.dto.js.map +1 -0
- package/dist/dtos/update-chatter-message-details.dto.d.ts +11 -0
- package/dist/dtos/update-chatter-message-details.dto.d.ts.map +1 -0
- package/dist/dtos/update-chatter-message-details.dto.js +70 -0
- package/dist/dtos/update-chatter-message-details.dto.js.map +1 -0
- package/dist/dtos/update-chatter-message.dto.d.ts +11 -0
- package/dist/dtos/update-chatter-message.dto.d.ts.map +1 -0
- package/dist/dtos/update-chatter-message.dto.js +74 -0
- package/dist/dtos/update-chatter-message.dto.js.map +1 -0
- package/dist/dtos/update-setting.dto.d.ts +2 -15
- package/dist/dtos/update-setting.dto.d.ts.map +1 -1
- package/dist/dtos/update-setting.dto.js +6 -77
- package/dist/dtos/update-setting.dto.js.map +1 -1
- package/dist/dtos/update-settings.dto.d.ts +4 -0
- package/dist/dtos/update-settings.dto.d.ts.map +1 -0
- package/dist/dtos/update-settings.dto.js +26 -0
- package/dist/dtos/update-settings.dto.js.map +1 -0
- package/dist/entities/chatter-message-details.entity.d.ts +11 -0
- package/dist/entities/chatter-message-details.entity.d.ts.map +1 -0
- package/dist/entities/chatter-message-details.entity.js +52 -0
- package/dist/entities/chatter-message-details.entity.js.map +1 -0
- package/dist/entities/chatter-message.entity.d.ts +11 -0
- package/dist/entities/chatter-message.entity.d.ts.map +1 -0
- package/dist/entities/chatter-message.entity.js +53 -0
- package/dist/entities/chatter-message.entity.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/setting.entity.d.ts +2 -15
- package/dist/entities/setting.entity.d.ts.map +1 -1
- package/dist/entities/setting.entity.js +4 -65
- package/dist/entities/setting.entity.js.map +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/seeders/module-metadata-seeder.service.d.ts.map +1 -1
- package/dist/seeders/module-metadata-seeder.service.js +1 -18
- package/dist/seeders/module-metadata-seeder.service.js.map +1 -1
- package/dist/seeders/seed-data/solid-core-metadata.json +525 -176
- package/dist/services/authentication.service.d.ts +3 -1
- package/dist/services/authentication.service.d.ts.map +1 -1
- package/dist/services/authentication.service.js +11 -8
- package/dist/services/authentication.service.js.map +1 -1
- package/dist/services/chatter-message-details.service.d.ts +24 -0
- package/dist/services/chatter-message-details.service.d.ts.map +1 -0
- package/dist/services/chatter-message-details.service.js +59 -0
- package/dist/services/chatter-message-details.service.js.map +1 -0
- package/dist/services/chatter-message.service.d.ts +37 -0
- package/dist/services/chatter-message.service.d.ts.map +1 -0
- package/dist/services/chatter-message.service.js +279 -0
- package/dist/services/chatter-message.service.js.map +1 -0
- package/dist/services/crud.service.d.ts +3 -1
- package/dist/services/crud.service.d.ts.map +1 -1
- package/dist/services/crud.service.js +43 -3
- package/dist/services/crud.service.js.map +1 -1
- package/dist/services/setting.service.d.ts +4 -0
- package/dist/services/setting.service.d.ts.map +1 -1
- package/dist/services/setting.service.js +139 -7
- package/dist/services/setting.service.js.map +1 -1
- package/dist/services/user-context.service.d.ts +10 -0
- package/dist/services/user-context.service.d.ts.map +1 -0
- package/dist/services/user-context.service.js +42 -0
- package/dist/services/user-context.service.js.map +1 -0
- package/dist/solid-core.module.d.ts.map +1 -1
- package/dist/solid-core.module.js +18 -2
- package/dist/solid-core.module.js.map +1 -1
- package/dist/subscribers/audit.subscriber.d.ts +17 -0
- package/dist/subscribers/audit.subscriber.d.ts.map +1 -0
- package/dist/subscribers/audit.subscriber.js +83 -0
- package/dist/subscribers/audit.subscriber.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/config/iam.config.ts +1 -0
- package/src/controllers/chatter-message-details.controller.ts +92 -0
- package/src/controllers/chatter-message.controller.ts +105 -0
- package/src/controllers/setting.controller.ts +13 -1
- package/src/dtos/create-chatter-message-details.dto.ts +40 -0
- package/src/dtos/create-chatter-message.dto.ts +34 -0
- package/src/dtos/create-field-metadata.dto.ts +4 -0
- package/src/dtos/create-setting.dto.ts +10 -59
- package/src/dtos/post-chatter-message.dto.ts +19 -0
- package/src/dtos/update-chatter-message-details.dto.ts +43 -0
- package/src/dtos/update-chatter-message.dto.ts +41 -0
- package/src/dtos/update-setting.dto.ts +10 -60
- package/src/dtos/update-settings.dto.ts +7 -0
- package/src/entities/chatter-message-details.entity.ts +25 -0
- package/src/entities/chatter-message.entity.ts +22 -0
- package/src/entities/field-metadata.entity.ts +3 -0
- package/src/entities/setting.entity.ts +8 -46
- package/src/index.ts +10 -2
- package/src/seeders/module-metadata-seeder.service.ts +1 -19
- package/src/seeders/seed-data/solid-core-metadata.json +526 -177
- package/src/services/authentication.service.ts +8 -6
- package/src/services/chatter-message-details.service.ts +34 -0
- package/src/services/chatter-message.service.ts +301 -0
- package/src/services/crud.service.ts +10 -2
- package/src/services/setting.service.ts +163 -14
- package/src/services/user-context.service.ts +31 -0
- package/src/solid-core.module.ts +18 -3
- package/src/subscribers/audit.subscriber.ts +73 -0
|
@@ -0,0 +1,74 @@
|
|
|
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.UpdateChatterMessageDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
16
|
+
class UpdateChatterMessageDto {
|
|
17
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
18
|
+
return { id: { required: true, type: () => Number }, messageType: { required: true, type: () => String }, messageSubType: { required: true, type: () => String }, messageBody: { required: true, type: () => String }, coModelEntityId: { required: true, type: () => Number }, coModelName: { required: true, type: () => String }, userId: { required: true, type: () => Number }, userUserKey: { required: true, type: () => String } };
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
exports.UpdateChatterMessageDto = UpdateChatterMessageDto;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsOptional)(),
|
|
24
|
+
(0, class_validator_1.IsInt)(),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], UpdateChatterMessageDto.prototype, "id", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
29
|
+
(0, class_validator_1.IsOptional)(),
|
|
30
|
+
(0, class_validator_1.IsString)(),
|
|
31
|
+
(0, swagger_1.ApiProperty)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], UpdateChatterMessageDto.prototype, "messageType", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
36
|
+
(0, class_validator_1.IsOptional)(),
|
|
37
|
+
(0, class_validator_1.IsString)(),
|
|
38
|
+
(0, swagger_1.ApiProperty)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], UpdateChatterMessageDto.prototype, "messageSubType", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
43
|
+
(0, class_validator_1.IsOptional)(),
|
|
44
|
+
(0, class_validator_1.IsString)(),
|
|
45
|
+
(0, swagger_1.ApiProperty)(),
|
|
46
|
+
__metadata("design:type", String)
|
|
47
|
+
], UpdateChatterMessageDto.prototype, "messageBody", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
50
|
+
(0, class_validator_1.IsOptional)(),
|
|
51
|
+
(0, class_validator_1.IsInt)(),
|
|
52
|
+
(0, swagger_1.ApiProperty)(),
|
|
53
|
+
__metadata("design:type", Number)
|
|
54
|
+
], UpdateChatterMessageDto.prototype, "coModelEntityId", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
57
|
+
(0, class_validator_1.IsOptional)(),
|
|
58
|
+
(0, class_validator_1.IsString)(),
|
|
59
|
+
(0, swagger_1.ApiProperty)(),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], UpdateChatterMessageDto.prototype, "coModelName", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, class_validator_1.IsOptional)(),
|
|
64
|
+
(0, class_validator_1.IsInt)(),
|
|
65
|
+
(0, swagger_1.ApiProperty)(),
|
|
66
|
+
__metadata("design:type", Number)
|
|
67
|
+
], UpdateChatterMessageDto.prototype, "userId", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, class_validator_1.IsString)(),
|
|
70
|
+
(0, class_validator_1.IsOptional)(),
|
|
71
|
+
(0, swagger_1.ApiProperty)(),
|
|
72
|
+
__metadata("design:type", String)
|
|
73
|
+
], UpdateChatterMessageDto.prototype, "userUserKey", void 0);
|
|
74
|
+
//# sourceMappingURL=update-chatter-message.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-chatter-message.dto.js","sourceRoot":"","sources":["../../src/dtos/update-chatter-message.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAAyE;AACzE,6CAA8C;AAE9C,MAAa,uBAAuB;;;;CAqCnC;AArCD,0DAqCC;AAlCG;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;;mDACG;AAKX;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;4DACM;AAKpB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;+DACS;AAKvB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;4DACM;AAKpB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;IACP,IAAA,qBAAW,GAAE;;gEACU;AAKxB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;4DACM;AAIpB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;IACP,IAAA,qBAAW,GAAE;;uDACC;AAIf;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,qBAAW,GAAE;;4DACM"}
|
|
@@ -1,19 +1,6 @@
|
|
|
1
1
|
export declare class UpdateSettingDto {
|
|
2
2
|
id: number;
|
|
3
|
-
|
|
4
|
-
|
|
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;
|
|
3
|
+
key: string;
|
|
4
|
+
value: string;
|
|
18
5
|
}
|
|
19
6
|
//# sourceMappingURL=update-setting.dto.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-setting.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/update-setting.dto.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"update-setting.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/update-setting.dto.ts"],"names":[],"mappings":"AAGA,qBAAa,gBAAgB;IAGzB,EAAE,EAAE,MAAM,CAAC;IAIX,GAAG,EAAE,MAAM,CAAC;IAIZ,KAAK,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -12,18 +12,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.UpdateSettingDto = void 0;
|
|
13
13
|
const openapi = require("@nestjs/swagger");
|
|
14
14
|
const class_validator_1 = require("class-validator");
|
|
15
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
16
|
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
17
|
static _OPENAPI_METADATA_FACTORY() {
|
|
26
|
-
return { id: { required: true, type: () => Number },
|
|
18
|
+
return { id: { required: true, type: () => Number }, key: { required: true, type: () => String }, value: { required: true, type: () => String } };
|
|
27
19
|
}
|
|
28
20
|
}
|
|
29
21
|
exports.UpdateSettingDto = UpdateSettingDto;
|
|
@@ -35,76 +27,13 @@ __decorate([
|
|
|
35
27
|
__decorate([
|
|
36
28
|
(0, class_validator_1.IsOptional)(),
|
|
37
29
|
(0, class_validator_1.IsString)(),
|
|
30
|
+
(0, swagger_1.ApiProperty)(),
|
|
38
31
|
__metadata("design:type", String)
|
|
39
|
-
], UpdateSettingDto.prototype, "
|
|
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);
|
|
32
|
+
], UpdateSettingDto.prototype, "key", void 0);
|
|
60
33
|
__decorate([
|
|
61
34
|
(0, class_validator_1.IsOptional)(),
|
|
62
35
|
(0, class_validator_1.IsString)(),
|
|
36
|
+
(0, swagger_1.ApiProperty)(),
|
|
63
37
|
__metadata("design:type", String)
|
|
64
|
-
], UpdateSettingDto.prototype, "
|
|
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);
|
|
38
|
+
], UpdateSettingDto.prototype, "value", void 0);
|
|
110
39
|
//# sourceMappingURL=update-setting.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-setting.dto.js","sourceRoot":"","sources":["../../src/dtos/update-setting.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAAwE;AACxE,MAAa,gBAAgB;
|
|
1
|
+
{"version":3,"file":"update-setting.dto.js","sourceRoot":"","sources":["../../src/dtos/update-setting.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAAwE;AACxE,6CAA8C;AAE9C,MAAa,gBAAgB;;;;CAY5B;AAZD,4CAYC;AATG;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;;4CACG;AAIX;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;6CACF;AAIZ;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;+CACA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-settings.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/update-settings.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,iBAAiB;IAG1B,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CACjC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
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.UpdateSettingsDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class UpdateSettingsDto {
|
|
16
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
17
|
+
return { settings: { required: true, type: () => Object } };
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.UpdateSettingsDto = UpdateSettingsDto;
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsObject)(),
|
|
23
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
+
__metadata("design:type", Object)
|
|
25
|
+
], UpdateSettingsDto.prototype, "settings", void 0);
|
|
26
|
+
//# sourceMappingURL=update-settings.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-settings.dto.js","sourceRoot":"","sources":["../../src/dtos/update-settings.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAAuD;AAEvD,MAAa,iBAAiB;;;;CAI7B;AAJD,8CAIC;AADG;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;mDACiB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CommonEntity } from 'src/entities/common.entity';
|
|
2
|
+
import { ChatterMessage } from 'src/entities/chatter-message.entity';
|
|
3
|
+
export declare class ChatterMessageDetails extends CommonEntity {
|
|
4
|
+
chatterMessage: ChatterMessage;
|
|
5
|
+
oldValue: string;
|
|
6
|
+
newValue: string;
|
|
7
|
+
oldValueDisplay: string;
|
|
8
|
+
newValueDisplay: string;
|
|
9
|
+
fieldName: string;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=chatter-message-details.entity.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chatter-message-details.entity.d.ts","sourceRoot":"","sources":["../../src/entities/chatter-message-details.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAA;AACpE,qBACa,qBAAsB,SAAQ,YAAY;IAGvD,cAAc,EAAE,cAAc,CAAC;IAG/B,QAAQ,EAAE,MAAM,CAAC;IAGjB,QAAQ,EAAE,MAAM,CAAC;IAGjB,eAAe,EAAE,MAAM,CAAC;IAIxB,eAAe,EAAE,MAAM,CAAC;IAGxB,SAAS,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,52 @@
|
|
|
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.ChatterMessageDetails = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const common_entity_1 = require("./common.entity");
|
|
15
|
+
const typeorm_1 = require("typeorm");
|
|
16
|
+
const chatter_message_entity_1 = require("./chatter-message.entity");
|
|
17
|
+
let ChatterMessageDetails = class ChatterMessageDetails extends common_entity_1.CommonEntity {
|
|
18
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
19
|
+
return { chatterMessage: { required: true, type: () => require("./chatter-message.entity").ChatterMessage }, oldValue: { required: true, type: () => String }, newValue: { required: true, type: () => String }, oldValueDisplay: { required: true, type: () => String }, newValueDisplay: { required: true, type: () => String }, fieldName: { required: true, type: () => String } };
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
exports.ChatterMessageDetails = ChatterMessageDetails;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, typeorm_1.ManyToOne)(() => chatter_message_entity_1.ChatterMessage, { onDelete: "CASCADE", nullable: true }),
|
|
25
|
+
(0, typeorm_1.JoinColumn)(),
|
|
26
|
+
__metadata("design:type", chatter_message_entity_1.ChatterMessage)
|
|
27
|
+
], ChatterMessageDetails.prototype, "chatterMessage", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ChatterMessageDetails.prototype, "oldValue", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ChatterMessageDetails.prototype, "newValue", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], ChatterMessageDetails.prototype, "oldValueDisplay", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, typeorm_1.Index)(),
|
|
42
|
+
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], ChatterMessageDetails.prototype, "newValueDisplay", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: "varchar" }),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], ChatterMessageDetails.prototype, "fieldName", void 0);
|
|
49
|
+
exports.ChatterMessageDetails = ChatterMessageDetails = __decorate([
|
|
50
|
+
(0, typeorm_1.Entity)("ss_chatter_message_details")
|
|
51
|
+
], ChatterMessageDetails);
|
|
52
|
+
//# sourceMappingURL=chatter-message-details.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chatter-message-details.entity.js","sourceRoot":"","sources":["../../src/entities/chatter-message-details.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAAyD;AACzD,qCAAqE;AACrE,qEAAoE;AAE7D,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,4BAAY;;;;CAoBtD,CAAA;AApBY,sDAAqB;AAGlC;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,uCAAc,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxE,IAAA,oBAAU,GAAE;8BACG,uCAAc;6DAAC;AAG/B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACxB;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACxB;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACpB;AAIxB;IAFC,IAAA,eAAK,GAAE;IACP,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACpB;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;wDACV;gCAnBL,qBAAqB;IADjC,IAAA,gBAAM,EAAC,4BAA4B,CAAC;GACxB,qBAAqB,CAoBjC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CommonEntity } from 'src/entities/common.entity';
|
|
2
|
+
import { User } from 'src/entities/user.entity';
|
|
3
|
+
export declare class ChatterMessage extends CommonEntity {
|
|
4
|
+
messageType: string;
|
|
5
|
+
messageSubType: string;
|
|
6
|
+
messageBody: string;
|
|
7
|
+
coModelEntityId: number;
|
|
8
|
+
coModelName: string;
|
|
9
|
+
user: User;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=chatter-message.entity.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chatter-message.entity.d.ts","sourceRoot":"","sources":["../../src/entities/chatter-message.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAEzD,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAA;AAE/C,qBACa,cAAe,SAAQ,YAAY;IAG5C,WAAW,EAAE,MAAM,CAAC;IAEpB,cAAc,EAAE,MAAM,CAAC;IAEvB,WAAW,EAAE,MAAM,CAAC;IAGpB,eAAe,EAAE,MAAM,CAAC;IAExB,WAAW,EAAE,MAAM,CAAC;IAGpB,IAAI,EAAE,IAAI,CAAC;CACd"}
|
|
@@ -0,0 +1,53 @@
|
|
|
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.ChatterMessage = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const common_entity_1 = require("./common.entity");
|
|
15
|
+
const typeorm_1 = require("typeorm");
|
|
16
|
+
const user_entity_1 = require("./user.entity");
|
|
17
|
+
let ChatterMessage = class ChatterMessage extends common_entity_1.CommonEntity {
|
|
18
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
19
|
+
return { messageType: { required: true, type: () => String }, messageSubType: { required: true, type: () => String }, messageBody: { required: true, type: () => String }, coModelEntityId: { required: true, type: () => Number }, coModelName: { required: true, type: () => String }, user: { required: true, type: () => require("./user.entity").User } };
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
exports.ChatterMessage = ChatterMessage;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, typeorm_1.Index)(),
|
|
25
|
+
(0, typeorm_1.Column)({ type: "varchar" }),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], ChatterMessage.prototype, "messageType", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, typeorm_1.Column)({ type: "varchar" }),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], ChatterMessage.prototype, "messageSubType", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, typeorm_1.Column)({ type: "text" }),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], ChatterMessage.prototype, "messageBody", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.Index)(),
|
|
38
|
+
(0, typeorm_1.Column)({ type: "integer" }),
|
|
39
|
+
__metadata("design:type", Number)
|
|
40
|
+
], ChatterMessage.prototype, "coModelEntityId", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({ type: "varchar" }),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], ChatterMessage.prototype, "coModelName", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, { onDelete: "CASCADE", nullable: true }),
|
|
47
|
+
(0, typeorm_1.JoinColumn)(),
|
|
48
|
+
__metadata("design:type", user_entity_1.User)
|
|
49
|
+
], ChatterMessage.prototype, "user", void 0);
|
|
50
|
+
exports.ChatterMessage = ChatterMessage = __decorate([
|
|
51
|
+
(0, typeorm_1.Entity)("ss_chatter_message")
|
|
52
|
+
], ChatterMessage);
|
|
53
|
+
//# sourceMappingURL=chatter-message.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chatter-message.entity.js","sourceRoot":"","sources":["../../src/entities/chatter-message.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAAyD;AACzD,qCAAqE;AACrE,+CAA+C;AAGxC,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,4BAAY;;;;CAgB/C,CAAA;AAhBY,wCAAc;AAGvB;IAFC,IAAA,eAAK,GAAE;IACP,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;mDACR;AAEpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;sDACL;AAEvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;mDACL;AAGpB;IAFC,IAAA,eAAK,GAAE;IACP,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;uDACJ;AAExB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;;mDACR;AAGpB;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9D,IAAA,oBAAU,GAAE;8BACP,kBAAI;4CAAC;yBAfF,cAAc;IAD1B,IAAA,gBAAM,EAAC,oBAAoB,CAAC;GAChB,cAAc,CAgB1B"}
|
|
@@ -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,2BAA2B,EAAE,MAAM,CAAC;IAGpC,qBAAqB,EAAE,OAAO,CAAC;IAG/B,eAAe,EAAE,MAAM,CAAC;IAGxB,uBAAuB,EAAE,MAAM,CAAC;IAIhC,wBAAwB,EAAE,MAAM,CAAC;IAGjC,yBAAyB,EAAE,OAAO,CAAC;IAMnC,wBAAwB,EAAE,MAAM,CAAC;IAGjC,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,yBAAyB,EAAE,MAAM,CAAC;IAGlC,SAAS,EAAE,OAAO,CAAC;IAGnB,qBAAqB,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,2BAA2B,EAAE,MAAM,CAAC;IAGpC,qBAAqB,EAAE,OAAO,CAAC;IAG/B,eAAe,EAAE,MAAM,CAAC;IAGxB,uBAAuB,EAAE,MAAM,CAAC;IAIhC,wBAAwB,EAAE,MAAM,CAAC;IAGjC,yBAAyB,EAAE,OAAO,CAAC;IAMnC,wBAAwB,EAAE,MAAM,CAAC;IAGjC,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,yBAAyB,EAAE,MAAM,CAAC;IAGlC,SAAS,EAAE,OAAO,CAAC;IAGnB,qBAAqB,EAAE,MAAM,CAAC;IAG9B,mBAAmB,EAAE,OAAO,CAAC;CAChC"}
|
|
@@ -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 }, relationCoModelSingularName: { required: true, type: () => String }, relationCreateInverse: { required: true, type: () => Boolean }, relationCascade: { required: true, type: () => String }, relationModelModuleName: { required: true, type: () => String }, relationCoModelFieldName: { required: true, type: () => String }, isRelationManyToManyOwner: { required: true, type: () => Boolean }, relationFieldFixedFilter: { 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 }, relationCoModelColumnName: { required: true, type: () => String }, isUserKey: { required: true, type: () => Boolean }, relationJoinTableName: { 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 }, relationCoModelSingularName: { required: true, type: () => String }, relationCreateInverse: { required: true, type: () => Boolean }, relationCascade: { required: true, type: () => String }, relationModelModuleName: { required: true, type: () => String }, relationCoModelFieldName: { required: true, type: () => String }, isRelationManyToManyOwner: { required: true, type: () => Boolean }, relationFieldFixedFilter: { 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 }, relationCoModelColumnName: { required: true, type: () => String }, isUserKey: { required: true, type: () => Boolean }, relationJoinTableName: { required: true, type: () => String }, enableAuditTracking: { required: true, type: () => Boolean } };
|
|
25
25
|
}
|
|
26
26
|
};
|
|
27
27
|
exports.FieldMetadata = FieldMetadata;
|
|
@@ -204,6 +204,10 @@ __decorate([
|
|
|
204
204
|
(0, typeorm_1.Column)({ name: 'relation_join_table_name', nullable: true }),
|
|
205
205
|
__metadata("design:type", String)
|
|
206
206
|
], FieldMetadata.prototype, "relationJoinTableName", void 0);
|
|
207
|
+
__decorate([
|
|
208
|
+
(0, typeorm_1.Column)({ name: 'enable_audit_tracking', default: false }),
|
|
209
|
+
__metadata("design:type", Boolean)
|
|
210
|
+
], FieldMetadata.prototype, "enableAuditTracking", void 0);
|
|
207
211
|
exports.FieldMetadata = FieldMetadata = __decorate([
|
|
208
212
|
(0, typeorm_1.Entity)("ss_field_metadata")
|
|
209
213
|
], 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;;QAkHH,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,19 +1,6 @@
|
|
|
1
1
|
import { CommonEntity } from 'src/entities/common.entity';
|
|
2
2
|
export declare class Setting extends CommonEntity {
|
|
3
|
-
|
|
4
|
-
|
|
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;
|
|
3
|
+
key: string;
|
|
4
|
+
value: string;
|
|
18
5
|
}
|
|
19
6
|
//# sourceMappingURL=setting.entity.d.ts.map
|
|
@@ -1 +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;
|
|
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;AAGzD,qBACa,OAAQ,SAAQ,YAAY;IAGrC,GAAG,EAAE,MAAM,CAAC;IAEZ,KAAK,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -14,81 +14,20 @@ const openapi = require("@nestjs/swagger");
|
|
|
14
14
|
const common_entity_1 = require("./common.entity");
|
|
15
15
|
const typeorm_1 = require("typeorm");
|
|
16
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
17
|
static _OPENAPI_METADATA_FACTORY() {
|
|
28
|
-
return {
|
|
18
|
+
return { key: { required: true, type: () => String }, value: { required: true, type: () => String } };
|
|
29
19
|
}
|
|
30
20
|
};
|
|
31
21
|
exports.Setting = Setting;
|
|
32
22
|
__decorate([
|
|
23
|
+
(0, typeorm_1.Index)({ unique: true }),
|
|
33
24
|
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
34
25
|
__metadata("design:type", String)
|
|
35
|
-
], Setting.prototype, "
|
|
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);
|
|
26
|
+
], Setting.prototype, "key", void 0);
|
|
52
27
|
__decorate([
|
|
53
28
|
(0, typeorm_1.Column)({ type: "varchar", nullable: true }),
|
|
54
29
|
__metadata("design:type", String)
|
|
55
|
-
], Setting.prototype, "
|
|
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);
|
|
30
|
+
], Setting.prototype, "value", void 0);
|
|
92
31
|
exports.Setting = Setting = __decorate([
|
|
93
32
|
(0, typeorm_1.Entity)("ss_setting")
|
|
94
33
|
], Setting);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setting.entity.js","sourceRoot":"","sources":["../../src/entities/setting.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAAyD;AACzD,
|
|
1
|
+
{"version":3,"file":"setting.entity.js","sourceRoot":"","sources":["../../src/entities/setting.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,mDAAyD;AACzD,qCAA6C;AAGtC,IAAM,OAAO,GAAb,MAAM,OAAQ,SAAQ,4BAAY;;;;CAMxC,CAAA;AANY,0BAAO;AAGhB;IAFC,IAAA,eAAK,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACvB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oCAChC;AAEZ;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sCAC9B;kBALL,OAAO;IADnB,IAAA,gBAAM,EAAC,YAAY,CAAC;GACR,OAAO,CAMnB"}
|