ultracart_api 3.10.146 → 3.10.148
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 +6 -4
- data/lib/ultracart_api/models/report_page_visualization.rb +2 -2
- 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: 1d1eb0c8c83400d77f4a7f01718e31ff6e776f2e57e1914bd04789183c57e935
|
|
4
|
+
data.tar.gz: b61db86b39e3027cb44ce0d145c9cc1234899143d45c5a4935ef57b487aa350a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 708709e445e28c8d9127ba8fdb6f9bb6ab5ce40cb37f29a793d5b221b78dedc8c1d4794284a4fab39e2e11db17f9a5682725ff2636059e2af2d2f724f5cd8db5
|
|
7
|
+
data.tar.gz: 35a6774ace551efee6778c710d4870791ae41ff427ef8063d39f8670a80ce8ba9f334512a61795534b7cc508b1d6925c36d848830be7273162d35fa844b1f1d7
|
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.10.
|
|
10
|
+
- Package version: 3.10.148
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
|
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.10.
|
|
27
|
+
gem install ./ultracart_api-3.10.148.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.148.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.10.
|
|
35
|
+
gem 'ultracart_api', '~> 3.10.148'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1357,6 +1357,8 @@ Not every change is committed to every SDK.
|
|
|
1357
1357
|
|
|
1358
1358
|
| Version | Date | Comments |
|
|
1359
1359
|
| --: | :-: | --- |
|
|
1360
|
+
| 3.10.148 | 07/03/2023 | chart constant for dw report tool |
|
|
1361
|
+
| 3.10.147 | 06/23/2023 | gauge constant for page visualization library |
|
|
1360
1362
|
| 3.10.146 | 06/20/2023 | auto order - establishAutoOrderByReferenceOrderId method added |
|
|
1361
1363
|
| 3.10.145 | 06/20/2023 | coupon add allowed values for usable_by and new OncePerNewCustomerForItem flag |
|
|
1362
1364
|
| 3.10.144 | 06/15/2023 | add pickup_dts to order.shipping object |
|
|
@@ -148,7 +148,7 @@ module UltracartClient
|
|
|
148
148
|
# Check to see if the all the properties in the model are valid
|
|
149
149
|
# @return true if the model is valid
|
|
150
150
|
def valid?
|
|
151
|
-
type_validator = EnumAttributeValidator.new('String', ['score card', 'line chart', 'bar chart', 'text', 'table'])
|
|
151
|
+
type_validator = EnumAttributeValidator.new('String', ['score card', 'line chart', 'bar chart', 'text', 'table', 'gauge', 'pie chart'])
|
|
152
152
|
return false unless type_validator.valid?(@type)
|
|
153
153
|
true
|
|
154
154
|
end
|
|
@@ -156,7 +156,7 @@ module UltracartClient
|
|
|
156
156
|
# Custom attribute writer method checking allowed values (enum).
|
|
157
157
|
# @param [Object] type Object to be assigned
|
|
158
158
|
def type=(type)
|
|
159
|
-
validator = EnumAttributeValidator.new('String', ['score card', 'line chart', 'bar chart', 'text', 'table'])
|
|
159
|
+
validator = EnumAttributeValidator.new('String', ['score card', 'line chart', 'bar chart', 'text', 'table', 'gauge', 'pie chart'])
|
|
160
160
|
unless validator.valid?(type)
|
|
161
161
|
fail ArgumentError, 'invalid value for "type", must be one of #{validator.allowable_values}.'
|
|
162
162
|
end
|
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: 3.10.
|
|
4
|
+
version: 3.10.148
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|