ultracart_rest_api_v2_typescript 3.10.21 → 3.10.22
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.22
|
|
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.22 --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.22 | 07/20/2022 | conversation participant name added |
|
|
57
58
|
| 3.10.21 | 07/18/2022 | twilio dev |
|
|
58
59
|
| 3.10.20 | 07/14/2022 | Add channel storefront_oid to the customer activity record |
|
|
59
60
|
| 3.10.19 | 07/11/2022 | Customer API - mergeCustomer method |
|
package/api.ts
CHANGED
|
@@ -6283,6 +6283,12 @@ export interface ConversationAgentAuthResponse {
|
|
|
6283
6283
|
* @memberof ConversationAgentAuthResponse
|
|
6284
6284
|
*/
|
|
6285
6285
|
conversation_participant_arn?: string;
|
|
6286
|
+
/**
|
|
6287
|
+
*
|
|
6288
|
+
* @type {string}
|
|
6289
|
+
* @memberof ConversationAgentAuthResponse
|
|
6290
|
+
*/
|
|
6291
|
+
conversation_participant_name?: string;
|
|
6286
6292
|
/**
|
|
6287
6293
|
*
|
|
6288
6294
|
* @type {string}
|
|
@@ -6345,6 +6351,32 @@ export interface ConversationMessage {
|
|
|
6345
6351
|
* @memberof ConversationMessage
|
|
6346
6352
|
*/
|
|
6347
6353
|
message_dts?: string;
|
|
6354
|
+
/**
|
|
6355
|
+
*
|
|
6356
|
+
* @type {Array<ConversationMessageTransportStatus>}
|
|
6357
|
+
* @memberof ConversationMessage
|
|
6358
|
+
*/
|
|
6359
|
+
transport_statuses?: Array<ConversationMessageTransportStatus>;
|
|
6360
|
+
}
|
|
6361
|
+
|
|
6362
|
+
/**
|
|
6363
|
+
*
|
|
6364
|
+
* @export
|
|
6365
|
+
* @interface ConversationMessageTransportStatus
|
|
6366
|
+
*/
|
|
6367
|
+
export interface ConversationMessageTransportStatus {
|
|
6368
|
+
/**
|
|
6369
|
+
*
|
|
6370
|
+
* @type {string}
|
|
6371
|
+
* @memberof ConversationMessageTransportStatus
|
|
6372
|
+
*/
|
|
6373
|
+
conversation_participant_arn?: string;
|
|
6374
|
+
/**
|
|
6375
|
+
*
|
|
6376
|
+
* @type {string}
|
|
6377
|
+
* @memberof ConversationMessageTransportStatus
|
|
6378
|
+
*/
|
|
6379
|
+
status?: string;
|
|
6348
6380
|
}
|
|
6349
6381
|
|
|
6350
6382
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -6136,6 +6136,12 @@ export interface ConversationAgentAuthResponse {
|
|
|
6136
6136
|
* @memberof ConversationAgentAuthResponse
|
|
6137
6137
|
*/
|
|
6138
6138
|
conversation_participant_arn?: string;
|
|
6139
|
+
/**
|
|
6140
|
+
*
|
|
6141
|
+
* @type {string}
|
|
6142
|
+
* @memberof ConversationAgentAuthResponse
|
|
6143
|
+
*/
|
|
6144
|
+
conversation_participant_name?: string;
|
|
6139
6145
|
/**
|
|
6140
6146
|
*
|
|
6141
6147
|
* @type {string}
|
|
@@ -6197,6 +6203,31 @@ export interface ConversationMessage {
|
|
|
6197
6203
|
* @memberof ConversationMessage
|
|
6198
6204
|
*/
|
|
6199
6205
|
message_dts?: string;
|
|
6206
|
+
/**
|
|
6207
|
+
*
|
|
6208
|
+
* @type {Array<ConversationMessageTransportStatus>}
|
|
6209
|
+
* @memberof ConversationMessage
|
|
6210
|
+
*/
|
|
6211
|
+
transport_statuses?: Array<ConversationMessageTransportStatus>;
|
|
6212
|
+
}
|
|
6213
|
+
/**
|
|
6214
|
+
*
|
|
6215
|
+
* @export
|
|
6216
|
+
* @interface ConversationMessageTransportStatus
|
|
6217
|
+
*/
|
|
6218
|
+
export interface ConversationMessageTransportStatus {
|
|
6219
|
+
/**
|
|
6220
|
+
*
|
|
6221
|
+
* @type {string}
|
|
6222
|
+
* @memberof ConversationMessageTransportStatus
|
|
6223
|
+
*/
|
|
6224
|
+
conversation_participant_arn?: string;
|
|
6225
|
+
/**
|
|
6226
|
+
*
|
|
6227
|
+
* @type {string}
|
|
6228
|
+
* @memberof ConversationMessageTransportStatus
|
|
6229
|
+
*/
|
|
6230
|
+
status?: string;
|
|
6200
6231
|
}
|
|
6201
6232
|
/**
|
|
6202
6233
|
*
|