@erp-galoper/main-package 1.0.68 → 1.0.70
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 +8 -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
|
-
|
973
|
-
value: string;
|
979
|
+
value: components["schemas"]["ChartOfAccountType"];
|
974
980
|
[key: string]: unknown;
|
975
981
|
};
|
976
982
|
/** LoadSettingsSchema */
|
package/package.json
CHANGED