ultracart_rest_api_v2_typescript 3.11.12 → 3.11.14
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 +4 -2
- package/api.ts +18 -0
- package/dist/api.d.ts +18 -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.14
|
|
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.14 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.11.14 | 07/10/2025 | automation test |
|
|
58
|
+
| 3.11.13 | 05/20/2025 | conversation - virtual agent flag and virtual agent cost |
|
|
57
59
|
| 3.11.12 | 05/19/2025 | conversations - AI agent capabilities method |
|
|
58
60
|
| 3.11.11 | 05/19/2025 | conversations - virtual AI budgets |
|
|
59
61
|
| 3.11.10 | 05/06/2025 | conversation - ConversationAgentProfile.user_id added for agent profiles call |
|
package/api.ts
CHANGED
|
@@ -7138,6 +7138,18 @@ export interface Conversation {
|
|
|
7138
7138
|
* @memberof Conversation
|
|
7139
7139
|
*/
|
|
7140
7140
|
unread_messages?: boolean;
|
|
7141
|
+
/**
|
|
7142
|
+
* True if a virtual agent answered the conversation
|
|
7143
|
+
* @type {boolean}
|
|
7144
|
+
* @memberof Conversation
|
|
7145
|
+
*/
|
|
7146
|
+
virtual_agent?: boolean;
|
|
7147
|
+
/**
|
|
7148
|
+
* The cost of this conversation performed by the virtual agent
|
|
7149
|
+
* @type {number}
|
|
7150
|
+
* @memberof Conversation
|
|
7151
|
+
*/
|
|
7152
|
+
virtual_agent_cost?: number;
|
|
7141
7153
|
/**
|
|
7142
7154
|
*
|
|
7143
7155
|
* @type {boolean}
|
|
@@ -29420,6 +29432,12 @@ export interface ItemRestriction {
|
|
|
29420
29432
|
* @memberof ItemRestriction
|
|
29421
29433
|
*/
|
|
29422
29434
|
exclude_from_free_promotion?: boolean;
|
|
29435
|
+
/**
|
|
29436
|
+
* Exclude from loyalty. Must be set to true or false to save. Null is ignored for backwards SDK compatibility
|
|
29437
|
+
* @type {boolean}
|
|
29438
|
+
* @memberof ItemRestriction
|
|
29439
|
+
*/
|
|
29440
|
+
exclude_from_loyalty?: boolean;
|
|
29423
29441
|
/**
|
|
29424
29442
|
* Items
|
|
29425
29443
|
* @type {Array<ItemRestrictionItem>}
|
package/dist/api.d.ts
CHANGED
|
@@ -6978,6 +6978,18 @@ export interface Conversation {
|
|
|
6978
6978
|
* @memberof Conversation
|
|
6979
6979
|
*/
|
|
6980
6980
|
unread_messages?: boolean;
|
|
6981
|
+
/**
|
|
6982
|
+
* True if a virtual agent answered the conversation
|
|
6983
|
+
* @type {boolean}
|
|
6984
|
+
* @memberof Conversation
|
|
6985
|
+
*/
|
|
6986
|
+
virtual_agent?: boolean;
|
|
6987
|
+
/**
|
|
6988
|
+
* The cost of this conversation performed by the virtual agent
|
|
6989
|
+
* @type {number}
|
|
6990
|
+
* @memberof Conversation
|
|
6991
|
+
*/
|
|
6992
|
+
virtual_agent_cost?: number;
|
|
6981
6993
|
/**
|
|
6982
6994
|
*
|
|
6983
6995
|
* @type {boolean}
|
|
@@ -28796,6 +28808,12 @@ export interface ItemRestriction {
|
|
|
28796
28808
|
* @memberof ItemRestriction
|
|
28797
28809
|
*/
|
|
28798
28810
|
exclude_from_free_promotion?: boolean;
|
|
28811
|
+
/**
|
|
28812
|
+
* Exclude from loyalty. Must be set to true or false to save. Null is ignored for backwards SDK compatibility
|
|
28813
|
+
* @type {boolean}
|
|
28814
|
+
* @memberof ItemRestriction
|
|
28815
|
+
*/
|
|
28816
|
+
exclude_from_loyalty?: boolean;
|
|
28799
28817
|
/**
|
|
28800
28818
|
* Items
|
|
28801
28819
|
* @type {Array<ItemRestrictionItem>}
|