ultracart_rest_api_v2_typescript 4.0.123-RC → 4.0.124-RC
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
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@4.0.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@4.0.124-RC
|
|
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@4.0.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@4.0.124-RC --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
|
+
| 4.0.124-RC | 01/25/2023 | convo event for engage customer |
|
|
57
58
|
| 4.0.123-RC | 01/25/2023 | order api method generateInvoice |
|
|
58
59
|
| 4.0.122-RC | 01/24/2023 | auto order - cancel minimum and change balance options |
|
|
59
60
|
| 4.0.121-RC | 01/23/2023 | conversation - method to fetch single engagement record |
|
|
@@ -167,12 +167,13 @@ export declare const ConversationWebsocketMessageEventTypeEnum: {
|
|
|
167
167
|
readonly Rrweb: "rrweb";
|
|
168
168
|
readonly ParticipantUpdate: "participant update";
|
|
169
169
|
readonly ParticipantJoin: "participant join";
|
|
170
|
-
readonly
|
|
170
|
+
readonly ParticipantLeave: "participant leave";
|
|
171
171
|
readonly ReadMessage: "read message";
|
|
172
172
|
readonly Typing: "typing";
|
|
173
173
|
readonly AddCoupon: "add coupon";
|
|
174
174
|
readonly AddItem: "add item";
|
|
175
175
|
readonly WebchatContext: "webchat context";
|
|
176
|
+
readonly EngageCustomer: "engage customer";
|
|
176
177
|
};
|
|
177
178
|
export type ConversationWebsocketMessageEventTypeEnum = typeof ConversationWebsocketMessageEventTypeEnum[keyof typeof ConversationWebsocketMessageEventTypeEnum];
|
|
178
179
|
/**
|
|
@@ -40,12 +40,13 @@ exports.ConversationWebsocketMessageEventTypeEnum = {
|
|
|
40
40
|
Rrweb: 'rrweb',
|
|
41
41
|
ParticipantUpdate: 'participant update',
|
|
42
42
|
ParticipantJoin: 'participant join',
|
|
43
|
-
|
|
43
|
+
ParticipantLeave: 'participant leave',
|
|
44
44
|
ReadMessage: 'read message',
|
|
45
45
|
Typing: 'typing',
|
|
46
46
|
AddCoupon: 'add coupon',
|
|
47
47
|
AddItem: 'add item',
|
|
48
|
-
WebchatContext: 'webchat context'
|
|
48
|
+
WebchatContext: 'webchat context',
|
|
49
|
+
EngageCustomer: 'engage customer'
|
|
49
50
|
};
|
|
50
51
|
/**
|
|
51
52
|
* @export
|
package/package.json
CHANGED
|
@@ -229,12 +229,13 @@ export const ConversationWebsocketMessageEventTypeEnum = {
|
|
|
229
229
|
Rrweb: 'rrweb',
|
|
230
230
|
ParticipantUpdate: 'participant update',
|
|
231
231
|
ParticipantJoin: 'participant join',
|
|
232
|
-
|
|
232
|
+
ParticipantLeave: 'participant leave',
|
|
233
233
|
ReadMessage: 'read message',
|
|
234
234
|
Typing: 'typing',
|
|
235
235
|
AddCoupon: 'add coupon',
|
|
236
236
|
AddItem: 'add item',
|
|
237
|
-
WebchatContext: 'webchat context'
|
|
237
|
+
WebchatContext: 'webchat context',
|
|
238
|
+
EngageCustomer: 'engage customer'
|
|
238
239
|
} as const;
|
|
239
240
|
export type ConversationWebsocketMessageEventTypeEnum = typeof ConversationWebsocketMessageEventTypeEnum[keyof typeof ConversationWebsocketMessageEventTypeEnum];
|
|
240
241
|
|