@erp-galoper/types 1.0.1231 → 1.0.1233
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 +7 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -30476,6 +30476,7 @@ export interface components {
|
|
|
30476
30476
|
companyRegistrationNumber: string | null;
|
|
30477
30477
|
/** Banks */
|
|
30478
30478
|
banks: components["schemas"]["BankAccountsSharedSchema"][];
|
|
30479
|
+
type: components["schemas"]["SupplierTypeEnum"];
|
|
30479
30480
|
};
|
|
30480
30481
|
/** SupplierListSchema */
|
|
30481
30482
|
SupplierListSchema: {
|
|
@@ -30483,6 +30484,11 @@ export interface components {
|
|
|
30483
30484
|
/** Results */
|
|
30484
30485
|
results: components["schemas"]["SupplierForListSchema"][];
|
|
30485
30486
|
};
|
|
30487
|
+
/**
|
|
30488
|
+
* SupplierTypeEnum
|
|
30489
|
+
* @enum {string}
|
|
30490
|
+
*/
|
|
30491
|
+
SupplierTypeEnum: "creditor" | "paymentInAdvance" | "expense";
|
|
30486
30492
|
/** CreateSupplierBankSchema */
|
|
30487
30493
|
CreateSupplierBankSchema: {
|
|
30488
30494
|
/** Index */
|
|
@@ -30656,6 +30662,7 @@ export interface components {
|
|
|
30656
30662
|
children: components["schemas"]["SupplierChildDetailSchema"][];
|
|
30657
30663
|
/** Companyregistrationnumber */
|
|
30658
30664
|
companyRegistrationNumber: string | null;
|
|
30665
|
+
type: components["schemas"]["SupplierTypeEnum"];
|
|
30659
30666
|
};
|
|
30660
30667
|
/** ChangeSupplierBankSchema */
|
|
30661
30668
|
ChangeSupplierBankSchema: {
|