ultracart_api 4.1.46 → 4.1.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: bc3b86866911aa1945695ff25cdb2ee71a1ceee2d733c0c23592a30f8fa00255
4
- data.tar.gz: d4a2c5a63b1dec8bd05d810c9ce54d7577dae7747b9b11b9f75b7eab12ec4e19
3
+ metadata.gz: 58c5b4d2e08b51c41f430f528888f01495bd7c058a7eb05b8223b767dfdf0cc3
4
+ data.tar.gz: 2afc1f4c59ecb12e6d2a73a9bf591232d53472caef883cb827e6c3c37c8383f9
5
5
  SHA512:
6
- metadata.gz: d137c652064a899a18f3177b3c80b806f85b48aa6000925a0b58491ddfcc4be777b548f3f2b2135ca2371706bd5d736e4111e162b184e4c67728ead4ea624eff
7
- data.tar.gz: 859d0d3f14f39a0ccb4c3b69dbf9305863734c09abf9da553aa79ca2bb5144e62d4a72e8545134ab807a67ee935eb2b0ea1aaba2aad962aac35def80edc543f4
6
+ metadata.gz: 971b479b4c7efa1139a10bcbbd966f488bf494d7474e58c2a44beb57af033e2d508ea028cfed8f7ef3692e6aa03be73f44cf9451080dc5d7133601491f5f853e
7
+ data.tar.gz: 427fb76cbdfa7b78afc18dc5de103c53d4020996063d019b241c18fcf309db21c9fa4c6654ca54c1d6a8ec56b77887597d5a558379e267559cfceb342c1f0da5
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.46
10
+ - Package version: 4.1.47
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.46'
19
+ gem 'ultracart_api', '4.1.47'
20
20
  ```
21
21
 
22
22
  install:
@@ -1622,6 +1622,7 @@ Not every change is committed to every SDK.
1622
1622
 
1623
1623
  | Version | Date | Comments |
1624
1624
  | --: | :-: | --- |
1625
+ | 4.1.47 | 01/26/2026 | conversation - agent auth object chat admin/user properties |
1625
1626
  | 4.1.46 | 01/26/2026 | cart - expose utm array for use in abandon webhook only |
1626
1627
  | 4.1.45 | 01/26/2026 | added multimedia file size to ItemContentMultimedia object |
1627
1628
  | 4.1.44 | 01/26/2026 | conversations - ConversationDepartmentMember expose a flag for if the agent is AI |
@@ -4,6 +4,8 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **chat_admin** | **Boolean** | | [optional] |
8
+ | **chat_user** | **Boolean** | | [optional] |
7
9
  | **conversation_participant_arn** | **String** | | [optional] |
8
10
  | **conversation_participant_name** | **String** | | [optional] |
9
11
  | **group_ids** | **Array<Integer>** | UltraCart Groups this user belongs to | [optional] |
@@ -27,6 +29,8 @@
27
29
  require 'ultracart_api'
28
30
 
29
31
  instance = UltracartClient::ConversationAgentAuth.new(
32
+ chat_admin: null,
33
+ chat_user: null,
30
34
  conversation_participant_arn: null,
31
35
  conversation_participant_name: null,
32
36
  group_ids: null,
@@ -15,6 +15,10 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class ConversationAgentAuth
18
+ attr_accessor :chat_admin
19
+
20
+ attr_accessor :chat_user
21
+
18
22
  attr_accessor :conversation_participant_arn
19
23
 
20
24
  attr_accessor :conversation_participant_name
@@ -52,6 +56,8 @@ module UltracartClient
52
56
  # Attribute mapping from ruby-style variable name to JSON key.
53
57
  def self.attribute_map
54
58
  {
59
+ :'chat_admin' => :'chat_admin',
60
+ :'chat_user' => :'chat_user',
55
61
  :'conversation_participant_arn' => :'conversation_participant_arn',
56
62
  :'conversation_participant_name' => :'conversation_participant_name',
57
63
  :'group_ids' => :'group_ids',
@@ -79,6 +85,8 @@ module UltracartClient
79
85
  # Attribute type mapping.
80
86
  def self.openapi_types
81
87
  {
88
+ :'chat_admin' => :'Boolean',
89
+ :'chat_user' => :'Boolean',
82
90
  :'conversation_participant_arn' => :'String',
83
91
  :'conversation_participant_name' => :'String',
84
92
  :'group_ids' => :'Array<Integer>',
@@ -119,6 +127,14 @@ module UltracartClient
119
127
  h[k.to_sym] = v
120
128
  }
121
129
 
130
+ if attributes.key?(:'chat_admin')
131
+ self.chat_admin = attributes[:'chat_admin']
132
+ end
133
+
134
+ if attributes.key?(:'chat_user')
135
+ self.chat_user = attributes[:'chat_user']
136
+ end
137
+
122
138
  if attributes.key?(:'conversation_participant_arn')
123
139
  self.conversation_participant_arn = attributes[:'conversation_participant_arn']
124
140
  end
@@ -206,6 +222,8 @@ module UltracartClient
206
222
  def ==(o)
207
223
  return true if self.equal?(o)
208
224
  self.class == o.class &&
225
+ chat_admin == o.chat_admin &&
226
+ chat_user == o.chat_user &&
209
227
  conversation_participant_arn == o.conversation_participant_arn &&
210
228
  conversation_participant_name == o.conversation_participant_name &&
211
229
  group_ids == o.group_ids &&
@@ -233,7 +251,7 @@ module UltracartClient
233
251
  # Calculates hash code according to all attributes.
234
252
  # @return [Integer] Hash code
235
253
  def hash
236
- [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
254
+ [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
237
255
  end
238
256
 
239
257
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.46'
14
+ VERSION = '4.1.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: 4.1.46
4
+ version: 4.1.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart