cecon-interfaces 1.9.58 → 1.9.59

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.
@@ -12,6 +12,7 @@ export declare class PayioCardConfigEntity implements IPayioCardConfig {
12
12
  items: PayioCardItemEntity[];
13
13
  key: string | null;
14
14
  keyType: EPayioCardKeyType;
15
+ label: string;
15
16
  password: string | null;
16
17
  constructor(data?: Partial<PayioCardConfigEntity>);
17
18
  }
@@ -8,7 +8,6 @@ export declare class PayioCardEntity implements IPayioCard {
8
8
  containerId: string | null;
9
9
  createdAt: Date;
10
10
  id: string;
11
- label: string;
12
11
  logs: string[];
13
12
  mode: ECardMode;
14
13
  status: EPayioCardStatus;
@@ -11,7 +11,6 @@ var PayioCardEntity = /** @class */ (function () {
11
11
  this.containerId = null;
12
12
  this.createdAt = new Date();
13
13
  this.id = '';
14
- this.label = '';
15
14
  this.logs = [];
16
15
  this.mode = enums_1.ECardMode.HYBRID;
17
16
  this.status = enums_1.EPayioCardStatus.BLOCKED;
@@ -1,8 +1,8 @@
1
- import { EAmountMode } from '../../../general';
2
- import { EPayioCardKeyType } from '../enums';
3
- import { IPayioCardAuth } from './i-card-auth';
4
- import { IPayioCardCompany } from './i-card-company';
5
- import { IPayioCardItem } from './i-card-item';
1
+ import { EAmountMode } from "../../../general";
2
+ import { EPayioCardKeyType } from "../enums";
3
+ import { IPayioCardAuth } from "./i-card-auth";
4
+ import { IPayioCardCompany } from "./i-card-company";
5
+ import { IPayioCardItem } from "./i-card-item";
6
6
  export interface IPayioCardConfig {
7
7
  appIds: string[];
8
8
  auth?: IPayioCardAuth | null;
@@ -13,5 +13,6 @@ export interface IPayioCardConfig {
13
13
  items: IPayioCardItem[];
14
14
  key: string | null;
15
15
  keyType: EPayioCardKeyType;
16
+ label: string;
16
17
  password: string | null;
17
18
  }
@@ -7,7 +7,6 @@ export interface IPayioCard {
7
7
  containerId: string | null;
8
8
  createdAt: Date;
9
9
  id: string;
10
- label: string;
11
10
  logs: string[];
12
11
  mode: ECardMode;
13
12
  status: EPayioCardStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.9.58",
3
+ "version": "1.9.59",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",