@erp-galoper/types 1.0.1154 → 1.0.1156

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 +44 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -33763,6 +33763,12 @@ export interface components {
33763
33763
  id: number;
33764
33764
  /** Bankname */
33765
33765
  bankName: string;
33766
+ /** Swift */
33767
+ swift: string | null;
33768
+ /** Iban */
33769
+ IBAN: string | null;
33770
+ /** Routingnumber */
33771
+ routingNumber: string | null;
33766
33772
  /** Banknumber */
33767
33773
  bankNumber: string;
33768
33774
  /** Accountname */
@@ -33789,6 +33795,21 @@ export interface components {
33789
33795
  CreateBankSchema: {
33790
33796
  /** Bankname */
33791
33797
  bankName: string;
33798
+ /**
33799
+ * Swift
33800
+ * @description add hint: A globally recognized code used for international transfers, identifying a specific bank and branch
33801
+ */
33802
+ swift?: string;
33803
+ /**
33804
+ * Iban
33805
+ * @description add hint: An international standard for identifying bank accounts across borders. Its used mainly for cross-border transactions within certain regions (e.g., Europe).
33806
+ */
33807
+ IBAN?: string;
33808
+ /**
33809
+ * Routingnumber
33810
+ * @description add hint: For domestic transactions, this field contains the routing or sort code used to identify the bank or financial institution for direct transfers.
33811
+ */
33812
+ routingNumber?: string;
33792
33813
  /** Banknumber */
33793
33814
  bankNumber: string;
33794
33815
  /** Accountname */
@@ -33814,6 +33835,12 @@ export interface components {
33814
33835
  id: number;
33815
33836
  /** Bankname */
33816
33837
  bankName: string;
33838
+ /** Swift */
33839
+ swift: string | null;
33840
+ /** Iban */
33841
+ IBAN: string | null;
33842
+ /** Routingnumber */
33843
+ routingNumber: string | null;
33817
33844
  /** Banknumber */
33818
33845
  bankNumber: string;
33819
33846
  /** Accountname */
@@ -33843,6 +33870,21 @@ export interface components {
33843
33870
  UpdateBankSchema: {
33844
33871
  /** Bankname */
33845
33872
  bankName?: string;
33873
+ /**
33874
+ * Swift
33875
+ * @description add hint: A globally recognized code used for international transfers, identifying a specific bank and branch
33876
+ */
33877
+ swift?: string;
33878
+ /**
33879
+ * Iban
33880
+ * @description add hint: An international standard for identifying bank accounts across borders. Its used mainly for cross-border transactions within certain regions (e.g., Europe).
33881
+ */
33882
+ IBAN?: string;
33883
+ /**
33884
+ * Routingnumber
33885
+ * @description add hint: For domestic transactions, this field contains the routing or sort code used to identify the bank or financial institution for direct transfers.
33886
+ */
33887
+ routingNumber?: string;
33846
33888
  /** Banknumber */
33847
33889
  bankNumber?: string;
33848
33890
  /** Accountname */
@@ -52378,8 +52420,8 @@ export interface operations {
52378
52420
  };
52379
52421
  inventory_warehouse_views_list_warehouses: {
52380
52422
  parameters: {
52381
- query: {
52382
- branchId: number;
52423
+ query?: {
52424
+ branchId?: number;
52383
52425
  /** @description Search by warehouse name */
52384
52426
  search?: string | null;
52385
52427
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1154",
3
+ "version": "1.0.1156",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],