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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b3520bb9519e267334ac0445fe09af978dd1e50a7ae65e0e66f7529dccc8148
4
- data.tar.gz: 1ba17ff1735e73f5c916b1cbae618116c28701bc45b3c83285461489973f4955
3
+ metadata.gz: b7eda8f9a108d45d08d32ab57b4e01e3e6a6d3d9a0472cddd859c0fe10529cc9
4
+ data.tar.gz: 423faba5d6371d12c354748fee0392a5bef21a1c710ff6c129b8e85df5e76107
5
5
  SHA512:
6
- metadata.gz: 7eb03d0f94d42abc5568dd30d572fd890a07470ba015f2051998dc6714460e8d533db9d99396e9d265a8483267c2b7593370d21963f39a9091d8bfd5b5ce3593
7
- data.tar.gz: 601ed4a184220f312e6e1ae12b79b2bdf4b22aa8ca575c105b7eb294e1832d38e36510def5b00c909b03abb7f73464e7b4170cfad9f23c2b59c606a0eb61f2ff
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.232
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.232.gem
27
+ gem install ./ultracart_api-4.0.233.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.232.gem` to install the development dependencies)
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.232'
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
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.232'
14
+ VERSION = '4.0.233'
15
15
  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.232
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-08-29 00:00:00.000000000 Z
11
+ date: 2024-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus