ultracart_api 4.1.50 → 4.1.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 +3 -2
- data/docs/ConversationPbxQueue.md +2 -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: 68fd51be8446e7a1d91444c1cef061ab836933aa4f0ddc64d5ed46d3129a9d52
|
|
4
|
+
data.tar.gz: 92916d0ed00e5d6455810e5b48435e763c9c0d4c2abb02e54017652028a2d9ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06b562960fa069ff003567507683ffe2668e795e1ffe7c5bb820ea1083dcc8dd3c2a8fdb51e76fa4e573413a1ce5d3b2e8c2b676cf6eb3dfe80dff196c673e48
|
|
7
|
+
data.tar.gz: 4b559a715885b6568716eab7a835f7b09e1bf75da719cd31a908a421fb6d2172f7a30c0d8934b03ac75ad38741a8abd681522d6dab20831b534fdd59e86cca19
|
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.51
|
|
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.51'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1635,6 +1635,7 @@ Not every change is committed to every SDK.
|
|
|
1635
1635
|
|
|
1636
1636
|
| Version | Date | Comments |
|
|
1637
1637
|
| --: | :-: | --- |
|
|
1638
|
+
| 4.1.51 | 01/30/2026 | conversations queue setting for automatic AI coaching |
|
|
1638
1639
|
| 4.1.50 | 01/27/2026 | conversations - refinements to support hardware phones |
|
|
1639
1640
|
| 4.1.49 | 01/26/2026 | no changes - testing changes to build automation |
|
|
1640
1641
|
| 4.1.48 | 01/26/2026 | conversation - hardware phone methods and objects |
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
| **ai_priority** | **String** | AI Agent Priority compared to human agents | [optional] |
|
|
8
8
|
| **ai_timeout_seconds** | **Integer** | AI timeout seconds | [optional] |
|
|
9
9
|
| **announce_queue_position** | **Boolean** | If true, the customer is told their queue position upon entering the queue | [optional] |
|
|
10
|
+
| **automatic_coach_agent_uuid** | **String** | AI Agent UUID to automatically engage to provide coaching | [optional] |
|
|
10
11
|
| **conversation_pbx_queue_uuid** | **String** | Conversation Pbx Queue unique identifier | [optional] |
|
|
11
12
|
| **conversation_voicemail_mailbox_uuid** | **String** | The voicemail mailbox associated with this queue | [optional] |
|
|
12
13
|
| **hold_conversation_pbx_audio_uuid** | **String** | The audio to play while holding in a queue | [optional] |
|
|
@@ -37,6 +38,7 @@ instance = UltracartClient::ConversationPbxQueue.new(
|
|
|
37
38
|
ai_priority: null,
|
|
38
39
|
ai_timeout_seconds: null,
|
|
39
40
|
announce_queue_position: null,
|
|
41
|
+
automatic_coach_agent_uuid: null,
|
|
40
42
|
conversation_pbx_queue_uuid: null,
|
|
41
43
|
conversation_voicemail_mailbox_uuid: null,
|
|
42
44
|
hold_conversation_pbx_audio_uuid: null,
|
|
@@ -24,6 +24,9 @@ module UltracartClient
|
|
|
24
24
|
# If true, the customer is told their queue position upon entering the queue
|
|
25
25
|
attr_accessor :announce_queue_position
|
|
26
26
|
|
|
27
|
+
# AI Agent UUID to automatically engage to provide coaching
|
|
28
|
+
attr_accessor :automatic_coach_agent_uuid
|
|
29
|
+
|
|
27
30
|
# Conversation Pbx Queue unique identifier
|
|
28
31
|
attr_accessor :conversation_pbx_queue_uuid
|
|
29
32
|
|
|
@@ -111,6 +114,7 @@ module UltracartClient
|
|
|
111
114
|
:'ai_priority' => :'ai_priority',
|
|
112
115
|
:'ai_timeout_seconds' => :'ai_timeout_seconds',
|
|
113
116
|
:'announce_queue_position' => :'announce_queue_position',
|
|
117
|
+
:'automatic_coach_agent_uuid' => :'automatic_coach_agent_uuid',
|
|
114
118
|
:'conversation_pbx_queue_uuid' => :'conversation_pbx_queue_uuid',
|
|
115
119
|
:'conversation_voicemail_mailbox_uuid' => :'conversation_voicemail_mailbox_uuid',
|
|
116
120
|
:'hold_conversation_pbx_audio_uuid' => :'hold_conversation_pbx_audio_uuid',
|
|
@@ -145,6 +149,7 @@ module UltracartClient
|
|
|
145
149
|
:'ai_priority' => :'String',
|
|
146
150
|
:'ai_timeout_seconds' => :'Integer',
|
|
147
151
|
:'announce_queue_position' => :'Boolean',
|
|
152
|
+
:'automatic_coach_agent_uuid' => :'String',
|
|
148
153
|
:'conversation_pbx_queue_uuid' => :'String',
|
|
149
154
|
:'conversation_voicemail_mailbox_uuid' => :'String',
|
|
150
155
|
:'hold_conversation_pbx_audio_uuid' => :'String',
|
|
@@ -201,6 +206,10 @@ module UltracartClient
|
|
|
201
206
|
self.announce_queue_position = attributes[:'announce_queue_position']
|
|
202
207
|
end
|
|
203
208
|
|
|
209
|
+
if attributes.key?(:'automatic_coach_agent_uuid')
|
|
210
|
+
self.automatic_coach_agent_uuid = attributes[:'automatic_coach_agent_uuid']
|
|
211
|
+
end
|
|
212
|
+
|
|
204
213
|
if attributes.key?(:'conversation_pbx_queue_uuid')
|
|
205
214
|
self.conversation_pbx_queue_uuid = attributes[:'conversation_pbx_queue_uuid']
|
|
206
215
|
end
|
|
@@ -465,6 +474,7 @@ module UltracartClient
|
|
|
465
474
|
ai_priority == o.ai_priority &&
|
|
466
475
|
ai_timeout_seconds == o.ai_timeout_seconds &&
|
|
467
476
|
announce_queue_position == o.announce_queue_position &&
|
|
477
|
+
automatic_coach_agent_uuid == o.automatic_coach_agent_uuid &&
|
|
468
478
|
conversation_pbx_queue_uuid == o.conversation_pbx_queue_uuid &&
|
|
469
479
|
conversation_voicemail_mailbox_uuid == o.conversation_voicemail_mailbox_uuid &&
|
|
470
480
|
hold_conversation_pbx_audio_uuid == o.hold_conversation_pbx_audio_uuid &&
|
|
@@ -496,7 +506,7 @@ module UltracartClient
|
|
|
496
506
|
# Calculates hash code according to all attributes.
|
|
497
507
|
# @return [Integer] Hash code
|
|
498
508
|
def hash
|
|
499
|
-
[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
|
|
509
|
+
[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
|
|
500
510
|
end
|
|
501
511
|
|
|
502
512
|
# 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.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
|