ultracart_api 3.11.25 → 3.11.26
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: 659d4acdfd97dd1c82fe9a03a5fb238a788ab934ef51a7b636f5c3107a99d477
|
|
4
|
+
data.tar.gz: 67b4ab1bc436cac4a6340270fbc92d1ffbebcce2a01a544da4e61fa3f0a741b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f685e32edeeb6281d0aa8b391cba3540fc01808e49284369dde83317f71988e05c455d2da8b157643af701c738db305095bc1894222fc01d907850834461c789
|
|
7
|
+
data.tar.gz: 53ddb1604a233e13ed2fe86763ffd12b7b3bf5159e8198d94a61bf05b653b8b2ba48dda5a46f8e0b2438aa35ac427d85b92349ea3f06918991f962af1bd0ee29
|
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.26
|
|
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.26.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.26.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.26'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1589,6 +1589,7 @@ Not every change is committed to every SDK.
|
|
|
1589
1589
|
|
|
1590
1590
|
| Version | Date | Comments |
|
|
1591
1591
|
| --: | :-: | --- |
|
|
1592
|
+
| 3.11.26 | 10/20/2025 | conversation api bug fixes |
|
|
1592
1593
|
| 3.11.25 | 10/20/2025 | conversation api bug fix for bad url on agent profile kb upload |
|
|
1593
1594
|
| 3.11.24 | 10/20/2025 | new perm flag on conversation virtual agent capabilities |
|
|
1594
1595
|
| 3.11.23 | 10/14/2025 | CustomerApi.deleteWishlistItem bug fix for bad response type |
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
## Properties
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
|
-
**
|
|
6
|
+
**conversation_knowledge_base_document_upload_url** | [**ConversationKnowledgeBaseDocumentUploadUrl**](ConversationKnowledgeBaseDocumentUploadUrl.md) | | [optional]
|
|
7
7
|
**error** | [**Error**](Error.md) | | [optional]
|
|
8
8
|
**metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
|
|
9
9
|
**success** | **BOOLEAN** | Indicates if API call was successful | [optional]
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
|
|
15
15
|
module UltracartClient
|
|
16
16
|
class ConversationKnowledgeBaseDocumentUploadUrlResponse
|
|
17
|
-
attr_accessor :
|
|
17
|
+
attr_accessor :conversation_knowledge_base_document_upload_url
|
|
18
18
|
|
|
19
19
|
attr_accessor :error
|
|
20
20
|
|
|
@@ -28,7 +28,7 @@ module UltracartClient
|
|
|
28
28
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
29
29
|
def self.attribute_map
|
|
30
30
|
{
|
|
31
|
-
:'
|
|
31
|
+
:'conversation_knowledge_base_document_upload_url' => :'conversation_knowledge_base_document_upload_url',
|
|
32
32
|
:'error' => :'error',
|
|
33
33
|
:'metadata' => :'metadata',
|
|
34
34
|
:'success' => :'success',
|
|
@@ -39,7 +39,7 @@ module UltracartClient
|
|
|
39
39
|
# Attribute type mapping.
|
|
40
40
|
def self.swagger_types
|
|
41
41
|
{
|
|
42
|
-
:'
|
|
42
|
+
:'conversation_knowledge_base_document_upload_url' => :'ConversationKnowledgeBaseDocumentUploadUrl',
|
|
43
43
|
:'error' => :'Error',
|
|
44
44
|
:'metadata' => :'ResponseMetadata',
|
|
45
45
|
:'success' => :'BOOLEAN',
|
|
@@ -55,8 +55,8 @@ module UltracartClient
|
|
|
55
55
|
# convert string to symbol for hash key
|
|
56
56
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
57
57
|
|
|
58
|
-
if attributes.has_key?(:'
|
|
59
|
-
self.
|
|
58
|
+
if attributes.has_key?(:'conversation_knowledge_base_document_upload_url')
|
|
59
|
+
self.conversation_knowledge_base_document_upload_url = attributes[:'conversation_knowledge_base_document_upload_url']
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
if attributes.has_key?(:'error')
|
|
@@ -94,7 +94,7 @@ module UltracartClient
|
|
|
94
94
|
def ==(o)
|
|
95
95
|
return true if self.equal?(o)
|
|
96
96
|
self.class == o.class &&
|
|
97
|
-
|
|
97
|
+
conversation_knowledge_base_document_upload_url == o.conversation_knowledge_base_document_upload_url &&
|
|
98
98
|
error == o.error &&
|
|
99
99
|
metadata == o.metadata &&
|
|
100
100
|
success == o.success &&
|
|
@@ -110,7 +110,7 @@ module UltracartClient
|
|
|
110
110
|
# Calculates hash code according to all attributes.
|
|
111
111
|
# @return [Fixnum] Hash code
|
|
112
112
|
def hash
|
|
113
|
-
[
|
|
113
|
+
[conversation_knowledge_base_document_upload_url, error, metadata, success, warning].hash
|
|
114
114
|
end
|
|
115
115
|
|
|
116
116
|
# Builds the object from hash
|