ultracart_rest_api_v2_typescript 3.10.24 → 3.10.25
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 +18 -6
- package/dist/api.d.ts +18 -6
- 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.25
|
|
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.25 --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.25 | 07/25/2022 | conversation development |
|
|
57
58
|
| 3.10.24 | 07/25/2022 | conversations bug fixes |
|
|
58
59
|
| 3.10.23 | 07/25/2022 | conversations - add a websocket message model |
|
|
59
60
|
| 3.10.22 | 07/20/2022 | conversation participant name added |
|
package/api.ts
CHANGED
|
@@ -6259,6 +6259,12 @@ export interface CityStateZip {
|
|
|
6259
6259
|
* @interface Conversation
|
|
6260
6260
|
*/
|
|
6261
6261
|
export interface Conversation {
|
|
6262
|
+
/**
|
|
6263
|
+
*
|
|
6264
|
+
* @type {boolean}
|
|
6265
|
+
* @memberof Conversation
|
|
6266
|
+
*/
|
|
6267
|
+
closed?: boolean;
|
|
6262
6268
|
/**
|
|
6263
6269
|
*
|
|
6264
6270
|
* @type {string}
|
|
@@ -6649,6 +6655,12 @@ export interface ConversationStartResponse {
|
|
|
6649
6655
|
* @interface ConversationSummary
|
|
6650
6656
|
*/
|
|
6651
6657
|
export interface ConversationSummary {
|
|
6658
|
+
/**
|
|
6659
|
+
*
|
|
6660
|
+
* @type {boolean}
|
|
6661
|
+
* @memberof ConversationSummary
|
|
6662
|
+
*/
|
|
6663
|
+
closed?: boolean;
|
|
6652
6664
|
/**
|
|
6653
6665
|
*
|
|
6654
6666
|
* @type {string}
|
|
@@ -6719,22 +6731,22 @@ export interface ConversationWebsocketMessage {
|
|
|
6719
6731
|
conversation_uuid?: string;
|
|
6720
6732
|
/**
|
|
6721
6733
|
*
|
|
6722
|
-
* @type {
|
|
6734
|
+
* @type {ConversationSummary}
|
|
6723
6735
|
* @memberof ConversationWebsocketMessage
|
|
6724
6736
|
*/
|
|
6725
|
-
event_conversation_closed?:
|
|
6737
|
+
event_conversation_closed?: ConversationSummary;
|
|
6726
6738
|
/**
|
|
6727
6739
|
*
|
|
6728
|
-
* @type {
|
|
6740
|
+
* @type {ConversationSummary}
|
|
6729
6741
|
* @memberof ConversationWebsocketMessage
|
|
6730
6742
|
*/
|
|
6731
|
-
event_new_conversation?:
|
|
6743
|
+
event_new_conversation?: ConversationSummary;
|
|
6732
6744
|
/**
|
|
6733
6745
|
*
|
|
6734
|
-
* @type {
|
|
6746
|
+
* @type {ConversationSummary}
|
|
6735
6747
|
* @memberof ConversationWebsocketMessage
|
|
6736
6748
|
*/
|
|
6737
|
-
event_new_message?:
|
|
6749
|
+
event_new_message?: ConversationSummary;
|
|
6738
6750
|
/**
|
|
6739
6751
|
*
|
|
6740
6752
|
* @type {ConversationEventQueuePosition}
|
package/dist/api.d.ts
CHANGED
|
@@ -6112,6 +6112,12 @@ export interface CityStateZip {
|
|
|
6112
6112
|
* @interface Conversation
|
|
6113
6113
|
*/
|
|
6114
6114
|
export interface Conversation {
|
|
6115
|
+
/**
|
|
6116
|
+
*
|
|
6117
|
+
* @type {boolean}
|
|
6118
|
+
* @memberof Conversation
|
|
6119
|
+
*/
|
|
6120
|
+
closed?: boolean;
|
|
6115
6121
|
/**
|
|
6116
6122
|
*
|
|
6117
6123
|
* @type {string}
|
|
@@ -6490,6 +6496,12 @@ export interface ConversationStartResponse {
|
|
|
6490
6496
|
* @interface ConversationSummary
|
|
6491
6497
|
*/
|
|
6492
6498
|
export interface ConversationSummary {
|
|
6499
|
+
/**
|
|
6500
|
+
*
|
|
6501
|
+
* @type {boolean}
|
|
6502
|
+
* @memberof ConversationSummary
|
|
6503
|
+
*/
|
|
6504
|
+
closed?: boolean;
|
|
6493
6505
|
/**
|
|
6494
6506
|
*
|
|
6495
6507
|
* @type {string}
|
|
@@ -6559,22 +6571,22 @@ export interface ConversationWebsocketMessage {
|
|
|
6559
6571
|
conversation_uuid?: string;
|
|
6560
6572
|
/**
|
|
6561
6573
|
*
|
|
6562
|
-
* @type {
|
|
6574
|
+
* @type {ConversationSummary}
|
|
6563
6575
|
* @memberof ConversationWebsocketMessage
|
|
6564
6576
|
*/
|
|
6565
|
-
event_conversation_closed?:
|
|
6577
|
+
event_conversation_closed?: ConversationSummary;
|
|
6566
6578
|
/**
|
|
6567
6579
|
*
|
|
6568
|
-
* @type {
|
|
6580
|
+
* @type {ConversationSummary}
|
|
6569
6581
|
* @memberof ConversationWebsocketMessage
|
|
6570
6582
|
*/
|
|
6571
|
-
event_new_conversation?:
|
|
6583
|
+
event_new_conversation?: ConversationSummary;
|
|
6572
6584
|
/**
|
|
6573
6585
|
*
|
|
6574
|
-
* @type {
|
|
6586
|
+
* @type {ConversationSummary}
|
|
6575
6587
|
* @memberof ConversationWebsocketMessage
|
|
6576
6588
|
*/
|
|
6577
|
-
event_new_message?:
|
|
6589
|
+
event_new_message?: ConversationSummary;
|
|
6578
6590
|
/**
|
|
6579
6591
|
*
|
|
6580
6592
|
* @type {ConversationEventQueuePosition}
|