@openbox/shared-types 0.4.88 → 0.4.90

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.
@@ -29,6 +29,7 @@ export type InvoicesCalculationsTotalsItem = {
29
29
  amount: number;
30
30
  style?: string[];
31
31
  show: true | false;
32
+ type?: 'currency' | 'percentage';
32
33
  };
33
34
  export interface InvoicesCalculationsTotalsResponse {
34
35
  totalNoSuj: InvoicesCalculationsTotalsItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.88",
3
+ "version": "0.4.90",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -35,6 +35,7 @@ export type InvoicesCalculationsTotalsItem = {
35
35
  amount: number
36
36
  style?: string[]
37
37
  show: true | false
38
+ type?: 'currency' | 'percentage'
38
39
  }
39
40
 
40
41
  // export type InvoicesCalculationsTotalsResponse = {
@@ -55,7 +56,7 @@ export interface InvoicesCalculationsTotalsResponse {
55
56
  totalNoSuj: InvoicesCalculationsTotalsItem // ventasNoSujetas
56
57
  totalExenta: InvoicesCalculationsTotalsItem // ventasExentas
57
58
  totalGravada: InvoicesCalculationsTotalsItem
58
- subTotalVentas: InvoicesCalculationsTotalsItem
59
+ subTotalVentas: InvoicesCalculationsTotalsItem // sum
59
60
 
60
61
  // Descuentos
61
62
  descuNoSuj: InvoicesCalculationsTotalsItem