cecon-interfaces 1.6.28 → 1.6.29

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.
Files changed (34) hide show
  1. package/dist/esm2022/payio/index.mjs +2 -1
  2. package/dist/esm2022/payio/resume-companies/entities/index.mjs +4 -0
  3. package/dist/esm2022/payio/resume-companies/entities/resume-company-item-detail.entity.mjs +17 -0
  4. package/dist/esm2022/payio/resume-companies/entities/resume-company-item.entity.mjs +19 -0
  5. package/dist/esm2022/payio/resume-companies/entities/resume-company.entity.mjs +21 -0
  6. package/dist/esm2022/payio/resume-companies/index.mjs +3 -0
  7. package/dist/esm2022/payio/resume-companies/interfaces/i-resume-company-item-detail.mjs +2 -0
  8. package/dist/esm2022/payio/resume-companies/interfaces/i-resume-company-item.mjs +2 -0
  9. package/dist/esm2022/payio/resume-companies/interfaces/i-resume-company.mjs +2 -0
  10. package/dist/esm2022/payio/resume-companies/interfaces/index.mjs +2 -0
  11. package/dist/fesm2022/cecon-interfaces.mjs +56 -1
  12. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  13. package/dist/package.json +1 -1
  14. package/dist/payio/index.d.ts +1 -0
  15. package/dist/payio/index.js +1 -0
  16. package/dist/payio/resume-companies/entities/index.d.ts +3 -0
  17. package/dist/payio/resume-companies/entities/index.js +9 -0
  18. package/dist/payio/resume-companies/entities/resume-company-item-detail.entity.d.ts +7 -0
  19. package/dist/payio/resume-companies/entities/resume-company-item-detail.entity.js +21 -0
  20. package/dist/payio/resume-companies/entities/resume-company-item.entity.d.ts +8 -0
  21. package/dist/payio/resume-companies/entities/resume-company-item.entity.js +23 -0
  22. package/dist/payio/resume-companies/entities/resume-company.entity.d.ts +13 -0
  23. package/dist/payio/resume-companies/entities/resume-company.entity.js +25 -0
  24. package/dist/payio/resume-companies/index.d.ts +2 -0
  25. package/dist/payio/resume-companies/index.js +18 -0
  26. package/dist/payio/resume-companies/interfaces/i-resume-company-item-detail.d.ts +5 -0
  27. package/dist/payio/resume-companies/interfaces/i-resume-company-item-detail.js +2 -0
  28. package/dist/payio/resume-companies/interfaces/i-resume-company-item.d.ts +6 -0
  29. package/dist/payio/resume-companies/interfaces/i-resume-company-item.js +2 -0
  30. package/dist/payio/resume-companies/interfaces/i-resume-company.d.ts +11 -0
  31. package/dist/payio/resume-companies/interfaces/i-resume-company.js +2 -0
  32. package/dist/payio/resume-companies/interfaces/index.d.ts +3 -0
  33. package/dist/payio/resume-companies/interfaces/index.js +2 -0
  34. package/package.json +1 -1
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.28",
3
+ "version": "1.6.29",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -5,6 +5,7 @@ export * from './features';
5
5
  export * from './payload';
6
6
  export * from './permissions';
7
7
  export * from './plan';
8
+ export * from './resume-companies';
8
9
  export * from './resume-queues';
9
10
  export * from './subscriptions';
10
11
  export * from './tokens';
@@ -21,6 +21,7 @@ __exportStar(require("./features"), exports);
21
21
  __exportStar(require("./payload"), exports);
22
22
  __exportStar(require("./permissions"), exports);
23
23
  __exportStar(require("./plan"), exports);
24
+ __exportStar(require("./resume-companies"), exports);
24
25
  __exportStar(require("./resume-queues"), exports);
25
26
  __exportStar(require("./subscriptions"), exports);
26
27
  __exportStar(require("./tokens"), exports);
@@ -0,0 +1,3 @@
1
+ export { PayioResumeCompanyItemDetailEntity } from './resume-company-item-detail.entity';
2
+ export { PayioResumeCompanyItemEntity } from './resume-company-item.entity';
3
+ export { PayioResumeCompanyEntity } from './resume-company.entity';
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PayioResumeCompanyEntity = exports.PayioResumeCompanyItemEntity = exports.PayioResumeCompanyItemDetailEntity = void 0;
4
+ var resume_company_item_detail_entity_1 = require("./resume-company-item-detail.entity");
5
+ Object.defineProperty(exports, "PayioResumeCompanyItemDetailEntity", { enumerable: true, get: function () { return resume_company_item_detail_entity_1.PayioResumeCompanyItemDetailEntity; } });
6
+ var resume_company_item_entity_1 = require("./resume-company-item.entity");
7
+ Object.defineProperty(exports, "PayioResumeCompanyItemEntity", { enumerable: true, get: function () { return resume_company_item_entity_1.PayioResumeCompanyItemEntity; } });
8
+ var resume_company_entity_1 = require("./resume-company.entity");
9
+ Object.defineProperty(exports, "PayioResumeCompanyEntity", { enumerable: true, get: function () { return resume_company_entity_1.PayioResumeCompanyEntity; } });
@@ -0,0 +1,7 @@
1
+ import { ICoords } from '../../../general';
2
+ import { IPayioResumeCompanyItemDetail } from '../interfaces';
3
+ export declare class PayioResumeCompanyItemDetailEntity implements IPayioResumeCompanyItemDetail {
4
+ cords: ICoords[];
5
+ count: number;
6
+ constructor(data?: Partial<PayioResumeCompanyItemDetailEntity>);
7
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PayioResumeCompanyItemDetailEntity = void 0;
4
+ var PayioResumeCompanyItemDetailEntity = /** @class */ (function () {
5
+ // #endregion Properties (2)
6
+ // #region Constructors (1)
7
+ function PayioResumeCompanyItemDetailEntity(data) {
8
+ // #region Properties (2)
9
+ this.cords = [];
10
+ this.count = 0;
11
+ if (data) {
12
+ for (var key in data) {
13
+ if (data.hasOwnProperty(key) && key in this) {
14
+ this[key] = data[key];
15
+ }
16
+ }
17
+ }
18
+ }
19
+ return PayioResumeCompanyItemDetailEntity;
20
+ }());
21
+ exports.PayioResumeCompanyItemDetailEntity = PayioResumeCompanyItemDetailEntity;
@@ -0,0 +1,8 @@
1
+ import { IPayioResumeCompanyItem } from '../interfaces';
2
+ import { PayioResumeCompanyItemDetailEntity } from './resume-company-item-detail.entity';
3
+ export declare class PayioResumeCompanyItemEntity implements IPayioResumeCompanyItem {
4
+ created: PayioResumeCompanyItemDetailEntity;
5
+ deleted: PayioResumeCompanyItemDetailEntity;
6
+ sandbox: PayioResumeCompanyItemDetailEntity;
7
+ constructor(data?: Partial<PayioResumeCompanyItemEntity>);
8
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PayioResumeCompanyItemEntity = void 0;
4
+ var resume_company_item_detail_entity_1 = require("./resume-company-item-detail.entity");
5
+ var PayioResumeCompanyItemEntity = /** @class */ (function () {
6
+ // #endregion Properties (3)
7
+ // #region Constructors (1)
8
+ function PayioResumeCompanyItemEntity(data) {
9
+ // #region Properties (3)
10
+ this.created = new resume_company_item_detail_entity_1.PayioResumeCompanyItemDetailEntity();
11
+ this.deleted = new resume_company_item_detail_entity_1.PayioResumeCompanyItemDetailEntity();
12
+ this.sandbox = new resume_company_item_detail_entity_1.PayioResumeCompanyItemDetailEntity();
13
+ if (data) {
14
+ for (var key in data) {
15
+ if (data.hasOwnProperty(key) && key in this) {
16
+ this[key] = data[key];
17
+ }
18
+ }
19
+ }
20
+ }
21
+ return PayioResumeCompanyItemEntity;
22
+ }());
23
+ exports.PayioResumeCompanyItemEntity = PayioResumeCompanyItemEntity;
@@ -0,0 +1,13 @@
1
+ import { IPayioResumeCompany, IPayioResumeCompanyItem } from '../interfaces';
2
+ import { PayioResumeCompanyItemEntity } from './resume-company-item.entity';
3
+ export declare class PayioResumeCompanyEntity implements IPayioResumeCompany {
4
+ createdAt: Date;
5
+ id: string;
6
+ item: IPayioResumeCompanyItem;
7
+ items: {
8
+ id: string;
9
+ item: PayioResumeCompanyItemEntity;
10
+ }[];
11
+ updatedAt: Date;
12
+ constructor(data?: Partial<PayioResumeCompanyEntity>);
13
+ }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PayioResumeCompanyEntity = void 0;
4
+ var resume_company_item_entity_1 = require("./resume-company-item.entity");
5
+ var PayioResumeCompanyEntity = /** @class */ (function () {
6
+ // #endregion Properties (5)
7
+ // #region Constructors (1)
8
+ function PayioResumeCompanyEntity(data) {
9
+ // #region Properties (5)
10
+ this.createdAt = new Date();
11
+ this.id = '';
12
+ this.item = new resume_company_item_entity_1.PayioResumeCompanyItemEntity();
13
+ this.items = [];
14
+ this.updatedAt = new Date();
15
+ if (data) {
16
+ for (var key in data) {
17
+ if (data.hasOwnProperty(key) && key in this) {
18
+ this[key] = data[key];
19
+ }
20
+ }
21
+ }
22
+ }
23
+ return PayioResumeCompanyEntity;
24
+ }());
25
+ exports.PayioResumeCompanyEntity = PayioResumeCompanyEntity;
@@ -0,0 +1,2 @@
1
+ export * from './entities';
2
+ export * from './interfaces';
@@ -0,0 +1,18 @@
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("./entities"), exports);
18
+ __exportStar(require("./interfaces"), exports);
@@ -0,0 +1,5 @@
1
+ import { ICoords } from '../../../general';
2
+ export interface IPayioResumeCompanyItemDetail {
3
+ cords: ICoords[];
4
+ count: number;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { IPayioResumeCompanyItemDetail } from './i-resume-company-item-detail';
2
+ export interface IPayioResumeCompanyItem {
3
+ created: IPayioResumeCompanyItemDetail;
4
+ deleted: IPayioResumeCompanyItemDetail;
5
+ sandbox: IPayioResumeCompanyItemDetail;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ import { IPayioResumeCompanyItem } from './i-resume-company-item';
2
+ export interface IPayioResumeCompany {
3
+ id: string;
4
+ createdAt: Date;
5
+ updatedAt: Date;
6
+ item: IPayioResumeCompanyItem;
7
+ items: {
8
+ id: string;
9
+ item: IPayioResumeCompanyItem;
10
+ }[];
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ export { IPayioResumeCompany } from './i-resume-company';
2
+ export { IPayioResumeCompanyItem } from './i-resume-company-item';
3
+ export { IPayioResumeCompanyItemDetail } from './i-resume-company-item-detail';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.6.28",
3
+ "version": "1.6.29",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",