ultracart_rest_api_v2_typescript 3.10.97 → 3.10.99
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 +4 -2
- package/api.ts +7 -1
- package/dist/api.d.ts +7 -1
- package/dist/api.js +1 -1
- 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.99
|
|
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.99 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.99 | 01/18/2023 | channel partner ship to pref desc field |
|
|
58
|
+
| 3.10.98 | 01/17/2023 | changed convo webchat constant |
|
|
57
59
|
| 3.10.97 | 01/17/2023 | support for checkout item properties |
|
|
58
60
|
| 3.10.96 | 01/14/2023 | add external_id to the point of sale location object |
|
|
59
61
|
| 3.10.95 | 01/13/2023 | channel - ops to manage ship to prefs |
|
package/api.ts
CHANGED
|
@@ -5964,6 +5964,12 @@ export interface ChannelPartnerShipToPreference {
|
|
|
5964
5964
|
* @memberof ChannelPartnerShipToPreference
|
|
5965
5965
|
*/
|
|
5966
5966
|
channel_partner_ship_to_preference_oid?: number;
|
|
5967
|
+
/**
|
|
5968
|
+
* A description that is meaningful to the merchant.
|
|
5969
|
+
* @type {string}
|
|
5970
|
+
* @memberof ChannelPartnerShipToPreference
|
|
5971
|
+
*/
|
|
5972
|
+
description?: string;
|
|
5967
5973
|
/**
|
|
5968
5974
|
* The merchant id that owns the channel partner
|
|
5969
5975
|
* @type {string}
|
|
@@ -8830,7 +8836,7 @@ export namespace ConversationWebsocketMessage {
|
|
|
8830
8836
|
Rrweb = <any> 'rrweb',
|
|
8831
8837
|
ParticipantUpdate = <any> 'participant update',
|
|
8832
8838
|
ParticipantJoin = <any> 'participant join',
|
|
8833
|
-
|
|
8839
|
+
ParticipantLeft = <any> 'participant left',
|
|
8834
8840
|
ReadMessage = <any> 'read message',
|
|
8835
8841
|
Typing = <any> 'typing',
|
|
8836
8842
|
AddCoupon = <any> 'add coupon',
|
package/dist/api.d.ts
CHANGED
|
@@ -5827,6 +5827,12 @@ export interface ChannelPartnerShipToPreference {
|
|
|
5827
5827
|
* @memberof ChannelPartnerShipToPreference
|
|
5828
5828
|
*/
|
|
5829
5829
|
channel_partner_ship_to_preference_oid?: number;
|
|
5830
|
+
/**
|
|
5831
|
+
* A description that is meaningful to the merchant.
|
|
5832
|
+
* @type {string}
|
|
5833
|
+
* @memberof ChannelPartnerShipToPreference
|
|
5834
|
+
*/
|
|
5835
|
+
description?: string;
|
|
5830
5836
|
/**
|
|
5831
5837
|
* The merchant id that owns the channel partner
|
|
5832
5838
|
* @type {string}
|
|
@@ -8619,7 +8625,7 @@ export declare namespace ConversationWebsocketMessage {
|
|
|
8619
8625
|
Rrweb,
|
|
8620
8626
|
ParticipantUpdate,
|
|
8621
8627
|
ParticipantJoin,
|
|
8622
|
-
|
|
8628
|
+
ParticipantLeft,
|
|
8623
8629
|
ReadMessage,
|
|
8624
8630
|
Typing,
|
|
8625
8631
|
AddCoupon,
|
package/dist/api.js
CHANGED
|
@@ -605,7 +605,7 @@ var ConversationWebsocketMessage;
|
|
|
605
605
|
EventTypeEnum[EventTypeEnum["Rrweb"] = 'rrweb'] = "Rrweb";
|
|
606
606
|
EventTypeEnum[EventTypeEnum["ParticipantUpdate"] = 'participant update'] = "ParticipantUpdate";
|
|
607
607
|
EventTypeEnum[EventTypeEnum["ParticipantJoin"] = 'participant join'] = "ParticipantJoin";
|
|
608
|
-
EventTypeEnum[EventTypeEnum["
|
|
608
|
+
EventTypeEnum[EventTypeEnum["ParticipantLeft"] = 'participant left'] = "ParticipantLeft";
|
|
609
609
|
EventTypeEnum[EventTypeEnum["ReadMessage"] = 'read message'] = "ReadMessage";
|
|
610
610
|
EventTypeEnum[EventTypeEnum["Typing"] = 'typing'] = "Typing";
|
|
611
611
|
EventTypeEnum[EventTypeEnum["AddCoupon"] = 'add coupon'] = "AddCoupon";
|