cecon-interfaces 1.8.15 → 1.8.20

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.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Resposta da criação do pagamento
3
+ */
4
+ export interface IFirebankPaymentResponse {
5
+ generateTime: string;
6
+ paymentLink: string;
7
+ pixCode: string;
8
+ pixQrCode: string;
9
+ status: string;
10
+ transactionId: string;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
1
1
  export { IFirebankCallback } from './i-callback';
2
2
  export { IFirebankCallbackError } from './i-callback-error';
3
3
  export { IFirebankPaymentPost, IFirebankPaymentPostAddress, IFirebankPaymentPostContact, IFirebankPaymentPostPayer, IFirebankPaymentPostSplit, IFirebankPaymentPostTransaction, } from './i-payment-post';
4
+ export { IFirebankPaymentResponse } from './i-payment-response';
@@ -1,9 +1,9 @@
1
1
  export interface IGlobalSettingFirebank {
2
+ active: boolean;
2
3
  apiKey: string;
3
- userName: string;
4
- password: string;
5
- basicAuth64: string;
6
4
  baseUrl: string;
7
- active: boolean;
5
+ basicAuth64: string;
8
6
  id: string;
7
+ password: string;
8
+ userName: string;
9
9
  }
@@ -1,4 +1,6 @@
1
1
  export declare class OrderPaymentPixEntity {
2
+ imageBase64: string;
3
+ paymentLink: string;
2
4
  pixKey: string;
3
5
  urlQrImage: string;
4
6
  constructor(data?: Partial<OrderPaymentPixEntity>);
@@ -2,10 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OrderPaymentPixEntity = void 0;
4
4
  var OrderPaymentPixEntity = /** @class */ (function () {
5
- // #endregion Properties (2)
6
- // #region Constructors (1)
7
5
  function OrderPaymentPixEntity(data) {
8
- // #region Properties (2)
6
+ this.imageBase64 = '';
7
+ this.paymentLink = '';
9
8
  this.pixKey = '';
10
9
  this.urlQrImage = '';
11
10
  if (data) {
@@ -1,4 +1,6 @@
1
1
  export interface IOrderPaymentPix {
2
+ imageBase64: string;
3
+ paymentLink: string;
2
4
  pixKey: string;
3
5
  urlQrImage: string;
4
6
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.8.15",
3
+ "version": "1.8.20",
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.8.15",
3
+ "version": "1.8.20",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",