ultracart_api 4.1.148 → 4.1.149

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: ba4977a62acb33c11fa5fc16903ffa679e996f053ca6c5920f6d2f8c450c6cce
4
- data.tar.gz: f8805e823b86f7ae7b56b86e2ab8dd52aec339076104437c81cfed9610dab404
3
+ metadata.gz: 71461d87297dd61cd8b212f7e86a89af3144f492994ca90a4fab5ad08b4db9d1
4
+ data.tar.gz: 357a5dc3fb26ccf88588890414df5ff9a7a768f760eca109c7f7d0e838fcfdcc
5
5
  SHA512:
6
- metadata.gz: 5c2d29199eb34ebb2d86c3071c7c185ffaf2f077f8206be73906468424bd21406c26615c26daec6a3e443022dabb5b1fd66cb5a01a2a5b069171d6439af75702
7
- data.tar.gz: d51e2f0a95eea2719be0767245cb3a203dbf13b79f2627169165c317f91e9e134a948b4dcee4c70d00319f4b165a0200270b64857bb2955334f964e31999e442
6
+ metadata.gz: ac9c12c51c8144c467f55a0256ee935c1de887fe64afa8de8e05751b47b64f4fcde2ce1a408f84ba84530eb8ff167da88cfe8774f3197a71faa69d49cbd98edb
7
+ data.tar.gz: 57e4372e9a87108a17f4dac7482f65086a5e46f9c5f483776f036727e35b790a9e17a417f9d57c0a8f77132792face08d9539680c4de8bde172605c1f727a899
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.148
10
+ - Package version: 4.1.149
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.148'
19
+ gem 'ultracart_api', '4.1.149'
20
20
  ```
21
21
 
22
22
  install:
@@ -1928,6 +1928,7 @@ Not every change is committed to every SDK.
1928
1928
 
1929
1929
  | Version | Date | Comments |
1930
1930
  | --: | :-: | --- |
1931
+ | 4.1.149 | 09/04/2026 | conversations - added ai agent capabilities |
1931
1932
  | 4.1.148 | 09/04/2026 | conversations - added ai agent capabilities |
1932
1933
  | 4.1.147 | 09/04/2026 | sfvb - internal testing |
1933
1934
  | 4.1.146 | 09/03/2026 | sfvb - internal testing |
@@ -7,7 +7,7 @@
7
7
  | **access_custom_collections** | **Boolean** | Permission flag to allow this Agent to search the merchant's custom Typesense collections. | [optional] |
8
8
  | **access_storefront_and_item** | **Boolean** | Permission flag to allow this Agent access to the storefront and item information. | [optional] |
9
9
  | **cancel_subscription** | **Boolean** | | [optional] |
10
- | **custom_collection_oids** | **Object** | The custom collections this Agent is allowed to search. Empty means none, even when access_custom_collections is true. | [optional] |
10
+ | **custom_collection_oids** | **Array<Integer>** | The custom collections this Agent is allowed to search. Empty means none, even when access_custom_collections is true. | [optional] |
11
11
  | **custom_collections** | [**Array<ConversationVirtualAgentCapabilityCustomCollection>**](ConversationVirtualAgentCapabilityCustomCollection.md) | Read only. All of the merchant's custom collections, to populate the selection list for custom_collection_oids. Changes here are ignored. | [optional] |
12
12
  | **delay_subscription** | **Boolean** | | [optional] |
13
13
  | **generate_coupon** | **Boolean** | Permission flag to allow this Agent to generate coupons based upon the agent prompt instructions | [optional] |
@@ -121,7 +121,7 @@ module UltracartClient
121
121
  :'access_custom_collections' => :'Boolean',
122
122
  :'access_storefront_and_item' => :'Boolean',
123
123
  :'cancel_subscription' => :'Boolean',
124
- :'custom_collection_oids' => :'Object',
124
+ :'custom_collection_oids' => :'Array<Integer>',
125
125
  :'custom_collections' => :'Array<ConversationVirtualAgentCapabilityCustomCollection>',
126
126
  :'delay_subscription' => :'Boolean',
127
127
  :'generate_coupon' => :'Boolean',
@@ -174,7 +174,9 @@ module UltracartClient
174
174
  end
175
175
 
176
176
  if attributes.key?(:'custom_collection_oids')
177
- self.custom_collection_oids = attributes[:'custom_collection_oids']
177
+ if (value = attributes[:'custom_collection_oids']).is_a?(Array)
178
+ self.custom_collection_oids = value
179
+ end
178
180
  end
179
181
 
180
182
  if attributes.key?(:'custom_collections')
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.148'
14
+ VERSION = '4.1.149'
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.148
4
+ version: 4.1.149
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart