ultracart_api 4.1.149 → 4.1.151

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.
@@ -0,0 +1,285 @@
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 ConversationAgentTestSessionResponse
18
+ # Cart established for this session, soft logged in as the chosen customer profile. Real, and anything the agent adds to it persists.
19
+ attr_accessor :cart_id
20
+
21
+ # Queue entry created for this session
22
+ attr_accessor :conversation_webchat_queue_uuid
23
+
24
+ attr_accessor :customer_auth
25
+
26
+ attr_accessor :error
27
+
28
+ attr_accessor :metadata
29
+
30
+ # Storefront the session is running against
31
+ attr_accessor :storefront_host_name
32
+
33
+ attr_accessor :success
34
+
35
+ attr_accessor :warning
36
+
37
+ # Attribute mapping from ruby-style variable name to JSON key.
38
+ def self.attribute_map
39
+ {
40
+ :'cart_id' => :'cart_id',
41
+ :'conversation_webchat_queue_uuid' => :'conversation_webchat_queue_uuid',
42
+ :'customer_auth' => :'customer_auth',
43
+ :'error' => :'error',
44
+ :'metadata' => :'metadata',
45
+ :'storefront_host_name' => :'storefront_host_name',
46
+ :'success' => :'success',
47
+ :'warning' => :'warning'
48
+ }
49
+ end
50
+
51
+ # Returns all the JSON keys this model knows about
52
+ def self.acceptable_attributes
53
+ attribute_map.values
54
+ end
55
+
56
+ # Attribute type mapping.
57
+ def self.openapi_types
58
+ {
59
+ :'cart_id' => :'String',
60
+ :'conversation_webchat_queue_uuid' => :'String',
61
+ :'customer_auth' => :'ConversationCustomerAuth',
62
+ :'error' => :'Error',
63
+ :'metadata' => :'ResponseMetadata',
64
+ :'storefront_host_name' => :'String',
65
+ :'success' => :'Boolean',
66
+ :'warning' => :'Warning'
67
+ }
68
+ end
69
+
70
+ # List of attributes with nullable: true
71
+ def self.openapi_nullable
72
+ Set.new([
73
+ ])
74
+ end
75
+
76
+ # Initializes the object
77
+ # @param [Hash] attributes Model attributes in the form of hash
78
+ def initialize(attributes = {})
79
+ if (!attributes.is_a?(Hash))
80
+ fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::ConversationAgentTestSessionResponse` initialize method"
81
+ end
82
+
83
+ # check to see if the attribute exists and convert string to symbol for hash key
84
+ attributes = attributes.each_with_object({}) { |(k, v), h|
85
+ if (!self.class.attribute_map.key?(k.to_sym))
86
+ fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::ConversationAgentTestSessionResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
87
+ end
88
+ h[k.to_sym] = v
89
+ }
90
+
91
+ if attributes.key?(:'cart_id')
92
+ self.cart_id = attributes[:'cart_id']
93
+ end
94
+
95
+ if attributes.key?(:'conversation_webchat_queue_uuid')
96
+ self.conversation_webchat_queue_uuid = attributes[:'conversation_webchat_queue_uuid']
97
+ end
98
+
99
+ if attributes.key?(:'customer_auth')
100
+ self.customer_auth = attributes[:'customer_auth']
101
+ end
102
+
103
+ if attributes.key?(:'error')
104
+ self.error = attributes[:'error']
105
+ end
106
+
107
+ if attributes.key?(:'metadata')
108
+ self.metadata = attributes[:'metadata']
109
+ end
110
+
111
+ if attributes.key?(:'storefront_host_name')
112
+ self.storefront_host_name = attributes[:'storefront_host_name']
113
+ end
114
+
115
+ if attributes.key?(:'success')
116
+ self.success = attributes[:'success']
117
+ end
118
+
119
+ if attributes.key?(:'warning')
120
+ self.warning = attributes[:'warning']
121
+ end
122
+ end
123
+
124
+ # Show invalid properties with the reasons. Usually used together with valid?
125
+ # @return Array for valid properties with the reasons
126
+ def list_invalid_properties
127
+ invalid_properties = Array.new
128
+ invalid_properties
129
+ end
130
+
131
+ # Check to see if the all the properties in the model are valid
132
+ # @return true if the model is valid
133
+ def valid?
134
+ true
135
+ end
136
+
137
+ # Checks equality by comparing each attribute.
138
+ # @param [Object] Object to be compared
139
+ def ==(o)
140
+ return true if self.equal?(o)
141
+ self.class == o.class &&
142
+ cart_id == o.cart_id &&
143
+ conversation_webchat_queue_uuid == o.conversation_webchat_queue_uuid &&
144
+ customer_auth == o.customer_auth &&
145
+ error == o.error &&
146
+ metadata == o.metadata &&
147
+ storefront_host_name == o.storefront_host_name &&
148
+ success == o.success &&
149
+ warning == o.warning
150
+ end
151
+
152
+ # @see the `==` method
153
+ # @param [Object] Object to be compared
154
+ def eql?(o)
155
+ self == o
156
+ end
157
+
158
+ # Calculates hash code according to all attributes.
159
+ # @return [Integer] Hash code
160
+ def hash
161
+ [cart_id, conversation_webchat_queue_uuid, customer_auth, error, metadata, storefront_host_name, success, warning].hash
162
+ end
163
+
164
+ # Builds the object from hash
165
+ # @param [Hash] attributes Model attributes in the form of hash
166
+ # @return [Object] Returns the model itself
167
+ def self.build_from_hash(attributes)
168
+ new.build_from_hash(attributes)
169
+ end
170
+
171
+ # Builds the object from hash
172
+ # @param [Hash] attributes Model attributes in the form of hash
173
+ # @return [Object] Returns the model itself
174
+ def build_from_hash(attributes)
175
+ return nil unless attributes.is_a?(Hash)
176
+ attributes = attributes.transform_keys(&:to_sym)
177
+ self.class.openapi_types.each_pair do |key, type|
178
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
179
+ self.send("#{key}=", nil)
180
+ elsif type =~ /\AArray<(.*)>/i
181
+ # check to ensure the input is an array given that the attribute
182
+ # is documented as an array but the input is not
183
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
184
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
185
+ end
186
+ elsif !attributes[self.class.attribute_map[key]].nil?
187
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
188
+ end
189
+ end
190
+
191
+ self
192
+ end
193
+
194
+ # Deserializes the data based on type
195
+ # @param string type Data type
196
+ # @param string value Value to be deserialized
197
+ # @return [Object] Deserialized data
198
+ def _deserialize(type, value)
199
+ case type.to_sym
200
+ when :Time
201
+ Time.parse(value)
202
+ when :Date
203
+ Date.parse(value)
204
+ when :String
205
+ value.to_s
206
+ when :Integer
207
+ value.to_i
208
+ when :Float
209
+ value.to_f
210
+ when :Boolean
211
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
212
+ true
213
+ else
214
+ false
215
+ end
216
+ when :Object
217
+ # generic object (usually a Hash), return directly
218
+ value
219
+ when /\AArray<(?<inner_type>.+)>\z/
220
+ inner_type = Regexp.last_match[:inner_type]
221
+ value.map { |v| _deserialize(inner_type, v) }
222
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
223
+ k_type = Regexp.last_match[:k_type]
224
+ v_type = Regexp.last_match[:v_type]
225
+ {}.tap do |hash|
226
+ value.each do |k, v|
227
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
228
+ end
229
+ end
230
+ else # model
231
+ # models (e.g. Pet) or oneOf
232
+ klass = UltracartClient.const_get(type)
233
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
234
+ end
235
+ end
236
+
237
+ # Returns the string representation of the object
238
+ # @return [String] String presentation of the object
239
+ def to_s
240
+ to_hash.to_s
241
+ end
242
+
243
+ # to_body is an alias to to_hash (backward compatibility)
244
+ # @return [Hash] Returns the object in the form of hash
245
+ def to_body
246
+ to_hash
247
+ end
248
+
249
+ # Returns the object in the form of hash
250
+ # @return [Hash] Returns the object in the form of hash
251
+ def to_hash
252
+ hash = {}
253
+ self.class.attribute_map.each_pair do |attr, param|
254
+ value = self.send(attr)
255
+ if value.nil?
256
+ is_nullable = self.class.openapi_nullable.include?(attr)
257
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
258
+ end
259
+
260
+ hash[param] = _to_hash(value)
261
+ end
262
+ hash
263
+ end
264
+
265
+ # Outputs non-array value in the form of hash
266
+ # For object, use to_hash. Otherwise, just return the value
267
+ # @param [Object] value Any valid value
268
+ # @return [Hash] Returns the value in the form of hash
269
+ def _to_hash(value)
270
+ if value.is_a?(Array)
271
+ value.compact.map { |v| _to_hash(v) }
272
+ elsif value.is_a?(Hash)
273
+ {}.tap do |hash|
274
+ value.each { |k, v| hash[k] = _to_hash(v) }
275
+ end
276
+ elsif value.respond_to? :to_hash
277
+ value.to_hash
278
+ else
279
+ value
280
+ end
281
+ end
282
+
283
+ end
284
+
285
+ end
@@ -0,0 +1,273 @@
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 ConversationCustomerAuth
18
+ attr_accessor :conversation_participant_arn
19
+
20
+ attr_accessor :conversation_participant_name
21
+
22
+ attr_accessor :join_dts_conversation_participant_arn
23
+
24
+ attr_accessor :jwt
25
+
26
+ attr_accessor :merchant_id
27
+
28
+ attr_accessor :merchant_id_queue_name
29
+
30
+ attr_accessor :websocket_url
31
+
32
+ # Attribute mapping from ruby-style variable name to JSON key.
33
+ def self.attribute_map
34
+ {
35
+ :'conversation_participant_arn' => :'conversation_participant_arn',
36
+ :'conversation_participant_name' => :'conversation_participant_name',
37
+ :'join_dts_conversation_participant_arn' => :'join_dts_conversation_participant_arn',
38
+ :'jwt' => :'jwt',
39
+ :'merchant_id' => :'merchant_id',
40
+ :'merchant_id_queue_name' => :'merchant_id_queue_name',
41
+ :'websocket_url' => :'websocket_url'
42
+ }
43
+ end
44
+
45
+ # Returns all the JSON keys this model knows about
46
+ def self.acceptable_attributes
47
+ attribute_map.values
48
+ end
49
+
50
+ # Attribute type mapping.
51
+ def self.openapi_types
52
+ {
53
+ :'conversation_participant_arn' => :'String',
54
+ :'conversation_participant_name' => :'String',
55
+ :'join_dts_conversation_participant_arn' => :'String',
56
+ :'jwt' => :'String',
57
+ :'merchant_id' => :'String',
58
+ :'merchant_id_queue_name' => :'String',
59
+ :'websocket_url' => :'String'
60
+ }
61
+ end
62
+
63
+ # List of attributes with nullable: true
64
+ def self.openapi_nullable
65
+ Set.new([
66
+ ])
67
+ end
68
+
69
+ # Initializes the object
70
+ # @param [Hash] attributes Model attributes in the form of hash
71
+ def initialize(attributes = {})
72
+ if (!attributes.is_a?(Hash))
73
+ fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::ConversationCustomerAuth` initialize method"
74
+ end
75
+
76
+ # check to see if the attribute exists and convert string to symbol for hash key
77
+ attributes = attributes.each_with_object({}) { |(k, v), h|
78
+ if (!self.class.attribute_map.key?(k.to_sym))
79
+ fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::ConversationCustomerAuth`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
80
+ end
81
+ h[k.to_sym] = v
82
+ }
83
+
84
+ if attributes.key?(:'conversation_participant_arn')
85
+ self.conversation_participant_arn = attributes[:'conversation_participant_arn']
86
+ end
87
+
88
+ if attributes.key?(:'conversation_participant_name')
89
+ self.conversation_participant_name = attributes[:'conversation_participant_name']
90
+ end
91
+
92
+ if attributes.key?(:'join_dts_conversation_participant_arn')
93
+ self.join_dts_conversation_participant_arn = attributes[:'join_dts_conversation_participant_arn']
94
+ end
95
+
96
+ if attributes.key?(:'jwt')
97
+ self.jwt = attributes[:'jwt']
98
+ end
99
+
100
+ if attributes.key?(:'merchant_id')
101
+ self.merchant_id = attributes[:'merchant_id']
102
+ end
103
+
104
+ if attributes.key?(:'merchant_id_queue_name')
105
+ self.merchant_id_queue_name = attributes[:'merchant_id_queue_name']
106
+ end
107
+
108
+ if attributes.key?(:'websocket_url')
109
+ self.websocket_url = attributes[:'websocket_url']
110
+ end
111
+ end
112
+
113
+ # Show invalid properties with the reasons. Usually used together with valid?
114
+ # @return Array for valid properties with the reasons
115
+ def list_invalid_properties
116
+ invalid_properties = Array.new
117
+ invalid_properties
118
+ end
119
+
120
+ # Check to see if the all the properties in the model are valid
121
+ # @return true if the model is valid
122
+ def valid?
123
+ true
124
+ end
125
+
126
+ # Checks equality by comparing each attribute.
127
+ # @param [Object] Object to be compared
128
+ def ==(o)
129
+ return true if self.equal?(o)
130
+ self.class == o.class &&
131
+ conversation_participant_arn == o.conversation_participant_arn &&
132
+ conversation_participant_name == o.conversation_participant_name &&
133
+ join_dts_conversation_participant_arn == o.join_dts_conversation_participant_arn &&
134
+ jwt == o.jwt &&
135
+ merchant_id == o.merchant_id &&
136
+ merchant_id_queue_name == o.merchant_id_queue_name &&
137
+ websocket_url == o.websocket_url
138
+ end
139
+
140
+ # @see the `==` method
141
+ # @param [Object] Object to be compared
142
+ def eql?(o)
143
+ self == o
144
+ end
145
+
146
+ # Calculates hash code according to all attributes.
147
+ # @return [Integer] Hash code
148
+ def hash
149
+ [conversation_participant_arn, conversation_participant_name, join_dts_conversation_participant_arn, jwt, merchant_id, merchant_id_queue_name, websocket_url].hash
150
+ end
151
+
152
+ # Builds the object from hash
153
+ # @param [Hash] attributes Model attributes in the form of hash
154
+ # @return [Object] Returns the model itself
155
+ def self.build_from_hash(attributes)
156
+ new.build_from_hash(attributes)
157
+ end
158
+
159
+ # Builds the object from hash
160
+ # @param [Hash] attributes Model attributes in the form of hash
161
+ # @return [Object] Returns the model itself
162
+ def build_from_hash(attributes)
163
+ return nil unless attributes.is_a?(Hash)
164
+ attributes = attributes.transform_keys(&:to_sym)
165
+ self.class.openapi_types.each_pair do |key, type|
166
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
167
+ self.send("#{key}=", nil)
168
+ elsif type =~ /\AArray<(.*)>/i
169
+ # check to ensure the input is an array given that the attribute
170
+ # is documented as an array but the input is not
171
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
172
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
173
+ end
174
+ elsif !attributes[self.class.attribute_map[key]].nil?
175
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
176
+ end
177
+ end
178
+
179
+ self
180
+ end
181
+
182
+ # Deserializes the data based on type
183
+ # @param string type Data type
184
+ # @param string value Value to be deserialized
185
+ # @return [Object] Deserialized data
186
+ def _deserialize(type, value)
187
+ case type.to_sym
188
+ when :Time
189
+ Time.parse(value)
190
+ when :Date
191
+ Date.parse(value)
192
+ when :String
193
+ value.to_s
194
+ when :Integer
195
+ value.to_i
196
+ when :Float
197
+ value.to_f
198
+ when :Boolean
199
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
200
+ true
201
+ else
202
+ false
203
+ end
204
+ when :Object
205
+ # generic object (usually a Hash), return directly
206
+ value
207
+ when /\AArray<(?<inner_type>.+)>\z/
208
+ inner_type = Regexp.last_match[:inner_type]
209
+ value.map { |v| _deserialize(inner_type, v) }
210
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
211
+ k_type = Regexp.last_match[:k_type]
212
+ v_type = Regexp.last_match[:v_type]
213
+ {}.tap do |hash|
214
+ value.each do |k, v|
215
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
216
+ end
217
+ end
218
+ else # model
219
+ # models (e.g. Pet) or oneOf
220
+ klass = UltracartClient.const_get(type)
221
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
222
+ end
223
+ end
224
+
225
+ # Returns the string representation of the object
226
+ # @return [String] String presentation of the object
227
+ def to_s
228
+ to_hash.to_s
229
+ end
230
+
231
+ # to_body is an alias to to_hash (backward compatibility)
232
+ # @return [Hash] Returns the object in the form of hash
233
+ def to_body
234
+ to_hash
235
+ end
236
+
237
+ # Returns the object in the form of hash
238
+ # @return [Hash] Returns the object in the form of hash
239
+ def to_hash
240
+ hash = {}
241
+ self.class.attribute_map.each_pair do |attr, param|
242
+ value = self.send(attr)
243
+ if value.nil?
244
+ is_nullable = self.class.openapi_nullable.include?(attr)
245
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
246
+ end
247
+
248
+ hash[param] = _to_hash(value)
249
+ end
250
+ hash
251
+ end
252
+
253
+ # Outputs non-array value in the form of hash
254
+ # For object, use to_hash. Otherwise, just return the value
255
+ # @param [Object] value Any valid value
256
+ # @return [Hash] Returns the value in the form of hash
257
+ def _to_hash(value)
258
+ if value.is_a?(Array)
259
+ value.compact.map { |v| _to_hash(v) }
260
+ elsif value.is_a?(Hash)
261
+ {}.tap do |hash|
262
+ value.each { |k, v| hash[k] = _to_hash(v) }
263
+ end
264
+ elsif value.respond_to? :to_hash
265
+ value.to_hash
266
+ else
267
+ value
268
+ end
269
+ end
270
+
271
+ end
272
+
273
+ end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.149'
14
+ VERSION = '4.1.151'
15
15
  end
data/lib/ultracart_api.rb CHANGED
@@ -195,6 +195,9 @@ require 'ultracart_api/models/conversation_agent_status_rollup_search_request'
195
195
  require 'ultracart_api/models/conversation_agent_status_rollup_search_response'
196
196
  require 'ultracart_api/models/conversation_agent_status_summary_response'
197
197
  require 'ultracart_api/models/conversation_agent_status_timeline_response'
198
+ require 'ultracart_api/models/conversation_agent_test_session_join_request'
199
+ require 'ultracart_api/models/conversation_agent_test_session_request'
200
+ require 'ultracart_api/models/conversation_agent_test_session_response'
198
201
  require 'ultracart_api/models/conversation_autocomplete_request'
199
202
  require 'ultracart_api/models/conversation_autocomplete_response'
200
203
  require 'ultracart_api/models/conversation_autocomplete_value'
@@ -202,6 +205,7 @@ require 'ultracart_api/models/conversation_canned_message'
202
205
  require 'ultracart_api/models/conversation_canned_message_response'
203
206
  require 'ultracart_api/models/conversation_canned_messages_response'
204
207
  require 'ultracart_api/models/conversation_canned_messages_search'
208
+ require 'ultracart_api/models/conversation_customer_auth'
205
209
  require 'ultracart_api/models/conversation_delete_knowledge_base_document_response'
206
210
  require 'ultracart_api/models/conversation_department'
207
211
  require 'ultracart_api/models/conversation_department_member'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.149
4
+ version: 4.1.151
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
@@ -244,6 +244,9 @@ files:
244
244
  - docs/ConversationAgentStatusRollupSearchResponse.md
245
245
  - docs/ConversationAgentStatusSummaryResponse.md
246
246
  - docs/ConversationAgentStatusTimelineResponse.md
247
+ - docs/ConversationAgentTestSessionJoinRequest.md
248
+ - docs/ConversationAgentTestSessionRequest.md
249
+ - docs/ConversationAgentTestSessionResponse.md
247
250
  - docs/ConversationApi.md
248
251
  - docs/ConversationAutocompleteRequest.md
249
252
  - docs/ConversationAutocompleteResponse.md
@@ -252,6 +255,7 @@ files:
252
255
  - docs/ConversationCannedMessageResponse.md
253
256
  - docs/ConversationCannedMessagesResponse.md
254
257
  - docs/ConversationCannedMessagesSearch.md
258
+ - docs/ConversationCustomerAuth.md
255
259
  - docs/ConversationDeleteKnowledgeBaseDocumentResponse.md
256
260
  - docs/ConversationDepartment.md
257
261
  - docs/ConversationDepartmentMember.md
@@ -1382,6 +1386,9 @@ files:
1382
1386
  - lib/ultracart_api/models/conversation_agent_status_rollup_search_response.rb
1383
1387
  - lib/ultracart_api/models/conversation_agent_status_summary_response.rb
1384
1388
  - lib/ultracart_api/models/conversation_agent_status_timeline_response.rb
1389
+ - lib/ultracart_api/models/conversation_agent_test_session_join_request.rb
1390
+ - lib/ultracart_api/models/conversation_agent_test_session_request.rb
1391
+ - lib/ultracart_api/models/conversation_agent_test_session_response.rb
1385
1392
  - lib/ultracart_api/models/conversation_autocomplete_request.rb
1386
1393
  - lib/ultracart_api/models/conversation_autocomplete_response.rb
1387
1394
  - lib/ultracart_api/models/conversation_autocomplete_value.rb
@@ -1389,6 +1396,7 @@ files:
1389
1396
  - lib/ultracart_api/models/conversation_canned_message_response.rb
1390
1397
  - lib/ultracart_api/models/conversation_canned_messages_response.rb
1391
1398
  - lib/ultracart_api/models/conversation_canned_messages_search.rb
1399
+ - lib/ultracart_api/models/conversation_customer_auth.rb
1392
1400
  - lib/ultracart_api/models/conversation_delete_knowledge_base_document_response.rb
1393
1401
  - lib/ultracart_api/models/conversation_department.rb
1394
1402
  - lib/ultracart_api/models/conversation_department_member.rb