@redotech/redo-api-schema 2.2.88 → 2.2.92
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 +10 -4
- package/lib/openapi.yaml +5 -1
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -694,10 +694,10 @@ export interface components {
|
|
|
694
694
|
*/
|
|
695
695
|
lineItems: {
|
|
696
696
|
coupons?: {
|
|
697
|
-
code
|
|
697
|
+
code: string;
|
|
698
698
|
/** @description The amount this coupon discounts in dollars for this line item. */
|
|
699
|
-
discountAmount
|
|
700
|
-
id
|
|
699
|
+
discountAmount: components["schemas"]["money.schema"];
|
|
700
|
+
id: string;
|
|
701
701
|
}[];
|
|
702
702
|
/**
|
|
703
703
|
* ID
|
|
@@ -1139,7 +1139,13 @@ export interface operations {
|
|
|
1139
1139
|
/** @description Success */
|
|
1140
1140
|
200: {
|
|
1141
1141
|
content: {
|
|
1142
|
-
"application/json":
|
|
1142
|
+
"application/json": {
|
|
1143
|
+
/**
|
|
1144
|
+
* Coverage Products
|
|
1145
|
+
* @description Coverage products.
|
|
1146
|
+
*/
|
|
1147
|
+
coverageProducts: components["schemas"]["coverage-product.schema"][];
|
|
1148
|
+
};
|
|
1143
1149
|
};
|
|
1144
1150
|
};
|
|
1145
1151
|
/** @description Error */
|
package/lib/openapi.yaml
CHANGED
|
@@ -724,6 +724,10 @@ components:
|
|
|
724
724
|
description: The amount this coupon discounts in dollars for this line item.
|
|
725
725
|
id:
|
|
726
726
|
type: string
|
|
727
|
+
required:
|
|
728
|
+
- id
|
|
729
|
+
- code
|
|
730
|
+
- discountAmount
|
|
727
731
|
type: object
|
|
728
732
|
type: array
|
|
729
733
|
id:
|
|
@@ -1203,7 +1207,7 @@ paths:
|
|
|
1203
1207
|
type: array
|
|
1204
1208
|
required:
|
|
1205
1209
|
- coverageProducts
|
|
1206
|
-
type:
|
|
1210
|
+
type: object
|
|
1207
1211
|
description: Success
|
|
1208
1212
|
default:
|
|
1209
1213
|
content:
|
package/package.json
CHANGED