ultracart_api 4.0.132 → 4.0.133
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 +4 -4
- data/README.md +5 -4
- data/docs/LookupRequest.md +2 -0
- data/lib/ultracart_api/models/lookup_request.rb +10 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7ce5db99a20be9f1c59921bdb909e2741046e8ab925256044a100abfdc7d0e5
|
|
4
|
+
data.tar.gz: f5524f8b7b56b4082335ea8b6a7b0786254eb7e460defc7438aea9f12aa10b1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62f6a8d8e5924d3ecc570b176e4190b0f9cb0c762c2ba874860f4a1cac0cae228a35090a4381a6aa4dc1881edd937b1c3fba6b89d931b30da00c3e1c2c5e1b2b
|
|
7
|
+
data.tar.gz: 2b527c19a338b82012e95c1f913c07af4fa7bb755a88eaa99a1d55e792eb0cc4d768025537ddf259d5b6fe164577f4ce90e255477eef62a91c58f875770a92d1
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
|
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.0.
|
|
10
|
+
- Package version: 4.0.133
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ gem build ultracart_api.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./ultracart_api-4.0.
|
|
27
|
+
gem install ./ultracart_api-4.0.133.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.133.gem` to install the development dependencies)
|
|
31
31
|
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
33
|
|
|
34
34
|
Finally add this to the Gemfile:
|
|
35
35
|
|
|
36
|
-
gem 'ultracart_api', '~> 4.0.
|
|
36
|
+
gem 'ultracart_api', '~> 4.0.133'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -1308,6 +1308,7 @@ Not every change is committed to every SDK.
|
|
|
1308
1308
|
|
|
1309
1309
|
| Version | Date | Comments |
|
|
1310
1310
|
| --: | :-: | --- |
|
|
1311
|
+
| 4.0.133 | 02/10/2023 | convo - add storefront_host_name to search request |
|
|
1311
1312
|
| 4.0.132 | 02/07/2023 | convo - new event for when a customer joins a queue |
|
|
1312
1313
|
| 4.0.131 | 02/07/2023 | convo - new event for when a customer joins a queue |
|
|
1313
1314
|
| 4.0.130 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
|
data/docs/LookupRequest.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
| **category** | **String** | | [optional] |
|
|
8
8
|
| **matches** | **String** | | [optional] |
|
|
9
9
|
| **max_hits** | **Integer** | | [optional] |
|
|
10
|
+
| **storefront_host_name** | **String** | | [optional] |
|
|
10
11
|
| **storefront_oid** | **Integer** | | [optional] |
|
|
11
12
|
| **subcategory** | **String** | | [optional] |
|
|
12
13
|
|
|
@@ -19,6 +20,7 @@ instance = UltracartClient::LookupRequest.new(
|
|
|
19
20
|
category: null,
|
|
20
21
|
matches: null,
|
|
21
22
|
max_hits: null,
|
|
23
|
+
storefront_host_name: null,
|
|
22
24
|
storefront_oid: null,
|
|
23
25
|
subcategory: null
|
|
24
26
|
)
|
|
@@ -21,6 +21,8 @@ module UltracartClient
|
|
|
21
21
|
|
|
22
22
|
attr_accessor :max_hits
|
|
23
23
|
|
|
24
|
+
attr_accessor :storefront_host_name
|
|
25
|
+
|
|
24
26
|
attr_accessor :storefront_oid
|
|
25
27
|
|
|
26
28
|
attr_accessor :subcategory
|
|
@@ -31,6 +33,7 @@ module UltracartClient
|
|
|
31
33
|
:'category' => :'category',
|
|
32
34
|
:'matches' => :'matches',
|
|
33
35
|
:'max_hits' => :'max_hits',
|
|
36
|
+
:'storefront_host_name' => :'storefront_host_name',
|
|
34
37
|
:'storefront_oid' => :'storefront_oid',
|
|
35
38
|
:'subcategory' => :'subcategory'
|
|
36
39
|
}
|
|
@@ -47,6 +50,7 @@ module UltracartClient
|
|
|
47
50
|
:'category' => :'String',
|
|
48
51
|
:'matches' => :'String',
|
|
49
52
|
:'max_hits' => :'Integer',
|
|
53
|
+
:'storefront_host_name' => :'String',
|
|
50
54
|
:'storefront_oid' => :'Integer',
|
|
51
55
|
:'subcategory' => :'String'
|
|
52
56
|
}
|
|
@@ -85,6 +89,10 @@ module UltracartClient
|
|
|
85
89
|
self.max_hits = attributes[:'max_hits']
|
|
86
90
|
end
|
|
87
91
|
|
|
92
|
+
if attributes.key?(:'storefront_host_name')
|
|
93
|
+
self.storefront_host_name = attributes[:'storefront_host_name']
|
|
94
|
+
end
|
|
95
|
+
|
|
88
96
|
if attributes.key?(:'storefront_oid')
|
|
89
97
|
self.storefront_oid = attributes[:'storefront_oid']
|
|
90
98
|
end
|
|
@@ -115,6 +123,7 @@ module UltracartClient
|
|
|
115
123
|
category == o.category &&
|
|
116
124
|
matches == o.matches &&
|
|
117
125
|
max_hits == o.max_hits &&
|
|
126
|
+
storefront_host_name == o.storefront_host_name &&
|
|
118
127
|
storefront_oid == o.storefront_oid &&
|
|
119
128
|
subcategory == o.subcategory
|
|
120
129
|
end
|
|
@@ -128,7 +137,7 @@ module UltracartClient
|
|
|
128
137
|
# Calculates hash code according to all attributes.
|
|
129
138
|
# @return [Integer] Hash code
|
|
130
139
|
def hash
|
|
131
|
-
[category, matches, max_hits, storefront_oid, subcategory].hash
|
|
140
|
+
[category, matches, max_hits, storefront_host_name, storefront_oid, subcategory].hash
|
|
132
141
|
end
|
|
133
142
|
|
|
134
143
|
# Builds the object from hash
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ultracart_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.133
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-02-
|
|
11
|
+
date: 2023-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|