@erp-galoper/types 1.0.1252 → 1.0.1254

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 +12 -12
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -53550,6 +53550,16 @@ export interface components {
53550
53550
  /** Color */
53551
53551
  color: string;
53552
53552
  };
53553
+ /** AccountWithCurrencySummaryInfo */
53554
+ AccountWithCurrencySummaryInfo: {
53555
+ /** Id */
53556
+ id: number | string;
53557
+ /** Name */
53558
+ name: string;
53559
+ /** Accountnumber */
53560
+ accountNumber: string;
53561
+ currency: components["schemas"]["CurrencySummaryInfo"];
53562
+ };
53553
53563
  /** ExpenseCategoryDetailSchema */
53554
53564
  ExpenseCategoryDetailSchema: {
53555
53565
  /**
@@ -53575,7 +53585,7 @@ export interface components {
53575
53585
  limitAmount: string | null;
53576
53586
  limitCurrency: components["schemas"]["CurrencySummaryInfo"] | null;
53577
53587
  limitationPeriod: components["schemas"]["LimitationPeriodEnum"] | null;
53578
- preferredSupplier: components["schemas"]["AccountSummaryInfo"] | null;
53588
+ preferredSupplier: components["schemas"]["AccountWithCurrencySummaryInfo"] | null;
53579
53589
  /** Isactive */
53580
53590
  isActive: boolean;
53581
53591
  /** Notes */
@@ -53805,16 +53815,6 @@ export interface components {
53805
53815
  * @enum {string}
53806
53816
  */
53807
53817
  ExpenseVoucherTypeEnum: "immediate" | "supplierRelated";
53808
- /** AccountWithCurrencySummaryInfo */
53809
- AccountWithCurrencySummaryInfo: {
53810
- /** Id */
53811
- id: number | string;
53812
- /** Name */
53813
- name: string;
53814
- /** Accountnumber */
53815
- accountNumber: string;
53816
- currency: components["schemas"]["CurrencySummaryInfo"];
53817
- };
53818
53818
  /** DimensionSummaryShema */
53819
53819
  DimensionSummaryShema: {
53820
53820
  /**
@@ -96847,7 +96847,7 @@ export interface operations {
96847
96847
  parameters: {
96848
96848
  query?: {
96849
96849
  /** @description used to get category remaining within specified date */
96850
- date?: string;
96850
+ date?: string | null;
96851
96851
  };
96852
96852
  header?: never;
96853
96853
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1252",
3
+ "version": "1.0.1254",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],