ultracart_api 4.1.2 → 4.1.3
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/AutoOrderApi.md +2 -2
- data/lib/ultracart_api/api/auto_order_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: 3862728b643050ad70317e3c0a2e4c8ee10f4732cce25712e596b574fdd8e104
|
4
|
+
data.tar.gz: dbbd9ea72813c2fba6f3c94d772ad7dcaf8642f4848b5260c31cc3f63150655b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 338d7afdfdd47cd908c9a54ad18e8275802090f4e0f2098eac6f141aa3c3b3fae0d56d2c06be49e93432dee474c305aebaddba4ff65ba7925660a14bf53946cd
|
7
|
+
data.tar.gz: 9da725f887aa11e613cdf918355d33bdbb51e0b9d586f97d499410d20ec4a8c8fe742f3fb9495080c420ec10c4ed470028b8c06eab82869ecde0c271a3b51a30
|
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.1.
|
10
|
+
- Package version: 4.1.3
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
|
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.1.
|
27
|
+
gem install ./ultracart_api-4.1.3.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.1.
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.1.3.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.1.
|
36
|
+
gem 'ultracart_api', '~> 4.1.3'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1526,6 +1526,7 @@ Not every change is committed to every SDK.
|
|
1526
1526
|
|
1527
1527
|
| Version | Date | Comments |
|
1528
1528
|
| --: | :-: | --- |
|
1529
|
+
| 4.1.3 | 03/07/2025 | updated github readme.md files |
|
1529
1530
|
| 4.1.2 | 03/05/2025 | added ChannelPartnerOrder.use_prior_payment_information_from_order_id |
|
1530
1531
|
| 4.1.1 | 02/28/2025 | auto order pause method |
|
1531
1532
|
| 4.1.0 | 02/21/2025 | ItemApi.getInventorySnapshot had bad nickname causing bad sdk method name |
|
data/docs/AutoOrderApi.md
CHANGED
@@ -690,7 +690,7 @@ require_relative '../constants' # https://github.com/UltraCart/sdk_samples/blob/
|
|
690
690
|
|
691
691
|
api = UltracartClient::AutoOrderApi.new_using_api_key(Constants::API_KEY, Constants::VERIFY_SSL, Constants::DEBUG_MODE)
|
692
692
|
auto_order_oid = 56 # Integer | The auto order oid to pause.
|
693
|
-
auto_order = UltracartClient::AutoOrder.new # AutoOrder | Auto
|
693
|
+
auto_order = UltracartClient::AutoOrder.new # AutoOrder | Auto order to pause
|
694
694
|
opts = {
|
695
695
|
_expand: '_expand_example' # String | The object expansion to perform on the result. See documentation for examples
|
696
696
|
}
|
@@ -727,7 +727,7 @@ end
|
|
727
727
|
| Name | Type | Description | Notes |
|
728
728
|
| ---- | ---- | ----------- | ----- |
|
729
729
|
| **auto_order_oid** | **Integer** | The auto order oid to pause. | |
|
730
|
-
| **auto_order** | [**AutoOrder**](AutoOrder.md) | Auto
|
730
|
+
| **auto_order** | [**AutoOrder**](AutoOrder.md) | Auto order to pause | |
|
731
731
|
| **_expand** | **String** | The object expansion to perform on the result. See documentation for examples | [optional] |
|
732
732
|
|
733
733
|
### Return type
|
@@ -661,7 +661,7 @@ module UltracartClient
|
|
661
661
|
# Pause auto order
|
662
662
|
# Completely pause an auto order
|
663
663
|
# @param auto_order_oid [Integer] The auto order oid to pause.
|
664
|
-
# @param auto_order [AutoOrder] Auto
|
664
|
+
# @param auto_order [AutoOrder] Auto order to pause
|
665
665
|
# @param [Hash] opts the optional parameters
|
666
666
|
# @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
|
667
667
|
# @return [AutoOrderResponse]
|
@@ -673,7 +673,7 @@ module UltracartClient
|
|
673
673
|
# Pause auto order
|
674
674
|
# Completely pause an auto order
|
675
675
|
# @param auto_order_oid [Integer] The auto order oid to pause.
|
676
|
-
# @param auto_order [AutoOrder] Auto
|
676
|
+
# @param auto_order [AutoOrder] Auto order to pause
|
677
677
|
# @param [Hash] opts the optional parameters
|
678
678
|
# @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
|
679
679
|
# @return [Array<(AutoOrderResponse, Integer, Hash)>] AutoOrderResponse data, response status code and response headers
|
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.1.
|
4
|
+
version: 4.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|