ultracart_api 4.1.72 → 4.1.74
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 +7 -2
- data/docs/AutoOrderApi.md +57 -0
- data/docs/AutoOrderItemCancelRequest.md +20 -0
- data/docs/ConversationPbxCall.md +7 -1
- data/docs/ConversationPbxCallAiSummary.md +38 -0
- data/docs/ConversationPbxCallFinancial.md +2 -0
- data/docs/ConversationPbxQueue.md +9 -1
- data/docs/OrderFormat.md +3 -1
- data/lib/ultracart_api/api/auto_order_api.rb +80 -0
- data/lib/ultracart_api/models/auto_order_item_cancel_request.rb +264 -0
- data/lib/ultracart_api/models/conversation_pbx_call.rb +33 -4
- data/lib/ultracart_api/models/conversation_pbx_call_ai_summary.rb +358 -0
- data/lib/ultracart_api/models/conversation_pbx_call_financial.rb +11 -1
- data/lib/ultracart_api/models/conversation_pbx_queue.rb +74 -4
- data/lib/ultracart_api/models/order_format.rb +14 -4
- data/lib/ultracart_api/version.rb +1 -1
- data/lib/ultracart_api.rb +2 -0
- metadata +6 -2
|
@@ -18,6 +18,12 @@ module UltracartClient
|
|
|
18
18
|
# AI Agent Priority compared to human agents
|
|
19
19
|
attr_accessor :ai_priority
|
|
20
20
|
|
|
21
|
+
# If true, AI summaries are generated for answered calls in this queue
|
|
22
|
+
attr_accessor :ai_summary_enabled
|
|
23
|
+
|
|
24
|
+
# Custom instructions injected into the AI summary system prompt for this queue
|
|
25
|
+
attr_accessor :ai_summary_instructions
|
|
26
|
+
|
|
21
27
|
# AI timeout seconds
|
|
22
28
|
attr_accessor :ai_timeout_seconds
|
|
23
29
|
|
|
@@ -122,6 +128,12 @@ module UltracartClient
|
|
|
122
128
|
# Wrap up time in seconds
|
|
123
129
|
attr_accessor :wrap_up_seconds
|
|
124
130
|
|
|
131
|
+
# Zoho Desk department ID to create tickets in
|
|
132
|
+
attr_accessor :zoho_desk_department_id
|
|
133
|
+
|
|
134
|
+
# If true, a Zoho Desk ticket is automatically created for answered calls in this queue
|
|
135
|
+
attr_accessor :zoho_desk_ticket_enabled
|
|
136
|
+
|
|
125
137
|
class EnumAttributeValidator
|
|
126
138
|
attr_reader :datatype
|
|
127
139
|
attr_reader :allowable_values
|
|
@@ -148,6 +160,8 @@ module UltracartClient
|
|
|
148
160
|
def self.attribute_map
|
|
149
161
|
{
|
|
150
162
|
:'ai_priority' => :'ai_priority',
|
|
163
|
+
:'ai_summary_enabled' => :'ai_summary_enabled',
|
|
164
|
+
:'ai_summary_instructions' => :'ai_summary_instructions',
|
|
151
165
|
:'ai_timeout_seconds' => :'ai_timeout_seconds',
|
|
152
166
|
:'announce_queue_position' => :'announce_queue_position',
|
|
153
167
|
:'automatic_coach_agent_uuid' => :'automatic_coach_agent_uuid',
|
|
@@ -182,7 +196,9 @@ module UltracartClient
|
|
|
182
196
|
:'voicemail' => :'voicemail',
|
|
183
197
|
:'wait_critical_seconds' => :'wait_critical_seconds',
|
|
184
198
|
:'wait_warning_seconds' => :'wait_warning_seconds',
|
|
185
|
-
:'wrap_up_seconds' => :'wrap_up_seconds'
|
|
199
|
+
:'wrap_up_seconds' => :'wrap_up_seconds',
|
|
200
|
+
:'zoho_desk_department_id' => :'zoho_desk_department_id',
|
|
201
|
+
:'zoho_desk_ticket_enabled' => :'zoho_desk_ticket_enabled'
|
|
186
202
|
}
|
|
187
203
|
end
|
|
188
204
|
|
|
@@ -195,6 +211,8 @@ module UltracartClient
|
|
|
195
211
|
def self.openapi_types
|
|
196
212
|
{
|
|
197
213
|
:'ai_priority' => :'String',
|
|
214
|
+
:'ai_summary_enabled' => :'Boolean',
|
|
215
|
+
:'ai_summary_instructions' => :'String',
|
|
198
216
|
:'ai_timeout_seconds' => :'Integer',
|
|
199
217
|
:'announce_queue_position' => :'Boolean',
|
|
200
218
|
:'automatic_coach_agent_uuid' => :'String',
|
|
@@ -229,7 +247,9 @@ module UltracartClient
|
|
|
229
247
|
:'voicemail' => :'Boolean',
|
|
230
248
|
:'wait_critical_seconds' => :'Integer',
|
|
231
249
|
:'wait_warning_seconds' => :'Integer',
|
|
232
|
-
:'wrap_up_seconds' => :'Integer'
|
|
250
|
+
:'wrap_up_seconds' => :'Integer',
|
|
251
|
+
:'zoho_desk_department_id' => :'String',
|
|
252
|
+
:'zoho_desk_ticket_enabled' => :'Boolean'
|
|
233
253
|
}
|
|
234
254
|
end
|
|
235
255
|
|
|
@@ -258,6 +278,14 @@ module UltracartClient
|
|
|
258
278
|
self.ai_priority = attributes[:'ai_priority']
|
|
259
279
|
end
|
|
260
280
|
|
|
281
|
+
if attributes.key?(:'ai_summary_enabled')
|
|
282
|
+
self.ai_summary_enabled = attributes[:'ai_summary_enabled']
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
if attributes.key?(:'ai_summary_instructions')
|
|
286
|
+
self.ai_summary_instructions = attributes[:'ai_summary_instructions']
|
|
287
|
+
end
|
|
288
|
+
|
|
261
289
|
if attributes.key?(:'ai_timeout_seconds')
|
|
262
290
|
self.ai_timeout_seconds = attributes[:'ai_timeout_seconds']
|
|
263
291
|
end
|
|
@@ -397,12 +425,24 @@ module UltracartClient
|
|
|
397
425
|
if attributes.key?(:'wrap_up_seconds')
|
|
398
426
|
self.wrap_up_seconds = attributes[:'wrap_up_seconds']
|
|
399
427
|
end
|
|
428
|
+
|
|
429
|
+
if attributes.key?(:'zoho_desk_department_id')
|
|
430
|
+
self.zoho_desk_department_id = attributes[:'zoho_desk_department_id']
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
if attributes.key?(:'zoho_desk_ticket_enabled')
|
|
434
|
+
self.zoho_desk_ticket_enabled = attributes[:'zoho_desk_ticket_enabled']
|
|
435
|
+
end
|
|
400
436
|
end
|
|
401
437
|
|
|
402
438
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
403
439
|
# @return Array for valid properties with the reasons
|
|
404
440
|
def list_invalid_properties
|
|
405
441
|
invalid_properties = Array.new
|
|
442
|
+
if !@ai_summary_instructions.nil? && @ai_summary_instructions.to_s.length > 100000
|
|
443
|
+
invalid_properties.push('invalid value for "ai_summary_instructions", the character length must be smaller than or equal to 100000.')
|
|
444
|
+
end
|
|
445
|
+
|
|
406
446
|
if !@callback_announce_audio_uuid.nil? && @callback_announce_audio_uuid.to_s.length > 50
|
|
407
447
|
invalid_properties.push('invalid value for "callback_announce_audio_uuid", the character length must be smaller than or equal to 50.')
|
|
408
448
|
end
|
|
@@ -451,6 +491,10 @@ module UltracartClient
|
|
|
451
491
|
invalid_properties.push('invalid value for "twilio_workspace_queue_sid", the character length must be smaller than or equal to 50.')
|
|
452
492
|
end
|
|
453
493
|
|
|
494
|
+
if !@zoho_desk_department_id.nil? && @zoho_desk_department_id.to_s.length > 50
|
|
495
|
+
invalid_properties.push('invalid value for "zoho_desk_department_id", the character length must be smaller than or equal to 50.')
|
|
496
|
+
end
|
|
497
|
+
|
|
454
498
|
invalid_properties
|
|
455
499
|
end
|
|
456
500
|
|
|
@@ -459,6 +503,7 @@ module UltracartClient
|
|
|
459
503
|
def valid?
|
|
460
504
|
ai_priority_validator = EnumAttributeValidator.new('String', ["neutral", "first", "backup"])
|
|
461
505
|
return false unless ai_priority_validator.valid?(@ai_priority)
|
|
506
|
+
return false if !@ai_summary_instructions.nil? && @ai_summary_instructions.to_s.length > 100000
|
|
462
507
|
return false if !@callback_announce_audio_uuid.nil? && @callback_announce_audio_uuid.to_s.length > 50
|
|
463
508
|
return false if !@callback_confirm_audio_uuid.nil? && @callback_confirm_audio_uuid.to_s.length > 50
|
|
464
509
|
return false if !@conversation_voicemail_mailbox_uuid.nil? && @conversation_voicemail_mailbox_uuid.to_s.length > 50
|
|
@@ -475,6 +520,7 @@ module UltracartClient
|
|
|
475
520
|
return false if !@say_voice.nil? && @say_voice.to_s.length > 50
|
|
476
521
|
return false if !@twilio_taskrouter_workflow_sid.nil? && @twilio_taskrouter_workflow_sid.to_s.length > 100
|
|
477
522
|
return false if !@twilio_workspace_queue_sid.nil? && @twilio_workspace_queue_sid.to_s.length > 50
|
|
523
|
+
return false if !@zoho_desk_department_id.nil? && @zoho_desk_department_id.to_s.length > 50
|
|
478
524
|
true
|
|
479
525
|
end
|
|
480
526
|
|
|
@@ -488,6 +534,16 @@ module UltracartClient
|
|
|
488
534
|
@ai_priority = ai_priority
|
|
489
535
|
end
|
|
490
536
|
|
|
537
|
+
# Custom attribute writer method with validation
|
|
538
|
+
# @param [Object] ai_summary_instructions Value to be assigned
|
|
539
|
+
def ai_summary_instructions=(ai_summary_instructions)
|
|
540
|
+
if !ai_summary_instructions.nil? && ai_summary_instructions.to_s.length > 100000
|
|
541
|
+
fail ArgumentError, 'invalid value for "ai_summary_instructions", the character length must be smaller than or equal to 100000.'
|
|
542
|
+
end
|
|
543
|
+
|
|
544
|
+
@ai_summary_instructions = ai_summary_instructions
|
|
545
|
+
end
|
|
546
|
+
|
|
491
547
|
# Custom attribute writer method with validation
|
|
492
548
|
# @param [Object] callback_announce_audio_uuid Value to be assigned
|
|
493
549
|
def callback_announce_audio_uuid=(callback_announce_audio_uuid)
|
|
@@ -608,12 +664,24 @@ module UltracartClient
|
|
|
608
664
|
@twilio_workspace_queue_sid = twilio_workspace_queue_sid
|
|
609
665
|
end
|
|
610
666
|
|
|
667
|
+
# Custom attribute writer method with validation
|
|
668
|
+
# @param [Object] zoho_desk_department_id Value to be assigned
|
|
669
|
+
def zoho_desk_department_id=(zoho_desk_department_id)
|
|
670
|
+
if !zoho_desk_department_id.nil? && zoho_desk_department_id.to_s.length > 50
|
|
671
|
+
fail ArgumentError, 'invalid value for "zoho_desk_department_id", the character length must be smaller than or equal to 50.'
|
|
672
|
+
end
|
|
673
|
+
|
|
674
|
+
@zoho_desk_department_id = zoho_desk_department_id
|
|
675
|
+
end
|
|
676
|
+
|
|
611
677
|
# Checks equality by comparing each attribute.
|
|
612
678
|
# @param [Object] Object to be compared
|
|
613
679
|
def ==(o)
|
|
614
680
|
return true if self.equal?(o)
|
|
615
681
|
self.class == o.class &&
|
|
616
682
|
ai_priority == o.ai_priority &&
|
|
683
|
+
ai_summary_enabled == o.ai_summary_enabled &&
|
|
684
|
+
ai_summary_instructions == o.ai_summary_instructions &&
|
|
617
685
|
ai_timeout_seconds == o.ai_timeout_seconds &&
|
|
618
686
|
announce_queue_position == o.announce_queue_position &&
|
|
619
687
|
automatic_coach_agent_uuid == o.automatic_coach_agent_uuid &&
|
|
@@ -648,7 +716,9 @@ module UltracartClient
|
|
|
648
716
|
voicemail == o.voicemail &&
|
|
649
717
|
wait_critical_seconds == o.wait_critical_seconds &&
|
|
650
718
|
wait_warning_seconds == o.wait_warning_seconds &&
|
|
651
|
-
wrap_up_seconds == o.wrap_up_seconds
|
|
719
|
+
wrap_up_seconds == o.wrap_up_seconds &&
|
|
720
|
+
zoho_desk_department_id == o.zoho_desk_department_id &&
|
|
721
|
+
zoho_desk_ticket_enabled == o.zoho_desk_ticket_enabled
|
|
652
722
|
end
|
|
653
723
|
|
|
654
724
|
# @see the `==` method
|
|
@@ -660,7 +730,7 @@ module UltracartClient
|
|
|
660
730
|
# Calculates hash code according to all attributes.
|
|
661
731
|
# @return [Integer] Hash code
|
|
662
732
|
def hash
|
|
663
|
-
[ai_priority, ai_timeout_seconds, announce_queue_position, automatic_coach_agent_uuid, callback_announce_audio_uuid, callback_announce_say, callback_confirm_audio_uuid, callback_confirm_say, callback_enabled, callback_hours_only, callback_max_attempts, callback_max_offers, callback_max_pending, callback_offer_after_seconds, callback_offer_interval_seconds, callback_retry_delay_seconds, 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
|
|
733
|
+
[ai_priority, ai_summary_enabled, ai_summary_instructions, ai_timeout_seconds, announce_queue_position, automatic_coach_agent_uuid, callback_announce_audio_uuid, callback_announce_say, callback_confirm_audio_uuid, callback_confirm_say, callback_enabled, callback_hours_only, callback_max_attempts, callback_max_offers, callback_max_pending, callback_offer_after_seconds, callback_offer_interval_seconds, callback_retry_delay_seconds, 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, zoho_desk_department_id, zoho_desk_ticket_enabled].hash
|
|
664
734
|
end
|
|
665
735
|
|
|
666
736
|
# Builds the object from hash
|
|
@@ -63,6 +63,9 @@ module UltracartClient
|
|
|
63
63
|
# True to translate the order into the native language of the customer
|
|
64
64
|
attr_accessor :translate
|
|
65
65
|
|
|
66
|
+
# True to render phone numbers as <phone-number-format> web components in the HTML output. Only honored by the div format. Default false preserves legacy scalar rendering for receipts and unauthenticated consumers.
|
|
67
|
+
attr_accessor :use_phone_number_web_component
|
|
68
|
+
|
|
66
69
|
class EnumAttributeValidator
|
|
67
70
|
attr_reader :datatype
|
|
68
71
|
attr_reader :allowable_values
|
|
@@ -103,7 +106,8 @@ module UltracartClient
|
|
|
103
106
|
:'show_merchant_notes' => :'show_merchant_notes',
|
|
104
107
|
:'show_non_sensitive_payment_info' => :'show_non_sensitive_payment_info',
|
|
105
108
|
:'show_payment_info' => :'show_payment_info',
|
|
106
|
-
:'translate' => :'translate'
|
|
109
|
+
:'translate' => :'translate',
|
|
110
|
+
:'use_phone_number_web_component' => :'use_phone_number_web_component'
|
|
107
111
|
}
|
|
108
112
|
end
|
|
109
113
|
|
|
@@ -130,7 +134,8 @@ module UltracartClient
|
|
|
130
134
|
:'show_merchant_notes' => :'Boolean',
|
|
131
135
|
:'show_non_sensitive_payment_info' => :'Boolean',
|
|
132
136
|
:'show_payment_info' => :'Boolean',
|
|
133
|
-
:'translate' => :'Boolean'
|
|
137
|
+
:'translate' => :'Boolean',
|
|
138
|
+
:'use_phone_number_web_component' => :'Boolean'
|
|
134
139
|
}
|
|
135
140
|
end
|
|
136
141
|
|
|
@@ -218,6 +223,10 @@ module UltracartClient
|
|
|
218
223
|
if attributes.key?(:'translate')
|
|
219
224
|
self.translate = attributes[:'translate']
|
|
220
225
|
end
|
|
226
|
+
|
|
227
|
+
if attributes.key?(:'use_phone_number_web_component')
|
|
228
|
+
self.use_phone_number_web_component = attributes[:'use_phone_number_web_component']
|
|
229
|
+
end
|
|
221
230
|
end
|
|
222
231
|
|
|
223
232
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -265,7 +274,8 @@ module UltracartClient
|
|
|
265
274
|
show_merchant_notes == o.show_merchant_notes &&
|
|
266
275
|
show_non_sensitive_payment_info == o.show_non_sensitive_payment_info &&
|
|
267
276
|
show_payment_info == o.show_payment_info &&
|
|
268
|
-
translate == o.translate
|
|
277
|
+
translate == o.translate &&
|
|
278
|
+
use_phone_number_web_component == o.use_phone_number_web_component
|
|
269
279
|
end
|
|
270
280
|
|
|
271
281
|
# @see the `==` method
|
|
@@ -277,7 +287,7 @@ module UltracartClient
|
|
|
277
287
|
# Calculates hash code according to all attributes.
|
|
278
288
|
# @return [Integer] Hash code
|
|
279
289
|
def hash
|
|
280
|
-
[context, dont_link_email_to_search, email_as_link, filter_distribution_center_oid, filter_to_items_in_container_oid, format, hide_bill_to_address, hide_price_information, link_file_attachments, show_contact_info, show_in_merchant_currency, show_internal_information, show_merchant_notes, show_non_sensitive_payment_info, show_payment_info, translate].hash
|
|
290
|
+
[context, dont_link_email_to_search, email_as_link, filter_distribution_center_oid, filter_to_items_in_container_oid, format, hide_bill_to_address, hide_price_information, link_file_attachments, show_contact_info, show_in_merchant_currency, show_internal_information, show_merchant_notes, show_non_sensitive_payment_info, show_payment_info, translate, use_phone_number_web_component].hash
|
|
281
291
|
end
|
|
282
292
|
|
|
283
293
|
# Builds the object from hash
|
data/lib/ultracart_api.rb
CHANGED
|
@@ -45,6 +45,7 @@ require 'ultracart_api/models/auto_order_addon_item_option'
|
|
|
45
45
|
require 'ultracart_api/models/auto_order_addon_items_update_request'
|
|
46
46
|
require 'ultracart_api/models/auto_order_consolidate'
|
|
47
47
|
require 'ultracart_api/models/auto_order_item'
|
|
48
|
+
require 'ultracart_api/models/auto_order_item_cancel_request'
|
|
48
49
|
require 'ultracart_api/models/auto_order_item_future_schedule'
|
|
49
50
|
require 'ultracart_api/models/auto_order_item_option'
|
|
50
51
|
require 'ultracart_api/models/auto_order_item_simple_schedule'
|
|
@@ -219,6 +220,7 @@ require 'ultracart_api/models/conversation_pbx_call'
|
|
|
219
220
|
require 'ultracart_api/models/conversation_pbx_call_agent'
|
|
220
221
|
require 'ultracart_api/models/conversation_pbx_call_ai_cost'
|
|
221
222
|
require 'ultracart_api/models/conversation_pbx_call_ai_engagement'
|
|
223
|
+
require 'ultracart_api/models/conversation_pbx_call_ai_summary'
|
|
222
224
|
require 'ultracart_api/models/conversation_pbx_call_ai_tool_call'
|
|
223
225
|
require 'ultracart_api/models/conversation_pbx_call_ai_whisper'
|
|
224
226
|
require 'ultracart_api/models/conversation_pbx_call_caller'
|
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.74
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -91,6 +91,7 @@ files:
|
|
|
91
91
|
- docs/AutoOrderApi.md
|
|
92
92
|
- docs/AutoOrderConsolidate.md
|
|
93
93
|
- docs/AutoOrderItem.md
|
|
94
|
+
- docs/AutoOrderItemCancelRequest.md
|
|
94
95
|
- docs/AutoOrderItemFutureSchedule.md
|
|
95
96
|
- docs/AutoOrderItemOption.md
|
|
96
97
|
- docs/AutoOrderItemSimpleSchedule.md
|
|
@@ -268,6 +269,7 @@ files:
|
|
|
268
269
|
- docs/ConversationPbxCallAgent.md
|
|
269
270
|
- docs/ConversationPbxCallAiCost.md
|
|
270
271
|
- docs/ConversationPbxCallAiEngagement.md
|
|
272
|
+
- docs/ConversationPbxCallAiSummary.md
|
|
271
273
|
- docs/ConversationPbxCallAiToolCall.md
|
|
272
274
|
- docs/ConversationPbxCallAiWhisper.md
|
|
273
275
|
- docs/ConversationPbxCallCaller.md
|
|
@@ -1085,6 +1087,7 @@ files:
|
|
|
1085
1087
|
- lib/ultracart_api/models/auto_order_addon_items_update_request.rb
|
|
1086
1088
|
- lib/ultracart_api/models/auto_order_consolidate.rb
|
|
1087
1089
|
- lib/ultracart_api/models/auto_order_item.rb
|
|
1090
|
+
- lib/ultracart_api/models/auto_order_item_cancel_request.rb
|
|
1088
1091
|
- lib/ultracart_api/models/auto_order_item_future_schedule.rb
|
|
1089
1092
|
- lib/ultracart_api/models/auto_order_item_option.rb
|
|
1090
1093
|
- lib/ultracart_api/models/auto_order_item_simple_schedule.rb
|
|
@@ -1259,6 +1262,7 @@ files:
|
|
|
1259
1262
|
- lib/ultracart_api/models/conversation_pbx_call_agent.rb
|
|
1260
1263
|
- lib/ultracart_api/models/conversation_pbx_call_ai_cost.rb
|
|
1261
1264
|
- lib/ultracart_api/models/conversation_pbx_call_ai_engagement.rb
|
|
1265
|
+
- lib/ultracart_api/models/conversation_pbx_call_ai_summary.rb
|
|
1262
1266
|
- lib/ultracart_api/models/conversation_pbx_call_ai_tool_call.rb
|
|
1263
1267
|
- lib/ultracart_api/models/conversation_pbx_call_ai_whisper.rb
|
|
1264
1268
|
- lib/ultracart_api/models/conversation_pbx_call_caller.rb
|