easywork-common-lib 1.0.862 → 1.0.864

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.
@@ -0,0 +1,38 @@
1
+ import { BaseEntityOnlyEssential } from '../../../common/database/base.entity';
2
+ import { Oauth } from '../../thirdparty/oauth.entity';
3
+ import { User } from '../../user.entity';
4
+ import { CalendarItem } from './calendar-item.entity';
5
+ export declare enum CalendarProvider {
6
+ GOOGLE = "google",
7
+ ICLOUD = "icloud",
8
+ MICROSOFT = "microsoft"
9
+ }
10
+ export declare class CalendarExternalItem extends BaseEntityOnlyEssential {
11
+ calendarId: string;
12
+ name: string;
13
+ description?: string;
14
+ isPrimary: boolean;
15
+ timeZone: string;
16
+ accessRole?: string;
17
+ color?: string;
18
+ selected: boolean;
19
+ defaultReminders?: {
20
+ method: string;
21
+ minutes: number;
22
+ }[];
23
+ conferenceProperties?: {
24
+ allowedConferenceSolutionTypes: string[];
25
+ };
26
+ notificationSettings?: {
27
+ notifications: {
28
+ type: string;
29
+ method: string;
30
+ }[];
31
+ };
32
+ ownerName?: string;
33
+ ownerEmail?: string;
34
+ provider: CalendarProvider;
35
+ calendar: CalendarItem;
36
+ oauth: Oauth;
37
+ user: User;
38
+ }
@@ -0,0 +1,115 @@
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.CalendarExternalItem = exports.CalendarProvider = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const base_entity_1 = require("../../../common/database/base.entity");
15
+ const oauth_entity_1 = require("../../thirdparty/oauth.entity");
16
+ const user_entity_1 = require("../../user.entity");
17
+ const calendar_item_entity_1 = require("./calendar-item.entity");
18
+ var CalendarProvider;
19
+ (function (CalendarProvider) {
20
+ CalendarProvider["GOOGLE"] = "google";
21
+ CalendarProvider["ICLOUD"] = "icloud";
22
+ CalendarProvider["MICROSOFT"] = "microsoft";
23
+ })(CalendarProvider || (exports.CalendarProvider = CalendarProvider = {}));
24
+ let CalendarExternalItem = class CalendarExternalItem extends base_entity_1.BaseEntityOnlyEssential {
25
+ calendarId;
26
+ name;
27
+ description;
28
+ isPrimary;
29
+ timeZone;
30
+ accessRole;
31
+ color;
32
+ selected;
33
+ defaultReminders;
34
+ conferenceProperties;
35
+ notificationSettings;
36
+ ownerName;
37
+ ownerEmail;
38
+ provider;
39
+ calendar;
40
+ oauth;
41
+ user;
42
+ };
43
+ exports.CalendarExternalItem = CalendarExternalItem;
44
+ __decorate([
45
+ (0, typeorm_1.Column)({ type: 'varchar', unique: true }),
46
+ __metadata("design:type", String)
47
+ ], CalendarExternalItem.prototype, "calendarId", void 0);
48
+ __decorate([
49
+ (0, typeorm_1.Column)(),
50
+ __metadata("design:type", String)
51
+ ], CalendarExternalItem.prototype, "name", void 0);
52
+ __decorate([
53
+ (0, typeorm_1.Column)({ nullable: true }),
54
+ __metadata("design:type", String)
55
+ ], CalendarExternalItem.prototype, "description", void 0);
56
+ __decorate([
57
+ (0, typeorm_1.Column)({ default: false }),
58
+ __metadata("design:type", Boolean)
59
+ ], CalendarExternalItem.prototype, "isPrimary", void 0);
60
+ __decorate([
61
+ (0, typeorm_1.Column)(),
62
+ __metadata("design:type", String)
63
+ ], CalendarExternalItem.prototype, "timeZone", void 0);
64
+ __decorate([
65
+ (0, typeorm_1.Column)({ nullable: true }),
66
+ __metadata("design:type", String)
67
+ ], CalendarExternalItem.prototype, "accessRole", void 0);
68
+ __decorate([
69
+ (0, typeorm_1.Column)({ nullable: true }),
70
+ __metadata("design:type", String)
71
+ ], CalendarExternalItem.prototype, "color", void 0);
72
+ __decorate([
73
+ (0, typeorm_1.Column)({ default: false }),
74
+ __metadata("design:type", Boolean)
75
+ ], CalendarExternalItem.prototype, "selected", void 0);
76
+ __decorate([
77
+ (0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
78
+ __metadata("design:type", Array)
79
+ ], CalendarExternalItem.prototype, "defaultReminders", void 0);
80
+ __decorate([
81
+ (0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
82
+ __metadata("design:type", Object)
83
+ ], CalendarExternalItem.prototype, "conferenceProperties", void 0);
84
+ __decorate([
85
+ (0, typeorm_1.Column)({ type: 'jsonb', nullable: true }),
86
+ __metadata("design:type", Object)
87
+ ], CalendarExternalItem.prototype, "notificationSettings", void 0);
88
+ __decorate([
89
+ (0, typeorm_1.Column)({ nullable: true }),
90
+ __metadata("design:type", String)
91
+ ], CalendarExternalItem.prototype, "ownerName", void 0);
92
+ __decorate([
93
+ (0, typeorm_1.Column)({ nullable: true }),
94
+ __metadata("design:type", String)
95
+ ], CalendarExternalItem.prototype, "ownerEmail", void 0);
96
+ __decorate([
97
+ (0, typeorm_1.Column)({ type: 'enum', enum: CalendarProvider }),
98
+ __metadata("design:type", String)
99
+ ], CalendarExternalItem.prototype, "provider", void 0);
100
+ __decorate([
101
+ (0, typeorm_1.ManyToOne)(() => calendar_item_entity_1.CalendarItem, { nullable: false, onDelete: 'CASCADE' }),
102
+ __metadata("design:type", calendar_item_entity_1.CalendarItem)
103
+ ], CalendarExternalItem.prototype, "calendar", void 0);
104
+ __decorate([
105
+ (0, typeorm_1.ManyToOne)(() => oauth_entity_1.Oauth, { nullable: false, onDelete: 'CASCADE' }),
106
+ __metadata("design:type", oauth_entity_1.Oauth)
107
+ ], CalendarExternalItem.prototype, "oauth", void 0);
108
+ __decorate([
109
+ (0, typeorm_1.ManyToOne)(() => user_entity_1.User, { nullable: false, onDelete: 'CASCADE' }),
110
+ __metadata("design:type", user_entity_1.User)
111
+ ], CalendarExternalItem.prototype, "user", void 0);
112
+ exports.CalendarExternalItem = CalendarExternalItem = __decorate([
113
+ (0, typeorm_1.Entity)()
114
+ ], CalendarExternalItem);
115
+ //# sourceMappingURL=calendar-external-item.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"calendar-external-item.entity.js","sourceRoot":"","sources":["../../../../src/entities/tools/calendar/calendar-external-item.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AAEpD,sEAA+E;AAC/E,gEAAsD;AACtD,mDAAyC;AACzC,iEAAsD;AAEtD,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,qCAAiB,CAAA;IACjB,qCAAiB,CAAA;IACjB,2CAAuB,CAAA;AACzB,CAAC,EAJW,gBAAgB,gCAAhB,gBAAgB,QAI3B;AAGM,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,qCAAuB;IAE/D,UAAU,CAAS;IAGnB,IAAI,CAAS;IAGb,WAAW,CAAU;IAGrB,SAAS,CAAU;IAGnB,QAAQ,CAAS;IAGjB,UAAU,CAAU;IAGpB,KAAK,CAAU;IAGf,QAAQ,CAAU;IAGlB,gBAAgB,CAAyC;IAGzD,oBAAoB,CAAgD;IAGpE,oBAAoB,CAAyD;IAI7E,SAAS,CAAU;IAGnB,UAAU,CAAU;IAGpB,QAAQ,CAAmB;IAG3B,QAAQ,CAAe;IAGvB,KAAK,CAAQ;IAGb,IAAI,CAAO;CACZ,CAAA;AApDY,oDAAoB;AAE/B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;wDACvB;AAGnB;IADC,IAAA,gBAAM,GAAE;;kDACI;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;uDACR;AAGnB;IADC,IAAA,gBAAM,GAAE;;sDACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACZ;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;sDACT;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACe;AAGzD;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kEAC0B;AAGpE;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kEACmC;AAI7E;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACR;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;sDACtB;AAG3B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,mCAAY,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC9D,mCAAY;sDAAC;AAGvB;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oBAAK,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,oBAAK;mDAAC;AAGb;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,kBAAI;kDAAC;+BAnDA,oBAAoB;IADhC,IAAA,gBAAM,GAAE;GACI,oBAAoB,CAoDhC"}
@@ -0,0 +1,11 @@
1
+ import { BaseEntityOnlyEssential } from '../../../common/database/base.entity';
2
+ import { Oauth } from '../../thirdparty/oauth.entity';
3
+ import { User } from '../../user.entity';
4
+ import { CalendarExternalItem } from './calendar-external-item.entity';
5
+ export declare class CalendarItem extends BaseEntityOnlyEssential {
6
+ name?: string;
7
+ email: string;
8
+ externalCalendars: CalendarExternalItem[];
9
+ oauth: Oauth;
10
+ user: User;
11
+ }
@@ -0,0 +1,49 @@
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.CalendarItem = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const base_entity_1 = require("../../../common/database/base.entity");
15
+ const oauth_entity_1 = require("../../thirdparty/oauth.entity");
16
+ const user_entity_1 = require("../../user.entity");
17
+ const calendar_external_item_entity_1 = require("./calendar-external-item.entity");
18
+ let CalendarItem = class CalendarItem extends base_entity_1.BaseEntityOnlyEssential {
19
+ name;
20
+ email;
21
+ externalCalendars;
22
+ oauth;
23
+ user;
24
+ };
25
+ exports.CalendarItem = CalendarItem;
26
+ __decorate([
27
+ (0, typeorm_1.Column)({ nullable: true }),
28
+ __metadata("design:type", String)
29
+ ], CalendarItem.prototype, "name", void 0);
30
+ __decorate([
31
+ (0, typeorm_1.Column)(),
32
+ __metadata("design:type", String)
33
+ ], CalendarItem.prototype, "email", void 0);
34
+ __decorate([
35
+ (0, typeorm_1.OneToMany)(() => calendar_external_item_entity_1.CalendarExternalItem, calendarExternalItem => calendarExternalItem.calendar, { nullable: true }),
36
+ __metadata("design:type", Array)
37
+ ], CalendarItem.prototype, "externalCalendars", void 0);
38
+ __decorate([
39
+ (0, typeorm_1.ManyToOne)(() => oauth_entity_1.Oauth, { nullable: false, onDelete: 'CASCADE' }),
40
+ __metadata("design:type", oauth_entity_1.Oauth)
41
+ ], CalendarItem.prototype, "oauth", void 0);
42
+ __decorate([
43
+ (0, typeorm_1.ManyToOne)(() => user_entity_1.User, { nullable: false, onDelete: 'CASCADE' }),
44
+ __metadata("design:type", user_entity_1.User)
45
+ ], CalendarItem.prototype, "user", void 0);
46
+ exports.CalendarItem = CalendarItem = __decorate([
47
+ (0, typeorm_1.Entity)()
48
+ ], CalendarItem);
49
+ //# sourceMappingURL=calendar-item.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"calendar-item.entity.js","sourceRoot":"","sources":["../../../../src/entities/tools/calendar/calendar-item.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA+D;AAE/D,sEAA+E;AAC/E,gEAAsD;AACtD,mDAAyC;AACzC,mFAAuE;AAGhE,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,qCAAuB;IAEvD,IAAI,CAAU;IAGd,KAAK,CAAS;IAGd,iBAAiB,CAAyB;IAG1C,KAAK,CAAQ;IAGb,IAAI,CAAO;CACZ,CAAA;AAfY,oCAAY;AAEvB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0CACb;AAGd;IADC,IAAA,gBAAM,GAAE;;2CACK;AAGd;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oDAAoB,EAAE,oBAAoB,CAAC,EAAE,CAAC,oBAAoB,CAAC,QAAQ,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACvE;AAG1C;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oBAAK,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,oBAAK;2CAAC;AAGb;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,kBAAI;0CAAC;uBAdA,YAAY;IADxB,IAAA,gBAAM,GAAE;GACI,YAAY,CAexB"}
@@ -8,7 +8,6 @@ export declare enum CalendarProvider {
8
8
  }
9
9
  export declare class CalendarList extends BaseEntityOnlyEssential {
10
10
  calendarId: string;
11
- email: string;
12
11
  name: string;
13
12
  description?: string;
14
13
  isPrimary: boolean;
@@ -22,7 +22,6 @@ var CalendarProvider;
22
22
  })(CalendarProvider || (exports.CalendarProvider = CalendarProvider = {}));
23
23
  let CalendarList = class CalendarList extends base_entity_1.BaseEntityOnlyEssential {
24
24
  calendarId;
25
- email;
26
25
  name;
27
26
  description;
28
27
  isPrimary;
@@ -44,10 +43,6 @@ __decorate([
44
43
  (0, typeorm_1.Column)({ type: 'varchar', unique: true }),
45
44
  __metadata("design:type", String)
46
45
  ], CalendarList.prototype, "calendarId", void 0);
47
- __decorate([
48
- (0, typeorm_1.Column)(),
49
- __metadata("design:type", String)
50
- ], CalendarList.prototype, "email", void 0);
51
46
  __decorate([
52
47
  (0, typeorm_1.Column)(),
53
48
  __metadata("design:type", String)
@@ -1 +1 @@
1
- {"version":3,"file":"calendar-list.entity.js","sourceRoot":"","sources":["../../../../src/entities/tools/calendar/calendar-list.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AAEpD,sEAA+E;AAC/E,gEAAsD;AACtD,mDAAyC;AAEzC,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,qCAAiB,CAAA;IACjB,qCAAiB,CAAA;IACjB,2CAAuB,CAAA;AACzB,CAAC,EAJW,gBAAgB,gCAAhB,gBAAgB,QAI3B;AAGM,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,qCAAuB;IAEvD,UAAU,CAAS;IAGnB,KAAK,CAAS;IAGd,IAAI,CAAS;IAGb,WAAW,CAAU;IAGrB,SAAS,CAAU;IAGnB,QAAQ,CAAS;IAGjB,UAAU,CAAU;IAGpB,KAAK,CAAU;IAGf,QAAQ,CAAU;IAGlB,gBAAgB,CAAyC;IAGzD,oBAAoB,CAAgD;IAGpE,oBAAoB,CAAyD;IAI7E,SAAS,CAAU;IAGnB,UAAU,CAAU;IAGpB,QAAQ,CAAmB;IAG3B,KAAK,CAAQ;IAGb,IAAI,CAAO;CACZ,CAAA;AApDY,oCAAY;AAEvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;gDACvB;AAGnB;IADC,IAAA,gBAAM,GAAE;;2CACK;AAGd;IADC,IAAA,gBAAM,GAAE;;0CACI;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;+CACR;AAGnB;IADC,IAAA,gBAAM,GAAE;;8CACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACZ;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;8CACT;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACe;AAGzD;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DAC0B;AAGpE;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACmC;AAI7E;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACR;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;8CACtB;AAG3B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oBAAK,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,oBAAK;2CAAC;AAGb;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,kBAAI;0CAAC;uBAnDA,YAAY;IADxB,IAAA,gBAAM,GAAE;GACI,YAAY,CAoDxB"}
1
+ {"version":3,"file":"calendar-list.entity.js","sourceRoot":"","sources":["../../../../src/entities/tools/calendar/calendar-list.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AAEpD,sEAA+E;AAC/E,gEAAsD;AACtD,mDAAyC;AAEzC,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,qCAAiB,CAAA;IACjB,qCAAiB,CAAA;IACjB,2CAAuB,CAAA;AACzB,CAAC,EAJW,gBAAgB,gCAAhB,gBAAgB,QAI3B;AAGM,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,qCAAuB;IAEvD,UAAU,CAAS;IAGnB,IAAI,CAAS;IAGb,WAAW,CAAU;IAGrB,SAAS,CAAU;IAGnB,QAAQ,CAAS;IAGjB,UAAU,CAAU;IAGpB,KAAK,CAAU;IAGf,QAAQ,CAAU;IAGlB,gBAAgB,CAAyC;IAGzD,oBAAoB,CAAgD;IAGpE,oBAAoB,CAAyD;IAI7E,SAAS,CAAU;IAGnB,UAAU,CAAU;IAGpB,QAAQ,CAAmB;IAG3B,KAAK,CAAQ;IAGb,IAAI,CAAO;CACZ,CAAA;AAjDY,oCAAY;AAEvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;gDACvB;AAGnB;IADC,IAAA,gBAAM,GAAE;;0CACI;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;+CACR;AAGnB;IADC,IAAA,gBAAM,GAAE;;8CACQ;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACZ;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;8CACT;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACe;AAGzD;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DAC0B;AAGpE;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACmC;AAI7E;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACR;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;8CACtB;AAG3B;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,oBAAK,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,oBAAK;2CAAC;AAGb;IADC,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;8BAC1D,kBAAI;0CAAC;uBAhDA,YAAY;IADxB,IAAA,gBAAM,GAAE;GACI,YAAY,CAiDxB"}
@@ -2,5 +2,6 @@ export * from './event.entity';
2
2
  export * from './calendar-user-access.entity';
3
3
  export * from './calendar-event-invitations.entity';
4
4
  export * from './calendar-general-config.entity';
5
- export * from './calendar-list.entity';
5
+ export * from './calendar-external-item.entity';
6
+ export * from './calendar-item.entity';
6
7
  export * from './calendar-reminder.entity';
@@ -18,6 +18,7 @@ __exportStar(require("./event.entity"), exports);
18
18
  __exportStar(require("./calendar-user-access.entity"), exports);
19
19
  __exportStar(require("./calendar-event-invitations.entity"), exports);
20
20
  __exportStar(require("./calendar-general-config.entity"), exports);
21
- __exportStar(require("./calendar-list.entity"), exports);
21
+ __exportStar(require("./calendar-external-item.entity"), exports);
22
+ __exportStar(require("./calendar-item.entity"), exports);
22
23
  __exportStar(require("./calendar-reminder.entity"), exports);
23
24
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
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;AACvC,6DAA2C"}
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,kEAAgD;AAChD,yDAAuC;AACvC,6DAA2C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easywork-common-lib",
3
- "version": "1.0.862",
3
+ "version": "1.0.864",
4
4
  "description": "Librería común de Easywork",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {