@openbox/shared-types 0.4.82 → 0.4.84

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.
@@ -10,7 +10,7 @@ export type InvoicesCalculationsDetailsRequest = {
10
10
  incRenta10: boolean;
11
11
  chargeDescription: string;
12
12
  };
13
- export type InvoicesDiscountsRequest = {
13
+ export type InvoicesCalculationsDiscountsRequest = {
14
14
  id?: string;
15
15
  type: InvoicesDiscountsTypesKeys;
16
16
  quantity: number;
@@ -20,5 +20,5 @@ export type InvoicesCalculationsCalculateSingleRequest = {
20
20
  documentType: number;
21
21
  customer: string;
22
22
  details: InvoicesCalculationsDetailsRequest[];
23
- discounts: InvoicesDiscountsRequest[] | null;
23
+ discounts: InvoicesCalculationsDiscountsRequest[] | null;
24
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.82",
3
+ "version": "0.4.84",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -12,7 +12,7 @@ export type InvoicesCalculationsDetailsRequest = {
12
12
  chargeDescription: string
13
13
  }
14
14
 
15
- export type InvoicesDiscountsRequest = {
15
+ export type InvoicesCalculationsDiscountsRequest = {
16
16
  id?: string
17
17
  type: InvoicesDiscountsTypesKeys
18
18
  quantity: number
@@ -23,5 +23,5 @@ export type InvoicesCalculationsCalculateSingleRequest = {
23
23
  documentType: number
24
24
  customer: string
25
25
  details: InvoicesCalculationsDetailsRequest[]
26
- discounts: InvoicesDiscountsRequest[] | null
26
+ discounts: InvoicesCalculationsDiscountsRequest[] | null
27
27
  }