ultracart_api 3.4.4 → 3.4.5
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/ConfigurationApi.md +2 -2
- data/lib/ultracart_api/api/configuration_api.rb +3 -3
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df5dca8eabc621812f5c227f3f9db88c062331ba8bf0e75100dbda0b88dfe7b6
|
|
4
|
+
data.tar.gz: 527ec15414ff54e105a043b9bb2ac0f8098dc2f15f31df193e7ff701f8227384
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1053b0c2532a66131de73a5a16a11331503765e446cfb14b22aa0472816bd9a725809ce728ed21ef2838ab00f47951c12a4f5fe1417bd79dd9036d08a3aeaa90
|
|
7
|
+
data.tar.gz: c180a7ff27ad2ea0159839d0d8caa306530368a52e13653b7c6764c2040a5b7e36e22f34ac7a92e48dca99fe8ad6ce9d870b8fe04523c5e0962dfb8c8f22f6a6
|
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.4.
|
|
10
|
+
- Package version: 3.4.5
|
|
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.4.
|
|
27
|
+
gem install ./ultracart_api-3.4.5.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.4.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.4.5.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.4.
|
|
35
|
+
gem 'ultracart_api', '~> 3.4.5'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1099,6 +1099,7 @@ Not every change is committed to every SDK.
|
|
|
1099
1099
|
|
|
1100
1100
|
| Version | Date | Comments |
|
|
1101
1101
|
| --: | :-: | --- |
|
|
1102
|
+
| 3.4.5 | 08/03/2021 | configuration api bug fix for a bad response object on updateRotatingTransactionGateway |
|
|
1102
1103
|
| 3.4.3 | 08/03/2021 | package tracking - add event_iso_date and event_timezone_id |
|
|
1103
1104
|
| 3.4.2 | 07/29/2021 | bug fixes for new configuration api |
|
|
1104
1105
|
| 3.4.1 | 07/29/2021 | bug fixes for new configuration api |
|
data/docs/ConfigurationApi.md
CHANGED
|
@@ -652,7 +652,7 @@ Name | Type | Description | Notes
|
|
|
652
652
|
|
|
653
653
|
|
|
654
654
|
# **update_rotating_transaction_gateway**
|
|
655
|
-
>
|
|
655
|
+
> RotatingTransactionGatewayResponse update_rotating_transaction_gateway(rtg_oid, rotating_transaction_gateway)
|
|
656
656
|
|
|
657
657
|
Update a rotating transaction gateway
|
|
658
658
|
|
|
@@ -691,7 +691,7 @@ Name | Type | Description | Notes
|
|
|
691
691
|
|
|
692
692
|
### Return type
|
|
693
693
|
|
|
694
|
-
[**
|
|
694
|
+
[**RotatingTransactionGatewayResponse**](RotatingTransactionGatewayResponse.md)
|
|
695
695
|
|
|
696
696
|
### Authorization
|
|
697
697
|
|
|
@@ -728,7 +728,7 @@ module UltracartClient
|
|
|
728
728
|
# @param rtg_oid The rtg_oid to update.
|
|
729
729
|
# @param rotating_transaction_gateway Rotating transaction gateway
|
|
730
730
|
# @param [Hash] opts the optional parameters
|
|
731
|
-
# @return [
|
|
731
|
+
# @return [RotatingTransactionGatewayResponse]
|
|
732
732
|
def update_rotating_transaction_gateway(rtg_oid, rotating_transaction_gateway, opts = {})
|
|
733
733
|
data, _status_code, _headers = update_rotating_transaction_gateway_with_http_info(rtg_oid, rotating_transaction_gateway, opts)
|
|
734
734
|
data
|
|
@@ -739,7 +739,7 @@ module UltracartClient
|
|
|
739
739
|
# @param rtg_oid The rtg_oid to update.
|
|
740
740
|
# @param rotating_transaction_gateway Rotating transaction gateway
|
|
741
741
|
# @param [Hash] opts the optional parameters
|
|
742
|
-
# @return [Array<(
|
|
742
|
+
# @return [Array<(RotatingTransactionGatewayResponse, Fixnum, Hash)>] RotatingTransactionGatewayResponse data, response status code and response headers
|
|
743
743
|
def update_rotating_transaction_gateway_with_http_info(rtg_oid, rotating_transaction_gateway, opts = {})
|
|
744
744
|
if @api_client.config.debugging
|
|
745
745
|
@api_client.config.logger.debug 'Calling API: ConfigurationApi.update_rotating_transaction_gateway ...'
|
|
@@ -778,7 +778,7 @@ module UltracartClient
|
|
|
778
778
|
:form_params => form_params,
|
|
779
779
|
:body => post_body,
|
|
780
780
|
:auth_names => auth_names,
|
|
781
|
-
:return_type => '
|
|
781
|
+
:return_type => 'RotatingTransactionGatewayResponse')
|
|
782
782
|
if @api_client.config.debugging
|
|
783
783
|
@api_client.config.logger.debug "API called: ConfigurationApi#update_rotating_transaction_gateway\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
784
784
|
end
|