ultracart_api 4.1.25 → 4.1.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: b9c30bd750b5779abca9af6a58bc0b697ec96abaa6eb625a55cff941b0b6d3ca
|
4
|
+
data.tar.gz: f5f64ecb3abb5413cddb366f0b62d6d5a0a159994e737b4297233d09b74a52a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5addb3ed4d2860124300cf2b7a5c0fba053169a7e0d241e4a059b285a81b32c1735b6794e3beffb55f095aa605067c712db85041851d6d29615e52567433f0f4
|
7
|
+
data.tar.gz: e0af5d0c9e0f1c8775a514b1af8b8e36f721e65f04c8f4aae271128266aab1cbab29e62e1d04c08b496f17c07f9dadf734e7b9aed60c3af4220edf4bd4b3c306
|
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.26
|
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.26'
|
20
20
|
```
|
21
21
|
|
22
22
|
install:
|
@@ -1587,6 +1587,7 @@ Not every change is committed to every SDK.
|
|
1587
1587
|
|
1588
1588
|
| Version | Date | Comments |
|
1589
1589
|
| --: | :-: | --- |
|
1590
|
+
| 4.1.26 | 10/20/2025 | conversation api bug fixes |
|
1590
1591
|
| 4.1.25 | 10/20/2025 | conversation api bug fix for bad url on agent profile kb upload |
|
1591
1592
|
| 4.1.24 | 10/20/2025 | new perm flag on conversation virtual agent capabilities |
|
1592
1593
|
| 4.1.23 | 10/14/2025 | CustomerApi.deleteWishlistItem bug fix for bad response type |
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **
|
7
|
+
| **conversation_knowledge_base_document_upload_url** | [**ConversationKnowledgeBaseDocumentUploadUrl**](ConversationKnowledgeBaseDocumentUploadUrl.md) | | [optional] |
|
8
8
|
| **error** | [**Error**](Error.md) | | [optional] |
|
9
9
|
| **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
|
10
10
|
| **success** | **Boolean** | Indicates if API call was successful | [optional] |
|
@@ -16,7 +16,7 @@
|
|
16
16
|
require 'ultracart_api'
|
17
17
|
|
18
18
|
instance = UltracartClient::ConversationKnowledgeBaseDocumentUploadUrlResponse.new(
|
19
|
-
|
19
|
+
conversation_knowledge_base_document_upload_url: null,
|
20
20
|
error: null,
|
21
21
|
metadata: null,
|
22
22
|
success: null,
|
@@ -15,7 +15,7 @@ require 'time'
|
|
15
15
|
|
16
16
|
module UltracartClient
|
17
17
|
class ConversationKnowledgeBaseDocumentUploadUrlResponse
|
18
|
-
attr_accessor :
|
18
|
+
attr_accessor :conversation_knowledge_base_document_upload_url
|
19
19
|
|
20
20
|
attr_accessor :error
|
21
21
|
|
@@ -29,7 +29,7 @@ module UltracartClient
|
|
29
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
30
30
|
def self.attribute_map
|
31
31
|
{
|
32
|
-
:'
|
32
|
+
:'conversation_knowledge_base_document_upload_url' => :'conversation_knowledge_base_document_upload_url',
|
33
33
|
:'error' => :'error',
|
34
34
|
:'metadata' => :'metadata',
|
35
35
|
:'success' => :'success',
|
@@ -45,7 +45,7 @@ module UltracartClient
|
|
45
45
|
# Attribute type mapping.
|
46
46
|
def self.openapi_types
|
47
47
|
{
|
48
|
-
:'
|
48
|
+
:'conversation_knowledge_base_document_upload_url' => :'ConversationKnowledgeBaseDocumentUploadUrl',
|
49
49
|
:'error' => :'Error',
|
50
50
|
:'metadata' => :'ResponseMetadata',
|
51
51
|
:'success' => :'Boolean',
|
@@ -74,8 +74,8 @@ module UltracartClient
|
|
74
74
|
h[k.to_sym] = v
|
75
75
|
}
|
76
76
|
|
77
|
-
if attributes.key?(:'
|
78
|
-
self.
|
77
|
+
if attributes.key?(:'conversation_knowledge_base_document_upload_url')
|
78
|
+
self.conversation_knowledge_base_document_upload_url = attributes[:'conversation_knowledge_base_document_upload_url']
|
79
79
|
end
|
80
80
|
|
81
81
|
if attributes.key?(:'error')
|
@@ -113,7 +113,7 @@ module UltracartClient
|
|
113
113
|
def ==(o)
|
114
114
|
return true if self.equal?(o)
|
115
115
|
self.class == o.class &&
|
116
|
-
|
116
|
+
conversation_knowledge_base_document_upload_url == o.conversation_knowledge_base_document_upload_url &&
|
117
117
|
error == o.error &&
|
118
118
|
metadata == o.metadata &&
|
119
119
|
success == o.success &&
|
@@ -129,7 +129,7 @@ module UltracartClient
|
|
129
129
|
# Calculates hash code according to all attributes.
|
130
130
|
# @return [Integer] Hash code
|
131
131
|
def hash
|
132
|
-
[
|
132
|
+
[conversation_knowledge_base_document_upload_url, error, metadata, success, warning].hash
|
133
133
|
end
|
134
134
|
|
135
135
|
# Builds the object from hash
|