@openbox/shared-types 0.5.31 → 0.5.32

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.
@@ -23,6 +23,11 @@ export type InvoicesCreateSingleTotals = {
23
23
  totalExenta: number;
24
24
  totalNoSuj: number;
25
25
  totalPagar: number;
26
+ descuExenta?: number;
27
+ descuGravada?: number;
28
+ descuNoSuj?: number;
29
+ totalDescu?: number;
30
+ porcentajeDescuento?: number;
26
31
  };
27
32
  export type InvoicesCreateSingleDetail = {
28
33
  service: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.5.31",
3
+ "version": "0.5.32",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -25,6 +25,11 @@ export type InvoicesCreateSingleTotals = {
25
25
  totalExenta: number // previously ventasExentas
26
26
  totalNoSuj: number // previously ventasNoSujetas
27
27
  totalPagar: number // previously ventaTotal
28
+ descuExenta?: number
29
+ descuGravada?: number
30
+ descuNoSuj?: number
31
+ totalDescu?: number
32
+ porcentajeDescuento?: number
28
33
  }
29
34
 
30
35
  export type InvoicesCreateSingleDetail = {