cecon-interfaces 1.7.28 → 1.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.28",
3
+ "version": "1.7.29",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,6 +4,7 @@ export declare class PayioTabEntity implements IPayioTab {
4
4
  createdAt: Date;
5
5
  id: string;
6
6
  name: string;
7
+ tags: string[];
7
8
  updatedAt: Date;
8
9
  constructor(data?: Partial<PayioTabEntity>);
9
10
  }
@@ -2,14 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PayioTabEntity = void 0;
4
4
  var PayioTabEntity = /** @class */ (function () {
5
- // #endregion Properties (7)
6
- // #region Constructors (1)
7
5
  function PayioTabEntity(data) {
8
- // #region Properties (7)
9
6
  this.active = true;
10
7
  this.createdAt = new Date();
11
8
  this.id = '';
12
9
  this.name = '';
10
+ this.tags = [];
13
11
  this.updatedAt = new Date();
14
12
  if (data) {
15
13
  for (var key in data) {
@@ -4,4 +4,5 @@ export interface IPayioTab {
4
4
  id: string;
5
5
  name: string | null;
6
6
  updatedAt: Date;
7
+ tags: string[];
7
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.28",
3
+ "version": "1.7.29",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",