cecon-interfaces 1.9.30 → 1.9.31

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.
@@ -17,6 +17,7 @@ export declare class PayioCardEntity implements IPayioCard {
17
17
  info: PayioCardInfoEntity;
18
18
  logs: string[];
19
19
  status: EPayioCardStatus;
20
+ tags: string[];
20
21
  updatedAt: Date;
21
22
  constructor(data?: Partial<PayioCardEntity>);
22
23
  }
@@ -20,6 +20,7 @@ var PayioCardEntity = /** @class */ (function () {
20
20
  this.info = new card_info_entity_1.PayioCardInfoEntity();
21
21
  this.logs = [];
22
22
  this.status = enums_1.EPayioCardStatus.PENDING;
23
+ this.tags = [];
23
24
  this.updatedAt = new Date();
24
25
  if (data) {
25
26
  for (var key in data) {
@@ -13,5 +13,6 @@ export interface IPayioCard {
13
13
  info: IPayioCardInfo;
14
14
  logs: string[];
15
15
  status: EPayioCardStatus;
16
+ tags: string[];
16
17
  updatedAt: Date;
17
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.9.30",
3
+ "version": "1.9.31",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",