@redotech/redo-api-schema 2.2.131 → 2.2.134
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 -12
- package/lib/openapi.yaml +11 -5
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -64,11 +64,6 @@ export interface paths {
|
|
|
64
64
|
* @description Update return status.
|
|
65
65
|
*/
|
|
66
66
|
put: operations["Return status update"];
|
|
67
|
-
parameters: {
|
|
68
|
-
path: {
|
|
69
|
-
returnId: components["parameters"]["return-id.param"];
|
|
70
|
-
};
|
|
71
|
-
};
|
|
72
67
|
};
|
|
73
68
|
"/stores/{storeId}/admin": {
|
|
74
69
|
/**
|
|
@@ -190,14 +185,9 @@ export interface paths {
|
|
|
190
185
|
put: operations["Webhook update"];
|
|
191
186
|
/**
|
|
192
187
|
* Delete webhook
|
|
193
|
-
* @description Delete a
|
|
188
|
+
* @description Delete a webhook.
|
|
194
189
|
*/
|
|
195
190
|
delete: operations["Webhook delete"];
|
|
196
|
-
parameters: {
|
|
197
|
-
path: {
|
|
198
|
-
webhookId: components["parameters"]["webhook-id.param"];
|
|
199
|
-
};
|
|
200
|
-
};
|
|
201
191
|
};
|
|
202
192
|
"/webhooks/{webhookId}/replay": {
|
|
203
193
|
/**
|
|
@@ -1728,7 +1718,7 @@ export interface operations {
|
|
|
1728
1718
|
};
|
|
1729
1719
|
/**
|
|
1730
1720
|
* Delete webhook
|
|
1731
|
-
* @description Delete a
|
|
1721
|
+
* @description Delete a webhook.
|
|
1732
1722
|
*/
|
|
1733
1723
|
"Webhook delete": {
|
|
1734
1724
|
parameters: {
|
package/lib/openapi.yaml
CHANGED
|
@@ -1349,6 +1349,8 @@ paths:
|
|
|
1349
1349
|
get:
|
|
1350
1350
|
description: Get return status.
|
|
1351
1351
|
operationId: Return status get
|
|
1352
|
+
parameters:
|
|
1353
|
+
- $ref: '#/components/parameters/return-id.param'
|
|
1352
1354
|
responses:
|
|
1353
1355
|
'200':
|
|
1354
1356
|
content:
|
|
@@ -1372,11 +1374,11 @@ paths:
|
|
|
1372
1374
|
summary: Get return status
|
|
1373
1375
|
tags:
|
|
1374
1376
|
- Returns
|
|
1375
|
-
parameters:
|
|
1376
|
-
- $ref: '#/components/parameters/return-id.param'
|
|
1377
1377
|
put:
|
|
1378
1378
|
description: Update return status.
|
|
1379
1379
|
operationId: Return status update
|
|
1380
|
+
parameters:
|
|
1381
|
+
- $ref: '#/components/parameters/return-id.param'
|
|
1380
1382
|
requestBody:
|
|
1381
1383
|
content:
|
|
1382
1384
|
application/json:
|
|
@@ -1846,8 +1848,10 @@ paths:
|
|
|
1846
1848
|
summary: Webhooks
|
|
1847
1849
|
/webhooks/{webhookId}:
|
|
1848
1850
|
delete:
|
|
1849
|
-
description: Delete a
|
|
1851
|
+
description: Delete a webhook.
|
|
1850
1852
|
operationId: Webhook delete
|
|
1853
|
+
parameters:
|
|
1854
|
+
- $ref: '#/components/parameters/webhook-id.param'
|
|
1851
1855
|
responses:
|
|
1852
1856
|
'204':
|
|
1853
1857
|
description: Deleted
|
|
@@ -1860,6 +1864,8 @@ paths:
|
|
|
1860
1864
|
get:
|
|
1861
1865
|
description: Get a webhook.
|
|
1862
1866
|
operationId: Webhook get
|
|
1867
|
+
parameters:
|
|
1868
|
+
- $ref: '#/components/parameters/webhook-id.param'
|
|
1863
1869
|
responses:
|
|
1864
1870
|
'200':
|
|
1865
1871
|
content:
|
|
@@ -1875,11 +1881,11 @@ paths:
|
|
|
1875
1881
|
summary: Get webhook
|
|
1876
1882
|
tags:
|
|
1877
1883
|
- Webhooks
|
|
1878
|
-
parameters:
|
|
1879
|
-
- $ref: '#/components/parameters/webhook-id.param'
|
|
1880
1884
|
put:
|
|
1881
1885
|
description: Update a webhook.
|
|
1882
1886
|
operationId: Webhook update
|
|
1887
|
+
parameters:
|
|
1888
|
+
- $ref: '#/components/parameters/webhook-id.param'
|
|
1883
1889
|
requestBody:
|
|
1884
1890
|
content:
|
|
1885
1891
|
application/json:
|
package/package.json
CHANGED