@erp-galoper/types 1.0.1726 → 1.0.1727

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 -17
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -57725,9 +57725,9 @@ export interface components {
57725
57725
  /** @description Total sales minus returns */
57726
57726
  netSales: components["schemas"]["CurrencyAmountSchema"];
57727
57727
  /** @description Cost of goods sold (COGS) */
57728
- cost: components["schemas"]["CurrencyAmountSchema"];
57728
+ cost: components["schemas"]["CurrencyAmountSchema"] | null;
57729
57729
  /** @description Total sales - COGS */
57730
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
57730
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
57731
57731
  /**
57732
57732
  * Profitmargin
57733
57733
  * @description Profit margin percentage
@@ -57756,8 +57756,8 @@ export interface components {
57756
57756
  totalReturnAmount: components["schemas"]["CurrencyAmountSchema"];
57757
57757
  /** @description Total sales minus returns */
57758
57758
  netSales: components["schemas"]["CurrencyAmountSchema"];
57759
- totalCost: components["schemas"]["CurrencyAmountSchema"];
57760
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
57759
+ totalCost: components["schemas"]["CurrencyAmountSchema"] | null;
57760
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
57761
57761
  /** Profitmargin */
57762
57762
  profitMargin: number | null;
57763
57763
  };
@@ -57790,8 +57790,8 @@ export interface components {
57790
57790
  returnAmount: components["schemas"]["CurrencyAmountSchema"];
57791
57791
  /** @description Total sales minus returns */
57792
57792
  netSales: components["schemas"]["CurrencyAmountSchema"];
57793
- cost: components["schemas"]["CurrencyAmountSchema"];
57794
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
57793
+ cost: components["schemas"]["CurrencyAmountSchema"] | null;
57794
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
57795
57795
  /** Profitmargin */
57796
57796
  profitMargin: number | null;
57797
57797
  /**
@@ -57829,8 +57829,8 @@ export interface components {
57829
57829
  returnAmount: components["schemas"]["CurrencyAmountSchema"];
57830
57830
  /** @description Total sales minus returns */
57831
57831
  netSales: components["schemas"]["CurrencyAmountSchema"];
57832
- cost: components["schemas"]["CurrencyAmountSchema"];
57833
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
57832
+ cost: components["schemas"]["CurrencyAmountSchema"] | null;
57833
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
57834
57834
  /** Profitmargin */
57835
57835
  profitMargin: number | null;
57836
57836
  };
@@ -57874,8 +57874,8 @@ export interface components {
57874
57874
  returnAmount: components["schemas"]["CurrencyAmountSchema"];
57875
57875
  /** @description Total sales minus returns */
57876
57876
  netSales: components["schemas"]["CurrencyAmountSchema"];
57877
- cost: components["schemas"]["CurrencyAmountSchema"];
57878
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
57877
+ cost: components["schemas"]["CurrencyAmountSchema"] | null;
57878
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
57879
57879
  /** Profitmargin */
57880
57880
  profitMargin: number | null;
57881
57881
  };
@@ -57901,8 +57901,8 @@ export interface components {
57901
57901
  totalSales: components["schemas"]["CurrencyAmountSchema"];
57902
57902
  taxAmount: components["schemas"]["CurrencyAmountSchema"];
57903
57903
  totalAmount: components["schemas"]["CurrencyAmountSchema"];
57904
- cost: components["schemas"]["CurrencyAmountSchema"];
57905
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
57904
+ cost: components["schemas"]["CurrencyAmountSchema"] | null;
57905
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
57906
57906
  /** Profitmargin */
57907
57907
  profitMargin: number | null;
57908
57908
  averageInvoiceValue: components["schemas"]["CurrencyAmountSchema"];
@@ -57954,8 +57954,8 @@ export interface components {
57954
57954
  returnAmount: components["schemas"]["CurrencyAmountSchema"];
57955
57955
  /** @description Total sales minus returns */
57956
57956
  netSales: components["schemas"]["CurrencyAmountSchema"];
57957
- cost: components["schemas"]["CurrencyAmountSchema"];
57958
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
57957
+ cost: components["schemas"]["CurrencyAmountSchema"] | null;
57958
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
57959
57959
  /** Profitmargin */
57960
57960
  profitMargin: number | null;
57961
57961
  };
@@ -57999,10 +57999,10 @@ export interface components {
57999
57999
  totalItemsReturned: number;
58000
58000
  /** @description Total return amount */
58001
58001
  returnAmount: components["schemas"]["CurrencyAmountSchema"];
58002
- costOfGoodsSold: components["schemas"]["CurrencyAmountSchema"];
58003
- grossProfit: components["schemas"]["CurrencyAmountSchema"];
58002
+ costOfGoodsSold: components["schemas"]["CurrencyAmountSchema"] | null;
58003
+ grossProfit: components["schemas"]["CurrencyAmountSchema"] | null;
58004
58004
  /** Grossmarginpercentage */
58005
- grossMarginPercentage: number;
58005
+ grossMarginPercentage: number | null;
58006
58006
  averageOrderValue: components["schemas"]["CurrencyAmountSchema"];
58007
58007
  /** Averageitemsperorder */
58008
58008
  averageItemsPerOrder: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1726",
3
+ "version": "1.0.1727",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],