ultracart_api 4.1.37 → 4.1.38

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: 62f423d8f4f532385e804e51e3dcff23522142ec1fb9f222f7b25a132f3407e2
4
- data.tar.gz: 1e01b1992f140ca9176c48068949737479ffaf31cb8aafd125774bc33806def9
3
+ metadata.gz: 9a39ebfd58acb768a74264263c7e00232ca9f78eb73a2bc2ad8cc65c053fe680
4
+ data.tar.gz: 594ba501ac80013a5f83447d340940dcc07ba4c95e45db8c19e87d825a4d230e
5
5
  SHA512:
6
- metadata.gz: a1d2f873decaa070a3339d13cd67fae22398b2a2fec6abb57d159257009583688ca1d77bb15382952a8f9164d8968ca1e41d59d40272b70de5ff318beac0c985
7
- data.tar.gz: a1f1e068c769f6c984495d3a1c68b48552f4e22338cce8a4dc6aad4f580e95d533472c82b9c4744d25ed6addf66d67e9fde826a739642d4d1d56ef5da8c03d74
6
+ metadata.gz: 83f465bc5aaa1c50d99dc7205cc05be9885f19da4fcd27709e2e367e914a8f737e7bb62808290c8bd21081e6a7e0d3255df3859ccf79aaee8d56754fa66d6b12
7
+ data.tar.gz: 3186e35b19e3be57a441cb03970f1831166a44f62d7bc6d4dd91e4d9b6e3d32426600c6a6203959f9c3ed67f13dbf8edf255d6fdd27f715d94e0809789c8f22c
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.37
10
+ - Package version: 4.1.38
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.37'
19
+ gem 'ultracart_api', '4.1.38'
20
20
  ```
21
21
 
22
22
  install:
@@ -1603,6 +1603,7 @@ Not every change is committed to every SDK.
1603
1603
 
1604
1604
  | Version | Date | Comments |
1605
1605
  | --: | :-: | --- |
1606
+ | 4.1.38 | 12/29/2025 | conversations - AI agent level capabilities |
1606
1607
  | 4.1.37 | 12/29/2025 | conversations - pbx agent AI flag |
1607
1608
  | 4.1.36 | 12/22/2025 | conversation - agent auth worker token v2 |
1608
1609
  | 4.1.35 | 12/02/2025 | caching option added to getCustomers, created new method searchCustomers |
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **ai** | **Boolean** | AI powered chat bot | [optional] |
8
+ | **ai_capabilities** | [**ConversationVirtualAgentCapabilities**](ConversationVirtualAgentCapabilities.md) | | [optional] |
8
9
  | **ai_chat_instructions** | **String** | Additional instructions for this AI when handle web chats | [optional] |
9
10
  | **ai_persona** | **String** | Persona of this AI agent | [optional] |
10
11
  | **ai_sms_instructions** | **String** | Additional instructions for this AI when handle SMS messages | [optional] |
@@ -27,6 +28,7 @@ require 'ultracart_api'
27
28
 
28
29
  instance = UltracartClient::ConversationAgentProfile.new(
29
30
  ai: null,
31
+ ai_capabilities: null,
30
32
  ai_chat_instructions: null,
31
33
  ai_persona: null,
32
34
  ai_sms_instructions: null,
@@ -18,6 +18,8 @@ module UltracartClient
18
18
  # AI powered chat bot
19
19
  attr_accessor :ai
20
20
 
21
+ attr_accessor :ai_capabilities
22
+
21
23
  # Additional instructions for this AI when handle web chats
22
24
  attr_accessor :ai_chat_instructions
23
25
 
@@ -86,6 +88,7 @@ module UltracartClient
86
88
  def self.attribute_map
87
89
  {
88
90
  :'ai' => :'ai',
91
+ :'ai_capabilities' => :'ai_capabilities',
89
92
  :'ai_chat_instructions' => :'ai_chat_instructions',
90
93
  :'ai_persona' => :'ai_persona',
91
94
  :'ai_sms_instructions' => :'ai_sms_instructions',
@@ -112,6 +115,7 @@ module UltracartClient
112
115
  def self.openapi_types
113
116
  {
114
117
  :'ai' => :'Boolean',
118
+ :'ai_capabilities' => :'ConversationVirtualAgentCapabilities',
115
119
  :'ai_chat_instructions' => :'String',
116
120
  :'ai_persona' => :'String',
117
121
  :'ai_sms_instructions' => :'String',
@@ -154,6 +158,10 @@ module UltracartClient
154
158
  self.ai = attributes[:'ai']
155
159
  end
156
160
 
161
+ if attributes.key?(:'ai_capabilities')
162
+ self.ai_capabilities = attributes[:'ai_capabilities']
163
+ end
164
+
157
165
  if attributes.key?(:'ai_chat_instructions')
158
166
  self.ai_chat_instructions = attributes[:'ai_chat_instructions']
159
167
  end
@@ -246,6 +254,7 @@ module UltracartClient
246
254
  return true if self.equal?(o)
247
255
  self.class == o.class &&
248
256
  ai == o.ai &&
257
+ ai_capabilities == o.ai_capabilities &&
249
258
  ai_chat_instructions == o.ai_chat_instructions &&
250
259
  ai_persona == o.ai_persona &&
251
260
  ai_sms_instructions == o.ai_sms_instructions &&
@@ -271,7 +280,7 @@ module UltracartClient
271
280
  # Calculates hash code according to all attributes.
272
281
  # @return [Integer] Hash code
273
282
  def 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
283
+ [ai, ai_capabilities, 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
275
284
  end
276
285
 
277
286
  # 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.37'
14
+ VERSION = '4.1.38'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.37
4
+ version: 4.1.38
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart