cecon-interfaces 2.0.61 → 2.0.63

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.
@@ -28,6 +28,7 @@ export declare class TabCustomerEntity implements ITabCustomer {
28
28
  name: string;
29
29
  doc: string;
30
30
  docType: EDocType;
31
+ externalRef: string | null;
31
32
  email: string | null;
32
33
  phoneNumber: string | null;
33
34
  internationalCode: string | null;
@@ -64,6 +64,7 @@ var TabCustomerEntity = /** @class */ (function () {
64
64
  this.name = '';
65
65
  this.doc = '';
66
66
  this.docType = general_1.EDocType.CPF;
67
+ this.externalRef = null;
67
68
  this.email = null;
68
69
  this.phoneNumber = null;
69
70
  this.internationalCode = null;
@@ -36,6 +36,12 @@ export interface ITabCustomer {
36
36
  name: string;
37
37
  doc: string;
38
38
  docType: EDocType;
39
+ /**
40
+ * Referência do cliente no sistema do parceiro/integrador (ex.: id do
41
+ * cliente na base deles). Opcional, usada só para reconciliação externa —
42
+ * não substitui `doc` como chave de busca interna.
43
+ */
44
+ externalRef: string | null;
39
45
  email: string | null;
40
46
  phoneNumber: string | null;
41
47
  internationalCode: string | null;
@@ -8,5 +8,7 @@ export declare enum EOperationType {
8
8
  FIN_TAX = "Taxa financeira",
9
9
  WITHDRAW = "Saque em conta",
10
10
  REGULAR_PAYMENT = "Pagamento de conta",
11
- AUTOMATIC_DEBIT = "D\u00E9bito autom\u00E1tico"
11
+ AUTOMATIC_DEBIT = "D\u00E9bito autom\u00E1tico",
12
+ TAB_INVOICE_PAYMENT = "Recebimento de fatura",
13
+ TAB_INVOICE_ISSUANCE_FEE = "Emiss\u00E3o de fatura"
12
14
  }
@@ -14,4 +14,6 @@ var EOperationType;
14
14
  EOperationType["WITHDRAW"] = "Saque em conta";
15
15
  EOperationType["REGULAR_PAYMENT"] = "Pagamento de conta";
16
16
  EOperationType["AUTOMATIC_DEBIT"] = "D\u00E9bito autom\u00E1tico";
17
+ EOperationType["TAB_INVOICE_PAYMENT"] = "Recebimento de fatura";
18
+ EOperationType["TAB_INVOICE_ISSUANCE_FEE"] = "Emiss\u00E3o de fatura";
17
19
  })(EOperationType || (exports.EOperationType = EOperationType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "2.0.61",
3
+ "version": "2.0.63",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",