ultracart_api 3.10.140 → 3.10.141

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: 8f3a252b45bbed343b4f7df084cfeab2a4e50d5e5ede14ca77a24199b15fa2db
4
- data.tar.gz: 9b414a8dd8cb51b6e3e816c51735363a516c275ea18ebf53f6883449775f2a4a
3
+ metadata.gz: 43b63f06c14b45333f8ffae69e8fde395caa9c9a8e964a629f98e9ca8466f1d0
4
+ data.tar.gz: 81c98cc35855b6d18b4a2f84240df9f1176e5a1196b6d33dab61179244c99628
5
5
  SHA512:
6
- metadata.gz: 186affa3270d340e684fd5cc2ca999af06bc128e2d9edf9e2452e45df386dfad5d77d4074161a974eb0a2cfc6dd5945e37d24fd171bc2fe0e30c324900a81f42
7
- data.tar.gz: f2508c3dfaab568564f0fa6ae327d45801d98505ba83f2bbce76c449824431481660ce51318b6750685d6cdbaa80f3e970c295040c6b6cc71fcd92d4ef50e680
6
+ metadata.gz: d8fb14c5cabef111f723168f0f4ba8235d4f9c3657ff914213b024470dadb413fb6cc28df1f238f5361d1cae09e73e2985de5b17f666dc7caa58f65a64aba9d4
7
+ data.tar.gz: ea3c8f2a8c36a4b6268d797a94cd9f0f38ef37d5d09734e8d4fae6ae0ed139aba02c77e5a36a6d47b54bcf5426eeb7e97da8169e6cb93d47b0ed54ef03198e75
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.140
10
+ - Package version: 3.10.141
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.140.gem
27
+ gem install ./ultracart_api-3.10.141.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.140.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.141.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.140'
35
+ gem 'ultracart_api', '~> 3.10.141'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1356,6 +1356,7 @@ Not every change is committed to every SDK.
1356
1356
 
1357
1357
  | Version | Date | Comments |
1358
1358
  | --: | :-: | --- |
1359
+ | 3.10.141 | 06/08/2023 | customer profile qb tax exempt reason code field |
1359
1360
  | 3.10.140 | 06/06/2023 | auto order add_ons |
1360
1361
  | 3.10.139 | 05/25/2023 | added venmo constants for payment type |
1361
1362
  | 3.10.138 | 05/18/2023 | dw bi - send back the executed SQL |
data/docs/Customer.md CHANGED
@@ -45,6 +45,7 @@ Name | Type | Description | Notes
45
45
  **privacy** | [**CustomerPrivacy**](CustomerPrivacy.md) | | [optional]
46
46
  **qb_class** | **String** | QuickBooks class to import this customer as | [optional]
47
47
  **qb_code** | **String** | QuickBooks name to import this customer as | [optional]
48
+ **qb_tax_exemption_reason_code** | **Integer** | QuickBooks tax exemption reason code | [optional]
48
49
  **quotes** | [**Array<Order>**](Order.md) | Quotes associated with this customer profile | [optional]
49
50
  **quotes_summary** | [**CustomerQuotesSummary**](CustomerQuotesSummary.md) | | [optional]
50
51
  **referral_source** | **String** | Referral Source | [optional]
@@ -135,6 +135,9 @@ module UltracartClient
135
135
  # QuickBooks name to import this customer as
136
136
  attr_accessor :qb_code
137
137
 
138
+ # QuickBooks tax exemption reason code
139
+ attr_accessor :qb_tax_exemption_reason_code
140
+
138
141
  # Quotes associated with this customer profile
139
142
  attr_accessor :quotes
140
143
 
@@ -234,6 +237,7 @@ module UltracartClient
234
237
  :'privacy' => :'privacy',
235
238
  :'qb_class' => :'qb_class',
236
239
  :'qb_code' => :'qb_code',
240
+ :'qb_tax_exemption_reason_code' => :'qb_tax_exemption_reason_code',
237
241
  :'quotes' => :'quotes',
238
242
  :'quotes_summary' => :'quotes_summary',
239
243
  :'referral_source' => :'referral_source',
@@ -301,6 +305,7 @@ module UltracartClient
301
305
  :'privacy' => :'CustomerPrivacy',
302
306
  :'qb_class' => :'String',
303
307
  :'qb_code' => :'String',
308
+ :'qb_tax_exemption_reason_code' => :'Integer',
304
309
  :'quotes' => :'Array<Order>',
305
310
  :'quotes_summary' => :'CustomerQuotesSummary',
306
311
  :'referral_source' => :'String',
@@ -511,6 +516,10 @@ module UltracartClient
511
516
  self.qb_code = attributes[:'qb_code']
512
517
  end
513
518
 
519
+ if attributes.has_key?(:'qb_tax_exemption_reason_code')
520
+ self.qb_tax_exemption_reason_code = attributes[:'qb_tax_exemption_reason_code']
521
+ end
522
+
514
523
  if attributes.has_key?(:'quotes')
515
524
  if (value = attributes[:'quotes']).is_a?(Array)
516
525
  self.quotes = value
@@ -821,6 +830,7 @@ module UltracartClient
821
830
  privacy == o.privacy &&
822
831
  qb_class == o.qb_class &&
823
832
  qb_code == o.qb_code &&
833
+ qb_tax_exemption_reason_code == o.qb_tax_exemption_reason_code &&
824
834
  quotes == o.quotes &&
825
835
  quotes_summary == o.quotes_summary &&
826
836
  referral_source == o.referral_source &&
@@ -851,7 +861,7 @@ module UltracartClient
851
861
  # Calculates hash code according to all attributes.
852
862
  # @return [Fixnum] Hash code
853
863
  def hash
854
- [activity, affiliate_oid, allow_3rd_party_billing, allow_cod, allow_drop_shipping, allow_purchase_order, allow_quote_request, allow_selection_of_address_type, attachments, auto_approve_cod, auto_approve_purchase_order, automatic_merchant_notes, billing, business_notes, cards, cc_emails, customer_profile_oid, dhl_account_number, dhl_duty_account_number, edi, email, exempt_shipping_handling_charge, fedex_account_number, free_shipping, free_shipping_minimum, last_modified_by, last_modified_dts, loyalty, maximum_item_count, merchant_id, minimum_item_count, minimum_subtotal, no_coupons, no_free_shipping, no_realtime_charge, orders, orders_summary, password, pricing_tiers, privacy, qb_class, qb_code, quotes, quotes_summary, referral_source, reviewer, sales_rep_code, send_signup_notification, shipping, signup_dts, software_entitlements, suppress_buysafe, tags, tax_codes, tax_exempt, tax_id, terms, track_separately, unapproved, ups_account_number, website_url].hash
864
+ [activity, affiliate_oid, allow_3rd_party_billing, allow_cod, allow_drop_shipping, allow_purchase_order, allow_quote_request, allow_selection_of_address_type, attachments, auto_approve_cod, auto_approve_purchase_order, automatic_merchant_notes, billing, business_notes, cards, cc_emails, customer_profile_oid, dhl_account_number, dhl_duty_account_number, edi, email, exempt_shipping_handling_charge, fedex_account_number, free_shipping, free_shipping_minimum, last_modified_by, last_modified_dts, loyalty, maximum_item_count, merchant_id, minimum_item_count, minimum_subtotal, no_coupons, no_free_shipping, no_realtime_charge, orders, orders_summary, password, pricing_tiers, privacy, qb_class, qb_code, qb_tax_exemption_reason_code, quotes, quotes_summary, referral_source, reviewer, sales_rep_code, send_signup_notification, shipping, signup_dts, software_entitlements, suppress_buysafe, tags, tax_codes, tax_exempt, tax_id, terms, track_separately, unapproved, ups_account_number, website_url].hash
855
865
  end
856
866
 
857
867
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.140'
14
+ VERSION = '3.10.141'
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.140
4
+ version: 3.10.141
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-06 00:00:00.000000000 Z
11
+ date: 2023-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus