@erp-galoper/main-package 1.0.24 → 1.0.25
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 +16 -18
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -228,7 +228,7 @@ export interface paths {
|
|
228
228
|
* - Company updated successfully
|
229
229
|
* - 403: forbidden
|
230
230
|
* - You do not have permission to perform this action
|
231
|
-
* -404:
|
231
|
+
* -404: companyNotFound / currencyNotFound / imageNotFound
|
232
232
|
* - Company not found / Currency not found / Image path not found
|
233
233
|
*/
|
234
234
|
patch: operations["company_views_update_company"];
|
@@ -925,22 +925,20 @@ export interface components {
|
|
925
925
|
};
|
926
926
|
/** LoadSettingsSchema */
|
927
927
|
LoadSettingsSchema: {
|
928
|
-
/**
|
929
|
-
|
930
|
-
/**
|
931
|
-
|
932
|
-
/**
|
933
|
-
|
934
|
-
/**
|
935
|
-
|
936
|
-
/**
|
937
|
-
|
938
|
-
/**
|
939
|
-
|
940
|
-
/**
|
941
|
-
|
942
|
-
/** Primarycurrency */
|
943
|
-
primaryCurrency: boolean;
|
928
|
+
/** Companysettings */
|
929
|
+
companySettings: boolean;
|
930
|
+
/** Customersettings */
|
931
|
+
customerSettings: boolean;
|
932
|
+
/** Inventorysettings */
|
933
|
+
inventorySettings: boolean;
|
934
|
+
/** Accountingsettings */
|
935
|
+
accountingSettings: boolean;
|
936
|
+
/** Salessettings */
|
937
|
+
salesSettings: boolean;
|
938
|
+
/** Paymentmethods */
|
939
|
+
paymentMethods: boolean;
|
940
|
+
/** Appointmentsettings */
|
941
|
+
appointmentSettings: boolean;
|
944
942
|
[key: string]: unknown;
|
945
943
|
};
|
946
944
|
/**
|
@@ -1740,7 +1738,7 @@ export interface operations {
|
|
1740
1738
|
* - Company updated successfully
|
1741
1739
|
* - 403: forbidden
|
1742
1740
|
* - You do not have permission to perform this action
|
1743
|
-
* -404:
|
1741
|
+
* -404: companyNotFound / currencyNotFound / imageNotFound
|
1744
1742
|
* - Company not found / Currency not found / Image path not found
|
1745
1743
|
*/
|
1746
1744
|
company_views_update_company: {
|
package/package.json
CHANGED