ultracart_api 3.11.9 → 3.11.10
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/ConversationAgentProfile.md +1 -0
- data/lib/ultracart_api/models/conversation_agent_profile.rb +14 -4
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90bf4b19fd1c3f9e8c47c98aef0e554dd36f50fa3e42b5b727d10326520566b2
|
4
|
+
data.tar.gz: 78fef909b88a3fbe544b8a600bcabb61ccb77388755a6a05f6d99ca7ab57ec60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae3a0f4f234d6ca26761724a046c6a92219a4c2c1ae67f690578cf0cdfaabd17bd546dc703df19a0806ef420fd4142735687a86941cbdfb4e1276d56df881db4
|
7
|
+
data.tar.gz: bb6d3cbf3f2a36ca187f5703a9a85f7d5420eba6a78e881ce1b54136619be0b626fc3c1b1c6ce7b61f561746c1bd0a55a94949608ec7722bd429be8ea8cfd1ec
|
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.10
|
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.10.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.10.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.10'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1524,6 +1524,7 @@ Not every change is committed to every SDK.
|
|
1524
1524
|
|
1525
1525
|
| Version | Date | Comments |
|
1526
1526
|
| --: | :-: | --- |
|
1527
|
+
| 3.11.10 | 05/06/2025 | conversation - ConversationAgentProfile.user_id added for agent profiles call |
|
1527
1528
|
| 3.11.9 | 05/05/2025 | conversations - method to fetch all agent profiles for admin screens |
|
1528
1529
|
| 3.11.8 | 04/22/2025 | order property fields for created_by and created_dts |
|
1529
1530
|
| 3.11.7 | 04/21/2025 | conversation agent additional fields |
|
@@ -14,5 +14,6 @@ Name | Type | Description | Notes
|
|
14
14
|
**name** | **String** | Their actual user name for profile settings display as placeholder test | [optional]
|
15
15
|
**profile_image_upload_key** | **String** | An upload key used to update the profile image. | [optional]
|
16
16
|
**profile_image_url** | **String** | Their current profile image URL | [optional]
|
17
|
+
**user_id** | **Integer** | User ID associated with the agent. Populated by getAgentProfiles call only. | [optional]
|
17
18
|
|
18
19
|
|
@@ -47,6 +47,9 @@ module UltracartClient
|
|
47
47
|
# Their current profile image URL
|
48
48
|
attr_accessor :profile_image_url
|
49
49
|
|
50
|
+
# User ID associated with the agent. Populated by getAgentProfiles call only.
|
51
|
+
attr_accessor :user_id
|
52
|
+
|
50
53
|
class EnumAttributeValidator
|
51
54
|
attr_reader :datatype
|
52
55
|
attr_reader :allowable_values
|
@@ -82,7 +85,8 @@ module UltracartClient
|
|
82
85
|
:'display_name' => :'display_name',
|
83
86
|
:'name' => :'name',
|
84
87
|
:'profile_image_upload_key' => :'profile_image_upload_key',
|
85
|
-
:'profile_image_url' => :'profile_image_url'
|
88
|
+
:'profile_image_url' => :'profile_image_url',
|
89
|
+
:'user_id' => :'user_id'
|
86
90
|
}
|
87
91
|
end
|
88
92
|
|
@@ -99,7 +103,8 @@ module UltracartClient
|
|
99
103
|
:'display_name' => :'String',
|
100
104
|
:'name' => :'String',
|
101
105
|
:'profile_image_upload_key' => :'String',
|
102
|
-
:'profile_image_url' => :'String'
|
106
|
+
:'profile_image_url' => :'String',
|
107
|
+
:'user_id' => :'Integer'
|
103
108
|
}
|
104
109
|
end
|
105
110
|
|
@@ -154,6 +159,10 @@ module UltracartClient
|
|
154
159
|
if attributes.has_key?(:'profile_image_url')
|
155
160
|
self.profile_image_url = attributes[:'profile_image_url']
|
156
161
|
end
|
162
|
+
|
163
|
+
if attributes.has_key?(:'user_id')
|
164
|
+
self.user_id = attributes[:'user_id']
|
165
|
+
end
|
157
166
|
end
|
158
167
|
|
159
168
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -196,7 +205,8 @@ module UltracartClient
|
|
196
205
|
display_name == o.display_name &&
|
197
206
|
name == o.name &&
|
198
207
|
profile_image_upload_key == o.profile_image_upload_key &&
|
199
|
-
profile_image_url == o.profile_image_url
|
208
|
+
profile_image_url == o.profile_image_url &&
|
209
|
+
user_id == o.user_id
|
200
210
|
end
|
201
211
|
|
202
212
|
# @see the `==` method
|
@@ -208,7 +218,7 @@ module UltracartClient
|
|
208
218
|
# Calculates hash code according to all attributes.
|
209
219
|
# @return [Fixnum] Hash code
|
210
220
|
def hash
|
211
|
-
[ai, ai_chat_instructions, ai_persona, ai_sms_instructions, chat_limit, default_language_iso_code, default_status, display_name, name, profile_image_upload_key, profile_image_url].hash
|
221
|
+
[ai, ai_chat_instructions, ai_persona, ai_sms_instructions, chat_limit, default_language_iso_code, default_status, display_name, name, profile_image_upload_key, profile_image_url, user_id].hash
|
212
222
|
end
|
213
223
|
|
214
224
|
# Builds the object from hash
|
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: 3.11.
|
4
|
+
version: 3.11.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|