ultracart_api 4.1.32 → 4.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5dd2120acc8bd531fa99107eab944d390ae6f6f19bada818cc09931433468df
4
- data.tar.gz: 85d07c8f1a3c389c125b3daaafc100e83c7b7ba5157089953eb00cbc6ab59ec7
3
+ metadata.gz: 6bd605fcee263cc35c856f6df50be7ece87bbe5683b86c54e7a2366e91639998
4
+ data.tar.gz: 01eea49791850f1d4d8f416fe780cc57bdd31ca194dfa5b7b4f75518c47c9aa1
5
5
  SHA512:
6
- metadata.gz: 5caf8bae69eb3d5567ef463af247f386af9f31f4abfd314fb1a97fcd1cb730167d5d09de779ac10f8729e28a25ace42600f2c76281eca077a8afec2c66f838e1
7
- data.tar.gz: d4dabc6c138700d44d8b34d414896bed7933dac7d2391f206b435879925c1365227fdb2aa944bca9b1c3febfe9d351dad3745d3b420d13ef907635eb6814cdc4
6
+ metadata.gz: 349154cee847c3ec826108d90022a9957d1f18936c0882a78987934544f28ffd8a4ece78e2f4eef8bcefa8004685cf737aed6f260ed5f6bdaf5cc2e3c3e44807
7
+ data.tar.gz: 833b98cb8d450c8cc0b1138d1dd622cfb79e69dad04a055cb8bd153d4aa7b8426922d91656d346bc0a84ec29fce407dff42cb6543c44483df063fe08a928d22c
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.32
10
+ - Package version: 4.1.33
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.32'
19
+ gem 'ultracart_api', '4.1.33'
20
20
  ```
21
21
 
22
22
  install:
@@ -1599,6 +1599,7 @@ Not every change is committed to every SDK.
1599
1599
 
1600
1600
  | Version | Date | Comments |
1601
1601
  | --: | :-: | --- |
1602
+ | 4.1.33 | 11/26/2025 | conversation - AI agent profile fields |
1602
1603
  | 4.1.32 | 11/20/2025 | conversion api bug fix on incorrect signature |
1603
1604
  | 4.1.31 | 11/20/2025 | conversation - AI agent mcp server tools function |
1604
1605
  | 4.1.30 | 11/19/2025 | conversation - AI agent MCP server configuration methods |
@@ -8,6 +8,7 @@
8
8
  | **ai_chat_instructions** | **String** | Additional instructions for this AI when handle web chats | [optional] |
9
9
  | **ai_persona** | **String** | Persona of this AI agent | [optional] |
10
10
  | **ai_sms_instructions** | **String** | Additional instructions for this AI when handle SMS messages | [optional] |
11
+ | **ai_ticket_instructions** | **String** | Additional instructions for this AI when handling ticket draft replies | [optional] |
11
12
  | **chat_limit** | **Integer** | The number of engagement chats that can be pushed on them at any given time. | [optional] |
12
13
  | **default_language_iso_code** | **String** | The default language the agent is chatting in | [optional] |
13
14
  | **default_status** | **String** | Default status when the agent loads conversations app. | [optional] |
@@ -16,6 +17,8 @@
16
17
  | **profile_image_upload_key** | **String** | An upload key used to update the profile image. | [optional] |
17
18
  | **profile_image_url** | **String** | Their current profile image URL | [optional] |
18
19
  | **user_id** | **Integer** | User ID associated with the agent. Populated by getAgentProfiles call only. | [optional] |
20
+ | **zohodesk_classifications** | **Array<String>** | Restrict this agent to drafting replies only to tickets with these classifications | [optional] |
21
+ | **zohodesk_departments** | **Array<String>** | Restrict this agent to drafting replies only to these department ids | [optional] |
19
22
 
20
23
  ## Example
21
24
 
@@ -27,6 +30,7 @@ instance = UltracartClient::ConversationAgentProfile.new(
27
30
  ai_chat_instructions: null,
28
31
  ai_persona: null,
29
32
  ai_sms_instructions: null,
33
+ ai_ticket_instructions: null,
30
34
  chat_limit: null,
31
35
  default_language_iso_code: null,
32
36
  default_status: null,
@@ -34,7 +38,9 @@ instance = UltracartClient::ConversationAgentProfile.new(
34
38
  name: null,
35
39
  profile_image_upload_key: null,
36
40
  profile_image_url: null,
37
- user_id: null
41
+ user_id: null,
42
+ zohodesk_classifications: null,
43
+ zohodesk_departments: null
38
44
  )
39
45
  ```
40
46
 
@@ -27,6 +27,9 @@ module UltracartClient
27
27
  # Additional instructions for this AI when handle SMS messages
28
28
  attr_accessor :ai_sms_instructions
29
29
 
30
+ # Additional instructions for this AI when handling ticket draft replies
31
+ attr_accessor :ai_ticket_instructions
32
+
30
33
  # The number of engagement chats that can be pushed on them at any given time.
31
34
  attr_accessor :chat_limit
32
35
 
@@ -51,6 +54,12 @@ module UltracartClient
51
54
  # User ID associated with the agent. Populated by getAgentProfiles call only.
52
55
  attr_accessor :user_id
53
56
 
57
+ # Restrict this agent to drafting replies only to tickets with these classifications
58
+ attr_accessor :zohodesk_classifications
59
+
60
+ # Restrict this agent to drafting replies only to these department ids
61
+ attr_accessor :zohodesk_departments
62
+
54
63
  class EnumAttributeValidator
55
64
  attr_reader :datatype
56
65
  attr_reader :allowable_values
@@ -80,6 +89,7 @@ module UltracartClient
80
89
  :'ai_chat_instructions' => :'ai_chat_instructions',
81
90
  :'ai_persona' => :'ai_persona',
82
91
  :'ai_sms_instructions' => :'ai_sms_instructions',
92
+ :'ai_ticket_instructions' => :'ai_ticket_instructions',
83
93
  :'chat_limit' => :'chat_limit',
84
94
  :'default_language_iso_code' => :'default_language_iso_code',
85
95
  :'default_status' => :'default_status',
@@ -87,7 +97,9 @@ module UltracartClient
87
97
  :'name' => :'name',
88
98
  :'profile_image_upload_key' => :'profile_image_upload_key',
89
99
  :'profile_image_url' => :'profile_image_url',
90
- :'user_id' => :'user_id'
100
+ :'user_id' => :'user_id',
101
+ :'zohodesk_classifications' => :'zohodesk_classifications',
102
+ :'zohodesk_departments' => :'zohodesk_departments'
91
103
  }
92
104
  end
93
105
 
@@ -103,6 +115,7 @@ module UltracartClient
103
115
  :'ai_chat_instructions' => :'String',
104
116
  :'ai_persona' => :'String',
105
117
  :'ai_sms_instructions' => :'String',
118
+ :'ai_ticket_instructions' => :'String',
106
119
  :'chat_limit' => :'Integer',
107
120
  :'default_language_iso_code' => :'String',
108
121
  :'default_status' => :'String',
@@ -110,7 +123,9 @@ module UltracartClient
110
123
  :'name' => :'String',
111
124
  :'profile_image_upload_key' => :'String',
112
125
  :'profile_image_url' => :'String',
113
- :'user_id' => :'Integer'
126
+ :'user_id' => :'Integer',
127
+ :'zohodesk_classifications' => :'Array<String>',
128
+ :'zohodesk_departments' => :'Array<String>'
114
129
  }
115
130
  end
116
131
 
@@ -151,6 +166,10 @@ module UltracartClient
151
166
  self.ai_sms_instructions = attributes[:'ai_sms_instructions']
152
167
  end
153
168
 
169
+ if attributes.key?(:'ai_ticket_instructions')
170
+ self.ai_ticket_instructions = attributes[:'ai_ticket_instructions']
171
+ end
172
+
154
173
  if attributes.key?(:'chat_limit')
155
174
  self.chat_limit = attributes[:'chat_limit']
156
175
  end
@@ -182,6 +201,18 @@ module UltracartClient
182
201
  if attributes.key?(:'user_id')
183
202
  self.user_id = attributes[:'user_id']
184
203
  end
204
+
205
+ if attributes.key?(:'zohodesk_classifications')
206
+ if (value = attributes[:'zohodesk_classifications']).is_a?(Array)
207
+ self.zohodesk_classifications = value
208
+ end
209
+ end
210
+
211
+ if attributes.key?(:'zohodesk_departments')
212
+ if (value = attributes[:'zohodesk_departments']).is_a?(Array)
213
+ self.zohodesk_departments = value
214
+ end
215
+ end
185
216
  end
186
217
 
187
218
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -218,6 +249,7 @@ module UltracartClient
218
249
  ai_chat_instructions == o.ai_chat_instructions &&
219
250
  ai_persona == o.ai_persona &&
220
251
  ai_sms_instructions == o.ai_sms_instructions &&
252
+ ai_ticket_instructions == o.ai_ticket_instructions &&
221
253
  chat_limit == o.chat_limit &&
222
254
  default_language_iso_code == o.default_language_iso_code &&
223
255
  default_status == o.default_status &&
@@ -225,7 +257,9 @@ module UltracartClient
225
257
  name == o.name &&
226
258
  profile_image_upload_key == o.profile_image_upload_key &&
227
259
  profile_image_url == o.profile_image_url &&
228
- user_id == o.user_id
260
+ user_id == o.user_id &&
261
+ zohodesk_classifications == o.zohodesk_classifications &&
262
+ zohodesk_departments == o.zohodesk_departments
229
263
  end
230
264
 
231
265
  # @see the `==` method
@@ -237,7 +271,7 @@ module UltracartClient
237
271
  # Calculates hash code according to all attributes.
238
272
  # @return [Integer] Hash code
239
273
  def 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
274
+ [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
241
275
  end
242
276
 
243
277
  # 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.32'
14
+ VERSION = '4.1.33'
15
15
  end
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.32
4
+ version: 4.1.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-20 00:00:00.000000000 Z
11
+ date: 2025-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus