@erp-galoper/types 1.0.1721 → 1.0.1722

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 +7 -7
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -57721,7 +57721,7 @@ export interface components {
57721
57721
  * Profitmargin
57722
57722
  * @description Profit margin percentage
57723
57723
  */
57724
- profitMargin: number;
57724
+ profitMargin: number | null;
57725
57725
  };
57726
57726
  /**
57727
57727
  * SalesTotalsSchema
@@ -57748,7 +57748,7 @@ export interface components {
57748
57748
  totalCost: components["schemas"]["CurrencyAmountSchema"];
57749
57749
  grossProfit: components["schemas"]["CurrencyAmountSchema"];
57750
57750
  /** Profitmargin */
57751
- profitMargin: number;
57751
+ profitMargin: number | null;
57752
57752
  };
57753
57753
  /** SalesByCategoryListSchema */
57754
57754
  SalesByCategoryListSchema: {
@@ -57782,7 +57782,7 @@ export interface components {
57782
57782
  cost: components["schemas"]["CurrencyAmountSchema"];
57783
57783
  grossProfit: components["schemas"]["CurrencyAmountSchema"];
57784
57784
  /** Profitmargin */
57785
- profitMargin: number;
57785
+ profitMargin: number | null;
57786
57786
  /**
57787
57787
  * Contributionpercentage
57788
57788
  * @description Category's contribution to total sales
@@ -57821,7 +57821,7 @@ export interface components {
57821
57821
  cost: components["schemas"]["CurrencyAmountSchema"];
57822
57822
  grossProfit: components["schemas"]["CurrencyAmountSchema"];
57823
57823
  /** Profitmargin */
57824
- profitMargin: number;
57824
+ profitMargin: number | null;
57825
57825
  };
57826
57826
  /** CustomerSummarySchema */
57827
57827
  CustomerSummarySchema: {
@@ -57866,7 +57866,7 @@ export interface components {
57866
57866
  cost: components["schemas"]["CurrencyAmountSchema"];
57867
57867
  grossProfit: components["schemas"]["CurrencyAmountSchema"];
57868
57868
  /** Profitmargin */
57869
- profitMargin: number;
57869
+ profitMargin: number | null;
57870
57870
  };
57871
57871
  /** SalesBySalespersonListSchema */
57872
57872
  SalesBySalespersonListSchema: {
@@ -57893,7 +57893,7 @@ export interface components {
57893
57893
  cost: components["schemas"]["CurrencyAmountSchema"];
57894
57894
  grossProfit: components["schemas"]["CurrencyAmountSchema"];
57895
57895
  /** Profitmargin */
57896
- profitMargin: number;
57896
+ profitMargin: number | null;
57897
57897
  averageInvoiceValue: components["schemas"]["CurrencyAmountSchema"];
57898
57898
  };
57899
57899
  /** SalespersonSummarySchema */
@@ -57946,7 +57946,7 @@ export interface components {
57946
57946
  cost: components["schemas"]["CurrencyAmountSchema"];
57947
57947
  grossProfit: components["schemas"]["CurrencyAmountSchema"];
57948
57948
  /** Profitmargin */
57949
- profitMargin: number;
57949
+ profitMargin: number | null;
57950
57950
  };
57951
57951
  /** WarehouseSummarySchema */
57952
57952
  WarehouseSummarySchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1721",
3
+ "version": "1.0.1722",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],