@cbm-common/cbm-types 0.0.92 → 0.0.93
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.
|
@@ -54,6 +54,22 @@ export declare namespace CbmClientBranchModel {
|
|
|
54
54
|
user_inactive_at?: number;
|
|
55
55
|
user_inactive_name?: string;
|
|
56
56
|
disabled_reason?: string;
|
|
57
|
+
client_branch_contact?: Data.Contact[];
|
|
58
|
+
}
|
|
59
|
+
namespace Data {
|
|
60
|
+
interface Contact {
|
|
61
|
+
_id?: string;
|
|
62
|
+
company_id?: string;
|
|
63
|
+
client_branch_id?: string;
|
|
64
|
+
identification_number?: string;
|
|
65
|
+
full_name?: string;
|
|
66
|
+
phone_code?: string;
|
|
67
|
+
cellphone?: string;
|
|
68
|
+
enabled?: boolean;
|
|
69
|
+
deleted?: boolean;
|
|
70
|
+
created_user?: string;
|
|
71
|
+
created_at?: number;
|
|
72
|
+
}
|
|
57
73
|
}
|
|
58
74
|
}
|
|
59
75
|
}
|
|
@@ -225,15 +225,18 @@ export declare namespace CbmClientModel {
|
|
|
225
225
|
withholding_tax_account_code?: string;
|
|
226
226
|
}
|
|
227
227
|
interface Contact {
|
|
228
|
-
_id
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
228
|
+
_id?: string;
|
|
229
|
+
company_id?: string;
|
|
230
|
+
client_branch_id?: string;
|
|
231
|
+
identification_number?: string;
|
|
232
|
+
full_name?: string;
|
|
233
|
+
email?: string[];
|
|
234
|
+
phone_code?: string;
|
|
235
|
+
cellphone?: string;
|
|
236
|
+
enabled?: boolean;
|
|
237
|
+
deleted?: boolean;
|
|
238
|
+
created_user?: string;
|
|
239
|
+
created_at?: number;
|
|
237
240
|
}
|
|
238
241
|
interface CreditAplicationData {
|
|
239
242
|
_id: string;
|