ultracart_rest_api_v2_typescript 3.10.34 → 3.10.35
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 +12 -0
- package/dist/api.d.ts +12 -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.35
|
|
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.35 --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.35 | 08/05/2022 | conversation adjustments for ES integration |
|
|
57
58
|
| 3.10.34 | 08/05/2022 | conversations query by medium and stats fixes |
|
|
58
59
|
| 3.10.33 | 08/03/2022 | conversation summary participants |
|
|
59
60
|
| 3.10.32 | 08/03/2022 | more conversation events |
|
package/api.ts
CHANGED
|
@@ -6589,12 +6589,24 @@ export interface ConversationMessage {
|
|
|
6589
6589
|
* @memberof ConversationMessage
|
|
6590
6590
|
*/
|
|
6591
6591
|
client_message_id?: string;
|
|
6592
|
+
/**
|
|
6593
|
+
*
|
|
6594
|
+
* @type {string}
|
|
6595
|
+
* @memberof ConversationMessage
|
|
6596
|
+
*/
|
|
6597
|
+
conversation_message_uuid?: string;
|
|
6592
6598
|
/**
|
|
6593
6599
|
*
|
|
6594
6600
|
* @type {Array<string>}
|
|
6595
6601
|
* @memberof ConversationMessage
|
|
6596
6602
|
*/
|
|
6597
6603
|
media_urls?: Array<string>;
|
|
6604
|
+
/**
|
|
6605
|
+
*
|
|
6606
|
+
* @type {string}
|
|
6607
|
+
* @memberof ConversationMessage
|
|
6608
|
+
*/
|
|
6609
|
+
merchant_id?: string;
|
|
6598
6610
|
/**
|
|
6599
6611
|
* Message date/time
|
|
6600
6612
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -6434,12 +6434,24 @@ export interface ConversationMessage {
|
|
|
6434
6434
|
* @memberof ConversationMessage
|
|
6435
6435
|
*/
|
|
6436
6436
|
client_message_id?: string;
|
|
6437
|
+
/**
|
|
6438
|
+
*
|
|
6439
|
+
* @type {string}
|
|
6440
|
+
* @memberof ConversationMessage
|
|
6441
|
+
*/
|
|
6442
|
+
conversation_message_uuid?: string;
|
|
6437
6443
|
/**
|
|
6438
6444
|
*
|
|
6439
6445
|
* @type {Array<string>}
|
|
6440
6446
|
* @memberof ConversationMessage
|
|
6441
6447
|
*/
|
|
6442
6448
|
media_urls?: Array<string>;
|
|
6449
|
+
/**
|
|
6450
|
+
*
|
|
6451
|
+
* @type {string}
|
|
6452
|
+
* @memberof ConversationMessage
|
|
6453
|
+
*/
|
|
6454
|
+
merchant_id?: string;
|
|
6443
6455
|
/**
|
|
6444
6456
|
* Message date/time
|
|
6445
6457
|
* @type {string}
|