@erp-galoper/types 1.0.1155 → 1.0.1157
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 +44 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -645,7 +645,7 @@ export interface paths {
|
|
|
645
645
|
* - variantSettingsDoesNotExist
|
|
646
646
|
* - invalidBarcode
|
|
647
647
|
* - errorGeneratingBarcode
|
|
648
|
-
*
|
|
648
|
+
* - atLeastOneVariantIsRequiredWhenTrackStockByVariant
|
|
649
649
|
* - 403:
|
|
650
650
|
* - permissionDenied
|
|
651
651
|
*
|
|
@@ -775,6 +775,7 @@ export interface paths {
|
|
|
775
775
|
* - errorUpdatingVariants
|
|
776
776
|
* - itemPackageNotExist
|
|
777
777
|
* - trackInventoryByNotAllowed
|
|
778
|
+
* - atLeastOneVariantIsRequiredWhenTrackStockByVariant
|
|
778
779
|
* - 403:
|
|
779
780
|
* - permissionDenied
|
|
780
781
|
*
|
|
@@ -33763,6 +33764,12 @@ export interface components {
|
|
|
33763
33764
|
id: number;
|
|
33764
33765
|
/** Bankname */
|
|
33765
33766
|
bankName: string;
|
|
33767
|
+
/** Swift */
|
|
33768
|
+
swift: string | null;
|
|
33769
|
+
/** Iban */
|
|
33770
|
+
IBAN: string | null;
|
|
33771
|
+
/** Routingnumber */
|
|
33772
|
+
routingNumber: string | null;
|
|
33766
33773
|
/** Banknumber */
|
|
33767
33774
|
bankNumber: string;
|
|
33768
33775
|
/** Accountname */
|
|
@@ -33789,6 +33796,21 @@ export interface components {
|
|
|
33789
33796
|
CreateBankSchema: {
|
|
33790
33797
|
/** Bankname */
|
|
33791
33798
|
bankName: string;
|
|
33799
|
+
/**
|
|
33800
|
+
* Swift
|
|
33801
|
+
* @description add hint: A globally recognized code used for international transfers, identifying a specific bank and branch
|
|
33802
|
+
*/
|
|
33803
|
+
swift?: string;
|
|
33804
|
+
/**
|
|
33805
|
+
* Iban
|
|
33806
|
+
* @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).
|
|
33807
|
+
*/
|
|
33808
|
+
IBAN?: string;
|
|
33809
|
+
/**
|
|
33810
|
+
* Routingnumber
|
|
33811
|
+
* @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.
|
|
33812
|
+
*/
|
|
33813
|
+
routingNumber?: string;
|
|
33792
33814
|
/** Banknumber */
|
|
33793
33815
|
bankNumber: string;
|
|
33794
33816
|
/** Accountname */
|
|
@@ -33814,6 +33836,12 @@ export interface components {
|
|
|
33814
33836
|
id: number;
|
|
33815
33837
|
/** Bankname */
|
|
33816
33838
|
bankName: string;
|
|
33839
|
+
/** Swift */
|
|
33840
|
+
swift: string | null;
|
|
33841
|
+
/** Iban */
|
|
33842
|
+
IBAN: string | null;
|
|
33843
|
+
/** Routingnumber */
|
|
33844
|
+
routingNumber: string | null;
|
|
33817
33845
|
/** Banknumber */
|
|
33818
33846
|
bankNumber: string;
|
|
33819
33847
|
/** Accountname */
|
|
@@ -33843,6 +33871,21 @@ export interface components {
|
|
|
33843
33871
|
UpdateBankSchema: {
|
|
33844
33872
|
/** Bankname */
|
|
33845
33873
|
bankName?: string;
|
|
33874
|
+
/**
|
|
33875
|
+
* Swift
|
|
33876
|
+
* @description add hint: A globally recognized code used for international transfers, identifying a specific bank and branch
|
|
33877
|
+
*/
|
|
33878
|
+
swift?: string;
|
|
33879
|
+
/**
|
|
33880
|
+
* Iban
|
|
33881
|
+
* @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).
|
|
33882
|
+
*/
|
|
33883
|
+
IBAN?: string;
|
|
33884
|
+
/**
|
|
33885
|
+
* Routingnumber
|
|
33886
|
+
* @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.
|
|
33887
|
+
*/
|
|
33888
|
+
routingNumber?: string;
|
|
33846
33889
|
/** Banknumber */
|
|
33847
33890
|
bankNumber?: string;
|
|
33848
33891
|
/** Accountname */
|