ultracart_rest_api_v2_typescript 3.10.113 → 3.10.115
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 +14 -1
- package/dist/api.d.ts +14 -1
- package/dist/api.js +1 -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.115
|
|
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.115 --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.115 | 02/07/2023 | convo - new event for when a customer joins a queue |
|
|
58
|
+
| 3.10.114 | 02/07/2023 | convo - new event for when a customer joins a queue |
|
|
57
59
|
| 3.10.113 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
|
|
58
60
|
| 3.10.112 | 02/01/2023 | convo - agent profile get/update methods |
|
|
59
61
|
| 3.10.111 | 01/27/2023 | convo - added event_engage_customer property to message |
|
package/api.ts
CHANGED
|
@@ -8923,6 +8923,12 @@ export interface ConversationWebchatQueueStatusQueueEntry {
|
|
|
8923
8923
|
* @memberof ConversationWebchatQueueStatusQueueEntry
|
|
8924
8924
|
*/
|
|
8925
8925
|
question?: string;
|
|
8926
|
+
/**
|
|
8927
|
+
*
|
|
8928
|
+
* @type {string}
|
|
8929
|
+
* @memberof ConversationWebchatQueueStatusQueueEntry
|
|
8930
|
+
*/
|
|
8931
|
+
queue_name?: string;
|
|
8926
8932
|
}
|
|
8927
8933
|
|
|
8928
8934
|
/**
|
|
@@ -9077,6 +9083,12 @@ export interface ConversationWebsocketMessage {
|
|
|
9077
9083
|
* @memberof ConversationWebsocketMessage
|
|
9078
9084
|
*/
|
|
9079
9085
|
event_participant_update?: ConversationSummary;
|
|
9086
|
+
/**
|
|
9087
|
+
*
|
|
9088
|
+
* @type {ConversationWebchatQueueStatusQueueEntry}
|
|
9089
|
+
* @memberof ConversationWebsocketMessage
|
|
9090
|
+
*/
|
|
9091
|
+
event_queue_new_member?: ConversationWebchatQueueStatusQueueEntry;
|
|
9080
9092
|
/**
|
|
9081
9093
|
*
|
|
9082
9094
|
* @type {ConversationEventQueuePosition}
|
|
@@ -9165,7 +9177,8 @@ export namespace ConversationWebsocketMessage {
|
|
|
9165
9177
|
AddCoupon = <any> 'add coupon',
|
|
9166
9178
|
AddItem = <any> 'add item',
|
|
9167
9179
|
WebchatContext = <any> 'webchat context',
|
|
9168
|
-
EngageCustomer = <any> 'engage customer'
|
|
9180
|
+
EngageCustomer = <any> 'engage customer',
|
|
9181
|
+
QueueNewMember = <any> 'queue new member'
|
|
9169
9182
|
}
|
|
9170
9183
|
/**
|
|
9171
9184
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -8707,6 +8707,12 @@ export interface ConversationWebchatQueueStatusQueueEntry {
|
|
|
8707
8707
|
* @memberof ConversationWebchatQueueStatusQueueEntry
|
|
8708
8708
|
*/
|
|
8709
8709
|
question?: string;
|
|
8710
|
+
/**
|
|
8711
|
+
*
|
|
8712
|
+
* @type {string}
|
|
8713
|
+
* @memberof ConversationWebchatQueueStatusQueueEntry
|
|
8714
|
+
*/
|
|
8715
|
+
queue_name?: string;
|
|
8710
8716
|
}
|
|
8711
8717
|
/**
|
|
8712
8718
|
*
|
|
@@ -8857,6 +8863,12 @@ export interface ConversationWebsocketMessage {
|
|
|
8857
8863
|
* @memberof ConversationWebsocketMessage
|
|
8858
8864
|
*/
|
|
8859
8865
|
event_participant_update?: ConversationSummary;
|
|
8866
|
+
/**
|
|
8867
|
+
*
|
|
8868
|
+
* @type {ConversationWebchatQueueStatusQueueEntry}
|
|
8869
|
+
* @memberof ConversationWebsocketMessage
|
|
8870
|
+
*/
|
|
8871
|
+
event_queue_new_member?: ConversationWebchatQueueStatusQueueEntry;
|
|
8860
8872
|
/**
|
|
8861
8873
|
*
|
|
8862
8874
|
* @type {ConversationEventQueuePosition}
|
|
@@ -8944,7 +8956,8 @@ export declare namespace ConversationWebsocketMessage {
|
|
|
8944
8956
|
AddCoupon,
|
|
8945
8957
|
AddItem,
|
|
8946
8958
|
WebchatContext,
|
|
8947
|
-
EngageCustomer
|
|
8959
|
+
EngageCustomer,
|
|
8960
|
+
QueueNewMember
|
|
8948
8961
|
}
|
|
8949
8962
|
/**
|
|
8950
8963
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -630,6 +630,7 @@ var ConversationWebsocketMessage;
|
|
|
630
630
|
EventTypeEnum[EventTypeEnum["AddItem"] = 'add item'] = "AddItem";
|
|
631
631
|
EventTypeEnum[EventTypeEnum["WebchatContext"] = 'webchat context'] = "WebchatContext";
|
|
632
632
|
EventTypeEnum[EventTypeEnum["EngageCustomer"] = 'engage customer'] = "EngageCustomer";
|
|
633
|
+
EventTypeEnum[EventTypeEnum["QueueNewMember"] = 'queue new member'] = "QueueNewMember";
|
|
633
634
|
})(EventTypeEnum = ConversationWebsocketMessage.EventTypeEnum || (ConversationWebsocketMessage.EventTypeEnum = {}));
|
|
634
635
|
/**
|
|
635
636
|
* @export
|