@erp-galoper/types 1.0.1231 → 1.0.1232

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.
Files changed (2) hide show
  1. package/openapi.ts +7 -0
  2. 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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1231",
3
+ "version": "1.0.1232",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],