@redotech/redo-api-schema 2.2.323 → 2.2.331
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 +2 -2
- package/lib/openapi.yaml +3 -0
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -1256,7 +1256,7 @@ export interface components {
|
|
|
1256
1256
|
* Price
|
|
1257
1257
|
* @description Total price.
|
|
1258
1258
|
*/
|
|
1259
|
-
priceTotal
|
|
1259
|
+
priceTotal: components["schemas"]["money.schema"];
|
|
1260
1260
|
};
|
|
1261
1261
|
/**
|
|
1262
1262
|
* Storefront Customer
|
|
@@ -1850,7 +1850,7 @@ export interface operations {
|
|
|
1850
1850
|
requestBody: {
|
|
1851
1851
|
content: {
|
|
1852
1852
|
"application/json": {
|
|
1853
|
-
cart
|
|
1853
|
+
cart: components["schemas"]["storefront-cart.schema"];
|
|
1854
1854
|
customer?: components["schemas"]["storefront-customer.schema"];
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Products
|
package/lib/openapi.yaml
CHANGED
|
@@ -1499,6 +1499,7 @@ components:
|
|
|
1499
1499
|
title: Price
|
|
1500
1500
|
required:
|
|
1501
1501
|
- lineItems
|
|
1502
|
+
- priceTotal
|
|
1502
1503
|
title: Storefront Cart
|
|
1503
1504
|
type: object
|
|
1504
1505
|
storefront-customer.schema:
|
|
@@ -2194,6 +2195,8 @@ paths:
|
|
|
2194
2195
|
type: object
|
|
2195
2196
|
title: Variants
|
|
2196
2197
|
type: array
|
|
2198
|
+
required:
|
|
2199
|
+
- cart
|
|
2197
2200
|
type: object
|
|
2198
2201
|
required: true
|
|
2199
2202
|
responses:
|
package/package.json
CHANGED