@redotech/redo-api-schema 2.2.81 → 2.2.83
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 +27 -10
- package/lib/openapi.yaml +1 -1
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ export interface paths {
|
|
|
82
82
|
* Navigate to coverage info
|
|
83
83
|
* @description Navigate to the coverage info page.
|
|
84
84
|
*/
|
|
85
|
-
get: operations["
|
|
85
|
+
get: operations["Coverage info navigate"];
|
|
86
86
|
};
|
|
87
87
|
"/stores/{storeId}/coverage-products": {
|
|
88
88
|
/**
|
|
@@ -1090,17 +1090,11 @@ export interface operations {
|
|
|
1090
1090
|
};
|
|
1091
1091
|
};
|
|
1092
1092
|
/**
|
|
1093
|
-
* Navigate to
|
|
1094
|
-
* @description Navigate to the
|
|
1093
|
+
* Navigate to coverage info
|
|
1094
|
+
* @description Navigate to the coverage info page.
|
|
1095
1095
|
*/
|
|
1096
|
-
"
|
|
1096
|
+
"Coverage info navigate": {
|
|
1097
1097
|
parameters: {
|
|
1098
|
-
query?: {
|
|
1099
|
-
/** @description HMAC-SHA256 JWT of {"iss":"<partnerId>","sub":"<storeId>/<customerId>"} */
|
|
1100
|
-
token?: string;
|
|
1101
|
-
/** @description Order ID */
|
|
1102
|
-
order_id?: string;
|
|
1103
|
-
};
|
|
1104
1098
|
path: {
|
|
1105
1099
|
storeId: components["parameters"]["store-id.param"];
|
|
1106
1100
|
};
|
|
@@ -1145,6 +1139,29 @@ export interface operations {
|
|
|
1145
1139
|
};
|
|
1146
1140
|
};
|
|
1147
1141
|
};
|
|
1142
|
+
/**
|
|
1143
|
+
* Navigate to customer portal
|
|
1144
|
+
* @description Navigate to the customer portal.
|
|
1145
|
+
*/
|
|
1146
|
+
"Customer portal navigate": {
|
|
1147
|
+
parameters: {
|
|
1148
|
+
query?: {
|
|
1149
|
+
/** @description HMAC-SHA256 JWT of {"iss":"<partnerId>","sub":"<storeId>/<customerId>"} */
|
|
1150
|
+
token?: string;
|
|
1151
|
+
/** @description Order ID */
|
|
1152
|
+
order_id?: string;
|
|
1153
|
+
};
|
|
1154
|
+
path: {
|
|
1155
|
+
storeId: components["parameters"]["store-id.param"];
|
|
1156
|
+
};
|
|
1157
|
+
};
|
|
1158
|
+
responses: {
|
|
1159
|
+
/** @description Redirect */
|
|
1160
|
+
302: {
|
|
1161
|
+
content: never;
|
|
1162
|
+
};
|
|
1163
|
+
};
|
|
1164
|
+
};
|
|
1148
1165
|
/**
|
|
1149
1166
|
* Get invoice
|
|
1150
1167
|
* @description Get a list of invoices.
|
package/lib/openapi.yaml
CHANGED
|
@@ -1143,7 +1143,7 @@ paths:
|
|
|
1143
1143
|
description: Navigate to the coverage info page.
|
|
1144
1144
|
get:
|
|
1145
1145
|
description: Navigate to the coverage info page.
|
|
1146
|
-
operationId:
|
|
1146
|
+
operationId: Coverage info navigate
|
|
1147
1147
|
parameters:
|
|
1148
1148
|
- $ref: '#/components/parameters/store-id.param'
|
|
1149
1149
|
responses:
|
package/package.json
CHANGED