@erp-galoper/types 1.0.1251 → 1.0.1253

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 +17 -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 */
@@ -53586,6 +53596,8 @@ export interface components {
53586
53596
  attachments: string[] | null;
53587
53597
  /** Candelete */
53588
53598
  canDelete: boolean;
53599
+ /** Remaining */
53600
+ remaining: string | null;
53589
53601
  };
53590
53602
  /** ExpenseCategoryResponseSchema */
53591
53603
  ExpenseCategoryResponseSchema: {
@@ -53803,16 +53815,6 @@ export interface components {
53803
53815
  * @enum {string}
53804
53816
  */
53805
53817
  ExpenseVoucherTypeEnum: "immediate" | "supplierRelated";
53806
- /** AccountWithCurrencySummaryInfo */
53807
- AccountWithCurrencySummaryInfo: {
53808
- /** Id */
53809
- id: number | string;
53810
- /** Name */
53811
- name: string;
53812
- /** Accountnumber */
53813
- accountNumber: string;
53814
- currency: components["schemas"]["CurrencySummaryInfo"];
53815
- };
53816
53818
  /** DimensionSummaryShema */
53817
53819
  DimensionSummaryShema: {
53818
53820
  /**
@@ -96843,7 +96845,10 @@ export interface operations {
96843
96845
  };
96844
96846
  erp_settings_expenses_settings_views_get_category_expense: {
96845
96847
  parameters: {
96846
- query?: never;
96848
+ query?: {
96849
+ /** @description used to get category remaining within specified date */
96850
+ date?: string;
96851
+ };
96847
96852
  header?: never;
96848
96853
  path: {
96849
96854
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1251",
3
+ "version": "1.0.1253",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],