ultracart_api 4.0.201 → 4.0.203

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.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +84 -4
  3. data/docs/ConversationApi.md +3565 -549
  4. data/docs/ConversationPbxAgent.md +34 -0
  5. data/docs/ConversationPbxAgentResponse.md +26 -0
  6. data/docs/ConversationPbxAgentsResponse.md +26 -0
  7. data/docs/ConversationPbxAudio.md +34 -0
  8. data/docs/ConversationPbxAudioResponse.md +26 -0
  9. data/docs/ConversationPbxAudiosResponse.md +26 -0
  10. data/docs/ConversationPbxCustomerSnapshotRequest.md +32 -0
  11. data/docs/ConversationPbxCustomerSnapshotResponse.md +30 -0
  12. data/docs/ConversationPbxMenu.md +36 -0
  13. data/docs/ConversationPbxMenuMapping.md +24 -0
  14. data/docs/ConversationPbxMenuResponse.md +26 -0
  15. data/docs/ConversationPbxMenusResponse.md +26 -0
  16. data/docs/ConversationPbxPhoneNumber.md +26 -0
  17. data/docs/ConversationPbxPhoneNumberResponse.md +26 -0
  18. data/docs/ConversationPbxPhoneNumbersResponse.md +26 -0
  19. data/docs/ConversationPbxQueue.md +56 -0
  20. data/docs/ConversationPbxQueueMembers.md +20 -0
  21. data/docs/ConversationPbxQueueResponse.md +26 -0
  22. data/docs/ConversationPbxQueuesResponse.md +26 -0
  23. data/docs/ConversationPbxTimeBased.md +24 -0
  24. data/docs/ConversationPbxTimeBasedMapping.md +24 -0
  25. data/docs/ConversationPbxTimeBasedMappingConfig.md +20 -0
  26. data/docs/ConversationPbxTimeBasedResponse.md +26 -0
  27. data/docs/ConversationPbxTimeBasedsResponse.md +26 -0
  28. data/docs/ConversationPbxTimeRange.md +26 -0
  29. data/docs/ConversationPbxTimeRangeConfig.md +28 -0
  30. data/docs/ConversationPbxTimeRangeResponse.md +26 -0
  31. data/docs/ConversationPbxTimeRangesResponse.md +26 -0
  32. data/docs/ConversationPbxVoicemailMailbox.md +38 -0
  33. data/docs/ConversationPbxVoicemailMailboxResponse.md +26 -0
  34. data/docs/ConversationPbxVoicemailMailboxesResponse.md +26 -0
  35. data/docs/WorkflowAgentAuth.md +22 -0
  36. data/docs/WorkflowAgentAuthResponse.md +26 -0
  37. data/docs/WorkflowApi.md +138 -0
  38. data/docs/WorkflowTaskTagsResponse.md +26 -0
  39. data/lib/ultracart_api/api/conversation_api.rb +3422 -649
  40. data/lib/ultracart_api/api/workflow_api.rb +116 -0
  41. data/lib/ultracart_api/models/conversation_pbx_agent.rb +360 -0
  42. data/lib/ultracart_api/models/conversation_pbx_agent_response.rb +256 -0
  43. data/lib/ultracart_api/models/conversation_pbx_agents_response.rb +258 -0
  44. data/lib/ultracart_api/models/conversation_pbx_audio.rb +390 -0
  45. data/lib/ultracart_api/models/conversation_pbx_audio_response.rb +256 -0
  46. data/lib/ultracart_api/models/conversation_pbx_audios_response.rb +258 -0
  47. data/lib/ultracart_api/models/conversation_pbx_customer_snapshot_request.rb +283 -0
  48. data/lib/ultracart_api/models/conversation_pbx_customer_snapshot_response.rb +278 -0
  49. data/lib/ultracart_api/models/conversation_pbx_menu.rb +402 -0
  50. data/lib/ultracart_api/models/conversation_pbx_menu_mapping.rb +250 -0
  51. data/lib/ultracart_api/models/conversation_pbx_menu_response.rb +256 -0
  52. data/lib/ultracart_api/models/conversation_pbx_menus_response.rb +258 -0
  53. data/lib/ultracart_api/models/conversation_pbx_phone_number.rb +335 -0
  54. data/lib/ultracart_api/models/conversation_pbx_phone_number_response.rb +256 -0
  55. data/lib/ultracart_api/models/conversation_pbx_phone_numbers_response.rb +258 -0
  56. data/lib/ultracart_api/models/conversation_pbx_queue.rb +559 -0
  57. data/lib/ultracart_api/models/conversation_pbx_queue_members.rb +232 -0
  58. data/lib/ultracart_api/models/conversation_pbx_queue_response.rb +256 -0
  59. data/lib/ultracart_api/models/conversation_pbx_queues_response.rb +258 -0
  60. data/lib/ultracart_api/models/conversation_pbx_time_based.rb +246 -0
  61. data/lib/ultracart_api/models/conversation_pbx_time_based_mapping.rb +310 -0
  62. data/lib/ultracart_api/models/conversation_pbx_time_based_mapping_config.rb +231 -0
  63. data/lib/ultracart_api/models/conversation_pbx_time_based_response.rb +256 -0
  64. data/lib/ultracart_api/models/conversation_pbx_time_baseds_response.rb +258 -0
  65. data/lib/ultracart_api/models/conversation_pbx_time_range.rb +322 -0
  66. data/lib/ultracart_api/models/conversation_pbx_time_range_config.rb +270 -0
  67. data/lib/ultracart_api/models/conversation_pbx_time_range_response.rb +256 -0
  68. data/lib/ultracart_api/models/conversation_pbx_time_ranges_response.rb +258 -0
  69. data/lib/ultracart_api/models/conversation_pbx_voicemail_mailbox.rb +440 -0
  70. data/lib/ultracart_api/models/conversation_pbx_voicemail_mailbox_response.rb +256 -0
  71. data/lib/ultracart_api/models/conversation_pbx_voicemail_mailboxes_response.rb +258 -0
  72. data/lib/ultracart_api/models/workflow_agent_auth.rb +237 -0
  73. data/lib/ultracart_api/models/workflow_agent_auth_response.rb +256 -0
  74. data/lib/ultracart_api/models/workflow_task_tags_response.rb +259 -0
  75. data/lib/ultracart_api/version.rb +1 -1
  76. data/lib/ultracart_api.rb +34 -0
  77. metadata +70 -2
@@ -0,0 +1,256 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.0.1-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module UltracartClient
17
+ class WorkflowAgentAuthResponse
18
+ attr_accessor :agent_auth
19
+
20
+ attr_accessor :error
21
+
22
+ attr_accessor :metadata
23
+
24
+ # Indicates if API call was successful
25
+ attr_accessor :success
26
+
27
+ attr_accessor :warning
28
+
29
+ # Attribute mapping from ruby-style variable name to JSON key.
30
+ def self.attribute_map
31
+ {
32
+ :'agent_auth' => :'agent_auth',
33
+ :'error' => :'error',
34
+ :'metadata' => :'metadata',
35
+ :'success' => :'success',
36
+ :'warning' => :'warning'
37
+ }
38
+ end
39
+
40
+ # Returns all the JSON keys this model knows about
41
+ def self.acceptable_attributes
42
+ attribute_map.values
43
+ end
44
+
45
+ # Attribute type mapping.
46
+ def self.openapi_types
47
+ {
48
+ :'agent_auth' => :'WorkflowAgentAuth',
49
+ :'error' => :'Error',
50
+ :'metadata' => :'ResponseMetadata',
51
+ :'success' => :'Boolean',
52
+ :'warning' => :'Warning'
53
+ }
54
+ end
55
+
56
+ # List of attributes with nullable: true
57
+ def self.openapi_nullable
58
+ Set.new([
59
+ ])
60
+ end
61
+
62
+ # Initializes the object
63
+ # @param [Hash] attributes Model attributes in the form of hash
64
+ def initialize(attributes = {})
65
+ if (!attributes.is_a?(Hash))
66
+ fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::WorkflowAgentAuthResponse` initialize method"
67
+ end
68
+
69
+ # check to see if the attribute exists and convert string to symbol for hash key
70
+ attributes = attributes.each_with_object({}) { |(k, v), h|
71
+ if (!self.class.attribute_map.key?(k.to_sym))
72
+ fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::WorkflowAgentAuthResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
73
+ end
74
+ h[k.to_sym] = v
75
+ }
76
+
77
+ if attributes.key?(:'agent_auth')
78
+ self.agent_auth = attributes[:'agent_auth']
79
+ end
80
+
81
+ if attributes.key?(:'error')
82
+ self.error = attributes[:'error']
83
+ end
84
+
85
+ if attributes.key?(:'metadata')
86
+ self.metadata = attributes[:'metadata']
87
+ end
88
+
89
+ if attributes.key?(:'success')
90
+ self.success = attributes[:'success']
91
+ end
92
+
93
+ if attributes.key?(:'warning')
94
+ self.warning = attributes[:'warning']
95
+ end
96
+ end
97
+
98
+ # Show invalid properties with the reasons. Usually used together with valid?
99
+ # @return Array for valid properties with the reasons
100
+ def list_invalid_properties
101
+ invalid_properties = Array.new
102
+ invalid_properties
103
+ end
104
+
105
+ # Check to see if the all the properties in the model are valid
106
+ # @return true if the model is valid
107
+ def valid?
108
+ true
109
+ end
110
+
111
+ # Checks equality by comparing each attribute.
112
+ # @param [Object] Object to be compared
113
+ def ==(o)
114
+ return true if self.equal?(o)
115
+ self.class == o.class &&
116
+ agent_auth == o.agent_auth &&
117
+ error == o.error &&
118
+ metadata == o.metadata &&
119
+ success == o.success &&
120
+ warning == o.warning
121
+ end
122
+
123
+ # @see the `==` method
124
+ # @param [Object] Object to be compared
125
+ def eql?(o)
126
+ self == o
127
+ end
128
+
129
+ # Calculates hash code according to all attributes.
130
+ # @return [Integer] Hash code
131
+ def hash
132
+ [agent_auth, error, metadata, success, warning].hash
133
+ end
134
+
135
+ # Builds the object from hash
136
+ # @param [Hash] attributes Model attributes in the form of hash
137
+ # @return [Object] Returns the model itself
138
+ def self.build_from_hash(attributes)
139
+ new.build_from_hash(attributes)
140
+ end
141
+
142
+ # Builds the object from hash
143
+ # @param [Hash] attributes Model attributes in the form of hash
144
+ # @return [Object] Returns the model itself
145
+ def build_from_hash(attributes)
146
+ return nil unless attributes.is_a?(Hash)
147
+ attributes = attributes.transform_keys(&:to_sym)
148
+ self.class.openapi_types.each_pair do |key, type|
149
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
150
+ self.send("#{key}=", nil)
151
+ elsif type =~ /\AArray<(.*)>/i
152
+ # check to ensure the input is an array given that the attribute
153
+ # is documented as an array but the input is not
154
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
155
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
156
+ end
157
+ elsif !attributes[self.class.attribute_map[key]].nil?
158
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
159
+ end
160
+ end
161
+
162
+ self
163
+ end
164
+
165
+ # Deserializes the data based on type
166
+ # @param string type Data type
167
+ # @param string value Value to be deserialized
168
+ # @return [Object] Deserialized data
169
+ def _deserialize(type, value)
170
+ case type.to_sym
171
+ when :Time
172
+ Time.parse(value)
173
+ when :Date
174
+ Date.parse(value)
175
+ when :String
176
+ value.to_s
177
+ when :Integer
178
+ value.to_i
179
+ when :Float
180
+ value.to_f
181
+ when :Boolean
182
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
183
+ true
184
+ else
185
+ false
186
+ end
187
+ when :Object
188
+ # generic object (usually a Hash), return directly
189
+ value
190
+ when /\AArray<(?<inner_type>.+)>\z/
191
+ inner_type = Regexp.last_match[:inner_type]
192
+ value.map { |v| _deserialize(inner_type, v) }
193
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
194
+ k_type = Regexp.last_match[:k_type]
195
+ v_type = Regexp.last_match[:v_type]
196
+ {}.tap do |hash|
197
+ value.each do |k, v|
198
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
199
+ end
200
+ end
201
+ else # model
202
+ # models (e.g. Pet) or oneOf
203
+ klass = UltracartClient.const_get(type)
204
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
205
+ end
206
+ end
207
+
208
+ # Returns the string representation of the object
209
+ # @return [String] String presentation of the object
210
+ def to_s
211
+ to_hash.to_s
212
+ end
213
+
214
+ # to_body is an alias to to_hash (backward compatibility)
215
+ # @return [Hash] Returns the object in the form of hash
216
+ def to_body
217
+ to_hash
218
+ end
219
+
220
+ # Returns the object in the form of hash
221
+ # @return [Hash] Returns the object in the form of hash
222
+ def to_hash
223
+ hash = {}
224
+ self.class.attribute_map.each_pair do |attr, param|
225
+ value = self.send(attr)
226
+ if value.nil?
227
+ is_nullable = self.class.openapi_nullable.include?(attr)
228
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
229
+ end
230
+
231
+ hash[param] = _to_hash(value)
232
+ end
233
+ hash
234
+ end
235
+
236
+ # Outputs non-array value in the form of hash
237
+ # For object, use to_hash. Otherwise, just return the value
238
+ # @param [Object] value Any valid value
239
+ # @return [Hash] Returns the value in the form of hash
240
+ def _to_hash(value)
241
+ if value.is_a?(Array)
242
+ value.compact.map { |v| _to_hash(v) }
243
+ elsif value.is_a?(Hash)
244
+ {}.tap do |hash|
245
+ value.each { |k, v| hash[k] = _to_hash(v) }
246
+ end
247
+ elsif value.respond_to? :to_hash
248
+ value.to_hash
249
+ else
250
+ value
251
+ end
252
+ end
253
+
254
+ end
255
+
256
+ end
@@ -0,0 +1,259 @@
1
+ =begin
2
+ #UltraCart Rest API V2
3
+
4
+ #UltraCart REST API Version 2
5
+
6
+ The version of the OpenAPI document: 2.0.0
7
+ Contact: support@ultracart.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 6.0.1-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module UltracartClient
17
+ class WorkflowTaskTagsResponse
18
+ attr_accessor :error
19
+
20
+ attr_accessor :metadata
21
+
22
+ # Indicates if API call was successful
23
+ attr_accessor :success
24
+
25
+ # Tags
26
+ attr_accessor :tags
27
+
28
+ attr_accessor :warning
29
+
30
+ # Attribute mapping from ruby-style variable name to JSON key.
31
+ def self.attribute_map
32
+ {
33
+ :'error' => :'error',
34
+ :'metadata' => :'metadata',
35
+ :'success' => :'success',
36
+ :'tags' => :'tags',
37
+ :'warning' => :'warning'
38
+ }
39
+ end
40
+
41
+ # Returns all the JSON keys this model knows about
42
+ def self.acceptable_attributes
43
+ attribute_map.values
44
+ end
45
+
46
+ # Attribute type mapping.
47
+ def self.openapi_types
48
+ {
49
+ :'error' => :'Error',
50
+ :'metadata' => :'ResponseMetadata',
51
+ :'success' => :'Boolean',
52
+ :'tags' => :'Array<String>',
53
+ :'warning' => :'Warning'
54
+ }
55
+ end
56
+
57
+ # List of attributes with nullable: true
58
+ def self.openapi_nullable
59
+ Set.new([
60
+ ])
61
+ end
62
+
63
+ # Initializes the object
64
+ # @param [Hash] attributes Model attributes in the form of hash
65
+ def initialize(attributes = {})
66
+ if (!attributes.is_a?(Hash))
67
+ fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::WorkflowTaskTagsResponse` initialize method"
68
+ end
69
+
70
+ # check to see if the attribute exists and convert string to symbol for hash key
71
+ attributes = attributes.each_with_object({}) { |(k, v), h|
72
+ if (!self.class.attribute_map.key?(k.to_sym))
73
+ fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::WorkflowTaskTagsResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
74
+ end
75
+ h[k.to_sym] = v
76
+ }
77
+
78
+ if attributes.key?(:'error')
79
+ self.error = attributes[:'error']
80
+ end
81
+
82
+ if attributes.key?(:'metadata')
83
+ self.metadata = attributes[:'metadata']
84
+ end
85
+
86
+ if attributes.key?(:'success')
87
+ self.success = attributes[:'success']
88
+ end
89
+
90
+ if attributes.key?(:'tags')
91
+ if (value = attributes[:'tags']).is_a?(Array)
92
+ self.tags = value
93
+ end
94
+ end
95
+
96
+ if attributes.key?(:'warning')
97
+ self.warning = attributes[:'warning']
98
+ end
99
+ end
100
+
101
+ # Show invalid properties with the reasons. Usually used together with valid?
102
+ # @return Array for valid properties with the reasons
103
+ def list_invalid_properties
104
+ invalid_properties = Array.new
105
+ invalid_properties
106
+ end
107
+
108
+ # Check to see if the all the properties in the model are valid
109
+ # @return true if the model is valid
110
+ def valid?
111
+ true
112
+ end
113
+
114
+ # Checks equality by comparing each attribute.
115
+ # @param [Object] Object to be compared
116
+ def ==(o)
117
+ return true if self.equal?(o)
118
+ self.class == o.class &&
119
+ error == o.error &&
120
+ metadata == o.metadata &&
121
+ success == o.success &&
122
+ tags == o.tags &&
123
+ warning == o.warning
124
+ end
125
+
126
+ # @see the `==` method
127
+ # @param [Object] Object to be compared
128
+ def eql?(o)
129
+ self == o
130
+ end
131
+
132
+ # Calculates hash code according to all attributes.
133
+ # @return [Integer] Hash code
134
+ def hash
135
+ [error, metadata, success, tags, warning].hash
136
+ end
137
+
138
+ # Builds the object from hash
139
+ # @param [Hash] attributes Model attributes in the form of hash
140
+ # @return [Object] Returns the model itself
141
+ def self.build_from_hash(attributes)
142
+ new.build_from_hash(attributes)
143
+ end
144
+
145
+ # Builds the object from hash
146
+ # @param [Hash] attributes Model attributes in the form of hash
147
+ # @return [Object] Returns the model itself
148
+ def build_from_hash(attributes)
149
+ return nil unless attributes.is_a?(Hash)
150
+ attributes = attributes.transform_keys(&:to_sym)
151
+ self.class.openapi_types.each_pair do |key, type|
152
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
153
+ self.send("#{key}=", nil)
154
+ elsif type =~ /\AArray<(.*)>/i
155
+ # check to ensure the input is an array given that the attribute
156
+ # is documented as an array but the input is not
157
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
158
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
159
+ end
160
+ elsif !attributes[self.class.attribute_map[key]].nil?
161
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
162
+ end
163
+ end
164
+
165
+ self
166
+ end
167
+
168
+ # Deserializes the data based on type
169
+ # @param string type Data type
170
+ # @param string value Value to be deserialized
171
+ # @return [Object] Deserialized data
172
+ def _deserialize(type, value)
173
+ case type.to_sym
174
+ when :Time
175
+ Time.parse(value)
176
+ when :Date
177
+ Date.parse(value)
178
+ when :String
179
+ value.to_s
180
+ when :Integer
181
+ value.to_i
182
+ when :Float
183
+ value.to_f
184
+ when :Boolean
185
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
186
+ true
187
+ else
188
+ false
189
+ end
190
+ when :Object
191
+ # generic object (usually a Hash), return directly
192
+ value
193
+ when /\AArray<(?<inner_type>.+)>\z/
194
+ inner_type = Regexp.last_match[:inner_type]
195
+ value.map { |v| _deserialize(inner_type, v) }
196
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
197
+ k_type = Regexp.last_match[:k_type]
198
+ v_type = Regexp.last_match[:v_type]
199
+ {}.tap do |hash|
200
+ value.each do |k, v|
201
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
202
+ end
203
+ end
204
+ else # model
205
+ # models (e.g. Pet) or oneOf
206
+ klass = UltracartClient.const_get(type)
207
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
208
+ end
209
+ end
210
+
211
+ # Returns the string representation of the object
212
+ # @return [String] String presentation of the object
213
+ def to_s
214
+ to_hash.to_s
215
+ end
216
+
217
+ # to_body is an alias to to_hash (backward compatibility)
218
+ # @return [Hash] Returns the object in the form of hash
219
+ def to_body
220
+ to_hash
221
+ end
222
+
223
+ # Returns the object in the form of hash
224
+ # @return [Hash] Returns the object in the form of hash
225
+ def to_hash
226
+ hash = {}
227
+ self.class.attribute_map.each_pair do |attr, param|
228
+ value = self.send(attr)
229
+ if value.nil?
230
+ is_nullable = self.class.openapi_nullable.include?(attr)
231
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
232
+ end
233
+
234
+ hash[param] = _to_hash(value)
235
+ end
236
+ hash
237
+ end
238
+
239
+ # Outputs non-array value in the form of hash
240
+ # For object, use to_hash. Otherwise, just return the value
241
+ # @param [Object] value Any valid value
242
+ # @return [Hash] Returns the value in the form of hash
243
+ def _to_hash(value)
244
+ if value.is_a?(Array)
245
+ value.compact.map { |v| _to_hash(v) }
246
+ elsif value.is_a?(Hash)
247
+ {}.tap do |hash|
248
+ value.each { |k, v| hash[k] = _to_hash(v) }
249
+ end
250
+ elsif value.respond_to? :to_hash
251
+ value.to_hash
252
+ else
253
+ value
254
+ end
255
+ end
256
+
257
+ end
258
+
259
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.201'
14
+ VERSION = '4.0.203'
15
15
  end
data/lib/ultracart_api.rb CHANGED
@@ -185,6 +185,37 @@ require 'ultracart_api/models/conversation_messages_response'
185
185
  require 'ultracart_api/models/conversation_multimedia_upload_url'
186
186
  require 'ultracart_api/models/conversation_multimedia_upload_url_response'
187
187
  require 'ultracart_api/models/conversation_participant'
188
+ require 'ultracart_api/models/conversation_pbx_agent'
189
+ require 'ultracart_api/models/conversation_pbx_agent_response'
190
+ require 'ultracart_api/models/conversation_pbx_agents_response'
191
+ require 'ultracart_api/models/conversation_pbx_audio'
192
+ require 'ultracart_api/models/conversation_pbx_audio_response'
193
+ require 'ultracart_api/models/conversation_pbx_audios_response'
194
+ require 'ultracart_api/models/conversation_pbx_customer_snapshot_request'
195
+ require 'ultracart_api/models/conversation_pbx_customer_snapshot_response'
196
+ require 'ultracart_api/models/conversation_pbx_menu'
197
+ require 'ultracart_api/models/conversation_pbx_menu_mapping'
198
+ require 'ultracart_api/models/conversation_pbx_menu_response'
199
+ require 'ultracart_api/models/conversation_pbx_menus_response'
200
+ require 'ultracart_api/models/conversation_pbx_phone_number'
201
+ require 'ultracart_api/models/conversation_pbx_phone_number_response'
202
+ require 'ultracart_api/models/conversation_pbx_phone_numbers_response'
203
+ require 'ultracart_api/models/conversation_pbx_queue'
204
+ require 'ultracart_api/models/conversation_pbx_queue_members'
205
+ require 'ultracart_api/models/conversation_pbx_queue_response'
206
+ require 'ultracart_api/models/conversation_pbx_queues_response'
207
+ require 'ultracart_api/models/conversation_pbx_time_based'
208
+ require 'ultracart_api/models/conversation_pbx_time_based_mapping'
209
+ require 'ultracart_api/models/conversation_pbx_time_based_mapping_config'
210
+ require 'ultracart_api/models/conversation_pbx_time_based_response'
211
+ require 'ultracart_api/models/conversation_pbx_time_baseds_response'
212
+ require 'ultracart_api/models/conversation_pbx_time_range'
213
+ require 'ultracart_api/models/conversation_pbx_time_range_config'
214
+ require 'ultracart_api/models/conversation_pbx_time_range_response'
215
+ require 'ultracart_api/models/conversation_pbx_time_ranges_response'
216
+ require 'ultracart_api/models/conversation_pbx_voicemail_mailbox'
217
+ require 'ultracart_api/models/conversation_pbx_voicemail_mailbox_response'
218
+ require 'ultracart_api/models/conversation_pbx_voicemail_mailboxes_response'
188
219
  require 'ultracart_api/models/conversation_permissions'
189
220
  require 'ultracart_api/models/conversation_permissions_response'
190
221
  require 'ultracart_api/models/conversation_response'
@@ -808,6 +839,8 @@ require 'ultracart_api/models/webhook_sample_request'
808
839
  require 'ultracart_api/models/webhook_sample_request_response'
809
840
  require 'ultracart_api/models/webhooks_response'
810
841
  require 'ultracart_api/models/weight'
842
+ require 'ultracart_api/models/workflow_agent_auth'
843
+ require 'ultracart_api/models/workflow_agent_auth_response'
811
844
  require 'ultracart_api/models/workflow_attachment'
812
845
  require 'ultracart_api/models/workflow_attachment_upload_url'
813
846
  require 'ultracart_api/models/workflow_attachment_upload_url_response'
@@ -817,6 +850,7 @@ require 'ultracart_api/models/workflow_note'
817
850
  require 'ultracart_api/models/workflow_task'
818
851
  require 'ultracart_api/models/workflow_task_history'
819
852
  require 'ultracart_api/models/workflow_task_response'
853
+ require 'ultracart_api/models/workflow_task_tags_response'
820
854
  require 'ultracart_api/models/workflow_tasks_request'
821
855
  require 'ultracart_api/models/workflow_tasks_response'
822
856
  require 'ultracart_api/models/workflow_user'
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.0.201
4
+ version: 4.0.203
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-27 00:00:00.000000000 Z
11
+ date: 2024-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -235,6 +235,37 @@ files:
235
235
  - docs/ConversationMultimediaUploadUrl.md
236
236
  - docs/ConversationMultimediaUploadUrlResponse.md
237
237
  - docs/ConversationParticipant.md
238
+ - docs/ConversationPbxAgent.md
239
+ - docs/ConversationPbxAgentResponse.md
240
+ - docs/ConversationPbxAgentsResponse.md
241
+ - docs/ConversationPbxAudio.md
242
+ - docs/ConversationPbxAudioResponse.md
243
+ - docs/ConversationPbxAudiosResponse.md
244
+ - docs/ConversationPbxCustomerSnapshotRequest.md
245
+ - docs/ConversationPbxCustomerSnapshotResponse.md
246
+ - docs/ConversationPbxMenu.md
247
+ - docs/ConversationPbxMenuMapping.md
248
+ - docs/ConversationPbxMenuResponse.md
249
+ - docs/ConversationPbxMenusResponse.md
250
+ - docs/ConversationPbxPhoneNumber.md
251
+ - docs/ConversationPbxPhoneNumberResponse.md
252
+ - docs/ConversationPbxPhoneNumbersResponse.md
253
+ - docs/ConversationPbxQueue.md
254
+ - docs/ConversationPbxQueueMembers.md
255
+ - docs/ConversationPbxQueueResponse.md
256
+ - docs/ConversationPbxQueuesResponse.md
257
+ - docs/ConversationPbxTimeBased.md
258
+ - docs/ConversationPbxTimeBasedMapping.md
259
+ - docs/ConversationPbxTimeBasedMappingConfig.md
260
+ - docs/ConversationPbxTimeBasedResponse.md
261
+ - docs/ConversationPbxTimeBasedsResponse.md
262
+ - docs/ConversationPbxTimeRange.md
263
+ - docs/ConversationPbxTimeRangeConfig.md
264
+ - docs/ConversationPbxTimeRangeResponse.md
265
+ - docs/ConversationPbxTimeRangesResponse.md
266
+ - docs/ConversationPbxVoicemailMailbox.md
267
+ - docs/ConversationPbxVoicemailMailboxResponse.md
268
+ - docs/ConversationPbxVoicemailMailboxesResponse.md
238
269
  - docs/ConversationPermissions.md
239
270
  - docs/ConversationPermissionsResponse.md
240
271
  - docs/ConversationResponse.md
@@ -872,6 +903,8 @@ files:
872
903
  - docs/WebhookSampleRequestResponse.md
873
904
  - docs/WebhooksResponse.md
874
905
  - docs/Weight.md
906
+ - docs/WorkflowAgentAuth.md
907
+ - docs/WorkflowAgentAuthResponse.md
875
908
  - docs/WorkflowApi.md
876
909
  - docs/WorkflowAttachment.md
877
910
  - docs/WorkflowAttachmentUploadUrl.md
@@ -882,6 +915,7 @@ files:
882
915
  - docs/WorkflowTask.md
883
916
  - docs/WorkflowTaskHistory.md
884
917
  - docs/WorkflowTaskResponse.md
918
+ - docs/WorkflowTaskTagsResponse.md
885
919
  - docs/WorkflowTasksRequest.md
886
920
  - docs/WorkflowTasksResponse.md
887
921
  - docs/WorkflowUser.md
@@ -1081,6 +1115,37 @@ files:
1081
1115
  - lib/ultracart_api/models/conversation_multimedia_upload_url.rb
1082
1116
  - lib/ultracart_api/models/conversation_multimedia_upload_url_response.rb
1083
1117
  - lib/ultracart_api/models/conversation_participant.rb
1118
+ - lib/ultracart_api/models/conversation_pbx_agent.rb
1119
+ - lib/ultracart_api/models/conversation_pbx_agent_response.rb
1120
+ - lib/ultracart_api/models/conversation_pbx_agents_response.rb
1121
+ - lib/ultracart_api/models/conversation_pbx_audio.rb
1122
+ - lib/ultracart_api/models/conversation_pbx_audio_response.rb
1123
+ - lib/ultracart_api/models/conversation_pbx_audios_response.rb
1124
+ - lib/ultracart_api/models/conversation_pbx_customer_snapshot_request.rb
1125
+ - lib/ultracart_api/models/conversation_pbx_customer_snapshot_response.rb
1126
+ - lib/ultracart_api/models/conversation_pbx_menu.rb
1127
+ - lib/ultracart_api/models/conversation_pbx_menu_mapping.rb
1128
+ - lib/ultracart_api/models/conversation_pbx_menu_response.rb
1129
+ - lib/ultracart_api/models/conversation_pbx_menus_response.rb
1130
+ - lib/ultracart_api/models/conversation_pbx_phone_number.rb
1131
+ - lib/ultracart_api/models/conversation_pbx_phone_number_response.rb
1132
+ - lib/ultracart_api/models/conversation_pbx_phone_numbers_response.rb
1133
+ - lib/ultracart_api/models/conversation_pbx_queue.rb
1134
+ - lib/ultracart_api/models/conversation_pbx_queue_members.rb
1135
+ - lib/ultracart_api/models/conversation_pbx_queue_response.rb
1136
+ - lib/ultracart_api/models/conversation_pbx_queues_response.rb
1137
+ - lib/ultracart_api/models/conversation_pbx_time_based.rb
1138
+ - lib/ultracart_api/models/conversation_pbx_time_based_mapping.rb
1139
+ - lib/ultracart_api/models/conversation_pbx_time_based_mapping_config.rb
1140
+ - lib/ultracart_api/models/conversation_pbx_time_based_response.rb
1141
+ - lib/ultracart_api/models/conversation_pbx_time_baseds_response.rb
1142
+ - lib/ultracart_api/models/conversation_pbx_time_range.rb
1143
+ - lib/ultracart_api/models/conversation_pbx_time_range_config.rb
1144
+ - lib/ultracart_api/models/conversation_pbx_time_range_response.rb
1145
+ - lib/ultracart_api/models/conversation_pbx_time_ranges_response.rb
1146
+ - lib/ultracart_api/models/conversation_pbx_voicemail_mailbox.rb
1147
+ - lib/ultracart_api/models/conversation_pbx_voicemail_mailbox_response.rb
1148
+ - lib/ultracart_api/models/conversation_pbx_voicemail_mailboxes_response.rb
1084
1149
  - lib/ultracart_api/models/conversation_permissions.rb
1085
1150
  - lib/ultracart_api/models/conversation_permissions_response.rb
1086
1151
  - lib/ultracart_api/models/conversation_response.rb
@@ -1704,6 +1769,8 @@ files:
1704
1769
  - lib/ultracart_api/models/webhook_sample_request_response.rb
1705
1770
  - lib/ultracart_api/models/webhooks_response.rb
1706
1771
  - lib/ultracart_api/models/weight.rb
1772
+ - lib/ultracart_api/models/workflow_agent_auth.rb
1773
+ - lib/ultracart_api/models/workflow_agent_auth_response.rb
1707
1774
  - lib/ultracart_api/models/workflow_attachment.rb
1708
1775
  - lib/ultracart_api/models/workflow_attachment_upload_url.rb
1709
1776
  - lib/ultracart_api/models/workflow_attachment_upload_url_response.rb
@@ -1713,6 +1780,7 @@ files:
1713
1780
  - lib/ultracart_api/models/workflow_task.rb
1714
1781
  - lib/ultracart_api/models/workflow_task_history.rb
1715
1782
  - lib/ultracart_api/models/workflow_task_response.rb
1783
+ - lib/ultracart_api/models/workflow_task_tags_response.rb
1716
1784
  - lib/ultracart_api/models/workflow_tasks_request.rb
1717
1785
  - lib/ultracart_api/models/workflow_tasks_response.rb
1718
1786
  - lib/ultracart_api/models/workflow_user.rb