@erp-galoper/types 1.0.1518 → 1.0.1519

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 +11 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -56752,6 +56752,15 @@ export interface components {
56752
56752
  accountNumber: string;
56753
56753
  currency: components["schemas"]["CurrencySummaryInfo"];
56754
56754
  };
56755
+ /** ExpenseCategoryAccount */
56756
+ ExpenseCategoryAccount: {
56757
+ /** Id */
56758
+ id: number;
56759
+ /** Name */
56760
+ name: string;
56761
+ /** Accountnumber */
56762
+ accountNumber: string;
56763
+ };
56755
56764
  /** ExpenseCategoryDetailSchema */
56756
56765
  ExpenseCategoryDetailSchema: {
56757
56766
  /**
@@ -56770,7 +56779,7 @@ export interface components {
56770
56779
  id: string;
56771
56780
  /** Name */
56772
56781
  name: string;
56773
- expenseAccount: components["schemas"]["AccountSummaryInfo"];
56782
+ expenseAccount: components["schemas"]["ExpenseCategoryAccount"];
56774
56783
  /** Haslimit */
56775
56784
  hasLimit: boolean;
56776
56785
  /** Limitamount */
@@ -57030,7 +57039,7 @@ export interface components {
57030
57039
  id: string;
57031
57040
  /** Name */
57032
57041
  name: string;
57033
- expenseAccount: components["schemas"]["AccountSummaryInfo"];
57042
+ expenseAccount: components["schemas"]["ExpenseCategoryAccount"];
57034
57043
  /** Haslimit */
57035
57044
  hasLimit: boolean;
57036
57045
  /** Limitamount */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1518",
3
+ "version": "1.0.1519",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],