ultracart_rest_api_v2_typescript 3.11.46 → 3.11.47
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.11.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.11.47
|
|
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.11.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.11.47 --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.11.47 | 01/26/2026 | conversation - agent auth object chat admin/user properties |
|
|
57
58
|
| 3.11.46 | 01/26/2026 | cart - expose utm array for use in abandon webhook only |
|
|
58
59
|
| 3.11.45 | 01/26/2026 | added multimedia file size to ItemContentMultimedia object |
|
|
59
60
|
| 3.11.44 | 01/26/2026 | conversations - ConversationDepartmentMember expose a flag for if the agent is AI |
|
package/api.ts
CHANGED
|
@@ -7175,6 +7175,18 @@ export namespace Conversation {
|
|
|
7175
7175
|
* @interface ConversationAgentAuth
|
|
7176
7176
|
*/
|
|
7177
7177
|
export interface ConversationAgentAuth {
|
|
7178
|
+
/**
|
|
7179
|
+
*
|
|
7180
|
+
* @type {boolean}
|
|
7181
|
+
* @memberof ConversationAgentAuth
|
|
7182
|
+
*/
|
|
7183
|
+
chat_admin?: boolean;
|
|
7184
|
+
/**
|
|
7185
|
+
*
|
|
7186
|
+
* @type {boolean}
|
|
7187
|
+
* @memberof ConversationAgentAuth
|
|
7188
|
+
*/
|
|
7189
|
+
chat_user?: boolean;
|
|
7178
7190
|
/**
|
|
7179
7191
|
*
|
|
7180
7192
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -7015,6 +7015,18 @@ export declare namespace Conversation {
|
|
|
7015
7015
|
* @interface ConversationAgentAuth
|
|
7016
7016
|
*/
|
|
7017
7017
|
export interface ConversationAgentAuth {
|
|
7018
|
+
/**
|
|
7019
|
+
*
|
|
7020
|
+
* @type {boolean}
|
|
7021
|
+
* @memberof ConversationAgentAuth
|
|
7022
|
+
*/
|
|
7023
|
+
chat_admin?: boolean;
|
|
7024
|
+
/**
|
|
7025
|
+
*
|
|
7026
|
+
* @type {boolean}
|
|
7027
|
+
* @memberof ConversationAgentAuth
|
|
7028
|
+
*/
|
|
7029
|
+
chat_user?: boolean;
|
|
7018
7030
|
/**
|
|
7019
7031
|
*
|
|
7020
7032
|
* @type {string}
|