ultracart_rest_api_v2_typescript 3.10.81 → 3.10.82
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 +34 -2
- package/dist/api.d.ts +33 -2
- 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.82
|
|
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.82 --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.82 | 12/15/2022 | conversation search - added start date filtering |
|
|
57
58
|
| 3.10.81 | 12/15/2022 | conversation searching |
|
|
58
59
|
| 3.10.80 | 12/13/2022 | conversations - add email and sms_phone to participant object |
|
|
59
60
|
| 3.10.79 | 12/09/2022 | conversations - message translation |
|
package/api.ts
CHANGED
|
@@ -6598,10 +6598,10 @@ export interface ConversationAutocompleteResponse {
|
|
|
6598
6598
|
metadata?: ResponseMetadata;
|
|
6599
6599
|
/**
|
|
6600
6600
|
*
|
|
6601
|
-
* @type {Array<
|
|
6601
|
+
* @type {Array<ConversationAutocompleteValue>}
|
|
6602
6602
|
* @memberof ConversationAutocompleteResponse
|
|
6603
6603
|
*/
|
|
6604
|
-
results?: Array<
|
|
6604
|
+
results?: Array<ConversationAutocompleteValue>;
|
|
6605
6605
|
/**
|
|
6606
6606
|
* Indicates if API call was successful
|
|
6607
6607
|
* @type {boolean}
|
|
@@ -6622,6 +6622,26 @@ export interface ConversationAutocompleteResponse {
|
|
|
6622
6622
|
warning?: Warning;
|
|
6623
6623
|
}
|
|
6624
6624
|
|
|
6625
|
+
/**
|
|
6626
|
+
*
|
|
6627
|
+
* @export
|
|
6628
|
+
* @interface ConversationAutocompleteValue
|
|
6629
|
+
*/
|
|
6630
|
+
export interface ConversationAutocompleteValue {
|
|
6631
|
+
/**
|
|
6632
|
+
*
|
|
6633
|
+
* @type {string}
|
|
6634
|
+
* @memberof ConversationAutocompleteValue
|
|
6635
|
+
*/
|
|
6636
|
+
description?: string;
|
|
6637
|
+
/**
|
|
6638
|
+
*
|
|
6639
|
+
* @type {string}
|
|
6640
|
+
* @memberof ConversationAutocompleteValue
|
|
6641
|
+
*/
|
|
6642
|
+
value?: string;
|
|
6643
|
+
}
|
|
6644
|
+
|
|
6625
6645
|
/**
|
|
6626
6646
|
*
|
|
6627
6647
|
* @export
|
|
@@ -7638,6 +7658,18 @@ export interface ConversationResponse {
|
|
|
7638
7658
|
* @interface ConversationSearchRequest
|
|
7639
7659
|
*/
|
|
7640
7660
|
export interface ConversationSearchRequest {
|
|
7661
|
+
/**
|
|
7662
|
+
* End of the range
|
|
7663
|
+
* @type {string}
|
|
7664
|
+
* @memberof ConversationSearchRequest
|
|
7665
|
+
*/
|
|
7666
|
+
date_end?: string;
|
|
7667
|
+
/**
|
|
7668
|
+
* Start of the range
|
|
7669
|
+
* @type {string}
|
|
7670
|
+
* @memberof ConversationSearchRequest
|
|
7671
|
+
*/
|
|
7672
|
+
date_start?: string;
|
|
7641
7673
|
/**
|
|
7642
7674
|
*
|
|
7643
7675
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -6445,10 +6445,10 @@ export interface ConversationAutocompleteResponse {
|
|
|
6445
6445
|
metadata?: ResponseMetadata;
|
|
6446
6446
|
/**
|
|
6447
6447
|
*
|
|
6448
|
-
* @type {Array<
|
|
6448
|
+
* @type {Array<ConversationAutocompleteValue>}
|
|
6449
6449
|
* @memberof ConversationAutocompleteResponse
|
|
6450
6450
|
*/
|
|
6451
|
-
results?: Array<
|
|
6451
|
+
results?: Array<ConversationAutocompleteValue>;
|
|
6452
6452
|
/**
|
|
6453
6453
|
* Indicates if API call was successful
|
|
6454
6454
|
* @type {boolean}
|
|
@@ -6468,6 +6468,25 @@ export interface ConversationAutocompleteResponse {
|
|
|
6468
6468
|
*/
|
|
6469
6469
|
warning?: Warning;
|
|
6470
6470
|
}
|
|
6471
|
+
/**
|
|
6472
|
+
*
|
|
6473
|
+
* @export
|
|
6474
|
+
* @interface ConversationAutocompleteValue
|
|
6475
|
+
*/
|
|
6476
|
+
export interface ConversationAutocompleteValue {
|
|
6477
|
+
/**
|
|
6478
|
+
*
|
|
6479
|
+
* @type {string}
|
|
6480
|
+
* @memberof ConversationAutocompleteValue
|
|
6481
|
+
*/
|
|
6482
|
+
description?: string;
|
|
6483
|
+
/**
|
|
6484
|
+
*
|
|
6485
|
+
* @type {string}
|
|
6486
|
+
* @memberof ConversationAutocompleteValue
|
|
6487
|
+
*/
|
|
6488
|
+
value?: string;
|
|
6489
|
+
}
|
|
6471
6490
|
/**
|
|
6472
6491
|
*
|
|
6473
6492
|
* @export
|
|
@@ -7453,6 +7472,18 @@ export interface ConversationResponse {
|
|
|
7453
7472
|
* @interface ConversationSearchRequest
|
|
7454
7473
|
*/
|
|
7455
7474
|
export interface ConversationSearchRequest {
|
|
7475
|
+
/**
|
|
7476
|
+
* End of the range
|
|
7477
|
+
* @type {string}
|
|
7478
|
+
* @memberof ConversationSearchRequest
|
|
7479
|
+
*/
|
|
7480
|
+
date_end?: string;
|
|
7481
|
+
/**
|
|
7482
|
+
* Start of the range
|
|
7483
|
+
* @type {string}
|
|
7484
|
+
* @memberof ConversationSearchRequest
|
|
7485
|
+
*/
|
|
7486
|
+
date_start?: string;
|
|
7456
7487
|
/**
|
|
7457
7488
|
*
|
|
7458
7489
|
* @type {string}
|