ultracart_api 3.10.203 → 3.10.204

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: 866539c915f7d0ba05baaee52bd7069f644dd5896ef63e163ec84c59fe88d58a
4
- data.tar.gz: 29fc5f6a52e81a0b3b9983728374c91f4a26158037ba26baa9dfb88c769c9c6d
3
+ metadata.gz: 00c07dacb1984a667bf3339273865f43ddbe48b205409d8958152af2dea671aa
4
+ data.tar.gz: 1cde39fee004a18a3331dd9e46337977e89b89e05b0be9f831b30442b873a3a3
5
5
  SHA512:
6
- metadata.gz: ef23fbab54189d2d3c9fcafd84920783904b4f6c38221f2fde5d419fce4582844de2c85c669d5bc8078a4ff66aa696e0461c7b19f3d5576da5ae0f56951e3889
7
- data.tar.gz: 9a703ed03b4d34b9dc7d00f136e0315c4592c7354aceda9244b438d9ae436e6b8d312c74c8f5fe0106f7c9d03efa7290d4a0ec877f8cbfaa2a19f7f1395b7691
6
+ metadata.gz: 6970a55cb7908a5ace27a281229f3fd906afeff56a782716e94bd2557213871a9faced467611af8ae65bab5d64f3d55a6e665786910636536c993a9cb44f61a7
7
+ data.tar.gz: 25905f404e643019d53b8a13b472f8b9b954fdd839df4fdb8a291e40cb500151ecfbf986fd9d80679a49b8d8ef06384b52bf6c0bb487649bc25e0ca1f5b30d3b
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.203
10
+ - Package version: 3.10.204
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.203.gem
27
+ gem install ./ultracart_api-3.10.204.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.203.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.204.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.203'
35
+ gem 'ultracart_api', '~> 3.10.204'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1501,6 +1501,7 @@ Not every change is committed to every SDK.
1501
1501
 
1502
1502
  | Version | Date | Comments |
1503
1503
  | --: | :-: | --- |
1504
+ | 3.10.204 | 05/16/2024 | OrderPayment - constants for payment method Amazon Pay and Link |
1504
1505
  | 3.10.203 | 05/15/2024 | conversation pbx voicemail mailbox indep. voice properties |
1505
1506
  | 3.10.202 | 05/15/2024 | conversation pbx - missing fields on agent object |
1506
1507
  | 3.10.201 | 05/14/2024 | conversation pbx - allowed value constants on the action |
@@ -233,7 +233,7 @@ module UltracartClient
233
233
  # Check to see if the all the properties in the model are valid
234
234
  # @return true if the model is valid
235
235
  def valid?
236
- payment_method_validator = EnumAttributeValidator.new('String', ['Affirm', 'Amazon', 'Amazon SC', 'Cash', 'Check', 'COD', 'Credit Card', 'eBay', 'eCheck', 'Google Shopping', 'Insurance', 'LoanHero', 'Money Order', 'PayPal', 'Purchase Order', 'Quote Request', 'Unknown', 'Wire Transfer', 'Walmart', 'Shop.com', 'Sezzle', 'Venmo', 'Apple Pay', 'Google Pay', 'Health Benefit Card'])
236
+ payment_method_validator = EnumAttributeValidator.new('String', ['Affirm', 'Amazon', 'Amazon Pay', 'Amazon SC', 'Cash', 'Check', 'COD', 'Credit Card', 'eBay', 'eCheck', 'Google Shopping', 'Insurance', 'Link', 'LoanHero', 'Money Order', 'PayPal', 'Purchase Order', 'Quote Request', 'Unknown', 'Wire Transfer', 'Walmart', 'Shop.com', 'Sezzle', 'Venmo', 'Apple Pay', 'Google Pay', 'Health Benefit Card'])
237
237
  return false unless payment_method_validator.valid?(@payment_method)
238
238
  payment_status_validator = EnumAttributeValidator.new('String', ['Unprocessed', 'Authorized', 'Capture Failed', 'Processed', 'Declined', 'Voided', 'Refunded', 'Skipped'])
239
239
  return false unless payment_status_validator.valid?(@payment_status)
@@ -243,7 +243,7 @@ module UltracartClient
243
243
  # Custom attribute writer method checking allowed values (enum).
244
244
  # @param [Object] payment_method Object to be assigned
245
245
  def payment_method=(payment_method)
246
- validator = EnumAttributeValidator.new('String', ['Affirm', 'Amazon', 'Amazon SC', 'Cash', 'Check', 'COD', 'Credit Card', 'eBay', 'eCheck', 'Google Shopping', 'Insurance', 'LoanHero', 'Money Order', 'PayPal', 'Purchase Order', 'Quote Request', 'Unknown', 'Wire Transfer', 'Walmart', 'Shop.com', 'Sezzle', 'Venmo', 'Apple Pay', 'Google Pay', 'Health Benefit Card'])
246
+ validator = EnumAttributeValidator.new('String', ['Affirm', 'Amazon', 'Amazon Pay', 'Amazon SC', 'Cash', 'Check', 'COD', 'Credit Card', 'eBay', 'eCheck', 'Google Shopping', 'Insurance', 'Link', 'LoanHero', 'Money Order', 'PayPal', 'Purchase Order', 'Quote Request', 'Unknown', 'Wire Transfer', 'Walmart', 'Shop.com', 'Sezzle', 'Venmo', 'Apple Pay', 'Google Pay', 'Health Benefit Card'])
247
247
  unless validator.valid?(payment_method)
248
248
  fail ArgumentError, 'invalid value for "payment_method", must be one of #{validator.allowable_values}.'
249
249
  end
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.203'
14
+ VERSION = '3.10.204'
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: 3.10.203
4
+ version: 3.10.204
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-15 00:00:00.000000000 Z
11
+ date: 2024-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus