cecon-interfaces 1.1.35 → 1.1.37
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/company/entities/company.entity.d.ts +2 -0
- package/dist/company/entities/company.entity.js +2 -0
- package/dist/company/interfaces/i-company.d.ts +2 -0
- package/dist/esm2022/company/entities/company.entity.mjs +3 -1
- package/dist/esm2022/company/interfaces/i-company.mjs +1 -1
- package/dist/esm2022/resume/entities/resume.entity.mjs +4 -3
- package/dist/esm2022/resume/interfaces/i-resume.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +5 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/resume/entities/resume.entity.d.ts +1 -0
- package/dist/resume/entities/resume.entity.js +3 -2
- package/dist/resume/interfaces/i-resume.d.ts +1 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -3,6 +3,7 @@ import { ResumeCollectionEntity } from './resume-collection.entity';
|
|
3
3
|
import { ResumeTotalEntity } from './resume-total.entity';
|
4
4
|
export declare class ResumeEntity implements IResume {
|
5
5
|
counts: ResumeCollectionEntity[];
|
6
|
+
id: string;
|
6
7
|
totals: ResumeTotalEntity[];
|
7
8
|
constructor(data?: Partial<ResumeEntity>);
|
8
9
|
}
|
@@ -2,11 +2,12 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.ResumeEntity = void 0;
|
4
4
|
var ResumeEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (3)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function ResumeEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (3)
|
9
9
|
this.counts = [];
|
10
|
+
this.id = '';
|
10
11
|
this.totals = [];
|
11
12
|
if (data) {
|
12
13
|
for (var key in data) {
|