@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.
Files changed (2) hide show
  1. package/openapi.ts +16 -18
  2. 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: companynotFound / currencyNotFound / imageNotFound
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
- /** Companysetting */
929
- companySetting: boolean;
930
- /** Customersetting */
931
- customerSetting: boolean;
932
- /** Inventorysetting */
933
- inventorySetting: boolean;
934
- /** Accountingsetting */
935
- accountingSetting: boolean;
936
- /** Salessetting */
937
- salesSetting: boolean;
938
- /** Paymentmethod */
939
- paymentMethod: boolean;
940
- /** Appointmentsetting */
941
- appointmentSetting: boolean;
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: companynotFound / currencyNotFound / imageNotFound
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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "main": "openapi.ts"
5
5
  }