easywork-common-lib 1.0.923 → 1.0.925
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/common/enums/tools.enum.d.ts +8 -4
- package/dist/common/enums/tools.enum.js +7 -3
- package/dist/common/enums/tools.enum.js.map +1 -1
- package/dist/entities/helpers/user/access_history.entity.d.ts +9 -0
- package/dist/entities/helpers/user/access_history.entity.js +58 -0
- package/dist/entities/helpers/user/access_history.entity.js.map +1 -0
- package/dist/entities/policy/policy-details.entity.d.ts +42 -0
- package/dist/entities/policy/policy-details.entity.js +380 -0
- package/dist/entities/policy/policy-details.entity.js.map +1 -0
- package/dist/entities/policy/policy-version.entity.d.ts +0 -2
- package/dist/entities/policy/policy-version.entity.js +0 -11
- package/dist/entities/policy/policy-version.entity.js.map +1 -1
- package/dist/entities/policy/policy.entity.d.ts +2 -1
- package/dist/entities/policy/policy.entity.js +10 -0
- package/dist/entities/policy/policy.entity.js.map +1 -1
- package/dist/entities/sales/receipt-sub-agente.entity.d.ts +5 -0
- package/dist/entities/sales/receipt-sub-agente.entity.js +35 -0
- package/dist/entities/sales/receipt-sub-agente.entity.js.map +1 -0
- package/dist/entities/thirdparty/email-config.entity.d.ts +14 -0
- package/dist/entities/thirdparty/email-config.entity.js +76 -0
- package/dist/entities/thirdparty/email-config.entity.js.map +1 -0
- package/dist/entities/thirdparty/email.entity.d.ts +17 -0
- package/dist/entities/thirdparty/email.entity.js +79 -0
- package/dist/entities/thirdparty/email.entity.js.map +1 -0
- package/dist/entities/thirdparty/service.entity.d.ts +8 -0
- package/dist/entities/thirdparty/service.entity.js +38 -0
- package/dist/entities/thirdparty/service.entity.js.map +1 -0
- package/dist/entities/thirdparty/user-email-relation.entity.d.ts +7 -0
- package/dist/entities/thirdparty/user-email-relation.entity.js +35 -0
- package/dist/entities/thirdparty/user-email-relation.entity.js.map +1 -0
- package/dist/entities/tools/calendar/calendar-list.entity.d.ts +36 -0
- package/dist/entities/tools/calendar/calendar-list.entity.js +109 -0
- package/dist/entities/tools/calendar/calendar-list.entity.js.map +1 -0
- package/dist/entities/tools/calendar/event-list-calendars.entity.d.ts +6 -0
- package/dist/entities/tools/calendar/event-list-calendars.entity.js +32 -0
- package/dist/entities/tools/calendar/event-list-calendars.entity.js.map +1 -0
- package/dist/entities/tools/mail/mailbox-signatures.entity.d.ts +6 -0
- package/dist/entities/tools/mail/mailbox-signatures.entity.js +34 -0
- package/dist/entities/tools/mail/mailbox-signatures.entity.js.map +1 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/entities/thirdparty/raw-diio-webhook.entity.d.ts +0 -8
- package/dist/entities/thirdparty/raw-diio-webhook.entity.js +0 -46
- package/dist/entities/thirdparty/raw-diio-webhook.entity.js.map +0 -1
|
@@ -0,0 +1,34 @@
|
|
|
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.MailboxSignatures = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const base_entity_1 = require("../../../common/database/base.entity");
|
|
16
|
+
const mailbox_entity_1 = require("./mailbox.entity");
|
|
17
|
+
let MailboxSignatures = class MailboxSignatures extends base_entity_1.BaseEntityOnlyEssential {
|
|
18
|
+
signature;
|
|
19
|
+
mailbox;
|
|
20
|
+
};
|
|
21
|
+
exports.MailboxSignatures = MailboxSignatures;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, swagger_1.ApiProperty)({ description: 'Mailbox signature', required: true }),
|
|
24
|
+
(0, typeorm_1.Column)(),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], MailboxSignatures.prototype, "signature", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, typeorm_1.ManyToOne)(() => mailbox_entity_1.Mailbox, { nullable: false, onDelete: 'CASCADE' }),
|
|
29
|
+
__metadata("design:type", mailbox_entity_1.Mailbox)
|
|
30
|
+
], MailboxSignatures.prototype, "mailbox", void 0);
|
|
31
|
+
exports.MailboxSignatures = MailboxSignatures = __decorate([
|
|
32
|
+
(0, typeorm_1.Entity)()
|
|
33
|
+
], MailboxSignatures);
|
|
34
|
+
//# sourceMappingURL=mailbox-signatures.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mailbox-signatures.entity.js","sourceRoot":"","sources":["../../../../src/entities/tools/mail/mailbox-signatures.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AACpD,6CAA8C;AAE9C,sEAA+E;AAC/E,qDAA2C;AAGpC,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,qCAAuB;IAG5D,SAAS,CAAS;IAGlB,OAAO,CAAU;CAClB,CAAA;AAPY,8CAAiB;AAG5B;IAFC,IAAA,qBAAW,EAAC,EAAE,WAAW,EAAE,mBAAmB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjE,IAAA,gBAAM,GAAE;;oDACS;AAGlB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAO,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,wBAAO;kDAAC;4BANN,iBAAiB;IAD7B,IAAA,gBAAM,GAAE;GACI,iBAAiB,CAO7B"}
|