ultracart_api 4.1.4 → 4.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f73cdbb14f7434757e125f441e7177359ed026f60e7289828d3140794743701
4
- data.tar.gz: 6749494d14fd1bce606f95c178229622137981d48b2448ea2db11c044a7adb43
3
+ metadata.gz: 072052f4d9cffb084d1c14e700e1a912b9d07d0f5528d5bfb56afc397055cc34
4
+ data.tar.gz: 16dc833a02415b6218568966bf11c7ac3cc4c02cfb2d6f9f2954c30b2fb589c1
5
5
  SHA512:
6
- metadata.gz: a35199b5568393b6f8e69353771dbc1cc9fbfbe300b1bf281106c7b36636a48b38f97f3f7e1582a57b501bfd16ede57f85ba8b6cdbc0907df3f6298a2573d1e6
7
- data.tar.gz: 8603ec97f9a44dc3e15f5d2442e46f734b65785be3d3eea59685ca4cdb1e140034b3345b640c11ddbed7c2a16626aa36d29f2f334b4fd00f8cd874426e9af4da
6
+ metadata.gz: a26bfb1c9739bd9aaf0cd5dac305b5b2927fa09337b196a1796a7f2265512bc914ff083a02f0dc821e76fad615e024f8fb86be4490e316d1bf7769df75908348
7
+ data.tar.gz: 5f4957d6892dc48e4a214b90f9951fd3dad6c0ee782c567ae491aac5c5f5147c22638cb89836643cc4509da6e8a153a6e50192530c250ccf47e2fa297adc0d1d
data/README.md CHANGED
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
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.1.4
10
+ - Package version: 4.1.5
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  - For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
16
16
  gemfile:
17
17
 
18
18
  ```shell
19
- gem 'ultracart_api', '4.1.4'
19
+ gem 'ultracart_api', '4.1.5'
20
20
  ```
21
21
 
22
22
  install:
@@ -1516,6 +1516,7 @@ Not every change is committed to every SDK.
1516
1516
 
1517
1517
  | Version | Date | Comments |
1518
1518
  | --: | :-: | --- |
1519
+ | 4.1.5 | 03/28/2025 | added paypal fastlane constants for payments |
1519
1520
  | 4.1.4 | 03/07/2025 | updated github readme.md |
1520
1521
  | 4.1.3 | 03/07/2025 | updated github readme.md files |
1521
1522
  | 4.1.2 | 03/05/2025 | added ChannelPartnerOrder.use_prior_payment_information_from_order_id |
@@ -1103,7 +1103,7 @@ module UltracartClient
1103
1103
  return false if !@email.nil? && @email.to_s.length > 100
1104
1104
  return false if !@gift_email.nil? && @gift_email.to_s.length > 100
1105
1105
  return false if !@gift_message.nil? && @gift_message.to_s.length > 10000
1106
- payment_method_validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Wire Transfer"])
1106
+ payment_method_validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Wire Transfer", "PayPal Fastlane"])
1107
1107
  return false unless payment_method_validator.valid?(@payment_method)
1108
1108
  return false if !@screen_branding_theme_code.nil? && @screen_branding_theme_code.to_s.length > 10
1109
1109
  return false if !@shipto_address1.nil? && @shipto_address1.to_s.length > 50
@@ -1375,7 +1375,7 @@ module UltracartClient
1375
1375
  # Custom attribute writer method checking allowed values (enum).
1376
1376
  # @param [Object] payment_method Object to be assigned
1377
1377
  def payment_method=(payment_method)
1378
- validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Wire Transfer"])
1378
+ validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Wire Transfer", "PayPal Fastlane"])
1379
1379
  unless validator.valid?(payment_method)
1380
1380
  fail ArgumentError, "invalid value for \"payment_method\", must be one of #{validator.allowable_values}."
1381
1381
  end
@@ -260,7 +260,7 @@ module UltracartClient
260
260
  # Check to see if the all the properties in the model are valid
261
261
  # @return true if the model is valid
262
262
  def valid?
263
- 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"])
263
+ 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", "PayPal Fastlane"])
264
264
  return false unless payment_method_validator.valid?(@payment_method)
265
265
  payment_status_validator = EnumAttributeValidator.new('String', ["Unprocessed", "Authorized", "Capture Failed", "Processed", "Declined", "Voided", "Refunded", "Skipped"])
266
266
  return false unless payment_status_validator.valid?(@payment_status)
@@ -270,7 +270,7 @@ module UltracartClient
270
270
  # Custom attribute writer method checking allowed values (enum).
271
271
  # @param [Object] payment_method Object to be assigned
272
272
  def payment_method=(payment_method)
273
- 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"])
273
+ 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", "PayPal Fastlane"])
274
274
  unless validator.valid?(payment_method)
275
275
  fail ArgumentError, "invalid value for \"payment_method\", must be one of #{validator.allowable_values}."
276
276
  end
@@ -530,7 +530,7 @@ module UltracartClient
530
530
  return false if !@email.nil? && @email.to_s.length > 100
531
531
  return false if !@first_name.nil? && @first_name.to_s.length > 30
532
532
  return false if !@last_name.nil? && @last_name.to_s.length > 30
533
- payment_method_validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Venmo", "Apple Pay", " Google Pay"])
533
+ payment_method_validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Venmo", "Apple Pay", " Google Pay", "PayPal Fastlane"])
534
534
  return false unless payment_method_validator.valid?(@payment_method)
535
535
  return false if !@phone.nil? && @phone.to_s.length > 25
536
536
  return false if !@postal_code.nil? && @postal_code.to_s.length > 20
@@ -625,7 +625,7 @@ module UltracartClient
625
625
  # Custom attribute writer method checking allowed values (enum).
626
626
  # @param [Object] payment_method Object to be assigned
627
627
  def payment_method=(payment_method)
628
- validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Venmo", "Apple Pay", " Google Pay"])
628
+ validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eCheck", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Venmo", "Apple Pay", " Google Pay", "PayPal Fastlane"])
629
629
  unless validator.valid?(payment_method)
630
630
  fail ArgumentError, "invalid value for \"payment_method\", must be one of #{validator.allowable_values}."
631
631
  end
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.4'
14
+ VERSION = '4.1.5'
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.1.4
4
+ version: 4.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-07 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus