evo360-types 1.3.357 → 1.3.358
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.
|
@@ -25,8 +25,10 @@ export interface INexCustomer extends IFireGlobalDoc {
|
|
|
25
25
|
document_number: string;
|
|
26
26
|
status: NexCustomerStatus;
|
|
27
27
|
tenant_refs: INexCustomerTenantRef[];
|
|
28
|
+
contact_name?: string | null;
|
|
28
29
|
email?: string | null;
|
|
29
30
|
phone?: string | null;
|
|
31
|
+
payer_aliases?: string[];
|
|
30
32
|
address?: INexCustomerAddress | null;
|
|
31
33
|
fiscal_data?: INexCustomerFiscalData | null;
|
|
32
34
|
notes?: string | null;
|
|
@@ -43,9 +43,15 @@ export interface INexCustomer extends IFireGlobalDoc {
|
|
|
43
43
|
tenant_refs: INexCustomerTenantRef[];
|
|
44
44
|
|
|
45
45
|
// Contact
|
|
46
|
+
contact_name?: string | null;
|
|
46
47
|
email?: string | null;
|
|
47
48
|
phone?: string | null;
|
|
48
49
|
|
|
50
|
+
// Identificadores alternativos do pagador no extrato bancário.
|
|
51
|
+
// Cobre casos em que o nome no extrato difere do nome do cliente
|
|
52
|
+
// (ex.: pagamentos vindos de entidades distintas).
|
|
53
|
+
payer_aliases?: string[];
|
|
54
|
+
|
|
49
55
|
// Address
|
|
50
56
|
address?: INexCustomerAddress | null;
|
|
51
57
|
|