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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b51df7edd5a60ea05218a6ea4258f0a978a6f4843c83b85cf77c4999931ec87
4
- data.tar.gz: 22f6cc8524585a2a45d27430475a731dc9e0feddc1a36a0a83c45767ec1bbb2b
3
+ metadata.gz: d3a671498c4d957ceaa72905007141f4dd49424113f09db3f995d3c7a49d394c
4
+ data.tar.gz: 512bca37ce8ad7a55040a0723b078927a0c758063668baa5cc9c6822479dbced
5
5
  SHA512:
6
- metadata.gz: f6d40b9f5c53ac62306a1ac582783969c734d9569264be8df239d0e1ab452e8183c219262f0ed34c5b318f97673815d11af725a36405590f4ed650843f3f7d13
7
- data.tar.gz: f1c3b468d5c10b1d95456458c57ba346d56c1a701b59254fbcad8a9eb78ec0e331a0bca88546bdab1f880178ddc8ccd13f4163ad78cdf1274a0ad995bdbf75c8
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.39
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.39.gem
27
+ gem install ./ultracart_api-3.11.40.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.39.gem` to install the development dependencies)
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.39'
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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.11.39'
14
+ VERSION = '3.11.40'
15
15
  end
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.39
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: 2025-12-31 00:00:00.000000000 Z
11
+ date: 2026-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus