ultracart_rest_api_v2_typescript 3.10.95 → 3.10.96
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.96
|
|
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.96 --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.96 | 01/14/2023 | add external_id to the point of sale location object |
|
|
57
58
|
| 3.10.95 | 01/13/2023 | channel - ops to manage ship to prefs |
|
|
58
59
|
| 3.10.94 | 01/11/2023 | conversations - adjust search results to return multiple convo summaries |
|
|
59
60
|
| 3.10.93 | 01/10/2023 | add method to query integration log record by oid |
|
package/api.ts
CHANGED
|
@@ -31776,6 +31776,12 @@ export interface PointOfSaleLocation {
|
|
|
31776
31776
|
* @memberof PointOfSaleLocation
|
|
31777
31777
|
*/
|
|
31778
31778
|
distribution_center_code?: string;
|
|
31779
|
+
/**
|
|
31780
|
+
* External Id useful for syncing with a remote filesystem, this may be an MD5 hash or whatever suits your needs.
|
|
31781
|
+
* @type {string}
|
|
31782
|
+
* @memberof PointOfSaleLocation
|
|
31783
|
+
*/
|
|
31784
|
+
external_id?: string;
|
|
31779
31785
|
/**
|
|
31780
31786
|
* Merchant ID that owns this location
|
|
31781
31787
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -31112,6 +31112,12 @@ export interface PointOfSaleLocation {
|
|
|
31112
31112
|
* @memberof PointOfSaleLocation
|
|
31113
31113
|
*/
|
|
31114
31114
|
distribution_center_code?: string;
|
|
31115
|
+
/**
|
|
31116
|
+
* External Id useful for syncing with a remote filesystem, this may be an MD5 hash or whatever suits your needs.
|
|
31117
|
+
* @type {string}
|
|
31118
|
+
* @memberof PointOfSaleLocation
|
|
31119
|
+
*/
|
|
31120
|
+
external_id?: string;
|
|
31115
31121
|
/**
|
|
31116
31122
|
* Merchant ID that owns this location
|
|
31117
31123
|
* @type {string}
|