@openbox/shared-types 0.4.91 → 0.4.92

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.
@@ -28,6 +28,12 @@ export type InvoicesCalculationsDiscountsResponse = {
28
28
  type: InvoicesDiscountsTypesKeys;
29
29
  quantity: number;
30
30
  description: string;
31
+ descuNoSuj: number;
32
+ descuExenta: number;
33
+ descuGravada: number;
34
+ descuNoSujToShow: number;
35
+ descuExentaToShow: number;
36
+ descuGravadaToShow: number;
31
37
  };
32
38
  export type InvoicesCalculationsTotalsItem = {
33
39
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.91",
3
+ "version": "0.4.92",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -36,6 +36,16 @@ export type InvoicesCalculationsDiscountsResponse = {
36
36
  type: InvoicesDiscountsTypesKeys
37
37
  quantity: number
38
38
  description: string
39
+
40
+ // returns the calculated information
41
+ descuNoSuj: number
42
+ descuExenta: number
43
+ descuGravada: number
44
+
45
+ // Returns values to show in discounts table
46
+ descuNoSujToShow: number
47
+ descuExentaToShow: number
48
+ descuGravadaToShow: number
39
49
  }
40
50
 
41
51
  export type InvoicesCalculationsTotalsItem = {