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.
- package/dist/esm2022/payio/index.mjs +2 -1
- package/dist/esm2022/payio/resume-companies/entities/index.mjs +4 -0
- package/dist/esm2022/payio/resume-companies/entities/resume-company-item-detail.entity.mjs +17 -0
- package/dist/esm2022/payio/resume-companies/entities/resume-company-item.entity.mjs +19 -0
- package/dist/esm2022/payio/resume-companies/entities/resume-company.entity.mjs +21 -0
- package/dist/esm2022/payio/resume-companies/index.mjs +3 -0
- package/dist/esm2022/payio/resume-companies/interfaces/i-resume-company-item-detail.mjs +2 -0
- package/dist/esm2022/payio/resume-companies/interfaces/i-resume-company-item.mjs +2 -0
- package/dist/esm2022/payio/resume-companies/interfaces/i-resume-company.mjs +2 -0
- package/dist/esm2022/payio/resume-companies/interfaces/index.mjs +2 -0
- package/dist/fesm2022/cecon-interfaces.mjs +56 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/payio/index.d.ts +1 -0
- package/dist/payio/index.js +1 -0
- package/dist/payio/resume-companies/entities/index.d.ts +3 -0
- package/dist/payio/resume-companies/entities/index.js +9 -0
- package/dist/payio/resume-companies/entities/resume-company-item-detail.entity.d.ts +7 -0
- package/dist/payio/resume-companies/entities/resume-company-item-detail.entity.js +21 -0
- package/dist/payio/resume-companies/entities/resume-company-item.entity.d.ts +8 -0
- package/dist/payio/resume-companies/entities/resume-company-item.entity.js +23 -0
- package/dist/payio/resume-companies/entities/resume-company.entity.d.ts +13 -0
- package/dist/payio/resume-companies/entities/resume-company.entity.js +25 -0
- package/dist/payio/resume-companies/index.d.ts +2 -0
- package/dist/payio/resume-companies/index.js +18 -0
- package/dist/payio/resume-companies/interfaces/i-resume-company-item-detail.d.ts +5 -0
- package/dist/payio/resume-companies/interfaces/i-resume-company-item-detail.js +2 -0
- package/dist/payio/resume-companies/interfaces/i-resume-company-item.d.ts +6 -0
- package/dist/payio/resume-companies/interfaces/i-resume-company-item.js +2 -0
- package/dist/payio/resume-companies/interfaces/i-resume-company.d.ts +11 -0
- package/dist/payio/resume-companies/interfaces/i-resume-company.js +2 -0
- package/dist/payio/resume-companies/interfaces/index.d.ts +3 -0
- package/dist/payio/resume-companies/interfaces/index.js +2 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
package/dist/payio/index.d.ts
CHANGED
package/dist/payio/index.js
CHANGED
@@ -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,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,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,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
|
+
}
|