ultracart_api 3.11.32 → 3.11.33
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 +3 -0
- data/lib/ultracart_api/models/conversation_agent_profile.rb +38 -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: d508630490dcc323c85795f81f82eb287507dc1fd2f0364b23265aae228d9f34
|
|
4
|
+
data.tar.gz: 278463342c54274fdc77271d5cea1f56dfa628b55102bdbfcec328da07ea0547
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ab7d5fd8f7846ff9c6f6c097dfd849690fa15af0d4a2836a8a3704ce4f43f1d3d2dd1c0e6a25e3fc99b5ba54715da8885ab71b96aa976c2a3a0131871ac841e
|
|
7
|
+
data.tar.gz: 36089124805452a530233b7253e4e7ed0fe4354959fa12f15b3f1c4265594f14fc9e0f9b64a055edc1a51941181ec0b6818175ddeac1c377126d311d334e7989
|
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.33
|
|
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.33.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.33.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.33'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1601,6 +1601,7 @@ Not every change is committed to every SDK.
|
|
|
1601
1601
|
|
|
1602
1602
|
| Version | Date | Comments |
|
|
1603
1603
|
| --: | :-: | --- |
|
|
1604
|
+
| 3.11.33 | 11/26/2025 | conversation - AI agent profile fields |
|
|
1604
1605
|
| 3.11.32 | 11/20/2025 | conversion api bug fix on incorrect signature |
|
|
1605
1606
|
| 3.11.31 | 11/20/2025 | conversation - AI agent mcp server tools function |
|
|
1606
1607
|
| 3.11.30 | 11/19/2025 | conversation - AI agent MCP server configuration methods |
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**ai_chat_instructions** | **String** | Additional instructions for this AI when handle web chats | [optional]
|
|
8
8
|
**ai_persona** | **String** | Persona of this AI agent | [optional]
|
|
9
9
|
**ai_sms_instructions** | **String** | Additional instructions for this AI when handle SMS messages | [optional]
|
|
10
|
+
**ai_ticket_instructions** | **String** | Additional instructions for this AI when handling ticket draft replies | [optional]
|
|
10
11
|
**chat_limit** | **Integer** | The number of engagement chats that can be pushed on them at any given time. | [optional]
|
|
11
12
|
**default_language_iso_code** | **String** | The default language the agent is chatting in | [optional]
|
|
12
13
|
**default_status** | **String** | Default status when the agent loads conversations app. | [optional]
|
|
@@ -15,5 +16,7 @@ Name | Type | Description | Notes
|
|
|
15
16
|
**profile_image_upload_key** | **String** | An upload key used to update the profile image. | [optional]
|
|
16
17
|
**profile_image_url** | **String** | Their current profile image URL | [optional]
|
|
17
18
|
**user_id** | **Integer** | User ID associated with the agent. Populated by getAgentProfiles call only. | [optional]
|
|
19
|
+
**zohodesk_classifications** | **Array<String>** | Restrict this agent to drafting replies only to tickets with these classifications | [optional]
|
|
20
|
+
**zohodesk_departments** | **Array<String>** | Restrict this agent to drafting replies only to these department ids | [optional]
|
|
18
21
|
|
|
19
22
|
|
|
@@ -26,6 +26,9 @@ module UltracartClient
|
|
|
26
26
|
# Additional instructions for this AI when handle SMS messages
|
|
27
27
|
attr_accessor :ai_sms_instructions
|
|
28
28
|
|
|
29
|
+
# Additional instructions for this AI when handling ticket draft replies
|
|
30
|
+
attr_accessor :ai_ticket_instructions
|
|
31
|
+
|
|
29
32
|
# The number of engagement chats that can be pushed on them at any given time.
|
|
30
33
|
attr_accessor :chat_limit
|
|
31
34
|
|
|
@@ -50,6 +53,12 @@ module UltracartClient
|
|
|
50
53
|
# User ID associated with the agent. Populated by getAgentProfiles call only.
|
|
51
54
|
attr_accessor :user_id
|
|
52
55
|
|
|
56
|
+
# Restrict this agent to drafting replies only to tickets with these classifications
|
|
57
|
+
attr_accessor :zohodesk_classifications
|
|
58
|
+
|
|
59
|
+
# Restrict this agent to drafting replies only to these department ids
|
|
60
|
+
attr_accessor :zohodesk_departments
|
|
61
|
+
|
|
53
62
|
class EnumAttributeValidator
|
|
54
63
|
attr_reader :datatype
|
|
55
64
|
attr_reader :allowable_values
|
|
@@ -79,6 +88,7 @@ module UltracartClient
|
|
|
79
88
|
:'ai_chat_instructions' => :'ai_chat_instructions',
|
|
80
89
|
:'ai_persona' => :'ai_persona',
|
|
81
90
|
:'ai_sms_instructions' => :'ai_sms_instructions',
|
|
91
|
+
:'ai_ticket_instructions' => :'ai_ticket_instructions',
|
|
82
92
|
:'chat_limit' => :'chat_limit',
|
|
83
93
|
:'default_language_iso_code' => :'default_language_iso_code',
|
|
84
94
|
:'default_status' => :'default_status',
|
|
@@ -86,7 +96,9 @@ module UltracartClient
|
|
|
86
96
|
:'name' => :'name',
|
|
87
97
|
:'profile_image_upload_key' => :'profile_image_upload_key',
|
|
88
98
|
:'profile_image_url' => :'profile_image_url',
|
|
89
|
-
:'user_id' => :'user_id'
|
|
99
|
+
:'user_id' => :'user_id',
|
|
100
|
+
:'zohodesk_classifications' => :'zohodesk_classifications',
|
|
101
|
+
:'zohodesk_departments' => :'zohodesk_departments'
|
|
90
102
|
}
|
|
91
103
|
end
|
|
92
104
|
|
|
@@ -97,6 +109,7 @@ module UltracartClient
|
|
|
97
109
|
:'ai_chat_instructions' => :'String',
|
|
98
110
|
:'ai_persona' => :'String',
|
|
99
111
|
:'ai_sms_instructions' => :'String',
|
|
112
|
+
:'ai_ticket_instructions' => :'String',
|
|
100
113
|
:'chat_limit' => :'Integer',
|
|
101
114
|
:'default_language_iso_code' => :'String',
|
|
102
115
|
:'default_status' => :'String',
|
|
@@ -104,7 +117,9 @@ module UltracartClient
|
|
|
104
117
|
:'name' => :'String',
|
|
105
118
|
:'profile_image_upload_key' => :'String',
|
|
106
119
|
:'profile_image_url' => :'String',
|
|
107
|
-
:'user_id' => :'Integer'
|
|
120
|
+
:'user_id' => :'Integer',
|
|
121
|
+
:'zohodesk_classifications' => :'Array<String>',
|
|
122
|
+
:'zohodesk_departments' => :'Array<String>'
|
|
108
123
|
}
|
|
109
124
|
end
|
|
110
125
|
|
|
@@ -132,6 +147,10 @@ module UltracartClient
|
|
|
132
147
|
self.ai_sms_instructions = attributes[:'ai_sms_instructions']
|
|
133
148
|
end
|
|
134
149
|
|
|
150
|
+
if attributes.has_key?(:'ai_ticket_instructions')
|
|
151
|
+
self.ai_ticket_instructions = attributes[:'ai_ticket_instructions']
|
|
152
|
+
end
|
|
153
|
+
|
|
135
154
|
if attributes.has_key?(:'chat_limit')
|
|
136
155
|
self.chat_limit = attributes[:'chat_limit']
|
|
137
156
|
end
|
|
@@ -163,6 +182,18 @@ module UltracartClient
|
|
|
163
182
|
if attributes.has_key?(:'user_id')
|
|
164
183
|
self.user_id = attributes[:'user_id']
|
|
165
184
|
end
|
|
185
|
+
|
|
186
|
+
if attributes.has_key?(:'zohodesk_classifications')
|
|
187
|
+
if (value = attributes[:'zohodesk_classifications']).is_a?(Array)
|
|
188
|
+
self.zohodesk_classifications = value
|
|
189
|
+
end
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
if attributes.has_key?(:'zohodesk_departments')
|
|
193
|
+
if (value = attributes[:'zohodesk_departments']).is_a?(Array)
|
|
194
|
+
self.zohodesk_departments = value
|
|
195
|
+
end
|
|
196
|
+
end
|
|
166
197
|
end
|
|
167
198
|
|
|
168
199
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -199,6 +230,7 @@ module UltracartClient
|
|
|
199
230
|
ai_chat_instructions == o.ai_chat_instructions &&
|
|
200
231
|
ai_persona == o.ai_persona &&
|
|
201
232
|
ai_sms_instructions == o.ai_sms_instructions &&
|
|
233
|
+
ai_ticket_instructions == o.ai_ticket_instructions &&
|
|
202
234
|
chat_limit == o.chat_limit &&
|
|
203
235
|
default_language_iso_code == o.default_language_iso_code &&
|
|
204
236
|
default_status == o.default_status &&
|
|
@@ -206,7 +238,9 @@ module UltracartClient
|
|
|
206
238
|
name == o.name &&
|
|
207
239
|
profile_image_upload_key == o.profile_image_upload_key &&
|
|
208
240
|
profile_image_url == o.profile_image_url &&
|
|
209
|
-
user_id == o.user_id
|
|
241
|
+
user_id == o.user_id &&
|
|
242
|
+
zohodesk_classifications == o.zohodesk_classifications &&
|
|
243
|
+
zohodesk_departments == o.zohodesk_departments
|
|
210
244
|
end
|
|
211
245
|
|
|
212
246
|
# @see the `==` method
|
|
@@ -218,7 +252,7 @@ module UltracartClient
|
|
|
218
252
|
# Calculates hash code according to all attributes.
|
|
219
253
|
# @return [Fixnum] Hash code
|
|
220
254
|
def 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
|
|
255
|
+
[ai, ai_chat_instructions, ai_persona, ai_sms_instructions, ai_ticket_instructions, chat_limit, default_language_iso_code, default_status, display_name, name, profile_image_upload_key, profile_image_url, user_id, zohodesk_classifications, zohodesk_departments].hash
|
|
222
256
|
end
|
|
223
257
|
|
|
224
258
|
# 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.33
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|