@erp-galoper/types 1.0.818 → 1.0.820
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.
- package/openapi.ts +11 -9
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26562,6 +26562,15 @@ export interface components {
|
|
|
26562
26562
|
* @enum {string}
|
|
26563
26563
|
*/
|
|
26564
26564
|
typeSuppliers: "parents" | "children";
|
|
26565
|
+
/** BankAccountsSharedSchema */
|
|
26566
|
+
BankAccountsSharedSchema: {
|
|
26567
|
+
/** Id */
|
|
26568
|
+
id: number;
|
|
26569
|
+
/** Name */
|
|
26570
|
+
name: string;
|
|
26571
|
+
/** Accountnumber */
|
|
26572
|
+
accountNumber: string;
|
|
26573
|
+
};
|
|
26565
26574
|
/** ContactSegmentationSharedSchema */
|
|
26566
26575
|
ContactSegmentationSharedSchema: {
|
|
26567
26576
|
/**
|
|
@@ -26618,6 +26627,8 @@ export interface components {
|
|
|
26618
26627
|
children: components["schemas"]["SupplierChildDetailSchema"][];
|
|
26619
26628
|
/** Companyregistrationnumber */
|
|
26620
26629
|
companyRegistrationNumber: string | null;
|
|
26630
|
+
/** Banks */
|
|
26631
|
+
banks: components["schemas"]["BankAccountsSharedSchema"][];
|
|
26621
26632
|
};
|
|
26622
26633
|
/** SupplierListSchema */
|
|
26623
26634
|
SupplierListSchema: {
|
|
@@ -32895,15 +32906,6 @@ export interface components {
|
|
|
32895
32906
|
message: string;
|
|
32896
32907
|
data: components["schemas"]["RetrieveAdvancePaymentSchema"];
|
|
32897
32908
|
};
|
|
32898
|
-
/** BankAccountsSharedSchema */
|
|
32899
|
-
BankAccountsSharedSchema: {
|
|
32900
|
-
/** Id */
|
|
32901
|
-
id: number;
|
|
32902
|
-
/** Name */
|
|
32903
|
-
name: string;
|
|
32904
|
-
/** Accountnumber */
|
|
32905
|
-
accountNumber: string;
|
|
32906
|
-
};
|
|
32907
32909
|
/**
|
|
32908
32910
|
* DocumentStatus
|
|
32909
32911
|
* @enum {string}
|