@erp-galoper/types 1.0.1910 → 1.0.1912

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 +13 -13
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -59652,9 +59652,9 @@ export interface components {
59652
59652
  */
59653
59653
  CurrencyAmountSchema: {
59654
59654
  /** Primary */
59655
- primary: number;
59655
+ primary: string;
59656
59656
  /** Secondary */
59657
- secondary: number;
59657
+ secondary: string;
59658
59658
  };
59659
59659
  /**
59660
59660
  * IUOMGroupValuationSchema
@@ -59872,7 +59872,7 @@ export interface components {
59872
59872
  * Profitmargin
59873
59873
  * @description Profit margin percentage
59874
59874
  */
59875
- profitMargin: number | null;
59875
+ profitMargin: string | null;
59876
59876
  };
59877
59877
  /**
59878
59878
  * SalesTotalsSchema
@@ -59899,7 +59899,7 @@ export interface components {
59899
59899
  totalCost: components["schemas"]["CurrencyAmountSchema"] | null;
59900
59900
  grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
59901
59901
  /** Profitmargin */
59902
- profitMargin: number | null;
59902
+ profitMargin: string | null;
59903
59903
  };
59904
59904
  /** SalesByCategoryListSchema */
59905
59905
  SalesByCategoryListSchema: {
@@ -59933,12 +59933,12 @@ export interface components {
59933
59933
  cost: components["schemas"]["CurrencyAmountSchema"] | null;
59934
59934
  grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
59935
59935
  /** Profitmargin */
59936
- profitMargin: number | null;
59936
+ profitMargin: string | null;
59937
59937
  /**
59938
59938
  * Contributionpercentage
59939
59939
  * @description Category's contribution to total sales
59940
59940
  */
59941
- contributionPercentage: number;
59941
+ contributionPercentage: string;
59942
59942
  };
59943
59943
  /** SalesByBrandListSchema */
59944
59944
  SalesByBrandListSchema: {
@@ -59972,7 +59972,7 @@ export interface components {
59972
59972
  cost: components["schemas"]["CurrencyAmountSchema"] | null;
59973
59973
  grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
59974
59974
  /** Profitmargin */
59975
- profitMargin: number | null;
59975
+ profitMargin: string | null;
59976
59976
  };
59977
59977
  /** CustomerSummarySchema */
59978
59978
  CustomerSummarySchema: {
@@ -60020,7 +60020,7 @@ export interface components {
60020
60020
  cost: components["schemas"]["CurrencyAmountSchema"] | null;
60021
60021
  grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
60022
60022
  /** Profitmargin */
60023
- profitMargin: number | null;
60023
+ profitMargin: string | null;
60024
60024
  };
60025
60025
  /** SalesBySalespersonListSchema */
60026
60026
  SalesBySalespersonListSchema: {
@@ -60047,7 +60047,7 @@ export interface components {
60047
60047
  cost: components["schemas"]["CurrencyAmountSchema"] | null;
60048
60048
  grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
60049
60049
  /** Profitmargin */
60050
- profitMargin: number | null;
60050
+ profitMargin: string | null;
60051
60051
  averageInvoiceValue: components["schemas"]["CurrencyAmountSchema"];
60052
60052
  };
60053
60053
  /** SalespersonSummarySchema */
@@ -60103,7 +60103,7 @@ export interface components {
60103
60103
  cost: components["schemas"]["CurrencyAmountSchema"] | null;
60104
60104
  grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
60105
60105
  /** Profitmargin */
60106
- profitMargin: number | null;
60106
+ profitMargin: string | null;
60107
60107
  };
60108
60108
  /** WarehouseSummarySchema */
60109
60109
  WarehouseSummarySchema: {
@@ -60151,7 +60151,7 @@ export interface components {
60151
60151
  costOfGoodsSold: components["schemas"]["CurrencyAmountSchema"] | null;
60152
60152
  grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
60153
60153
  /** Grossmarginpercentage */
60154
- grossMarginPercentage: number | null;
60154
+ grossMarginPercentage: string | null;
60155
60155
  averageOrderValue: components["schemas"]["CurrencyAmountSchema"];
60156
60156
  /** Averageitemsperorder */
60157
60157
  averageItemsPerOrder: number;
@@ -60197,7 +60197,7 @@ export interface components {
60197
60197
  * Growthpercentage
60198
60198
  * @description Month-over-month growth
60199
60199
  */
60200
- growthPercentage?: number | null;
60200
+ growthPercentage?: string | null;
60201
60201
  };
60202
60202
  /**
60203
60203
  * SalesTrendSchema
@@ -60240,7 +60240,7 @@ export interface components {
60240
60240
  * Growthpercentage
60241
60241
  * @description Week-over-week growth
60242
60242
  */
60243
- growthPercentage?: number | null;
60243
+ growthPercentage?: string | null;
60244
60244
  };
60245
60245
  /** ReceivablesByCustomerRegionContactSchema */
60246
60246
  ReceivablesByCustomerRegionContactSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1910",
3
+ "version": "1.0.1912",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],