ultracart_api 4.1.37 → 4.1.38
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.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/docs/ConversationAgentProfile.md +2 -0
- data/lib/ultracart_api/models/conversation_agent_profile.rb +10 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a39ebfd58acb768a74264263c7e00232ca9f78eb73a2bc2ad8cc65c053fe680
|
|
4
|
+
data.tar.gz: 594ba501ac80013a5f83447d340940dcc07ba4c95e45db8c19e87d825a4d230e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83f465bc5aaa1c50d99dc7205cc05be9885f19da4fcd27709e2e367e914a8f737e7bb62808290c8bd21081e6a7e0d3255df3859ccf79aaee8d56754fa66d6b12
|
|
7
|
+
data.tar.gz: 3186e35b19e3be57a441cb03970f1831166a44f62d7bc6d4dd91e4d9b6e3d32426600c6a6203959f9c3ed67f13dbf8edf255d6fdd27f715d94e0809789c8f22c
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 4.1.
|
|
10
|
+
- Package version: 4.1.38
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
- For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
|
|
13
13
|
|
|
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
|
|
|
16
16
|
gemfile:
|
|
17
17
|
|
|
18
18
|
```shell
|
|
19
|
-
gem 'ultracart_api', '4.1.
|
|
19
|
+
gem 'ultracart_api', '4.1.38'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1603,6 +1603,7 @@ Not every change is committed to every SDK.
|
|
|
1603
1603
|
|
|
1604
1604
|
| Version | Date | Comments |
|
|
1605
1605
|
| --: | :-: | --- |
|
|
1606
|
+
| 4.1.38 | 12/29/2025 | conversations - AI agent level capabilities |
|
|
1606
1607
|
| 4.1.37 | 12/29/2025 | conversations - pbx agent AI flag |
|
|
1607
1608
|
| 4.1.36 | 12/22/2025 | conversation - agent auth worker token v2 |
|
|
1608
1609
|
| 4.1.35 | 12/02/2025 | caching option added to getCustomers, created new method searchCustomers |
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **ai** | **Boolean** | AI powered chat bot | [optional] |
|
|
8
|
+
| **ai_capabilities** | [**ConversationVirtualAgentCapabilities**](ConversationVirtualAgentCapabilities.md) | | [optional] |
|
|
8
9
|
| **ai_chat_instructions** | **String** | Additional instructions for this AI when handle web chats | [optional] |
|
|
9
10
|
| **ai_persona** | **String** | Persona of this AI agent | [optional] |
|
|
10
11
|
| **ai_sms_instructions** | **String** | Additional instructions for this AI when handle SMS messages | [optional] |
|
|
@@ -27,6 +28,7 @@ require 'ultracart_api'
|
|
|
27
28
|
|
|
28
29
|
instance = UltracartClient::ConversationAgentProfile.new(
|
|
29
30
|
ai: null,
|
|
31
|
+
ai_capabilities: null,
|
|
30
32
|
ai_chat_instructions: null,
|
|
31
33
|
ai_persona: null,
|
|
32
34
|
ai_sms_instructions: null,
|
|
@@ -18,6 +18,8 @@ module UltracartClient
|
|
|
18
18
|
# AI powered chat bot
|
|
19
19
|
attr_accessor :ai
|
|
20
20
|
|
|
21
|
+
attr_accessor :ai_capabilities
|
|
22
|
+
|
|
21
23
|
# Additional instructions for this AI when handle web chats
|
|
22
24
|
attr_accessor :ai_chat_instructions
|
|
23
25
|
|
|
@@ -86,6 +88,7 @@ module UltracartClient
|
|
|
86
88
|
def self.attribute_map
|
|
87
89
|
{
|
|
88
90
|
:'ai' => :'ai',
|
|
91
|
+
:'ai_capabilities' => :'ai_capabilities',
|
|
89
92
|
:'ai_chat_instructions' => :'ai_chat_instructions',
|
|
90
93
|
:'ai_persona' => :'ai_persona',
|
|
91
94
|
:'ai_sms_instructions' => :'ai_sms_instructions',
|
|
@@ -112,6 +115,7 @@ module UltracartClient
|
|
|
112
115
|
def self.openapi_types
|
|
113
116
|
{
|
|
114
117
|
:'ai' => :'Boolean',
|
|
118
|
+
:'ai_capabilities' => :'ConversationVirtualAgentCapabilities',
|
|
115
119
|
:'ai_chat_instructions' => :'String',
|
|
116
120
|
:'ai_persona' => :'String',
|
|
117
121
|
:'ai_sms_instructions' => :'String',
|
|
@@ -154,6 +158,10 @@ module UltracartClient
|
|
|
154
158
|
self.ai = attributes[:'ai']
|
|
155
159
|
end
|
|
156
160
|
|
|
161
|
+
if attributes.key?(:'ai_capabilities')
|
|
162
|
+
self.ai_capabilities = attributes[:'ai_capabilities']
|
|
163
|
+
end
|
|
164
|
+
|
|
157
165
|
if attributes.key?(:'ai_chat_instructions')
|
|
158
166
|
self.ai_chat_instructions = attributes[:'ai_chat_instructions']
|
|
159
167
|
end
|
|
@@ -246,6 +254,7 @@ module UltracartClient
|
|
|
246
254
|
return true if self.equal?(o)
|
|
247
255
|
self.class == o.class &&
|
|
248
256
|
ai == o.ai &&
|
|
257
|
+
ai_capabilities == o.ai_capabilities &&
|
|
249
258
|
ai_chat_instructions == o.ai_chat_instructions &&
|
|
250
259
|
ai_persona == o.ai_persona &&
|
|
251
260
|
ai_sms_instructions == o.ai_sms_instructions &&
|
|
@@ -271,7 +280,7 @@ module UltracartClient
|
|
|
271
280
|
# Calculates hash code according to all attributes.
|
|
272
281
|
# @return [Integer] Hash code
|
|
273
282
|
def hash
|
|
274
|
-
[ai, ai_chat_instructions, ai_persona, ai_sms_instructions, ai_ticket_instructions, chat_limit, default_language_iso_code, default_status, display_name, name, profile_image_upload_key, profile_image_url, user_id, zohodesk_classifications, zohodesk_departments].hash
|
|
283
|
+
[ai, ai_capabilities, ai_chat_instructions, ai_persona, ai_sms_instructions, ai_ticket_instructions, chat_limit, default_language_iso_code, default_status, display_name, name, profile_image_upload_key, profile_image_url, user_id, zohodesk_classifications, zohodesk_departments].hash
|
|
275
284
|
end
|
|
276
285
|
|
|
277
286
|
# Builds the object from hash
|