@solidstarters/solid-core 1.2.57 → 1.2.58
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/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/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/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/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/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/seed-data/solid-core-metadata.json +517 -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/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/controllers/chatter-message-details.controller.ts +92 -0
- package/src/controllers/chatter-message.controller.ts +105 -0
- 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/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/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/index.ts +10 -2
- package/src/seeders/seed-data/solid-core-metadata.json +518 -2
- 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/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,65 @@
|
|
|
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.CreateChatterMessageDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const class_validator_1 = require("class-validator");
|
|
16
|
+
const class_validator_2 = require("class-validator");
|
|
17
|
+
class CreateChatterMessageDto {
|
|
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 }, userId: { required: true, type: () => Number }, userUserKey: { required: true, type: () => String } };
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.CreateChatterMessageDto = CreateChatterMessageDto;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_2.IsNotEmpty)(),
|
|
25
|
+
(0, class_validator_1.IsString)(),
|
|
26
|
+
(0, swagger_1.ApiProperty)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], CreateChatterMessageDto.prototype, "messageType", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_2.IsNotEmpty)(),
|
|
31
|
+
(0, class_validator_1.IsString)(),
|
|
32
|
+
(0, swagger_1.ApiProperty)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], CreateChatterMessageDto.prototype, "messageSubType", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_2.IsNotEmpty)(),
|
|
37
|
+
(0, class_validator_1.IsString)(),
|
|
38
|
+
(0, swagger_1.ApiProperty)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], CreateChatterMessageDto.prototype, "messageBody", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_validator_2.IsNotEmpty)(),
|
|
43
|
+
(0, class_validator_2.IsInt)(),
|
|
44
|
+
(0, swagger_1.ApiProperty)(),
|
|
45
|
+
__metadata("design:type", Number)
|
|
46
|
+
], CreateChatterMessageDto.prototype, "coModelEntityId", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_validator_2.IsNotEmpty)(),
|
|
49
|
+
(0, class_validator_1.IsString)(),
|
|
50
|
+
(0, swagger_1.ApiProperty)(),
|
|
51
|
+
__metadata("design:type", String)
|
|
52
|
+
], CreateChatterMessageDto.prototype, "coModelName", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_validator_2.IsOptional)(),
|
|
55
|
+
(0, class_validator_2.IsInt)(),
|
|
56
|
+
(0, swagger_1.ApiProperty)(),
|
|
57
|
+
__metadata("design:type", Number)
|
|
58
|
+
], CreateChatterMessageDto.prototype, "userId", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, class_validator_1.IsString)(),
|
|
61
|
+
(0, class_validator_2.IsOptional)(),
|
|
62
|
+
(0, swagger_1.ApiProperty)(),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], CreateChatterMessageDto.prototype, "userUserKey", void 0);
|
|
65
|
+
//# sourceMappingURL=create-chatter-message.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-chatter-message.dto.js","sourceRoot":"","sources":["../../src/dtos/create-chatter-message.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,6CAA8C;AAC9C,qDAA2C;AAC3C,qDAAgE;AAEhE,MAAa,uBAAuB;;;;CA6BnC;AA7BD,0DA6BC;AAzBG;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;4DACM;AAIpB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;+DACS;AAIvB;IAHC,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;;gEACU;AAIxB;IAHC,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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-field-metadata.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/create-field-metadata.dto.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"create-field-metadata.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/create-field-metadata.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -127,7 +127,7 @@ var ComputedFieldValueType;
|
|
|
127
127
|
})(ComputedFieldValueType || (exports.ComputedFieldValueType = ComputedFieldValueType = {}));
|
|
128
128
|
class CreateFieldMetadataDto {
|
|
129
129
|
static _OPENAPI_METADATA_FACTORY() {
|
|
130
|
-
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, description: { required: true, type: () => String }, type: { required: true, enum: require("./create-field-metadata.dto").SolidFieldType }, modelId: { required: true, type: () => Number }, ormType: { required: true, enum: require("./create-field-metadata.dto").PSQLType }, length: { required: true, type: () => Number }, 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, enum: require("./create-field-metadata.dto").EncryptionType }, decryptWhen: { required: true, enum: require("./create-field-metadata.dto").DecryptWhenType }, index: { required: true, type: () => Boolean }, max: { required: true, type: () => Number }, min: { required: true, type: () => Number }, private: { required: true, type: () => Boolean }, mediaTypes: { required: true, enum: require("./create-field-metadata.dto").MediaType, isArray: true }, mediaMaxSizeKb: { required: true, type: () => Number }, mediaStorageProviderId: { required: false, type: () => Number }, mediaStorageProviderUserKey: { required: false, type: () => String }, relationType: { required: true, enum: require("./create-field-metadata.dto").RelationType }, relationCoModelSingularName: { required: true, type: () => String }, relationCreateInverse: { required: true, type: () => Boolean }, relationCascade: { required: true, enum: require("./create-field-metadata.dto").CascadeType }, 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], pattern: "/^[\\w\\s\\d-]+:[\\w\\s-]+$/" }, selectionValueType: { required: true, enum: require("./create-field-metadata.dto").SelectionValueType }, computedFieldValueProvider: { required: true, type: () => String }, computedFieldValueProviderCtxt: { required: true, type: () => String }, computedFieldValueType: { required: true, enum: require("./create-field-metadata.dto").ComputedFieldValueType }, 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 } };
|
|
130
|
+
return { name: { required: true, type: () => String }, displayName: { required: true, type: () => String }, description: { required: true, type: () => String }, type: { required: true, enum: require("./create-field-metadata.dto").SolidFieldType }, modelId: { required: true, type: () => Number }, ormType: { required: true, enum: require("./create-field-metadata.dto").PSQLType }, length: { required: true, type: () => Number }, 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, enum: require("./create-field-metadata.dto").EncryptionType }, decryptWhen: { required: true, enum: require("./create-field-metadata.dto").DecryptWhenType }, index: { required: true, type: () => Boolean }, max: { required: true, type: () => Number }, min: { required: true, type: () => Number }, private: { required: true, type: () => Boolean }, mediaTypes: { required: true, enum: require("./create-field-metadata.dto").MediaType, isArray: true }, mediaMaxSizeKb: { required: true, type: () => Number }, mediaStorageProviderId: { required: false, type: () => Number }, mediaStorageProviderUserKey: { required: false, type: () => String }, relationType: { required: true, enum: require("./create-field-metadata.dto").RelationType }, relationCoModelSingularName: { required: true, type: () => String }, relationCreateInverse: { required: true, type: () => Boolean }, relationCascade: { required: true, enum: require("./create-field-metadata.dto").CascadeType }, 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], pattern: "/^[\\w\\s\\d-]+:[\\w\\s-]+$/" }, selectionValueType: { required: true, enum: require("./create-field-metadata.dto").SelectionValueType }, computedFieldValueProvider: { required: true, type: () => String }, computedFieldValueProviderCtxt: { required: true, type: () => String }, computedFieldValueType: { required: true, enum: require("./create-field-metadata.dto").ComputedFieldValueType }, 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: false, type: () => Boolean } };
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
exports.CreateFieldMetadataDto = CreateFieldMetadataDto;
|
|
@@ -395,4 +395,9 @@ __decorate([
|
|
|
395
395
|
(0, class_validator_1.IsOptional)(),
|
|
396
396
|
__metadata("design:type", String)
|
|
397
397
|
], CreateFieldMetadataDto.prototype, "relationJoinTableName", void 0);
|
|
398
|
+
__decorate([
|
|
399
|
+
(0, class_validator_1.IsOptional)(),
|
|
400
|
+
(0, class_validator_1.IsBoolean)(),
|
|
401
|
+
__metadata("design:type", Boolean)
|
|
402
|
+
], CreateFieldMetadataDto.prototype, "enableAuditTracking", void 0);
|
|
398
403
|
//# sourceMappingURL=create-field-metadata.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-field-metadata.dto.js","sourceRoot":"","sources":["../../src/dtos/create-field-metadata.dto.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"create-field-metadata.dto.js","sourceRoot":"","sources":["../../src/dtos/create-field-metadata.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"post-chatter-message.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/post-chatter-message.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,qBAAqB;IAG9B,eAAe,EAAE,MAAM,CAAC;IAIxB,WAAW,EAAE,MAAM,CAAC;IAIpB,WAAW,EAAE,MAAM,CAAC;IAIpB,cAAc,CAAC,EAAE,MAAM,CAAC;CAC3B"}
|
|
@@ -0,0 +1,41 @@
|
|
|
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.PostChatterMessageDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class PostChatterMessageDto {
|
|
16
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
17
|
+
return { coModelEntityId: { required: true, type: () => Number }, coModelName: { required: true, type: () => String }, messageBody: { required: true, type: () => String }, messageSubType: { required: false, type: () => String } };
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.PostChatterMessageDto = PostChatterMessageDto;
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsNumber)(),
|
|
23
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
+
__metadata("design:type", Number)
|
|
25
|
+
], PostChatterMessageDto.prototype, "coModelEntityId", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_validator_1.IsString)(),
|
|
28
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], PostChatterMessageDto.prototype, "coModelName", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], PostChatterMessageDto.prototype, "messageBody", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, class_validator_1.IsString)(),
|
|
38
|
+
(0, class_validator_1.IsOptional)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], PostChatterMessageDto.prototype, "messageSubType", void 0);
|
|
41
|
+
//# sourceMappingURL=post-chatter-message.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"post-chatter-message.dto.js","sourceRoot":"","sources":["../../src/dtos/post-chatter-message.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAA6E;AAE7E,MAAa,qBAAqB;;;;CAgBjC;AAhBD,sDAgBC;AAbG;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;8DACW;AAIxB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACO;AAIpB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;0DACO;AAIpB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;6DACW"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class UpdateChatterMessageDetailsDto {
|
|
2
|
+
id: number;
|
|
3
|
+
chatterMessageId: number;
|
|
4
|
+
chatterMessageUserKey: string;
|
|
5
|
+
oldValue: string;
|
|
6
|
+
newValue: string;
|
|
7
|
+
oldValueDisplay: string;
|
|
8
|
+
newValueDisplay: string;
|
|
9
|
+
fieldName: string;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=update-chatter-message-details.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-chatter-message-details.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/update-chatter-message-details.dto.ts"],"names":[],"mappings":"AAEA,qBAAa,8BAA8B;IAGvC,EAAE,EAAE,MAAM,CAAC;IAKf,gBAAgB,EAAE,MAAM,CAAC;IAKzB,qBAAqB,EAAE,MAAM,CAAC;IAK9B,QAAQ,EAAE,MAAM,CAAC;IAKjB,QAAQ,EAAE,MAAM,CAAC;IAKjB,eAAe,EAAE,MAAM,CAAC;IAKxB,eAAe,EAAE,MAAM,CAAC;IAMxB,SAAS,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1,70 @@
|
|
|
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.UpdateChatterMessageDetailsDto = 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 UpdateChatterMessageDetailsDto {
|
|
17
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
18
|
+
return { id: { required: true, type: () => Number }, chatterMessageId: { required: true, type: () => Number }, chatterMessageUserKey: { required: true, type: () => String }, 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 } };
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
exports.UpdateChatterMessageDetailsDto = UpdateChatterMessageDetailsDto;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsOptional)(),
|
|
24
|
+
(0, class_validator_1.IsInt)(),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], UpdateChatterMessageDetailsDto.prototype, "id", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsOptional)(),
|
|
29
|
+
(0, class_validator_1.IsInt)(),
|
|
30
|
+
(0, swagger_1.ApiProperty)(),
|
|
31
|
+
__metadata("design:type", Number)
|
|
32
|
+
], UpdateChatterMessageDetailsDto.prototype, "chatterMessageId", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsString)(),
|
|
35
|
+
(0, class_validator_1.IsOptional)(),
|
|
36
|
+
(0, swagger_1.ApiProperty)(),
|
|
37
|
+
__metadata("design:type", String)
|
|
38
|
+
], UpdateChatterMessageDetailsDto.prototype, "chatterMessageUserKey", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, class_validator_1.IsOptional)(),
|
|
41
|
+
(0, class_validator_1.IsString)(),
|
|
42
|
+
(0, swagger_1.ApiProperty)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], UpdateChatterMessageDetailsDto.prototype, "oldValue", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsOptional)(),
|
|
47
|
+
(0, class_validator_1.IsString)(),
|
|
48
|
+
(0, swagger_1.ApiProperty)(),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], UpdateChatterMessageDetailsDto.prototype, "newValue", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_1.IsOptional)(),
|
|
53
|
+
(0, class_validator_1.IsString)(),
|
|
54
|
+
(0, swagger_1.ApiProperty)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], UpdateChatterMessageDetailsDto.prototype, "oldValueDisplay", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_validator_1.IsOptional)(),
|
|
59
|
+
(0, class_validator_1.IsString)(),
|
|
60
|
+
(0, swagger_1.ApiProperty)(),
|
|
61
|
+
__metadata("design:type", String)
|
|
62
|
+
], UpdateChatterMessageDetailsDto.prototype, "newValueDisplay", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
65
|
+
(0, class_validator_1.IsOptional)(),
|
|
66
|
+
(0, class_validator_1.IsString)(),
|
|
67
|
+
(0, swagger_1.ApiProperty)(),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], UpdateChatterMessageDetailsDto.prototype, "fieldName", void 0);
|
|
70
|
+
//# sourceMappingURL=update-chatter-message-details.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-chatter-message-details.dto.js","sourceRoot":"","sources":["../../src/dtos/update-chatter-message-details.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,qDAAyE;AACzE,6CAA8C;AAC9C,MAAa,8BAA8B;;;;CAwC1C;AAxCD,wEAwCC;AArCG;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;;0DACG;AAKf;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;IACP,IAAA,qBAAW,GAAE;;wEACW;AAKzB;IAHC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,qBAAW,GAAE;;6EACgB;AAK9B;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;gEACG;AAKjB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;gEACG;AAKjB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;uEACU;AAKxB;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;uEACU;AAMxB;IAJC,IAAA,4BAAU,GAAE;IACZ,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,qBAAW,GAAE;;iEACI"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class UpdateChatterMessageDto {
|
|
2
|
+
id: number;
|
|
3
|
+
messageType: string;
|
|
4
|
+
messageSubType: string;
|
|
5
|
+
messageBody: string;
|
|
6
|
+
coModelEntityId: number;
|
|
7
|
+
coModelName: string;
|
|
8
|
+
userId: number;
|
|
9
|
+
userUserKey: string;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=update-chatter-message.dto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-chatter-message.dto.d.ts","sourceRoot":"","sources":["../../src/dtos/update-chatter-message.dto.ts"],"names":[],"mappings":"AAGA,qBAAa,uBAAuB;IAGhC,EAAE,EAAE,MAAM,CAAC;IAKX,WAAW,EAAE,MAAM,CAAC;IAKpB,cAAc,EAAE,MAAM,CAAC;IAKvB,WAAW,EAAE,MAAM,CAAC;IAKpB,eAAe,EAAE,MAAM,CAAC;IAKxB,WAAW,EAAE,MAAM,CAAC;IAIpB,MAAM,EAAE,MAAM,CAAC;IAIf,WAAW,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -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"}
|
|
@@ -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);
|