ultracart_api 3.11.46 → 3.11.47

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9dfaf789e36fc56ed9f08495bcf0b4520e1054b4e9e71fa802512615dfc08f59
4
- data.tar.gz: 215da1d2822e7346dc9a843ef57ac00bc321904ee0bead8de742fe90de35e582
3
+ metadata.gz: a9fc4a0df2aef3599e618c0a28ddbfb8dac9964e4975bc4c3f1c12557bea2b8e
4
+ data.tar.gz: 25f7bfc9e05c3a0b7ec0e6bbdfb34fde3c056f89a8c5a94fe786c80bc0fc95af
5
5
  SHA512:
6
- metadata.gz: f79d42ecddf4e70ada87ca4783524518c690c9938ce05e631a8fd3eb1f2c2297c186051bda58da4064c1e5e4b4bfebc8d0ed36c776a768fa368b9880e9437ced
7
- data.tar.gz: dcc4e48da5bc23a7769ee782eef9168e581f87bfbfa59fb607218279e611408a52971def63594bf5f731eae51c0d1803ef5b9b4cd1ac029d5df73e3d8aa82ebd
6
+ metadata.gz: 3002fa2d069b03b91e20165add57a7fff21564381b4369945c5e5b739e6ac2d078de90599955d4ae43f427b64e615f4b3b0bb6e19159e0ffd00c73461e6ebc0e
7
+ data.tar.gz: f0fd241f7c4dcf972d298d0f9e44871e2e4a52022f4a277470b7ac79268d4de3fb82ac12418ec6a279d802c5e469cd01b62fa77493471c482ccbc99d3e49c25c
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.46
10
+ - Package version: 3.11.47
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.46.gem
27
+ gem install ./ultracart_api-3.11.47.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.46.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.11.47.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.46'
35
+ gem 'ultracart_api', '~> 3.11.47'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1624,6 +1624,7 @@ Not every change is committed to every SDK.
1624
1624
 
1625
1625
  | Version | Date | Comments |
1626
1626
  | --: | :-: | --- |
1627
+ | 3.11.47 | 01/26/2026 | conversation - agent auth object chat admin/user properties |
1627
1628
  | 3.11.46 | 01/26/2026 | cart - expose utm array for use in abandon webhook only |
1628
1629
  | 3.11.45 | 01/26/2026 | added multimedia file size to ItemContentMultimedia object |
1629
1630
  | 3.11.44 | 01/26/2026 | conversations - ConversationDepartmentMember expose a flag for if the agent is AI |
@@ -3,6 +3,8 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **chat_admin** | **BOOLEAN** | | [optional]
7
+ **chat_user** | **BOOLEAN** | | [optional]
6
8
  **conversation_participant_arn** | **String** | | [optional]
7
9
  **conversation_participant_name** | **String** | | [optional]
8
10
  **group_ids** | **Array<Integer>** | UltraCart Groups this user belongs to | [optional]
@@ -14,6 +14,10 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ConversationAgentAuth
17
+ attr_accessor :chat_admin
18
+
19
+ attr_accessor :chat_user
20
+
17
21
  attr_accessor :conversation_participant_arn
18
22
 
19
23
  attr_accessor :conversation_participant_name
@@ -51,6 +55,8 @@ module UltracartClient
51
55
  # Attribute mapping from ruby-style variable name to JSON key.
52
56
  def self.attribute_map
53
57
  {
58
+ :'chat_admin' => :'chat_admin',
59
+ :'chat_user' => :'chat_user',
54
60
  :'conversation_participant_arn' => :'conversation_participant_arn',
55
61
  :'conversation_participant_name' => :'conversation_participant_name',
56
62
  :'group_ids' => :'group_ids',
@@ -73,6 +79,8 @@ module UltracartClient
73
79
  # Attribute type mapping.
74
80
  def self.swagger_types
75
81
  {
82
+ :'chat_admin' => :'BOOLEAN',
83
+ :'chat_user' => :'BOOLEAN',
76
84
  :'conversation_participant_arn' => :'String',
77
85
  :'conversation_participant_name' => :'String',
78
86
  :'group_ids' => :'Array<Integer>',
@@ -100,6 +108,14 @@ module UltracartClient
100
108
  # convert string to symbol for hash key
101
109
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
102
110
 
111
+ if attributes.has_key?(:'chat_admin')
112
+ self.chat_admin = attributes[:'chat_admin']
113
+ end
114
+
115
+ if attributes.has_key?(:'chat_user')
116
+ self.chat_user = attributes[:'chat_user']
117
+ end
118
+
103
119
  if attributes.has_key?(:'conversation_participant_arn')
104
120
  self.conversation_participant_arn = attributes[:'conversation_participant_arn']
105
121
  end
@@ -187,6 +203,8 @@ module UltracartClient
187
203
  def ==(o)
188
204
  return true if self.equal?(o)
189
205
  self.class == o.class &&
206
+ chat_admin == o.chat_admin &&
207
+ chat_user == o.chat_user &&
190
208
  conversation_participant_arn == o.conversation_participant_arn &&
191
209
  conversation_participant_name == o.conversation_participant_name &&
192
210
  group_ids == o.group_ids &&
@@ -214,7 +232,7 @@ module UltracartClient
214
232
  # Calculates hash code according to all attributes.
215
233
  # @return [Fixnum] Hash code
216
234
  def hash
217
- [conversation_participant_arn, conversation_participant_name, group_ids, jwt, merchant_id, pbx_admin, pbx_jwt, pbx_supervisor, pbx_user, pbx_voice_identity, pbx_voice_token, pbx_worker_token, pbx_worker_token_v2, twilio_accounts, user_id, websocket_url].hash
235
+ [chat_admin, chat_user, conversation_participant_arn, conversation_participant_name, group_ids, jwt, merchant_id, pbx_admin, pbx_jwt, pbx_supervisor, pbx_user, pbx_voice_identity, pbx_voice_token, pbx_worker_token, pbx_worker_token_v2, twilio_accounts, user_id, websocket_url].hash
218
236
  end
219
237
 
220
238
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.11.46'
14
+ VERSION = '3.11.47'
15
15
  end
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: 3.11.46
4
+ version: 3.11.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart