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 +4 -4
- data/README.md +5 -4
- data/docs/ConversationAgentAuth.md +2 -0
- data/lib/ultracart_api/models/conversation_agent_auth.rb +19 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9fc4a0df2aef3599e618c0a28ddbfb8dac9964e4975bc4c3f1c12557bea2b8e
|
|
4
|
+
data.tar.gz: 25f7bfc9e05c3a0b7ec0e6bbdfb34fde3c056f89a8c5a94fe786c80bc0fc95af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
27
|
+
gem install ./ultracart_api-3.11.47.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.11.
|
|
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.
|
|
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
|