ultracart_api 4.1.39 → 4.1.40
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 +4 -0
- data/lib/ultracart_api/models/conversation_agent_profile.rb +33 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d27bd5cb39758d9e805ab98dbadf2f01cb45959a79b4f5c13c0d96093693127f
|
|
4
|
+
data.tar.gz: e71c68b1aceaeaf3288e4d93c932c30343c86d9261c3f1449c1338b1e21f89be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4137267b8429515d63ea3a607902d89b480e3be6332cc647e7746c21f83f302f1860be4831cdda220e7ec5a38664d9355eae7c79db9d6ab38aeae6be083f979
|
|
7
|
+
data.tar.gz: 105466e4e377a8e14dfc30eeccfaff5636b88d24eb2679a73de03761a0bf1f728c01c6be9fac43031c9f184cc6c66e762d4f2323b8ba7ccc52c06d2085b4aa78
|
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.40
|
|
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.40'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1606,6 +1606,7 @@ Not every change is committed to every SDK.
|
|
|
1606
1606
|
|
|
1607
1607
|
| Version | Date | Comments |
|
|
1608
1608
|
| --: | :-: | --- |
|
|
1609
|
+
| 4.1.40 | 01/07/2026 | convseration - AI agent profile voice settings |
|
|
1609
1610
|
| 4.1.39 | 12/31/2025 | conversations AI - queue AI settings |
|
|
1610
1611
|
| 4.1.38 | 12/29/2025 | conversations - AI agent level capabilities |
|
|
1611
1612
|
| 4.1.37 | 12/29/2025 | conversations - pbx agent AI flag |
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
| **ai_persona** | **String** | Persona of this AI agent | [optional] |
|
|
11
11
|
| **ai_sms_instructions** | **String** | Additional instructions for this AI when handle SMS messages | [optional] |
|
|
12
12
|
| **ai_ticket_instructions** | **String** | Additional instructions for this AI when handling ticket draft replies | [optional] |
|
|
13
|
+
| **ai_voice_instructions** | **String** | Additional voice instructions for this AI when handling voice calls | [optional] |
|
|
14
|
+
| **ai_voice_personality** | **String** | Which AI voice personality to use when handling the call. | [optional] |
|
|
13
15
|
| **chat_limit** | **Integer** | The number of engagement chats that can be pushed on them at any given time. | [optional] |
|
|
14
16
|
| **default_language_iso_code** | **String** | The default language the agent is chatting in | [optional] |
|
|
15
17
|
| **default_status** | **String** | Default status when the agent loads conversations app. | [optional] |
|
|
@@ -33,6 +35,8 @@ instance = UltracartClient::ConversationAgentProfile.new(
|
|
|
33
35
|
ai_persona: null,
|
|
34
36
|
ai_sms_instructions: null,
|
|
35
37
|
ai_ticket_instructions: null,
|
|
38
|
+
ai_voice_instructions: null,
|
|
39
|
+
ai_voice_personality: null,
|
|
36
40
|
chat_limit: null,
|
|
37
41
|
default_language_iso_code: null,
|
|
38
42
|
default_status: null,
|
|
@@ -32,6 +32,12 @@ module UltracartClient
|
|
|
32
32
|
# Additional instructions for this AI when handling ticket draft replies
|
|
33
33
|
attr_accessor :ai_ticket_instructions
|
|
34
34
|
|
|
35
|
+
# Additional voice instructions for this AI when handling voice calls
|
|
36
|
+
attr_accessor :ai_voice_instructions
|
|
37
|
+
|
|
38
|
+
# Which AI voice personality to use when handling the call.
|
|
39
|
+
attr_accessor :ai_voice_personality
|
|
40
|
+
|
|
35
41
|
# The number of engagement chats that can be pushed on them at any given time.
|
|
36
42
|
attr_accessor :chat_limit
|
|
37
43
|
|
|
@@ -93,6 +99,8 @@ module UltracartClient
|
|
|
93
99
|
:'ai_persona' => :'ai_persona',
|
|
94
100
|
:'ai_sms_instructions' => :'ai_sms_instructions',
|
|
95
101
|
:'ai_ticket_instructions' => :'ai_ticket_instructions',
|
|
102
|
+
:'ai_voice_instructions' => :'ai_voice_instructions',
|
|
103
|
+
:'ai_voice_personality' => :'ai_voice_personality',
|
|
96
104
|
:'chat_limit' => :'chat_limit',
|
|
97
105
|
:'default_language_iso_code' => :'default_language_iso_code',
|
|
98
106
|
:'default_status' => :'default_status',
|
|
@@ -120,6 +128,8 @@ module UltracartClient
|
|
|
120
128
|
:'ai_persona' => :'String',
|
|
121
129
|
:'ai_sms_instructions' => :'String',
|
|
122
130
|
:'ai_ticket_instructions' => :'String',
|
|
131
|
+
:'ai_voice_instructions' => :'String',
|
|
132
|
+
:'ai_voice_personality' => :'String',
|
|
123
133
|
:'chat_limit' => :'Integer',
|
|
124
134
|
:'default_language_iso_code' => :'String',
|
|
125
135
|
:'default_status' => :'String',
|
|
@@ -178,6 +188,14 @@ module UltracartClient
|
|
|
178
188
|
self.ai_ticket_instructions = attributes[:'ai_ticket_instructions']
|
|
179
189
|
end
|
|
180
190
|
|
|
191
|
+
if attributes.key?(:'ai_voice_instructions')
|
|
192
|
+
self.ai_voice_instructions = attributes[:'ai_voice_instructions']
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
if attributes.key?(:'ai_voice_personality')
|
|
196
|
+
self.ai_voice_personality = attributes[:'ai_voice_personality']
|
|
197
|
+
end
|
|
198
|
+
|
|
181
199
|
if attributes.key?(:'chat_limit')
|
|
182
200
|
self.chat_limit = attributes[:'chat_limit']
|
|
183
201
|
end
|
|
@@ -233,11 +251,23 @@ module UltracartClient
|
|
|
233
251
|
# Check to see if the all the properties in the model are valid
|
|
234
252
|
# @return true if the model is valid
|
|
235
253
|
def valid?
|
|
254
|
+
ai_voice_personality_validator = EnumAttributeValidator.new('String', ["Ara", "Rex", "Sal", "Eve", "Leo"])
|
|
255
|
+
return false unless ai_voice_personality_validator.valid?(@ai_voice_personality)
|
|
236
256
|
default_status_validator = EnumAttributeValidator.new('String', ["available", "busy", "unavailable"])
|
|
237
257
|
return false unless default_status_validator.valid?(@default_status)
|
|
238
258
|
true
|
|
239
259
|
end
|
|
240
260
|
|
|
261
|
+
# Custom attribute writer method checking allowed values (enum).
|
|
262
|
+
# @param [Object] ai_voice_personality Object to be assigned
|
|
263
|
+
def ai_voice_personality=(ai_voice_personality)
|
|
264
|
+
validator = EnumAttributeValidator.new('String', ["Ara", "Rex", "Sal", "Eve", "Leo"])
|
|
265
|
+
unless validator.valid?(ai_voice_personality)
|
|
266
|
+
fail ArgumentError, "invalid value for \"ai_voice_personality\", must be one of #{validator.allowable_values}."
|
|
267
|
+
end
|
|
268
|
+
@ai_voice_personality = ai_voice_personality
|
|
269
|
+
end
|
|
270
|
+
|
|
241
271
|
# Custom attribute writer method checking allowed values (enum).
|
|
242
272
|
# @param [Object] default_status Object to be assigned
|
|
243
273
|
def default_status=(default_status)
|
|
@@ -259,6 +289,8 @@ module UltracartClient
|
|
|
259
289
|
ai_persona == o.ai_persona &&
|
|
260
290
|
ai_sms_instructions == o.ai_sms_instructions &&
|
|
261
291
|
ai_ticket_instructions == o.ai_ticket_instructions &&
|
|
292
|
+
ai_voice_instructions == o.ai_voice_instructions &&
|
|
293
|
+
ai_voice_personality == o.ai_voice_personality &&
|
|
262
294
|
chat_limit == o.chat_limit &&
|
|
263
295
|
default_language_iso_code == o.default_language_iso_code &&
|
|
264
296
|
default_status == o.default_status &&
|
|
@@ -280,7 +312,7 @@ module UltracartClient
|
|
|
280
312
|
# Calculates hash code according to all attributes.
|
|
281
313
|
# @return [Integer] Hash code
|
|
282
314
|
def 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
|
|
315
|
+
[ai, ai_capabilities, ai_chat_instructions, ai_persona, ai_sms_instructions, ai_ticket_instructions, ai_voice_instructions, ai_voice_personality, 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
|
|
284
316
|
end
|
|
285
317
|
|
|
286
318
|
# Builds the object from hash
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ultracart_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.40
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|