ultracart_rest_api_v2_typescript 3.11.6 → 3.11.7
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 +24 -0
- package/dist/api.d.ts +24 -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.7
|
|
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.7 --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.7 | 04/21/2025 | conversation agent additional fields |
|
|
57
58
|
| 3.11.6 | 04/16/2025 | added channel partner order item properties |
|
|
58
59
|
| 3.11.5 | 03/28/2025 | added paypal fastlane constants for payments |
|
|
59
60
|
| 3.11.4 | 03/07/2025 | updated github readme.md |
|
package/api.ts
CHANGED
|
@@ -7229,6 +7229,30 @@ export interface ConversationAgentAuthResponse {
|
|
|
7229
7229
|
* @interface ConversationAgentProfile
|
|
7230
7230
|
*/
|
|
7231
7231
|
export interface ConversationAgentProfile {
|
|
7232
|
+
/**
|
|
7233
|
+
* AI powered chat bot
|
|
7234
|
+
* @type {boolean}
|
|
7235
|
+
* @memberof ConversationAgentProfile
|
|
7236
|
+
*/
|
|
7237
|
+
ai?: boolean;
|
|
7238
|
+
/**
|
|
7239
|
+
* Additional instructions for this AI when handle web chats
|
|
7240
|
+
* @type {string}
|
|
7241
|
+
* @memberof ConversationAgentProfile
|
|
7242
|
+
*/
|
|
7243
|
+
ai_chat_instructions?: string;
|
|
7244
|
+
/**
|
|
7245
|
+
* Persona of this AI agent
|
|
7246
|
+
* @type {string}
|
|
7247
|
+
* @memberof ConversationAgentProfile
|
|
7248
|
+
*/
|
|
7249
|
+
ai_persona?: string;
|
|
7250
|
+
/**
|
|
7251
|
+
* Additional instructions for this AI when handle SMS messages
|
|
7252
|
+
* @type {string}
|
|
7253
|
+
* @memberof ConversationAgentProfile
|
|
7254
|
+
*/
|
|
7255
|
+
ai_sms_instructions?: string;
|
|
7232
7256
|
/**
|
|
7233
7257
|
* The number of engagement chats that can be pushed on them at any given time.
|
|
7234
7258
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -7066,6 +7066,30 @@ export interface ConversationAgentAuthResponse {
|
|
|
7066
7066
|
* @interface ConversationAgentProfile
|
|
7067
7067
|
*/
|
|
7068
7068
|
export interface ConversationAgentProfile {
|
|
7069
|
+
/**
|
|
7070
|
+
* AI powered chat bot
|
|
7071
|
+
* @type {boolean}
|
|
7072
|
+
* @memberof ConversationAgentProfile
|
|
7073
|
+
*/
|
|
7074
|
+
ai?: boolean;
|
|
7075
|
+
/**
|
|
7076
|
+
* Additional instructions for this AI when handle web chats
|
|
7077
|
+
* @type {string}
|
|
7078
|
+
* @memberof ConversationAgentProfile
|
|
7079
|
+
*/
|
|
7080
|
+
ai_chat_instructions?: string;
|
|
7081
|
+
/**
|
|
7082
|
+
* Persona of this AI agent
|
|
7083
|
+
* @type {string}
|
|
7084
|
+
* @memberof ConversationAgentProfile
|
|
7085
|
+
*/
|
|
7086
|
+
ai_persona?: string;
|
|
7087
|
+
/**
|
|
7088
|
+
* Additional instructions for this AI when handle SMS messages
|
|
7089
|
+
* @type {string}
|
|
7090
|
+
* @memberof ConversationAgentProfile
|
|
7091
|
+
*/
|
|
7092
|
+
ai_sms_instructions?: string;
|
|
7069
7093
|
/**
|
|
7070
7094
|
* The number of engagement chats that can be pushed on them at any given time.
|
|
7071
7095
|
* @type {number}
|