ultracart_api 3.2.9 → 3.2.10
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 +1 -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: 16cada7affe2fe3fb59b93e34e354be088f9407086af9372a555bba894a60ac6
|
4
|
+
data.tar.gz: 831cb76e3d2835935266a8ec34b2dfdbc950c0ed33a526aa589ef005f6bde78f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5210877c6aaa58718de4d451c255269bf67584be59cc63871a0e58c8f688f01488f0b75bc0fbbfd7dffe2b686360365020c7c2826e8677a63263e34814b39156
|
7
|
+
data.tar.gz: 97c7da993cdee27c2adf586160335df72e5a1a21ac2f5410a9d96097c62167dab0435c7fa383fd2e687a2830f8150b18d837a94d9b371ed8449fe3d9d2740fea
|
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.2.
|
10
|
+
- Package version: 3.2.10
|
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.2.
|
27
|
+
gem install ./ultracart_api-3.2.10.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.2.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.2.10.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.2.
|
35
|
+
gem 'ultracart_api', '~> 3.2.10'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1032,6 +1032,7 @@ Not every change is committed to every SDK.
|
|
1032
1032
|
|
1033
1033
|
| Version | Date | Comments |
|
1034
1034
|
| --: | :-: | --- |
|
1035
|
+
| 3.2.10 | 07/08/2021 | customer profile - allow drop shipping options |
|
1035
1036
|
| 3.2.9 | 07/07/2021 | screen recording - provide cost per thousand and retention interval |
|
1036
1037
|
| 3.2.8 | 07/06/2021 | intgeration logs - min max log date/time retured in filter values |
|
1037
1038
|
| 3.2.7 | 07/05/2021 | integration logger bug fixes |
|
data/docs/Customer.md
CHANGED
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
7
7
|
**affiliate_oid** | **Integer** | Affiliate oid | [optional]
|
8
8
|
**allow_3rd_party_billing** | **BOOLEAN** | Allow 3rd party billing | [optional]
|
9
9
|
**allow_cod** | **BOOLEAN** | Allow COD | [optional]
|
10
|
+
**allow_drop_shipping** | **BOOLEAN** | Allow Drop Shipping | [optional]
|
10
11
|
**allow_purchase_order** | **BOOLEAN** | Allow purchase orders by this customer | [optional]
|
11
12
|
**allow_quote_request** | **BOOLEAN** | Allow quote request | [optional]
|
12
13
|
**allow_selection_of_address_type** | **BOOLEAN** | Allow selection of residential or business address type | [optional]
|
@@ -25,6 +25,9 @@ module UltracartClient
|
|
25
25
|
# Allow COD
|
26
26
|
attr_accessor :allow_cod
|
27
27
|
|
28
|
+
# Allow Drop Shipping
|
29
|
+
attr_accessor :allow_drop_shipping
|
30
|
+
|
28
31
|
# Allow purchase orders by this customer
|
29
32
|
attr_accessor :allow_purchase_order
|
30
33
|
|
@@ -188,6 +191,7 @@ module UltracartClient
|
|
188
191
|
:'affiliate_oid' => :'affiliate_oid',
|
189
192
|
:'allow_3rd_party_billing' => :'allow_3rd_party_billing',
|
190
193
|
:'allow_cod' => :'allow_cod',
|
194
|
+
:'allow_drop_shipping' => :'allow_drop_shipping',
|
191
195
|
:'allow_purchase_order' => :'allow_purchase_order',
|
192
196
|
:'allow_quote_request' => :'allow_quote_request',
|
193
197
|
:'allow_selection_of_address_type' => :'allow_selection_of_address_type',
|
@@ -252,6 +256,7 @@ module UltracartClient
|
|
252
256
|
:'affiliate_oid' => :'Integer',
|
253
257
|
:'allow_3rd_party_billing' => :'BOOLEAN',
|
254
258
|
:'allow_cod' => :'BOOLEAN',
|
259
|
+
:'allow_drop_shipping' => :'BOOLEAN',
|
255
260
|
:'allow_purchase_order' => :'BOOLEAN',
|
256
261
|
:'allow_quote_request' => :'BOOLEAN',
|
257
262
|
:'allow_selection_of_address_type' => :'BOOLEAN',
|
@@ -333,6 +338,10 @@ module UltracartClient
|
|
333
338
|
self.allow_cod = attributes[:'allow_cod']
|
334
339
|
end
|
335
340
|
|
341
|
+
if attributes.has_key?(:'allow_drop_shipping')
|
342
|
+
self.allow_drop_shipping = attributes[:'allow_drop_shipping']
|
343
|
+
end
|
344
|
+
|
336
345
|
if attributes.has_key?(:'allow_purchase_order')
|
337
346
|
self.allow_purchase_order = attributes[:'allow_purchase_order']
|
338
347
|
end
|
@@ -757,6 +766,7 @@ module UltracartClient
|
|
757
766
|
affiliate_oid == o.affiliate_oid &&
|
758
767
|
allow_3rd_party_billing == o.allow_3rd_party_billing &&
|
759
768
|
allow_cod == o.allow_cod &&
|
769
|
+
allow_drop_shipping == o.allow_drop_shipping &&
|
760
770
|
allow_purchase_order == o.allow_purchase_order &&
|
761
771
|
allow_quote_request == o.allow_quote_request &&
|
762
772
|
allow_selection_of_address_type == o.allow_selection_of_address_type &&
|
@@ -822,7 +832,7 @@ module UltracartClient
|
|
822
832
|
# Calculates hash code according to all attributes.
|
823
833
|
# @return [Fixnum] Hash code
|
824
834
|
def hash
|
825
|
-
[activity, affiliate_oid, allow_3rd_party_billing, allow_cod, 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, email, exempt_shipping_handling_charge, fedex_account_number, free_shipping, free_shipping_minimum, last_modified_by, last_modified_dts, loyalty, maximum_item_count, 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
|
835
|
+
[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, email, exempt_shipping_handling_charge, fedex_account_number, free_shipping, free_shipping_minimum, last_modified_by, last_modified_dts, loyalty, maximum_item_count, 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
|
826
836
|
end
|
827
837
|
|
828
838
|
# 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: 3.2.
|
4
|
+
version: 3.2.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|