@redotech/redo-api-schema 2.2.182 → 2.2.187
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.
- package/lib/openapi.d.ts +6 -1
- package/lib/openapi.yaml +9 -1
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -620,7 +620,12 @@ export interface components {
|
|
|
620
620
|
items: {
|
|
621
621
|
/** ID */
|
|
622
622
|
id: string;
|
|
623
|
-
/** @description
|
|
623
|
+
/** @description Original price for the exchange item without discounts and taxes */
|
|
624
|
+
originalPrice?: {
|
|
625
|
+
amount?: string;
|
|
626
|
+
currency?: string;
|
|
627
|
+
};
|
|
628
|
+
/** @description Subtotal price for the exchange item including discounts */
|
|
624
629
|
price?: {
|
|
625
630
|
amount?: string;
|
|
626
631
|
currency?: string;
|
package/lib/openapi.yaml
CHANGED
|
@@ -576,8 +576,16 @@ components:
|
|
|
576
576
|
id:
|
|
577
577
|
title: ID
|
|
578
578
|
type: string
|
|
579
|
+
originalPrice:
|
|
580
|
+
description: Original price for the exchange item without discounts and taxes
|
|
581
|
+
properties:
|
|
582
|
+
amount:
|
|
583
|
+
type: string
|
|
584
|
+
currency:
|
|
585
|
+
type: string
|
|
586
|
+
type: object
|
|
579
587
|
price:
|
|
580
|
-
description:
|
|
588
|
+
description: Subtotal price for the exchange item including discounts
|
|
581
589
|
properties:
|
|
582
590
|
amount:
|
|
583
591
|
type: string
|
package/package.json
CHANGED