ultracart_api 4.0.184 → 4.0.185
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 +4 -4
- data/README.md +5 -4
- data/docs/Customer.md +2 -0
- data/lib/ultracart_api/models/customer.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d811cb326b081165dbd35f237bb17c71d029289a85346f9646188bda9920b88
|
4
|
+
data.tar.gz: 138f7c5cdf8039b0079344c84d2202cba878b9edf7a8791ed997986d903a1aa2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3d6f4b9b1732bd94d6c35e09a35f354f65555c0f333715d7ea90177d4c0974c424c424b474fbdbeea1ede08315b839170dbc4ddf47c20a052a49e32560d213f
|
7
|
+
data.tar.gz: 0c41846ad234cbafffee695bc968f7809aa21d88bb3d15a3662b4c50912d895e71556a800ce51f06075ed06ae6b629d3d0a860aa739646f523743310a5a61d50
|
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.
|
10
|
+
- Package version: 4.0.185
|
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.
|
27
|
+
gem install ./ultracart_api-4.0.185.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.185.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.
|
36
|
+
gem 'ultracart_api', '~> 4.0.185'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1396,6 +1396,7 @@ Not every change is committed to every SDK.
|
|
1396
1396
|
|
1397
1397
|
| Version | Date | Comments |
|
1398
1398
|
| --: | :-: | --- |
|
1399
|
+
| 4.0.185 | 11/01/2023 | customer - do_no_send_mail flag added |
|
1399
1400
|
| 4.0.184 | 10/30/2023 | cart/order fields for health benefit card values in summary expansion objects |
|
1400
1401
|
| 4.0.183 | 10/27/2023 | workflow task object model refinement |
|
1401
1402
|
| 4.0.182 | 10/23/2023 | workflow tasks api |
|
data/docs/Customer.md
CHANGED
@@ -23,6 +23,7 @@
|
|
23
23
|
| **customer_profile_oid** | **Integer** | Customer profile object identifier | [optional] |
|
24
24
|
| **dhl_account_number** | **String** | DHL account number | [optional] |
|
25
25
|
| **dhl_duty_account_number** | **String** | DHL duty account number | [optional] |
|
26
|
+
| **do_not_send_mail** | **Boolean** | Do not send mail (null will not update) | [optional] |
|
26
27
|
| **edi** | [**CustomerEDI**](CustomerEDI.md) | | [optional] |
|
27
28
|
| **email** | **String** | Email address of this customer profile | [optional] |
|
28
29
|
| **exempt_shipping_handling_charge** | **Boolean** | Exempt shipping handling charge | [optional] |
|
@@ -93,6 +94,7 @@ instance = UltracartClient::Customer.new(
|
|
93
94
|
customer_profile_oid: null,
|
94
95
|
dhl_account_number: null,
|
95
96
|
dhl_duty_account_number: null,
|
97
|
+
do_not_send_mail: null,
|
96
98
|
edi: null,
|
97
99
|
email: null,
|
98
100
|
exempt_shipping_handling_charge: null,
|
@@ -71,6 +71,9 @@ module UltracartClient
|
|
71
71
|
# DHL duty account number
|
72
72
|
attr_accessor :dhl_duty_account_number
|
73
73
|
|
74
|
+
# Do not send mail (null will not update)
|
75
|
+
attr_accessor :do_not_send_mail
|
76
|
+
|
74
77
|
attr_accessor :edi
|
75
78
|
|
76
79
|
# Email address of this customer profile
|
@@ -218,6 +221,7 @@ module UltracartClient
|
|
218
221
|
:'customer_profile_oid' => :'customer_profile_oid',
|
219
222
|
:'dhl_account_number' => :'dhl_account_number',
|
220
223
|
:'dhl_duty_account_number' => :'dhl_duty_account_number',
|
224
|
+
:'do_not_send_mail' => :'do_not_send_mail',
|
221
225
|
:'edi' => :'edi',
|
222
226
|
:'email' => :'email',
|
223
227
|
:'exempt_shipping_handling_charge' => :'exempt_shipping_handling_charge',
|
@@ -292,6 +296,7 @@ module UltracartClient
|
|
292
296
|
:'customer_profile_oid' => :'Integer',
|
293
297
|
:'dhl_account_number' => :'String',
|
294
298
|
:'dhl_duty_account_number' => :'String',
|
299
|
+
:'do_not_send_mail' => :'Boolean',
|
295
300
|
:'edi' => :'CustomerEDI',
|
296
301
|
:'email' => :'String',
|
297
302
|
:'exempt_shipping_handling_charge' => :'Boolean',
|
@@ -444,6 +449,10 @@ module UltracartClient
|
|
444
449
|
self.dhl_duty_account_number = attributes[:'dhl_duty_account_number']
|
445
450
|
end
|
446
451
|
|
452
|
+
if attributes.key?(:'do_not_send_mail')
|
453
|
+
self.do_not_send_mail = attributes[:'do_not_send_mail']
|
454
|
+
end
|
455
|
+
|
447
456
|
if attributes.key?(:'edi')
|
448
457
|
self.edi = attributes[:'edi']
|
449
458
|
end
|
@@ -837,6 +846,7 @@ module UltracartClient
|
|
837
846
|
customer_profile_oid == o.customer_profile_oid &&
|
838
847
|
dhl_account_number == o.dhl_account_number &&
|
839
848
|
dhl_duty_account_number == o.dhl_duty_account_number &&
|
849
|
+
do_not_send_mail == o.do_not_send_mail &&
|
840
850
|
edi == o.edi &&
|
841
851
|
email == o.email &&
|
842
852
|
exempt_shipping_handling_charge == o.exempt_shipping_handling_charge &&
|
@@ -892,7 +902,7 @@ module UltracartClient
|
|
892
902
|
# Calculates hash code according to all attributes.
|
893
903
|
# @return [Integer] Hash code
|
894
904
|
def hash
|
895
|
-
[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, properties, 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
|
905
|
+
[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, do_not_send_mail, 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, properties, 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
|
896
906
|
end
|
897
907
|
|
898
908
|
# Builds the object from hash
|
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.
|
4
|
+
version: 4.0.185
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|