cecon-interfaces 1.8.27 → 1.8.28

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.
@@ -2,6 +2,7 @@ import { IFeeDetail } from '../interfaces';
2
2
  export declare class FeeDetailEntity implements IFeeDetail {
3
3
  amount: number;
4
4
  feePayer: 'collector' | string;
5
- type: 'mercadopago_fee' | 'application_fee' | string;
5
+ type: 'mercadopago_fee' | 'plattform_fee' | 'firebank_fee' | string;
6
+ description?: string;
6
7
  constructor(data?: Partial<FeeDetailEntity>);
7
8
  }
@@ -6,6 +6,7 @@ var FeeDetailEntity = /** @class */ (function () {
6
6
  this.amount = 0;
7
7
  this.feePayer = '';
8
8
  this.type = '';
9
+ this.description = '';
9
10
  if (data) {
10
11
  for (var key in data) {
11
12
  if (data.hasOwnProperty(key) && key in this) {
@@ -2,4 +2,5 @@ export interface IFeeDetail {
2
2
  amount: number;
3
3
  feePayer: 'collector' | string;
4
4
  type: 'mercadopago_fee' | 'application_fee' | string;
5
+ description?: string;
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.8.27",
3
+ "version": "1.8.28",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",