ultracart_rest_api_v2_typescript 3.10.0 → 3.10.1
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/README.md +3 -2
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.1
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install ultracart_rest_api_v2_typescript@3.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.1 | 05/12/2022 | ChannelPartnerApi added orderId to import response obj |
|
|
57
58
|
| 3.10.0 | 05/10/2022 | beta release of ChannelPartnerApi |
|
|
58
59
|
| 3.9.8 | 04/26/2022 | OrderApi.duplicateOrder |
|
|
59
60
|
| 3.9.7 | 04/25/2022 | integration logs method for zpl to pdf conversion |
|
package/api.ts
CHANGED
|
@@ -5079,6 +5079,12 @@ export interface ChannelPartnerImportResponse {
|
|
|
5079
5079
|
* @memberof ChannelPartnerImportResponse
|
|
5080
5080
|
*/
|
|
5081
5081
|
metadata?: ResponseMetadata;
|
|
5082
|
+
/**
|
|
5083
|
+
* The order id of the newly imported order if successful
|
|
5084
|
+
* @type {string}
|
|
5085
|
+
* @memberof ChannelPartnerImportResponse
|
|
5086
|
+
*/
|
|
5087
|
+
order_id?: string;
|
|
5082
5088
|
/**
|
|
5083
5089
|
* Indicates if API call was successful
|
|
5084
5090
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -4954,6 +4954,12 @@ export interface ChannelPartnerImportResponse {
|
|
|
4954
4954
|
* @memberof ChannelPartnerImportResponse
|
|
4955
4955
|
*/
|
|
4956
4956
|
metadata?: ResponseMetadata;
|
|
4957
|
+
/**
|
|
4958
|
+
* The order id of the newly imported order if successful
|
|
4959
|
+
* @type {string}
|
|
4960
|
+
* @memberof ChannelPartnerImportResponse
|
|
4961
|
+
*/
|
|
4962
|
+
order_id?: string;
|
|
4957
4963
|
/**
|
|
4958
4964
|
* Indicates if API call was successful
|
|
4959
4965
|
* @type {boolean}
|