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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71461d87297dd61cd8b212f7e86a89af3144f492994ca90a4fab5ad08b4db9d1
|
|
4
|
+
data.tar.gz: 357a5dc3fb26ccf88588890414df5ff9a7a768f760eca109c7f7d0e838fcfdcc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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** | **
|
|
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' => :'
|
|
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
|
-
|
|
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')
|