ultracart_api 3.11.39 → 3.11.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 +5 -4
- data/docs/ConversationAgentProfile.md +2 -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: d3a671498c4d957ceaa72905007141f4dd49424113f09db3f995d3c7a49d394c
|
|
4
|
+
data.tar.gz: 512bca37ce8ad7a55040a0723b078927a0c758063668baa5cc9c6822479dbced
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95f5214c48bdb5b4661e2b85977227b1aff8240bc009b33d129e9c2e5f5ab840da187ec56a3f479f30cca002645d3a60358564d132c3bf44675cc581651b9cb1
|
|
7
|
+
data.tar.gz: 7a56df58c94bc767dcfce7f4ec0c29cb4c2081e28a946655daea86e9b22fd9894cefbaf47b7b857d1c50c59e602e90ffd4871c60ff98ddf7c70bc91973875562
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 3.11.
|
|
10
|
+
- Package version: 3.11.40
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
|
|
13
13
|
|
|
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./ultracart_api-3.11.
|
|
27
|
+
gem install ./ultracart_api-3.11.40.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.11.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.11.40.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'ultracart_api', '~> 3.11.
|
|
35
|
+
gem 'ultracart_api', '~> 3.11.40'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1608,6 +1608,7 @@ Not every change is committed to every SDK.
|
|
|
1608
1608
|
|
|
1609
1609
|
| Version | Date | Comments |
|
|
1610
1610
|
| --: | :-: | --- |
|
|
1611
|
+
| 3.11.40 | 01/07/2026 | convseration - AI agent profile voice settings |
|
|
1611
1612
|
| 3.11.39 | 12/31/2025 | conversations AI - queue AI settings |
|
|
1612
1613
|
| 3.11.38 | 12/29/2025 | conversations - AI agent level capabilities |
|
|
1613
1614
|
| 3.11.37 | 12/29/2025 | conversations - pbx agent AI flag |
|
|
@@ -9,6 +9,8 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**ai_persona** | **String** | Persona of this AI agent | [optional]
|
|
10
10
|
**ai_sms_instructions** | **String** | Additional instructions for this AI when handle SMS messages | [optional]
|
|
11
11
|
**ai_ticket_instructions** | **String** | Additional instructions for this AI when handling ticket draft replies | [optional]
|
|
12
|
+
**ai_voice_instructions** | **String** | Additional voice instructions for this AI when handling voice calls | [optional]
|
|
13
|
+
**ai_voice_personality** | **String** | Which AI voice personality to use when handling the call. | [optional]
|
|
12
14
|
**chat_limit** | **Integer** | The number of engagement chats that can be pushed on them at any given time. | [optional]
|
|
13
15
|
**default_language_iso_code** | **String** | The default language the agent is chatting in | [optional]
|
|
14
16
|
**default_status** | **String** | Default status when the agent loads conversations app. | [optional]
|
|
@@ -31,6 +31,12 @@ module UltracartClient
|
|
|
31
31
|
# Additional instructions for this AI when handling ticket draft replies
|
|
32
32
|
attr_accessor :ai_ticket_instructions
|
|
33
33
|
|
|
34
|
+
# Additional voice instructions for this AI when handling voice calls
|
|
35
|
+
attr_accessor :ai_voice_instructions
|
|
36
|
+
|
|
37
|
+
# Which AI voice personality to use when handling the call.
|
|
38
|
+
attr_accessor :ai_voice_personality
|
|
39
|
+
|
|
34
40
|
# The number of engagement chats that can be pushed on them at any given time.
|
|
35
41
|
attr_accessor :chat_limit
|
|
36
42
|
|
|
@@ -92,6 +98,8 @@ module UltracartClient
|
|
|
92
98
|
:'ai_persona' => :'ai_persona',
|
|
93
99
|
:'ai_sms_instructions' => :'ai_sms_instructions',
|
|
94
100
|
:'ai_ticket_instructions' => :'ai_ticket_instructions',
|
|
101
|
+
:'ai_voice_instructions' => :'ai_voice_instructions',
|
|
102
|
+
:'ai_voice_personality' => :'ai_voice_personality',
|
|
95
103
|
:'chat_limit' => :'chat_limit',
|
|
96
104
|
:'default_language_iso_code' => :'default_language_iso_code',
|
|
97
105
|
:'default_status' => :'default_status',
|
|
@@ -114,6 +122,8 @@ module UltracartClient
|
|
|
114
122
|
:'ai_persona' => :'String',
|
|
115
123
|
:'ai_sms_instructions' => :'String',
|
|
116
124
|
:'ai_ticket_instructions' => :'String',
|
|
125
|
+
:'ai_voice_instructions' => :'String',
|
|
126
|
+
:'ai_voice_personality' => :'String',
|
|
117
127
|
:'chat_limit' => :'Integer',
|
|
118
128
|
:'default_language_iso_code' => :'String',
|
|
119
129
|
:'default_status' => :'String',
|
|
@@ -159,6 +169,14 @@ module UltracartClient
|
|
|
159
169
|
self.ai_ticket_instructions = attributes[:'ai_ticket_instructions']
|
|
160
170
|
end
|
|
161
171
|
|
|
172
|
+
if attributes.has_key?(:'ai_voice_instructions')
|
|
173
|
+
self.ai_voice_instructions = attributes[:'ai_voice_instructions']
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
if attributes.has_key?(:'ai_voice_personality')
|
|
177
|
+
self.ai_voice_personality = attributes[:'ai_voice_personality']
|
|
178
|
+
end
|
|
179
|
+
|
|
162
180
|
if attributes.has_key?(:'chat_limit')
|
|
163
181
|
self.chat_limit = attributes[:'chat_limit']
|
|
164
182
|
end
|
|
@@ -214,11 +232,23 @@ module UltracartClient
|
|
|
214
232
|
# Check to see if the all the properties in the model are valid
|
|
215
233
|
# @return true if the model is valid
|
|
216
234
|
def valid?
|
|
235
|
+
ai_voice_personality_validator = EnumAttributeValidator.new('String', ['Ara', 'Rex', 'Sal', 'Eve', 'Leo'])
|
|
236
|
+
return false unless ai_voice_personality_validator.valid?(@ai_voice_personality)
|
|
217
237
|
default_status_validator = EnumAttributeValidator.new('String', ['available', 'busy', 'unavailable'])
|
|
218
238
|
return false unless default_status_validator.valid?(@default_status)
|
|
219
239
|
true
|
|
220
240
|
end
|
|
221
241
|
|
|
242
|
+
# Custom attribute writer method checking allowed values (enum).
|
|
243
|
+
# @param [Object] ai_voice_personality Object to be assigned
|
|
244
|
+
def ai_voice_personality=(ai_voice_personality)
|
|
245
|
+
validator = EnumAttributeValidator.new('String', ['Ara', 'Rex', 'Sal', 'Eve', 'Leo'])
|
|
246
|
+
unless validator.valid?(ai_voice_personality)
|
|
247
|
+
fail ArgumentError, 'invalid value for "ai_voice_personality", must be one of #{validator.allowable_values}.'
|
|
248
|
+
end
|
|
249
|
+
@ai_voice_personality = ai_voice_personality
|
|
250
|
+
end
|
|
251
|
+
|
|
222
252
|
# Custom attribute writer method checking allowed values (enum).
|
|
223
253
|
# @param [Object] default_status Object to be assigned
|
|
224
254
|
def default_status=(default_status)
|
|
@@ -240,6 +270,8 @@ module UltracartClient
|
|
|
240
270
|
ai_persona == o.ai_persona &&
|
|
241
271
|
ai_sms_instructions == o.ai_sms_instructions &&
|
|
242
272
|
ai_ticket_instructions == o.ai_ticket_instructions &&
|
|
273
|
+
ai_voice_instructions == o.ai_voice_instructions &&
|
|
274
|
+
ai_voice_personality == o.ai_voice_personality &&
|
|
243
275
|
chat_limit == o.chat_limit &&
|
|
244
276
|
default_language_iso_code == o.default_language_iso_code &&
|
|
245
277
|
default_status == o.default_status &&
|
|
@@ -261,7 +293,7 @@ module UltracartClient
|
|
|
261
293
|
# Calculates hash code according to all attributes.
|
|
262
294
|
# @return [Fixnum] Hash code
|
|
263
295
|
def hash
|
|
264
|
-
[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
|
|
296
|
+
[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
|
|
265
297
|
end
|
|
266
298
|
|
|
267
299
|
# 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: 3.11.
|
|
4
|
+
version: 3.11.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
|