ultracart_api 4.1.9 → 4.1.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 +3 -2
- data/docs/ConversationAgentProfile.md +3 -1
- 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: b01ac862096e8fd63e87cc60bc013c7b30d97c365616ccc9efde2ed9aeb94af3
|
4
|
+
data.tar.gz: 25b1395b09358ccf57ebeb6787e36f0d63690591f90a22ef53f5fbd7e89afe23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa5bf1ac30d606b75f2a268899d362f72974848524e82fc87a0f72b9b399bf37ae089c86569687daf6682d8b874598b86be8fe93eec25dfc9d34fd5759543b10
|
7
|
+
data.tar.gz: 1ecc02e30a1a4c1e006b2d73d6d20843cd07547ee80334489b5a5cee4ed42a723a96a47167d458e661d40fff313d1f239a13f3e3c68c35ab5adecd25ae9fc17b
|
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.
|
10
|
+
- Package version: 4.1.10
|
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.
|
19
|
+
gem 'ultracart_api', '4.1.10'
|
20
20
|
```
|
21
21
|
|
22
22
|
install:
|
@@ -1522,6 +1522,7 @@ Not every change is committed to every SDK.
|
|
1522
1522
|
|
1523
1523
|
| Version | Date | Comments |
|
1524
1524
|
| --: | :-: | --- |
|
1525
|
+
| 4.1.10 | 05/06/2025 | conversation - ConversationAgentProfile.user_id added for agent profiles call |
|
1525
1526
|
| 4.1.9 | 05/05/2025 | conversations - method to fetch all agent profiles for admin screens |
|
1526
1527
|
| 4.1.8 | 04/22/2025 | order property fields for created_by and created_dts |
|
1527
1528
|
| 4.1.7 | 04/21/2025 | conversation agent additional fields |
|
@@ -15,6 +15,7 @@
|
|
15
15
|
| **name** | **String** | Their actual user name for profile settings display as placeholder test | [optional] |
|
16
16
|
| **profile_image_upload_key** | **String** | An upload key used to update the profile image. | [optional] |
|
17
17
|
| **profile_image_url** | **String** | Their current profile image URL | [optional] |
|
18
|
+
| **user_id** | **Integer** | User ID associated with the agent. Populated by getAgentProfiles call only. | [optional] |
|
18
19
|
|
19
20
|
## Example
|
20
21
|
|
@@ -32,7 +33,8 @@ instance = UltracartClient::ConversationAgentProfile.new(
|
|
32
33
|
display_name: null,
|
33
34
|
name: null,
|
34
35
|
profile_image_upload_key: null,
|
35
|
-
profile_image_url: null
|
36
|
+
profile_image_url: null,
|
37
|
+
user_id: null
|
36
38
|
)
|
37
39
|
```
|
38
40
|
|
@@ -48,6 +48,9 @@ module UltracartClient
|
|
48
48
|
# Their current profile image URL
|
49
49
|
attr_accessor :profile_image_url
|
50
50
|
|
51
|
+
# User ID associated with the agent. Populated by getAgentProfiles call only.
|
52
|
+
attr_accessor :user_id
|
53
|
+
|
51
54
|
class EnumAttributeValidator
|
52
55
|
attr_reader :datatype
|
53
56
|
attr_reader :allowable_values
|
@@ -83,7 +86,8 @@ module UltracartClient
|
|
83
86
|
:'display_name' => :'display_name',
|
84
87
|
:'name' => :'name',
|
85
88
|
:'profile_image_upload_key' => :'profile_image_upload_key',
|
86
|
-
:'profile_image_url' => :'profile_image_url'
|
89
|
+
:'profile_image_url' => :'profile_image_url',
|
90
|
+
:'user_id' => :'user_id'
|
87
91
|
}
|
88
92
|
end
|
89
93
|
|
@@ -105,7 +109,8 @@ module UltracartClient
|
|
105
109
|
:'display_name' => :'String',
|
106
110
|
:'name' => :'String',
|
107
111
|
:'profile_image_upload_key' => :'String',
|
108
|
-
:'profile_image_url' => :'String'
|
112
|
+
:'profile_image_url' => :'String',
|
113
|
+
:'user_id' => :'Integer'
|
109
114
|
}
|
110
115
|
end
|
111
116
|
|
@@ -173,6 +178,10 @@ module UltracartClient
|
|
173
178
|
if attributes.key?(:'profile_image_url')
|
174
179
|
self.profile_image_url = attributes[:'profile_image_url']
|
175
180
|
end
|
181
|
+
|
182
|
+
if attributes.key?(:'user_id')
|
183
|
+
self.user_id = attributes[:'user_id']
|
184
|
+
end
|
176
185
|
end
|
177
186
|
|
178
187
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -215,7 +224,8 @@ module UltracartClient
|
|
215
224
|
display_name == o.display_name &&
|
216
225
|
name == o.name &&
|
217
226
|
profile_image_upload_key == o.profile_image_upload_key &&
|
218
|
-
profile_image_url == o.profile_image_url
|
227
|
+
profile_image_url == o.profile_image_url &&
|
228
|
+
user_id == o.user_id
|
219
229
|
end
|
220
230
|
|
221
231
|
# @see the `==` method
|
@@ -227,7 +237,7 @@ module UltracartClient
|
|
227
237
|
# Calculates hash code according to all attributes.
|
228
238
|
# @return [Integer] Hash code
|
229
239
|
def hash
|
230
|
-
[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
|
240
|
+
[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
|
231
241
|
end
|
232
242
|
|
233
243
|
# 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: 4.1.
|
4
|
+
version: 4.1.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
|