cecon-interfaces 1.7.57 → 1.7.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.
@@ -5,6 +5,7 @@ export interface IMercadoPagoPaymentCamelCase {
5
5
  couponAmount: number;
6
6
  currencyId: string;
7
7
  dateApproved: string;
8
+ moneyReleaseStatus: string;
8
9
  dateCreated: string;
9
10
  dateLastUpdated: string;
10
11
  description: string;
@@ -4,6 +4,7 @@ export interface IMercadoPagoPayment {
4
4
  date_approved: string;
5
5
  date_last_updated: string;
6
6
  money_release_date: string;
7
+ money_release_status: string;
7
8
  payment_method_id: string;
8
9
  payment_type_id: string;
9
10
  status: string;
@@ -1,6 +1,8 @@
1
1
  import { INatipayJwtPayloadApp } from '../interfaces/i-payload-app';
2
2
  export declare class NatipayJwtPayloadAppEntity implements INatipayJwtPayloadApp {
3
+ developerId: string | null;
3
4
  id: string;
5
+ name: string | null;
4
6
  slug: string;
5
7
  constructor(data?: Partial<NatipayJwtPayloadAppEntity>);
6
8
  }
@@ -2,11 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.NatipayJwtPayloadAppEntity = void 0;
4
4
  var NatipayJwtPayloadAppEntity = /** @class */ (function () {
5
- // #endregion Properties (3)
6
- // #region Constructors (1)
7
5
  function NatipayJwtPayloadAppEntity(data) {
8
- // #region Properties (3)
6
+ this.developerId = null;
9
7
  this.id = '';
8
+ this.name = null;
10
9
  this.slug = '';
11
10
  if (data) {
12
11
  for (var key in data) {
@@ -1,4 +1,6 @@
1
1
  export interface INatipayJwtPayloadApp {
2
2
  id: string;
3
- slug: string;
3
+ developerId: string | null;
4
+ slug: string | null;
5
+ name: string | null;
4
6
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.57",
3
+ "version": "1.7.59",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.7.57",
3
+ "version": "1.7.59",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",