@redotech/redo-api-schema 2.2.182 → 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 +12 -1
- package/lib/openapi.yaml +25 -1
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -620,7 +620,12 @@ export interface components {
|
|
|
620
620
|
items: {
|
|
621
621
|
/** ID */
|
|
622
622
|
id: string;
|
|
623
|
-
/** @description
|
|
623
|
+
/** @description Original price for the exchange item without discounts and taxes */
|
|
624
|
+
originalPrice?: {
|
|
625
|
+
amount?: string;
|
|
626
|
+
currency?: string;
|
|
627
|
+
};
|
|
628
|
+
/** @description Subtotal price for the exchange item including discounts */
|
|
624
629
|
price?: {
|
|
625
630
|
amount?: string;
|
|
626
631
|
currency?: string;
|
|
@@ -1274,10 +1279,14 @@ export interface components {
|
|
|
1274
1279
|
* @example 20
|
|
1275
1280
|
*/
|
|
1276
1281
|
"page-size.param"?: number;
|
|
1282
|
+
/** @description Provider specific order name */
|
|
1283
|
+
"provider-order-name"?: string;
|
|
1277
1284
|
/** @description Return ID */
|
|
1278
1285
|
"return-id.param": string;
|
|
1279
1286
|
/** @description Shipment ID */
|
|
1280
1287
|
"shipment-id.param": string;
|
|
1288
|
+
/** @description Shopify specific order name */
|
|
1289
|
+
"shopify-order-name"?: string;
|
|
1281
1290
|
/** @description Store ID */
|
|
1282
1291
|
"store-id.param": string;
|
|
1283
1292
|
/**
|
|
@@ -1765,6 +1774,8 @@ export interface operations {
|
|
|
1765
1774
|
query?: {
|
|
1766
1775
|
updated_at_max?: components["parameters"]["updated-at-max.param"];
|
|
1767
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"];
|
|
1768
1779
|
};
|
|
1769
1780
|
header?: {
|
|
1770
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
|
|
@@ -576,8 +590,16 @@ components:
|
|
|
576
590
|
id:
|
|
577
591
|
title: ID
|
|
578
592
|
type: string
|
|
593
|
+
originalPrice:
|
|
594
|
+
description: Original price for the exchange item without discounts and taxes
|
|
595
|
+
properties:
|
|
596
|
+
amount:
|
|
597
|
+
type: string
|
|
598
|
+
currency:
|
|
599
|
+
type: string
|
|
600
|
+
type: object
|
|
579
601
|
price:
|
|
580
|
-
description:
|
|
602
|
+
description: Subtotal price for the exchange item including discounts
|
|
581
603
|
properties:
|
|
582
604
|
amount:
|
|
583
605
|
type: string
|
|
@@ -1956,6 +1978,8 @@ paths:
|
|
|
1956
1978
|
- $ref: '#/components/parameters/page-size.param'
|
|
1957
1979
|
- $ref: '#/components/parameters/updated-at-max.param'
|
|
1958
1980
|
- $ref: '#/components/parameters/updated-at-min.param'
|
|
1981
|
+
- $ref: '#/components/parameters/shopify-order-name'
|
|
1982
|
+
- $ref: '#/components/parameters/provider-order-name'
|
|
1959
1983
|
responses:
|
|
1960
1984
|
'200':
|
|
1961
1985
|
content:
|
package/package.json
CHANGED