cecon-interfaces 1.1.35 → 1.1.37

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.35",
3
+ "version": "1.1.37",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 (2)
5
+ // #endregion Properties (3)
6
6
  // #region Constructors (1)
7
7
  function ResumeEntity(data) {
8
- // #region Properties (2)
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) {
@@ -3,4 +3,5 @@ import { IResumeTotal } from './i-resume-total';
3
3
  export interface IResume {
4
4
  counts: IResumeCollection[];
5
5
  totals: IResumeTotal[];
6
+ id: string;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.35",
3
+ "version": "1.1.37",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",