@redotech/redo-api-schema 2.2.101 → 2.2.108
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 +3 -3
- package/lib/openapi.yaml +5 -0
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -720,11 +720,11 @@ export interface components {
|
|
|
720
720
|
* Price
|
|
721
721
|
* @description Total price.
|
|
722
722
|
*/
|
|
723
|
-
priceTotal
|
|
723
|
+
priceTotal: components["schemas"]["money.schema"];
|
|
724
724
|
/** @description Product. */
|
|
725
725
|
product: {
|
|
726
726
|
/** ID */
|
|
727
|
-
id
|
|
727
|
+
id: string;
|
|
728
728
|
};
|
|
729
729
|
/**
|
|
730
730
|
* Quantity
|
|
@@ -734,7 +734,7 @@ export interface components {
|
|
|
734
734
|
/** @description Variant. */
|
|
735
735
|
variant: {
|
|
736
736
|
/** ID */
|
|
737
|
-
id
|
|
737
|
+
id: string;
|
|
738
738
|
};
|
|
739
739
|
}[];
|
|
740
740
|
/**
|
package/lib/openapi.yaml
CHANGED
|
@@ -748,6 +748,8 @@ components:
|
|
|
748
748
|
id:
|
|
749
749
|
title: ID
|
|
750
750
|
type: string
|
|
751
|
+
required:
|
|
752
|
+
- id
|
|
751
753
|
type: object
|
|
752
754
|
quantity:
|
|
753
755
|
description: Quantity.
|
|
@@ -759,12 +761,15 @@ components:
|
|
|
759
761
|
id:
|
|
760
762
|
title: ID
|
|
761
763
|
type: string
|
|
764
|
+
required:
|
|
765
|
+
- id
|
|
762
766
|
type: object
|
|
763
767
|
required:
|
|
764
768
|
- id
|
|
765
769
|
- quantity
|
|
766
770
|
- product
|
|
767
771
|
- variant
|
|
772
|
+
- priceTotal
|
|
768
773
|
type: object
|
|
769
774
|
title: Line items
|
|
770
775
|
type: array
|
package/package.json
CHANGED