@erp-galoper/main-package 1.0.69 → 1.0.71

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 +8 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -915,6 +915,8 @@ export interface components {
915
915
  ChartOfAccountOptions: {
916
916
  /** Label */
917
917
  label: string;
918
+ /** Value */
919
+ value: string;
918
920
  [key: string]: unknown;
919
921
  };
920
922
  /** FiscalYearCalculationOut */
@@ -967,10 +969,14 @@ export interface components {
967
969
  loadChartOfAccount?: string | null;
968
970
  [key: string]: unknown;
969
971
  };
972
+ /**
973
+ * ChartOfAccountType
974
+ * @enum {string}
975
+ */
976
+ ChartOfAccountType: "lebanon" | "mozambique" | "custom";
970
977
  /** GaloperSettingChart */
971
978
  GaloperSettingChart: {
972
- /** Value */
973
- value: string;
979
+ value: components["schemas"]["ChartOfAccountType"];
974
980
  [key: string]: unknown;
975
981
  };
976
982
  /** LoadSettingsSchema */
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@erp-galoper/main-package",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "main": "openapi.ts"
5
5
  }