ultracart_rest_api_v2_typescript 3.10.112 → 3.10.114
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 +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.114
|
|
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.114 --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.114 | 02/07/2023 | convo - new event for when a customer joins a queue |
|
|
58
|
+
| 3.10.113 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
|
|
57
59
|
| 3.10.112 | 02/01/2023 | convo - agent profile get/update methods |
|
|
58
60
|
| 3.10.111 | 01/27/2023 | convo - added event_engage_customer property to message |
|
|
59
61
|
| 3.10.110 | 01/27/2023 | conversations - getLocationsForEngagement method |
|
package/api.ts
CHANGED
|
@@ -8999,6 +8999,12 @@ export interface ConversationWebchatQueueStatusesResponse {
|
|
|
8999
8999
|
* @interface ConversationWebsocketMessage
|
|
9000
9000
|
*/
|
|
9001
9001
|
export interface ConversationWebsocketMessage {
|
|
9002
|
+
/**
|
|
9003
|
+
* Conversation ARN
|
|
9004
|
+
* @type {string}
|
|
9005
|
+
* @memberof ConversationWebsocketMessage
|
|
9006
|
+
*/
|
|
9007
|
+
conversation_arn?: string;
|
|
9002
9008
|
/**
|
|
9003
9009
|
* Conversation UUID if the websocket message is tied to a specific conversation
|
|
9004
9010
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -8779,6 +8779,12 @@ export interface ConversationWebchatQueueStatusesResponse {
|
|
|
8779
8779
|
* @interface ConversationWebsocketMessage
|
|
8780
8780
|
*/
|
|
8781
8781
|
export interface ConversationWebsocketMessage {
|
|
8782
|
+
/**
|
|
8783
|
+
* Conversation ARN
|
|
8784
|
+
* @type {string}
|
|
8785
|
+
* @memberof ConversationWebsocketMessage
|
|
8786
|
+
*/
|
|
8787
|
+
conversation_arn?: string;
|
|
8782
8788
|
/**
|
|
8783
8789
|
* Conversation UUID if the websocket message is tied to a specific conversation
|
|
8784
8790
|
* @type {string}
|