@openbox/shared-types 0.3.7 → 0.3.8

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.
@@ -16,10 +16,10 @@ export type InvoicesCalculationsDetailsResponse = {
16
16
  renta5Price: number;
17
17
  renta10Price: number;
18
18
  sellingType: number;
19
- showUnitPrice: number;
20
- showExenta: number;
21
- showvNoSujeta: number;
22
- showvGravada: number;
19
+ unitPriceToShow: number;
20
+ vExentaToShow: number;
21
+ vNoSujetaToShow: number;
22
+ vGravadaToShow: number;
23
23
  };
24
24
  export type InvoicesCalculationsTotalsResponse = {
25
25
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.3.07",
3
+ "version": "0.3.08",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -21,10 +21,10 @@ export type InvoicesCalculationsDetailsResponse = {
21
21
  sellingType: number
22
22
 
23
23
  // Returns values to show in details table
24
- showUnitPrice: number
25
- showExenta: number
26
- showvNoSujeta: number
27
- showvGravada: number
24
+ unitPriceToShow: number
25
+ vExentaToShow: number
26
+ vNoSujetaToShow: number
27
+ vGravadaToShow: number
28
28
  }
29
29
 
30
30
  export type InvoicesCalculationsTotalsResponse = {