ultracart_api 3.11.50 → 3.11.51
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/ConversationPbxQueue.md +1 -0
- data/lib/ultracart_api/models/conversation_pbx_queue.rb +11 -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: 07b61202f1b0b15d31045394aeae801148a0075066bf26a7d369b5c163f85d1c
|
|
4
|
+
data.tar.gz: 3915d576be4db727c6195b8eeec587f8adbd147e5985d82775546a8e8ea4df2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8dfcb2b60c73654d7b60785a8eb74dc21d8fe7b17b0337e46cf1b98633c485dbcd38febdd29f830cafd4be3cb05aaf3c39fc93f10f9ed0501a2cd6e6823c9127
|
|
7
|
+
data.tar.gz: e2e7f744e6e3e36ba3e54627f430e6007c171088703aa4500afcb105233131afb1d029884e603e0c8b174646d409882dbdaba175ce1223ab2e6b1221e3af2e56
|
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.51
|
|
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.51.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.51.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.51'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1637,6 +1637,7 @@ Not every change is committed to every SDK.
|
|
|
1637
1637
|
|
|
1638
1638
|
| Version | Date | Comments |
|
|
1639
1639
|
| --: | :-: | --- |
|
|
1640
|
+
| 3.11.51 | 01/30/2026 | conversations queue setting for automatic AI coaching |
|
|
1640
1641
|
| 3.11.50 | 01/27/2026 | conversations - refinements to support hardware phones |
|
|
1641
1642
|
| 3.11.49 | 01/26/2026 | no changes - testing changes to build automation |
|
|
1642
1643
|
| 3.11.48 | 01/26/2026 | conversation - hardware phone methods and objects |
|
|
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
|
|
|
6
6
|
**ai_priority** | **String** | AI Agent Priority compared to human agents | [optional]
|
|
7
7
|
**ai_timeout_seconds** | **Integer** | AI timeout seconds | [optional]
|
|
8
8
|
**announce_queue_position** | **BOOLEAN** | If true, the customer is told their queue position upon entering the queue | [optional]
|
|
9
|
+
**automatic_coach_agent_uuid** | **String** | AI Agent UUID to automatically engage to provide coaching | [optional]
|
|
9
10
|
**conversation_pbx_queue_uuid** | **String** | Conversation Pbx Queue unique identifier | [optional]
|
|
10
11
|
**conversation_voicemail_mailbox_uuid** | **String** | The voicemail mailbox associated with this queue | [optional]
|
|
11
12
|
**hold_conversation_pbx_audio_uuid** | **String** | The audio to play while holding in a queue | [optional]
|
|
@@ -23,6 +23,9 @@ module UltracartClient
|
|
|
23
23
|
# If true, the customer is told their queue position upon entering the queue
|
|
24
24
|
attr_accessor :announce_queue_position
|
|
25
25
|
|
|
26
|
+
# AI Agent UUID to automatically engage to provide coaching
|
|
27
|
+
attr_accessor :automatic_coach_agent_uuid
|
|
28
|
+
|
|
26
29
|
# Conversation Pbx Queue unique identifier
|
|
27
30
|
attr_accessor :conversation_pbx_queue_uuid
|
|
28
31
|
|
|
@@ -110,6 +113,7 @@ module UltracartClient
|
|
|
110
113
|
:'ai_priority' => :'ai_priority',
|
|
111
114
|
:'ai_timeout_seconds' => :'ai_timeout_seconds',
|
|
112
115
|
:'announce_queue_position' => :'announce_queue_position',
|
|
116
|
+
:'automatic_coach_agent_uuid' => :'automatic_coach_agent_uuid',
|
|
113
117
|
:'conversation_pbx_queue_uuid' => :'conversation_pbx_queue_uuid',
|
|
114
118
|
:'conversation_voicemail_mailbox_uuid' => :'conversation_voicemail_mailbox_uuid',
|
|
115
119
|
:'hold_conversation_pbx_audio_uuid' => :'hold_conversation_pbx_audio_uuid',
|
|
@@ -139,6 +143,7 @@ module UltracartClient
|
|
|
139
143
|
:'ai_priority' => :'String',
|
|
140
144
|
:'ai_timeout_seconds' => :'Integer',
|
|
141
145
|
:'announce_queue_position' => :'BOOLEAN',
|
|
146
|
+
:'automatic_coach_agent_uuid' => :'String',
|
|
142
147
|
:'conversation_pbx_queue_uuid' => :'String',
|
|
143
148
|
:'conversation_voicemail_mailbox_uuid' => :'String',
|
|
144
149
|
:'hold_conversation_pbx_audio_uuid' => :'String',
|
|
@@ -182,6 +187,10 @@ module UltracartClient
|
|
|
182
187
|
self.announce_queue_position = attributes[:'announce_queue_position']
|
|
183
188
|
end
|
|
184
189
|
|
|
190
|
+
if attributes.has_key?(:'automatic_coach_agent_uuid')
|
|
191
|
+
self.automatic_coach_agent_uuid = attributes[:'automatic_coach_agent_uuid']
|
|
192
|
+
end
|
|
193
|
+
|
|
185
194
|
if attributes.has_key?(:'conversation_pbx_queue_uuid')
|
|
186
195
|
self.conversation_pbx_queue_uuid = attributes[:'conversation_pbx_queue_uuid']
|
|
187
196
|
end
|
|
@@ -446,6 +455,7 @@ module UltracartClient
|
|
|
446
455
|
ai_priority == o.ai_priority &&
|
|
447
456
|
ai_timeout_seconds == o.ai_timeout_seconds &&
|
|
448
457
|
announce_queue_position == o.announce_queue_position &&
|
|
458
|
+
automatic_coach_agent_uuid == o.automatic_coach_agent_uuid &&
|
|
449
459
|
conversation_pbx_queue_uuid == o.conversation_pbx_queue_uuid &&
|
|
450
460
|
conversation_voicemail_mailbox_uuid == o.conversation_voicemail_mailbox_uuid &&
|
|
451
461
|
hold_conversation_pbx_audio_uuid == o.hold_conversation_pbx_audio_uuid &&
|
|
@@ -477,7 +487,7 @@ module UltracartClient
|
|
|
477
487
|
# Calculates hash code according to all attributes.
|
|
478
488
|
# @return [Fixnum] Hash code
|
|
479
489
|
def hash
|
|
480
|
-
[ai_priority, ai_timeout_seconds, announce_queue_position, conversation_pbx_queue_uuid, conversation_voicemail_mailbox_uuid, hold_conversation_pbx_audio_uuid, max_hold_seconds, members, merchant_id, name, no_agent_available_play_audio_uuid, no_agent_available_say, no_agent_available_say_voice, play_audio_uuid, record_call, say, say_voice, twilio_taskrouter_workflow_sid, twilio_workspace_queue_sid, voicemail, wait_critical_seconds, wait_warning_seconds, wrap_up_seconds].hash
|
|
490
|
+
[ai_priority, ai_timeout_seconds, announce_queue_position, automatic_coach_agent_uuid, conversation_pbx_queue_uuid, conversation_voicemail_mailbox_uuid, hold_conversation_pbx_audio_uuid, max_hold_seconds, members, merchant_id, name, no_agent_available_play_audio_uuid, no_agent_available_say, no_agent_available_say_voice, play_audio_uuid, record_call, say, say_voice, twilio_taskrouter_workflow_sid, twilio_workspace_queue_sid, voicemail, wait_critical_seconds, wait_warning_seconds, wrap_up_seconds].hash
|
|
481
491
|
end
|
|
482
492
|
|
|
483
493
|
# 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.51
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|