ultracart_api 4.0.232 → 4.0.233
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/lib/ultracart_api/models/webhook.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: b7eda8f9a108d45d08d32ab57b4e01e3e6a6d3d9a0472cddd859c0fe10529cc9
|
4
|
+
data.tar.gz: 423faba5d6371d12c354748fee0392a5bef21a1c710ff6c129b8e85df5e76107
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d9578b8fd7d92f3fb576983df6a0d4ba3d8b5cade03340f69ca054f437aab2e22aef00b4e2f608509a3e63797ab0bea3bd158e576beee5a6fcc14d70171dc75
|
7
|
+
data.tar.gz: 212159a9dfff112ff55f5b58ce22bcfdd2c3c90e0eb725ac1e817c0e0fdf67cf057fc06f1a68391bb4686a35972486a4b5722ce2e70ea9005283354cddcbcc50
|
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.233
|
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.233.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.233.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.233'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1518,6 +1518,7 @@ Not every change is committed to every SDK.
|
|
1518
1518
|
|
1519
1519
|
| Version | Date | Comments |
|
1520
1520
|
| --: | :-: | --- |
|
1521
|
+
| 4.0.233 | 09/18/2024 | order payment constant for PayPal Fastlane |
|
1521
1522
|
| 4.0.232 | 08/29/2024 | add hold_for_transmission to item shipping object |
|
1522
1523
|
| 4.0.231 | 08/08/2024 | added query_target to OrderApi.getOrdersBatch to allow cache usage |
|
1523
1524
|
| 4.0.230 | 06/24/2024 | conversation object cleanup |
|
@@ -260,7 +260,7 @@ module UltracartClient
|
|
260
260
|
def valid?
|
261
261
|
api_version_validator = EnumAttributeValidator.new('String', ["2017-03-01"])
|
262
262
|
return false unless api_version_validator.valid?(@api_version)
|
263
|
-
authentication_type_validator = EnumAttributeValidator.new('String', ["none", "basic"])
|
263
|
+
authentication_type_validator = EnumAttributeValidator.new('String', ["none", "basic", "api user", "aws iam"])
|
264
264
|
return false unless authentication_type_validator.valid?(@authentication_type)
|
265
265
|
true
|
266
266
|
end
|
@@ -278,7 +278,7 @@ module UltracartClient
|
|
278
278
|
# Custom attribute writer method checking allowed values (enum).
|
279
279
|
# @param [Object] authentication_type Object to be assigned
|
280
280
|
def authentication_type=(authentication_type)
|
281
|
-
validator = EnumAttributeValidator.new('String', ["none", "basic"])
|
281
|
+
validator = EnumAttributeValidator.new('String', ["none", "basic", "api user", "aws iam"])
|
282
282
|
unless validator.valid?(authentication_type)
|
283
283
|
fail ArgumentError, "invalid value for \"authentication_type\", must be one of #{validator.allowable_values}."
|
284
284
|
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: 4.0.
|
4
|
+
version: 4.0.233
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|