ultracart_api 4.0.157 → 4.0.158

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: 7f4de1e3b0e54359d0ec843f0cd4e92a08346ad38df8df84087f3f43f2fdd484
4
- data.tar.gz: 9a0f8a179a5d79d1b4803760834d9290e7726a6fd22fe597797e9b91ee718b10
3
+ metadata.gz: 12d9127bcc070e7a0c61cae6ba2c8e18bbcd3ce193e7015aefc452efa53132dd
4
+ data.tar.gz: 18250aeeb783e4a3f4e67e5e00e0faec663a9a7325f9473894f2b0b5fd2c823e
5
5
  SHA512:
6
- metadata.gz: 6553c75d2d1c3e9e981487eec48825c331b24a0f76297268c78e560d52be54554b98ffc75b8324afab487e39cc0ec57ce71cec35597e58b10d5da5e9642e7401
7
- data.tar.gz: b92a212ee80036e272d9a24bbf4a3fa365b86d85180169cc31e931b80bb56e1b92234ffbacf0a0c9d604e4e3e3a0488ec1a9c0c410b426f375041cb1bd057cf0
6
+ metadata.gz: 743c679f3b12174ffaea661e3d9185381f05bf13b6b49d8b5c85a4729366b54b681ff643e19e0c80d615e4499e650c08db070fbfb8424a9ba874d426f96f54a9
7
+ data.tar.gz: 11cfdcb395443032d7a511fb3ed7a97ec804ae7dcdc6d4621d4ddf982e21b9a178441a3f342e82eaec9eeffe2692c0557cb8ff2b2149195b447fd39b0cac0b8c
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.157
10
+ - Package version: 4.0.158
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.157.gem
27
+ gem install ./ultracart_api-4.0.158.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.157.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.158.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.157'
36
+ gem 'ultracart_api', '~> 4.0.158'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1364,6 +1364,7 @@ Not every change is committed to every SDK.
1364
1364
 
1365
1365
  | Version | Date | Comments |
1366
1366
  | --: | :-: | --- |
1367
+ | 4.0.158 | 06/08/2023 | customer profile qb tax exempt reason code field |
1367
1368
  | 4.0.157 | 06/06/2023 | auto order add_ons |
1368
1369
  | 4.0.156 | 05/25/2023 | added venmo constants for payment type |
1369
1370
  | 4.0.155 | 05/18/2023 | dw bi - send back the executed SQL |
data/docs/Customer.md CHANGED
@@ -46,6 +46,7 @@
46
46
  | **privacy** | [**CustomerPrivacy**](CustomerPrivacy.md) | | [optional] |
47
47
  | **qb_class** | **String** | QuickBooks class to import this customer as | [optional] |
48
48
  | **qb_code** | **String** | QuickBooks name to import this customer as | [optional] |
49
+ | **qb_tax_exemption_reason_code** | **Integer** | QuickBooks tax exemption reason code | [optional] |
49
50
  | **quotes** | [**Array<Order>**](Order.md) | Quotes associated with this customer profile | [optional] |
50
51
  | **quotes_summary** | [**CustomerQuotesSummary**](CustomerQuotesSummary.md) | | [optional] |
51
52
  | **referral_source** | **String** | Referral Source | [optional] |
@@ -114,6 +115,7 @@ instance = UltracartClient::Customer.new(
114
115
  privacy: null,
115
116
  qb_class: null,
116
117
  qb_code: null,
118
+ qb_tax_exemption_reason_code: null,
117
119
  quotes: null,
118
120
  quotes_summary: null,
119
121
  referral_source: null,
@@ -136,6 +136,9 @@ module UltracartClient
136
136
  # QuickBooks name to import this customer as
137
137
  attr_accessor :qb_code
138
138
 
139
+ # QuickBooks tax exemption reason code
140
+ attr_accessor :qb_tax_exemption_reason_code
141
+
139
142
  # Quotes associated with this customer profile
140
143
  attr_accessor :quotes
141
144
 
@@ -235,6 +238,7 @@ module UltracartClient
235
238
  :'privacy' => :'privacy',
236
239
  :'qb_class' => :'qb_class',
237
240
  :'qb_code' => :'qb_code',
241
+ :'qb_tax_exemption_reason_code' => :'qb_tax_exemption_reason_code',
238
242
  :'quotes' => :'quotes',
239
243
  :'quotes_summary' => :'quotes_summary',
240
244
  :'referral_source' => :'referral_source',
@@ -307,6 +311,7 @@ module UltracartClient
307
311
  :'privacy' => :'CustomerPrivacy',
308
312
  :'qb_class' => :'String',
309
313
  :'qb_code' => :'String',
314
+ :'qb_tax_exemption_reason_code' => :'Integer',
310
315
  :'quotes' => :'Array<Order>',
311
316
  :'quotes_summary' => :'CustomerQuotesSummary',
312
317
  :'referral_source' => :'String',
@@ -530,6 +535,10 @@ module UltracartClient
530
535
  self.qb_code = attributes[:'qb_code']
531
536
  end
532
537
 
538
+ if attributes.key?(:'qb_tax_exemption_reason_code')
539
+ self.qb_tax_exemption_reason_code = attributes[:'qb_tax_exemption_reason_code']
540
+ end
541
+
533
542
  if attributes.key?(:'quotes')
534
543
  if (value = attributes[:'quotes']).is_a?(Array)
535
544
  self.quotes = value
@@ -840,6 +849,7 @@ module UltracartClient
840
849
  privacy == o.privacy &&
841
850
  qb_class == o.qb_class &&
842
851
  qb_code == o.qb_code &&
852
+ qb_tax_exemption_reason_code == o.qb_tax_exemption_reason_code &&
843
853
  quotes == o.quotes &&
844
854
  quotes_summary == o.quotes_summary &&
845
855
  referral_source == o.referral_source &&
@@ -870,7 +880,7 @@ module UltracartClient
870
880
  # Calculates hash code according to all attributes.
871
881
  # @return [Integer] Hash code
872
882
  def hash
873
- [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
883
+ [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
874
884
  end
875
885
 
876
886
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.157'
14
+ VERSION = '4.0.158'
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.157
4
+ version: 4.0.158
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