easywork-common-lib 1.0.816 → 1.0.818
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/entities/index.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/entities/thirdparty/email-config.entity.d.ts +0 -14
- package/dist/entities/thirdparty/email-config.entity.js +0 -76
- package/dist/entities/thirdparty/email-config.entity.js.map +0 -1
- package/dist/entities/thirdparty/email.entity.d.ts +0 -17
- package/dist/entities/thirdparty/email.entity.js +0 -79
- package/dist/entities/thirdparty/email.entity.js.map +0 -1
- package/dist/entities/thirdparty/google-calendar-config.entity.d.ts +0 -29
- package/dist/entities/thirdparty/google-calendar-config.entity.js +0 -93
- package/dist/entities/thirdparty/google-calendar-config.entity.js.map +0 -1
- package/dist/entities/thirdparty/google-webhooks-config.entity.d.ts +0 -14
- package/dist/entities/thirdparty/google-webhooks-config.entity.js +0 -72
- package/dist/entities/thirdparty/google-webhooks-config.entity.js.map +0 -1
- package/dist/entities/thirdparty/oauth-v2.entity.d.ts +0 -22
- package/dist/entities/thirdparty/oauth-v2.entity.js +0 -75
- package/dist/entities/thirdparty/oauth-v2.entity.js.map +0 -1
- package/dist/entities/thirdparty/oauth.entity.d.ts +0 -21
- package/dist/entities/thirdparty/oauth.entity.js +0 -100
- package/dist/entities/thirdparty/oauth.entity.js.map +0 -1
- package/dist/entities/thirdparty/service.entity.d.ts +0 -8
- package/dist/entities/thirdparty/service.entity.js +0 -38
- package/dist/entities/thirdparty/service.entity.js.map +0 -1
- package/dist/entities/thirdparty/user-email-relation.entity.d.ts +0 -7
- package/dist/entities/thirdparty/user-email-relation.entity.js +0 -35
- package/dist/entities/thirdparty/user-email-relation.entity.js.map +0 -1
- package/dist/entities/tools/calendar/index.d.ts +0 -5
- package/dist/entities/tools/calendar/index.js +0 -22
- package/dist/entities/tools/calendar/index.js.map +0 -1
- package/dist/entities/tools/mail/index.d.ts +0 -3
- package/dist/entities/tools/mail/index.js +0 -20
- package/dist/entities/tools/mail/index.js.map +0 -1
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { EntityBase } from "../../common/database/base.entity";
|
|
2
|
-
import { EmailThirdparty } from "./email.entity";
|
|
3
|
-
import { Oauth } from "./oauth.entity";
|
|
4
|
-
export declare class ServiceThirdparty extends EntityBase {
|
|
5
|
-
name: string;
|
|
6
|
-
emails: EmailThirdparty[];
|
|
7
|
-
oauth: Oauth[];
|
|
8
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
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.ServiceThirdparty = void 0;
|
|
13
|
-
const base_entity_1 = require("../../common/database/base.entity");
|
|
14
|
-
const typeorm_1 = require("typeorm");
|
|
15
|
-
const email_entity_1 = require("./email.entity");
|
|
16
|
-
const oauth_entity_1 = require("./oauth.entity");
|
|
17
|
-
let ServiceThirdparty = class ServiceThirdparty extends base_entity_1.EntityBase {
|
|
18
|
-
name;
|
|
19
|
-
emails;
|
|
20
|
-
oauth;
|
|
21
|
-
};
|
|
22
|
-
exports.ServiceThirdparty = ServiceThirdparty;
|
|
23
|
-
__decorate([
|
|
24
|
-
(0, typeorm_1.Column)(),
|
|
25
|
-
__metadata("design:type", String)
|
|
26
|
-
], ServiceThirdparty.prototype, "name", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, typeorm_1.OneToMany)(() => email_entity_1.EmailThirdparty, email => email.service),
|
|
29
|
-
__metadata("design:type", Array)
|
|
30
|
-
], ServiceThirdparty.prototype, "emails", void 0);
|
|
31
|
-
__decorate([
|
|
32
|
-
(0, typeorm_1.OneToMany)(() => oauth_entity_1.Oauth, oauth => oauth.service),
|
|
33
|
-
__metadata("design:type", Array)
|
|
34
|
-
], ServiceThirdparty.prototype, "oauth", void 0);
|
|
35
|
-
exports.ServiceThirdparty = ServiceThirdparty = __decorate([
|
|
36
|
-
(0, typeorm_1.Entity)()
|
|
37
|
-
], ServiceThirdparty);
|
|
38
|
-
//# sourceMappingURL=service.entity.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"service.entity.js","sourceRoot":"","sources":["../../../src/entities/thirdparty/service.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mEAA+D;AAC/D,qCAAoD;AACpD,iDAAgD;AAChD,iDAAsC;AAG/B,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,wBAAU;IAE/C,IAAI,CAAS;IAGb,MAAM,CAAoB;IAG1B,KAAK,CAAU;CAChB,CAAA;AATY,8CAAiB;AAE5B;IADC,IAAA,gBAAM,GAAE;;+CACI;AAGb;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8BAAe,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC;;iDAC/B;AAG1B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oBAAK,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC;;gDAChC;4BARJ,iBAAiB;IAD7B,IAAA,gBAAM,GAAE;GACI,iBAAiB,CAS7B"}
|
|
@@ -1,35 +0,0 @@
|
|
|
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.UserEmailRelation = void 0;
|
|
13
|
-
const base_entity_1 = require("../../common/database/base.entity");
|
|
14
|
-
const typeorm_1 = require("typeorm");
|
|
15
|
-
const user_entity_1 = require("../user.entity");
|
|
16
|
-
const email_entity_1 = require("./email.entity");
|
|
17
|
-
let UserEmailRelation = class UserEmailRelation extends base_entity_1.EntityBase {
|
|
18
|
-
user;
|
|
19
|
-
email;
|
|
20
|
-
};
|
|
21
|
-
exports.UserEmailRelation = UserEmailRelation;
|
|
22
|
-
__decorate([
|
|
23
|
-
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, (user) => user.emailRelations, { onDelete: "CASCADE", onUpdate: "CASCADE" }),
|
|
24
|
-
(0, typeorm_1.JoinColumn)(),
|
|
25
|
-
__metadata("design:type", user_entity_1.User)
|
|
26
|
-
], UserEmailRelation.prototype, "user", void 0);
|
|
27
|
-
__decorate([
|
|
28
|
-
(0, typeorm_1.ManyToOne)(() => email_entity_1.EmailThirdparty, (email) => email.userRelations, { onDelete: "CASCADE", onUpdate: "CASCADE" }),
|
|
29
|
-
(0, typeorm_1.JoinColumn)(),
|
|
30
|
-
__metadata("design:type", email_entity_1.EmailThirdparty)
|
|
31
|
-
], UserEmailRelation.prototype, "email", void 0);
|
|
32
|
-
exports.UserEmailRelation = UserEmailRelation = __decorate([
|
|
33
|
-
(0, typeorm_1.Entity)()
|
|
34
|
-
], UserEmailRelation);
|
|
35
|
-
//# sourceMappingURL=user-email-relation.entity.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"user-email-relation.entity.js","sourceRoot":"","sources":["../../../src/entities/thirdparty/user-email-relation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mEAA+D;AAC/D,qCAAwD;AACxD,gDAAsC;AACtC,iDAAiD;AAG1C,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,wBAAU;IAG/C,IAAI,CAAO;IAIX,KAAK,CAAkB;CACxB,CAAA;AARY,8CAAiB;AAG5B;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAClG,IAAA,oBAAU,GAAE;8BACP,kBAAI;+CAAC;AAIX;IAFC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,8BAAe,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,aAAa,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAC9G,IAAA,oBAAU,GAAE;8BACN,8BAAe;gDAAC;4BAPZ,iBAAiB;IAD7B,IAAA,gBAAM,GAAE;GACI,iBAAiB,CAQ7B"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./event.entity"), exports);
|
|
18
|
-
__exportStar(require("./calendar-user-access.entity"), exports);
|
|
19
|
-
__exportStar(require("./calendar-event-invitations.entity"), exports);
|
|
20
|
-
__exportStar(require("./calendar-general-config.entity"), exports);
|
|
21
|
-
__exportStar(require("./calendar-list.entity"), exports);
|
|
22
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/tools/calendar/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA+B;AAC/B,gEAA8C;AAC9C,sEAAoD;AACpD,mEAAiD;AACjD,yDAAuC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./mailbox.entity"), exports);
|
|
18
|
-
__exportStar(require("./mailbox-user-access.entity"), exports);
|
|
19
|
-
__exportStar(require("./mailbox-signatures.entity"), exports);
|
|
20
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/entities/tools/mail/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,+DAA6C;AAC7C,8DAA4C"}
|