easywork-common-lib 1.0.739 → 1.0.741

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.
@@ -1,30 +1,31 @@
1
- export * from "./protocol.entity";
2
- export * from "./otp-log.entity";
3
- export * from "./refresh-token.entity";
4
- export * from "./permission.entity";
5
- export * from "./phone.entity";
6
- export * from "./email.entity";
7
- export * from "./app_config/app-config.entity";
8
- export * from "./imap-config.entity";
9
- export * from "./tag.entity";
10
- export * from "./tools";
11
- export * from "./drive";
12
- export * from "./sales";
13
- export * from "./helpers";
14
- export * from "./notifications";
15
- export * from "./capacitation";
16
- export * from "./easyapp/filter-view.entity";
17
- export * from "./thirdparty/oauth.entity";
18
- export * from "./thirdparty/service.entity";
19
- export * from "./thirdparty/email.entity";
20
- export * from "./thirdparty/email-config.entity";
21
- export * from "./thirdparty/user-email-relation.entity";
22
- export * from "./currency.entity";
23
- export * from "./user.entity";
24
- export * from "./group.entity";
25
- export * from "./menu-permissions.entity";
26
- export * from "./profile.entity";
27
- export * from "./role.entity";
28
- export * from "./tools/calendar/event-list-calendars.entity";
29
- export * from "./meeting-comment.entity";
30
- export * from "./meeting.entity";
1
+ export * from './protocol.entity';
2
+ export * from './otp-log.entity';
3
+ export * from './refresh-token.entity';
4
+ export * from './permission.entity';
5
+ export * from './phone.entity';
6
+ export * from './email.entity';
7
+ export * from './app_config/app-config.entity';
8
+ export * from './imap-config.entity';
9
+ export * from './tag.entity';
10
+ export * from './tools';
11
+ export * from './drive';
12
+ export * from './sales';
13
+ export * from './helpers';
14
+ export * from './notifications';
15
+ export * from './capacitation';
16
+ export * from './easyapp/filter-view.entity';
17
+ export * from './thirdparty/oauth.entity';
18
+ export * from './thirdparty/service.entity';
19
+ export * from './thirdparty/email.entity';
20
+ export * from './thirdparty/email-config.entity';
21
+ export * from './thirdparty/user-email-relation.entity';
22
+ export * from './currency.entity';
23
+ export * from './user.entity';
24
+ export * from './group.entity';
25
+ export * from './menu-permissions.entity';
26
+ export * from './profile.entity';
27
+ export * from './role.entity';
28
+ export * from './tools/calendar/event-list-calendars.entity';
29
+ export * from './meeting-comment.entity';
30
+ export * from './meeting.entity';
31
+ export * from './user-invitations.entity';
@@ -44,4 +44,5 @@ __exportStar(require("./role.entity"), exports);
44
44
  __exportStar(require("./tools/calendar/event-list-calendars.entity"), exports);
45
45
  __exportStar(require("./meeting-comment.entity"), exports);
46
46
  __exportStar(require("./meeting.entity"), exports);
47
+ __exportStar(require("./user-invitations.entity"), exports);
47
48
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,mDAAiC;AACjC,yDAAuC;AACvC,sDAAoC;AACpC,iDAA+B;AAC/B,iDAA+B;AAC/B,iEAA+C;AAC/C,uDAAqC;AACrC,+CAA6B;AAC7B,0CAAwB;AACxB,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,kDAAgC;AAChC,iDAA+B;AAC/B,+DAA6C;AAC7C,4DAA0C;AAC1C,8DAA4C;AAC5C,4DAA0C;AAC1C,mEAAiD;AACjD,0EAAwD;AACxD,oDAAkC;AAClC,gDAA8B;AAC9B,iDAA+B;AAC/B,4DAA0C;AAC1C,mDAAiC;AACjC,gDAA8B;AAC9B,+EAA6D;AAC7D,2DAAyC;AACzC,mDAAiC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,mDAAiC;AACjC,yDAAuC;AACvC,sDAAoC;AACpC,iDAA+B;AAC/B,iDAA+B;AAC/B,iEAA+C;AAC/C,uDAAqC;AACrC,+CAA6B;AAC7B,0CAAwB;AACxB,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,kDAAgC;AAChC,iDAA+B;AAC/B,+DAA6C;AAC7C,4DAA0C;AAC1C,8DAA4C;AAC5C,4DAA0C;AAC1C,mEAAiD;AACjD,0EAAwD;AACxD,oDAAkC;AAClC,gDAA8B;AAC9B,iDAA+B;AAC/B,4DAA0C;AAC1C,mDAAiC;AACjC,gDAA8B;AAC9B,+EAA6D;AAC7D,2DAAyC;AACzC,mDAAiC;AACjC,4DAA0C"}
@@ -5,4 +5,5 @@ export declare class UserInvitations extends EntityBase {
5
5
  email: string;
6
6
  isLink: boolean;
7
7
  link: string;
8
+ adminApproveRequired: boolean;
8
9
  }
@@ -19,6 +19,7 @@ let UserInvitations = class UserInvitations extends base_entity_1.EntityBase {
19
19
  email;
20
20
  isLink;
21
21
  link;
22
+ adminApproveRequired;
22
23
  };
23
24
  exports.UserInvitations = UserInvitations;
24
25
  __decorate([
@@ -43,14 +44,14 @@ __decorate([
43
44
  (0, swagger_1.ApiProperty)({
44
45
  type: String,
45
46
  description: 'Email',
46
- required: true,
47
+ required: false,
47
48
  }),
48
- (0, typeorm_1.Column)({ length: 150, nullable: false }),
49
+ (0, typeorm_1.Column)({ length: 150, nullable: true }),
49
50
  __metadata("design:type", String)
50
51
  ], UserInvitations.prototype, "email", void 0);
51
52
  __decorate([
52
53
  (0, swagger_1.ApiProperty)({
53
- type: String,
54
+ type: Boolean,
54
55
  description: 'Is Link validation',
55
56
  required: false,
56
57
  }),
@@ -66,6 +67,15 @@ __decorate([
66
67
  (0, typeorm_1.Column)({ length: 255, nullable: true }),
67
68
  __metadata("design:type", String)
68
69
  ], UserInvitations.prototype, "link", void 0);
70
+ __decorate([
71
+ (0, swagger_1.ApiProperty)({
72
+ type: Boolean,
73
+ description: 'Admin approve',
74
+ required: false,
75
+ }),
76
+ (0, typeorm_1.Column)({ nullable: false, default: false }),
77
+ __metadata("design:type", Boolean)
78
+ ], UserInvitations.prototype, "adminApproveRequired", void 0);
69
79
  exports.UserInvitations = UserInvitations = __decorate([
70
80
  (0, typeorm_1.Entity)()
71
81
  ], UserInvitations);
@@ -1 +1 @@
1
- {"version":3,"file":"user-invitations.entity.js","sourceRoot":"","sources":["../../src/entities/user-invitations.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6CAA8C;AAE9C,gEAA4D;AAGrD,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,wBAAU;IAO7C,IAAI,CAAS;IAQb,QAAQ,CAAS;IAQjB,KAAK,CAAS;IAQd,MAAM,CAAU;IAQhB,IAAI,CAAS;CACd,CAAA;AAxCY,0CAAe;AAO1B;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,MAAM;QACnB,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC3B;AAQb;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,WAAW;QACxB,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACvB;AAQjB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,OAAO;QACpB,QAAQ,EAAE,IAAI;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;8CAC3B;AAQd;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,oBAAoB;QACjC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;+CAC5B;AAQhB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,gBAAgB;QAC7B,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC3B;0BAvCF,eAAe;IAD3B,IAAA,gBAAM,GAAE;GACI,eAAe,CAwC3B"}
1
+ {"version":3,"file":"user-invitations.entity.js","sourceRoot":"","sources":["../../src/entities/user-invitations.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6CAA8C;AAE9C,gEAA4D;AAGrD,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,wBAAU;IAO7C,IAAI,CAAS;IAQb,QAAQ,CAAS;IAQjB,KAAK,CAAS;IAQd,MAAM,CAAU;IAQhB,IAAI,CAAS;IAQb,oBAAoB,CAAU;CAC/B,CAAA;AAhDY,0CAAe;AAO1B;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,MAAM;QACnB,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC3B;AAQb;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,WAAW;QACxB,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDACvB;AAQjB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,OAAO;QACpB,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC1B;AAQd;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,oBAAoB;QACjC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;+CAC5B;AAQhB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,gBAAgB;QAC7B,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC3B;AAQb;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE,eAAe;QAC5B,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;6DACd;0BA/CnB,eAAe;IAD3B,IAAA,gBAAM,GAAE;GACI,eAAe,CAgD3B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easywork-common-lib",
3
- "version": "1.0.739",
3
+ "version": "1.0.741",
4
4
  "description": "Librería común de Easywork",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {