ultracart_rest_api_v2_typescript 3.10.31 → 3.10.32
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 +32 -0
- package/dist/api.d.ts +31 -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.32
|
|
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.32 --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.32 | 08/03/2022 | more conversation events |
|
|
57
58
|
| 3.10.31 | 08/02/2022 | storefront communication sequence test method |
|
|
58
59
|
| 3.10.30 | 08/01/2022 | conversation event refinement |
|
|
59
60
|
| 3.10.29 | 07/29/2022 | conversation development |
|
package/api.ts
CHANGED
|
@@ -6464,6 +6464,32 @@ export namespace ConversationEventRRWeb {
|
|
|
6464
6464
|
}
|
|
6465
6465
|
}
|
|
6466
6466
|
|
|
6467
|
+
/**
|
|
6468
|
+
*
|
|
6469
|
+
* @export
|
|
6470
|
+
* @interface ConversationEventTyping
|
|
6471
|
+
*/
|
|
6472
|
+
export interface ConversationEventTyping {
|
|
6473
|
+
/**
|
|
6474
|
+
*
|
|
6475
|
+
* @type {string}
|
|
6476
|
+
* @memberof ConversationEventTyping
|
|
6477
|
+
*/
|
|
6478
|
+
author_conversation_participant_arn?: string;
|
|
6479
|
+
/**
|
|
6480
|
+
*
|
|
6481
|
+
* @type {string}
|
|
6482
|
+
* @memberof ConversationEventTyping
|
|
6483
|
+
*/
|
|
6484
|
+
author_conversation_participant_name?: string;
|
|
6485
|
+
/**
|
|
6486
|
+
*
|
|
6487
|
+
* @type {string}
|
|
6488
|
+
* @memberof ConversationEventTyping
|
|
6489
|
+
*/
|
|
6490
|
+
value?: string;
|
|
6491
|
+
}
|
|
6492
|
+
|
|
6467
6493
|
/**
|
|
6468
6494
|
*
|
|
6469
6495
|
* @export
|
|
@@ -7133,6 +7159,12 @@ export interface ConversationWebsocketMessage {
|
|
|
7133
7159
|
* @memberof ConversationWebsocketMessage
|
|
7134
7160
|
*/
|
|
7135
7161
|
event_type?: ConversationWebsocketMessage.EventTypeEnum;
|
|
7162
|
+
/**
|
|
7163
|
+
*
|
|
7164
|
+
* @type {ConversationEventTyping}
|
|
7165
|
+
* @memberof ConversationWebsocketMessage
|
|
7166
|
+
*/
|
|
7167
|
+
event_typing?: ConversationEventTyping;
|
|
7136
7168
|
/**
|
|
7137
7169
|
*
|
|
7138
7170
|
* @type {ConversationMessage}
|
package/dist/api.d.ts
CHANGED
|
@@ -6311,6 +6311,31 @@ export declare namespace ConversationEventRRWeb {
|
|
|
6311
6311
|
Events
|
|
6312
6312
|
}
|
|
6313
6313
|
}
|
|
6314
|
+
/**
|
|
6315
|
+
*
|
|
6316
|
+
* @export
|
|
6317
|
+
* @interface ConversationEventTyping
|
|
6318
|
+
*/
|
|
6319
|
+
export interface ConversationEventTyping {
|
|
6320
|
+
/**
|
|
6321
|
+
*
|
|
6322
|
+
* @type {string}
|
|
6323
|
+
* @memberof ConversationEventTyping
|
|
6324
|
+
*/
|
|
6325
|
+
author_conversation_participant_arn?: string;
|
|
6326
|
+
/**
|
|
6327
|
+
*
|
|
6328
|
+
* @type {string}
|
|
6329
|
+
* @memberof ConversationEventTyping
|
|
6330
|
+
*/
|
|
6331
|
+
author_conversation_participant_name?: string;
|
|
6332
|
+
/**
|
|
6333
|
+
*
|
|
6334
|
+
* @type {string}
|
|
6335
|
+
* @memberof ConversationEventTyping
|
|
6336
|
+
*/
|
|
6337
|
+
value?: string;
|
|
6338
|
+
}
|
|
6314
6339
|
/**
|
|
6315
6340
|
*
|
|
6316
6341
|
* @export
|
|
@@ -6964,6 +6989,12 @@ export interface ConversationWebsocketMessage {
|
|
|
6964
6989
|
* @memberof ConversationWebsocketMessage
|
|
6965
6990
|
*/
|
|
6966
6991
|
event_type?: ConversationWebsocketMessage.EventTypeEnum;
|
|
6992
|
+
/**
|
|
6993
|
+
*
|
|
6994
|
+
* @type {ConversationEventTyping}
|
|
6995
|
+
* @memberof ConversationWebsocketMessage
|
|
6996
|
+
*/
|
|
6997
|
+
event_typing?: ConversationEventTyping;
|
|
6967
6998
|
/**
|
|
6968
6999
|
*
|
|
6969
7000
|
* @type {ConversationMessage}
|