ultracart_api 3.1.3 → 3.1.4
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 +4 -4
- data/docs/CouponApi.md +2 -2
- data/lib/ultracart_api/api/coupon_api.rb +2 -2
- 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: bc7bfc87ce7536e81d085fa26eb997e96404937f787c5408aa4ecc6e5509d612
|
|
4
|
+
data.tar.gz: 3c6a358d21f2be6145eaf8daf7182abb1b5c851d4ee70800f850807d3fc80e95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b452649d96d40b0b741a2a710b4104347186c5c78a9be3d6deb87fdfe82b1fd3cdedec0a5c09111b826aeaec30251c5e6f5edf450da7895b7eeef9206256f41
|
|
7
|
+
data.tar.gz: '09f3e6821b2613e04c50c90f54b679e5b8f9169c7e872a81ded0179da3bd15ed373de1ed91f4458ed1dc1917f4ee97d57865ac461117bf948a46538a10e7fdd6'
|
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.1.
|
|
10
|
+
- Package version: 3.1.4
|
|
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.1.
|
|
27
|
+
gem install ./ultracart_api-3.1.4.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.1.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.1.4.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.1.
|
|
35
|
+
gem 'ultracart_api', '~> 3.1.4'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
data/docs/CouponApi.md
CHANGED
|
@@ -947,7 +947,7 @@ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
|
|
|
947
947
|
api_instance = UltracartClient::CouponApi.new_using_api_key(simple_key, false, false)
|
|
948
948
|
|
|
949
949
|
|
|
950
|
-
coupons_request = UltracartClient::CouponsRequest.new # CouponsRequest | Coupons to update (synchronous maximum
|
|
950
|
+
coupons_request = UltracartClient::CouponsRequest.new # CouponsRequest | Coupons to update (synchronous maximum 50 / asynchronous maximum 100)
|
|
951
951
|
|
|
952
952
|
opts = {
|
|
953
953
|
_expand: '_expand_example', # String | The object expansion to perform on the result. See documentation for examples
|
|
@@ -968,7 +968,7 @@ end
|
|
|
968
968
|
|
|
969
969
|
Name | Type | Description | Notes
|
|
970
970
|
------------- | ------------- | ------------- | -------------
|
|
971
|
-
**coupons_request** | [**CouponsRequest**](CouponsRequest.md)| Coupons to update (synchronous maximum
|
|
971
|
+
**coupons_request** | [**CouponsRequest**](CouponsRequest.md)| Coupons to update (synchronous maximum 50 / asynchronous maximum 100) |
|
|
972
972
|
**_expand** | **String**| The object expansion to perform on the result. See documentation for examples | [optional]
|
|
973
973
|
**_placeholders** | **BOOLEAN**| Whether or not placeholder values should be returned in the result. Useful for UIs that consume this REST API. | [optional]
|
|
974
974
|
**_async** | **BOOLEAN**| True if the operation should be run async. No result returned | [optional]
|
|
@@ -1034,7 +1034,7 @@ module UltracartClient
|
|
|
1034
1034
|
end
|
|
1035
1035
|
# Update multiple coupons
|
|
1036
1036
|
# Update multiple coupon on the UltraCart account.
|
|
1037
|
-
# @param coupons_request Coupons to update (synchronous maximum
|
|
1037
|
+
# @param coupons_request Coupons to update (synchronous maximum 50 / asynchronous maximum 100)
|
|
1038
1038
|
# @param [Hash] opts the optional parameters
|
|
1039
1039
|
# @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
|
|
1040
1040
|
# @option opts [BOOLEAN] :_placeholders Whether or not placeholder values should be returned in the result. Useful for UIs that consume this REST API.
|
|
@@ -1047,7 +1047,7 @@ module UltracartClient
|
|
|
1047
1047
|
|
|
1048
1048
|
# Update multiple coupons
|
|
1049
1049
|
# Update multiple coupon on the UltraCart account.
|
|
1050
|
-
# @param coupons_request Coupons to update (synchronous maximum
|
|
1050
|
+
# @param coupons_request Coupons to update (synchronous maximum 50 / asynchronous maximum 100)
|
|
1051
1051
|
# @param [Hash] opts the optional parameters
|
|
1052
1052
|
# @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
|
|
1053
1053
|
# @option opts [BOOLEAN] :_placeholders Whether or not placeholder values should be returned in the result. Useful for UIs that consume this REST API.
|
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.1.
|
|
4
|
+
version: 3.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|