@redotech/redo-api-schema 2.2.187 → 2.2.190
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 +6 -0
- package/lib/openapi.yaml +16 -0
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -1279,10 +1279,14 @@ export interface components {
|
|
|
1279
1279
|
* @example 20
|
|
1280
1280
|
*/
|
|
1281
1281
|
"page-size.param"?: number;
|
|
1282
|
+
/** @description Provider specific order name */
|
|
1283
|
+
"provider-order-name"?: string;
|
|
1282
1284
|
/** @description Return ID */
|
|
1283
1285
|
"return-id.param": string;
|
|
1284
1286
|
/** @description Shipment ID */
|
|
1285
1287
|
"shipment-id.param": string;
|
|
1288
|
+
/** @description Shopify specific order name */
|
|
1289
|
+
"shopify-order-name"?: string;
|
|
1286
1290
|
/** @description Store ID */
|
|
1287
1291
|
"store-id.param": string;
|
|
1288
1292
|
/**
|
|
@@ -1770,6 +1774,8 @@ export interface operations {
|
|
|
1770
1774
|
query?: {
|
|
1771
1775
|
updated_at_max?: components["parameters"]["updated-at-max.param"];
|
|
1772
1776
|
updated_at_min?: components["parameters"]["updated-at-min.param"];
|
|
1777
|
+
shopify_order_name?: components["parameters"]["shopify-order-name"];
|
|
1778
|
+
provider_order_name?: components["parameters"]["provider-order-name"];
|
|
1773
1779
|
};
|
|
1774
1780
|
header?: {
|
|
1775
1781
|
"X-Page-Continue"?: components["parameters"]["page-continue.param"];
|
package/lib/openapi.yaml
CHANGED
|
@@ -36,6 +36,13 @@ components:
|
|
|
36
36
|
maximum: 500
|
|
37
37
|
minimum: 1
|
|
38
38
|
type: integer
|
|
39
|
+
provider-order-name:
|
|
40
|
+
description: Provider specific order name
|
|
41
|
+
in: query
|
|
42
|
+
name: provider_order_name
|
|
43
|
+
schema:
|
|
44
|
+
example: XYZ1025
|
|
45
|
+
type: string
|
|
39
46
|
return-id.param:
|
|
40
47
|
description: Return ID
|
|
41
48
|
in: path
|
|
@@ -52,6 +59,13 @@ components:
|
|
|
52
59
|
schema:
|
|
53
60
|
example: 67c7e87a2c8c262c0ddc9861
|
|
54
61
|
type: string
|
|
62
|
+
shopify-order-name:
|
|
63
|
+
description: Shopify specific order name
|
|
64
|
+
in: query
|
|
65
|
+
name: shopify_order_name
|
|
66
|
+
schema:
|
|
67
|
+
example: XYZ1025
|
|
68
|
+
type: string
|
|
55
69
|
store-id.param:
|
|
56
70
|
description: Store ID
|
|
57
71
|
in: path
|
|
@@ -1964,6 +1978,8 @@ paths:
|
|
|
1964
1978
|
- $ref: '#/components/parameters/page-size.param'
|
|
1965
1979
|
- $ref: '#/components/parameters/updated-at-max.param'
|
|
1966
1980
|
- $ref: '#/components/parameters/updated-at-min.param'
|
|
1981
|
+
- $ref: '#/components/parameters/shopify-order-name'
|
|
1982
|
+
- $ref: '#/components/parameters/provider-order-name'
|
|
1967
1983
|
responses:
|
|
1968
1984
|
'200':
|
|
1969
1985
|
content:
|
package/package.json
CHANGED