ultracart_api 3.6.10 → 3.6.11
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/CouponApi.md +0 -2
- data/lib/ultracart_api/api/coupon_api.rb +0 -3
- 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: e744aa1fbf031672fe7959ded85dbf8054e149a227e326f1c17614e3a1929e98
|
4
|
+
data.tar.gz: 0deab178700b03839ae623fdbef1f8d65a4b057ed947e94f7884237b4f469861
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 804835170e10ce2b81432dbfa2f387c0d4310d52c635a5e5d6eee48187f7461c153818ff272b5bec0e17c731a23a8d3d02ea61171519d628da8b89f4917892ea
|
7
|
+
data.tar.gz: c57c62f5609c3b1be6a85e315c73f6db08ce7895e8159c3fbaf180768b37bbcf53499850cb066c7f6669a69b37b0720d090da349323a37220c265c2c56386625
|
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.6.
|
10
|
+
- Package version: 3.6.11
|
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.6.
|
27
|
+
gem install ./ultracart_api-3.6.11.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.6.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.6.11.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.6.
|
35
|
+
gem 'ultracart_api', '~> 3.6.11'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1118,6 +1118,7 @@ Not every change is committed to every SDK.
|
|
1118
1118
|
|
1119
1119
|
| Version | Date | Comments |
|
1120
1120
|
| --: | :-: | --- |
|
1121
|
+
| 3.6.11 | 09/13/2021 | fix for CouponApi, broke due to inadvertent parameter inclusion |
|
1121
1122
|
| 3.6.10 | 09/09/2021 | added constants for Google Shopping payment method (still in development) |
|
1122
1123
|
| 3.6.9 | 09/07/2021 | customer profile editor values have new list of state optional countries |
|
1123
1124
|
| 3.6.8 | 08/31/2021 | coupon query field to allow merchant code and description to be searched |
|
data/docs/CouponApi.md
CHANGED
@@ -508,7 +508,6 @@ opts = {
|
|
508
508
|
expiration_date_end: 'expiration_date_end_example', # String | Expiration date end
|
509
509
|
affiliate_oid: 56, # Integer | Affiliate oid
|
510
510
|
exclude_expired: true, # BOOLEAN | Exclude expired
|
511
|
-
merchant_code_or_description: 'merchant_code_or_description_example', # String | Merchant code or description
|
512
511
|
_limit: 100, # Integer | The maximum number of records to return on this one API call. (Max 200)
|
513
512
|
_offset: 0, # Integer | Pagination of the record set. Offset is a zero based index.
|
514
513
|
_sort: '_sort_example', # String | The sort order of the coupons. See Sorting documentation for examples of using multiple values and sorting by ascending and descending.
|
@@ -537,7 +536,6 @@ Name | Type | Description | Notes
|
|
537
536
|
**expiration_date_end** | **String**| Expiration date end | [optional]
|
538
537
|
**affiliate_oid** | **Integer**| Affiliate oid | [optional]
|
539
538
|
**exclude_expired** | **BOOLEAN**| Exclude expired | [optional]
|
540
|
-
**merchant_code_or_description** | **String**| Merchant code or description | [optional]
|
541
539
|
**_limit** | **Integer**| The maximum number of records to return on this one API call. (Max 200) | [optional] [default to 100]
|
542
540
|
**_offset** | **Integer**| Pagination of the record set. Offset is a zero based index. | [optional] [default to 0]
|
543
541
|
**_sort** | **String**| The sort order of the coupons. See Sorting documentation for examples of using multiple values and sorting by ascending and descending. | [optional]
|
@@ -548,7 +548,6 @@ module UltracartClient
|
|
548
548
|
# @option opts [String] :expiration_date_end Expiration date end
|
549
549
|
# @option opts [Integer] :affiliate_oid Affiliate oid
|
550
550
|
# @option opts [BOOLEAN] :exclude_expired Exclude expired
|
551
|
-
# @option opts [String] :merchant_code_or_description Merchant code or description
|
552
551
|
# @option opts [Integer] :_limit The maximum number of records to return on this one API call. (Max 200) (default to 100)
|
553
552
|
# @option opts [Integer] :_offset Pagination of the record set. Offset is a zero based index. (default to 0)
|
554
553
|
# @option opts [String] :_sort The sort order of the coupons. See Sorting documentation for examples of using multiple values and sorting by ascending and descending.
|
@@ -571,7 +570,6 @@ module UltracartClient
|
|
571
570
|
# @option opts [String] :expiration_date_end Expiration date end
|
572
571
|
# @option opts [Integer] :affiliate_oid Affiliate oid
|
573
572
|
# @option opts [BOOLEAN] :exclude_expired Exclude expired
|
574
|
-
# @option opts [String] :merchant_code_or_description Merchant code or description
|
575
573
|
# @option opts [Integer] :_limit The maximum number of records to return on this one API call. (Max 200)
|
576
574
|
# @option opts [Integer] :_offset Pagination of the record set. Offset is a zero based index.
|
577
575
|
# @option opts [String] :_sort The sort order of the coupons. See Sorting documentation for examples of using multiple values and sorting by ascending and descending.
|
@@ -595,7 +593,6 @@ module UltracartClient
|
|
595
593
|
query_params[:'expiration_date_end'] = opts[:'expiration_date_end'] if !opts[:'expiration_date_end'].nil?
|
596
594
|
query_params[:'affiliate_oid'] = opts[:'affiliate_oid'] if !opts[:'affiliate_oid'].nil?
|
597
595
|
query_params[:'exclude_expired'] = opts[:'exclude_expired'] if !opts[:'exclude_expired'].nil?
|
598
|
-
query_params[:'merchant_code_or_description'] = opts[:'merchant_code_or_description'] if !opts[:'merchant_code_or_description'].nil?
|
599
596
|
query_params[:'_limit'] = opts[:'_limit'] if !opts[:'_limit'].nil?
|
600
597
|
query_params[:'_offset'] = opts[:'_offset'] if !opts[:'_offset'].nil?
|
601
598
|
query_params[:'_sort'] = opts[:'_sort'] if !opts[:'_sort'].nil?
|
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.6.
|
4
|
+
version: 3.6.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-09-
|
11
|
+
date: 2021-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|