ultracart_rest_api_v2_typescript 3.10.106 → 3.10.107
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 +3 -2
- package/dist/api.d.ts +3 -2
- package/dist/api.js +2 -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.107
|
|
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.107 --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.107 | 01/25/2023 | convo event for engage customer |
|
|
57
58
|
| 3.10.106 | 01/25/2023 | order api method generateInvoice |
|
|
58
59
|
| 3.10.105 | 01/24/2023 | auto order - cancel minimum and change balance options |
|
|
59
60
|
| 3.10.104 | 01/23/2023 | conversation - method to fetch single engagement record |
|
package/api.ts
CHANGED
|
@@ -8958,12 +8958,13 @@ export namespace ConversationWebsocketMessage {
|
|
|
8958
8958
|
Rrweb = <any> 'rrweb',
|
|
8959
8959
|
ParticipantUpdate = <any> 'participant update',
|
|
8960
8960
|
ParticipantJoin = <any> 'participant join',
|
|
8961
|
-
|
|
8961
|
+
ParticipantLeave = <any> 'participant leave',
|
|
8962
8962
|
ReadMessage = <any> 'read message',
|
|
8963
8963
|
Typing = <any> 'typing',
|
|
8964
8964
|
AddCoupon = <any> 'add coupon',
|
|
8965
8965
|
AddItem = <any> 'add item',
|
|
8966
|
-
WebchatContext = <any> 'webchat context'
|
|
8966
|
+
WebchatContext = <any> 'webchat context',
|
|
8967
|
+
EngageCustomer = <any> 'engage customer'
|
|
8967
8968
|
}
|
|
8968
8969
|
/**
|
|
8969
8970
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -8743,12 +8743,13 @@ export declare namespace ConversationWebsocketMessage {
|
|
|
8743
8743
|
Rrweb,
|
|
8744
8744
|
ParticipantUpdate,
|
|
8745
8745
|
ParticipantJoin,
|
|
8746
|
-
|
|
8746
|
+
ParticipantLeave,
|
|
8747
8747
|
ReadMessage,
|
|
8748
8748
|
Typing,
|
|
8749
8749
|
AddCoupon,
|
|
8750
8750
|
AddItem,
|
|
8751
|
-
WebchatContext
|
|
8751
|
+
WebchatContext,
|
|
8752
|
+
EngageCustomer
|
|
8752
8753
|
}
|
|
8753
8754
|
/**
|
|
8754
8755
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -605,12 +605,13 @@ 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["ParticipantLeave"] = 'participant leave'] = "ParticipantLeave";
|
|
609
609
|
EventTypeEnum[EventTypeEnum["ReadMessage"] = 'read message'] = "ReadMessage";
|
|
610
610
|
EventTypeEnum[EventTypeEnum["Typing"] = 'typing'] = "Typing";
|
|
611
611
|
EventTypeEnum[EventTypeEnum["AddCoupon"] = 'add coupon'] = "AddCoupon";
|
|
612
612
|
EventTypeEnum[EventTypeEnum["AddItem"] = 'add item'] = "AddItem";
|
|
613
613
|
EventTypeEnum[EventTypeEnum["WebchatContext"] = 'webchat context'] = "WebchatContext";
|
|
614
|
+
EventTypeEnum[EventTypeEnum["EngageCustomer"] = 'engage customer'] = "EngageCustomer";
|
|
614
615
|
})(EventTypeEnum = ConversationWebsocketMessage.EventTypeEnum || (ConversationWebsocketMessage.EventTypeEnum = {}));
|
|
615
616
|
/**
|
|
616
617
|
* @export
|