@erp-galoper/types 1.0.1873 → 1.0.1874

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 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -35007,6 +35007,18 @@ export interface components {
35007
35007
  usdRate: number | null;
35008
35008
  account: components["schemas"]["AccountReportInfo"];
35009
35009
  };
35010
+ /**
35011
+ * YearClosingJournalsView
35012
+ * @description Controls which year-end closing JV entries are shown in the trial balance.
35013
+ *
35014
+ * If not provided (None/empty): no year_closing JV entries are shown at all.
35015
+ * - all: Show all year_closing JV entries (closing journals + transfer journals).
35016
+ * - closing_journals: Show year_closing JV entries EXCEPT those related to cumulative earning
35017
+ * accounts (positive / negative).
35018
+ * - transfer_journals: Show ONLY year_closing JV entries related to cumulative earning accounts.
35019
+ * @enum {string}
35020
+ */
35021
+ YearClosingJournalsView: "all" | "closingJournals" | "transferJournals";
35010
35022
  /** TrialBalanceAccountSummaryInfo */
35011
35023
  TrialBalanceAccountSummaryInfo: {
35012
35024
  /** Id */
@@ -75724,7 +75736,8 @@ export interface operations {
75724
75736
  currencies: (string)[];
75725
75737
  /** @description filter by account number or name */
75726
75738
  filterByAccountNumberOrName?: string;
75727
- excludeYearEndClosing?: boolean;
75739
+ /** @description Controls which year-end closing JV entries are shown. If not provided (empty): no year_closing JV entries are shown at all. all: show all year_closing JV entries; closingJournals: show year_closing JV entries except cumulative earning account entries; transferJournals: show only year_closing JV entries for cumulative earning accounts.these info should be added as hints to user */
75740
+ yearClosingJournalsView?: components["schemas"]["YearClosingJournalsView"] | null;
75728
75741
  };
75729
75742
  header?: never;
75730
75743
  path?: never;
@@ -75766,6 +75779,8 @@ export interface operations {
75766
75779
  currencies: (string)[];
75767
75780
  /** @description filter by account number or name */
75768
75781
  filterByAccountNumberOrName?: string;
75782
+ /** @description Controls which year-end closing JV entries are shown. If not provided (empty): no year_closing JV entries are shown at all. all: show all year_closing JV entries; closingJournals: show year_closing JV entries except cumulative earning account entries; transferJournals: show only year_closing JV entries for cumulative earning accounts. */
75783
+ yearClosingJournalsView?: components["schemas"]["YearClosingJournalsView"] | null;
75769
75784
  };
75770
75785
  header?: never;
75771
75786
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1873",
3
+ "version": "1.0.1874",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],