ultracart_api 4.0.171 → 4.0.172

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ade3e58500ff5aebe765d881b9e37a9ed2eca8f346d017a932960f1c23bf48a
4
- data.tar.gz: 55d5b097820a0ffe7d202d270a0ea0987f6b76f789641f7654da14b3e23fb233
3
+ metadata.gz: ff43a4bf81d01c001c8d3d65e9f7e808cee00caaa627b360b92f5575201134d0
4
+ data.tar.gz: cb51249dced632b59a67dc66b35fe46ea1172a027094905ed94d94499e692411
5
5
  SHA512:
6
- metadata.gz: d4b978cd9f5090e96666f7f24366bf8dd7de391e05f2a9c3fce37bf14963b3877d050e2a40a1233f263c557b752d25bce328f35a285ffcafe4c45151cf3160ee
7
- data.tar.gz: 5729201118d9a908437cd8580871c701d24cf375b01502c9fefa606da86460ffaa7439a3b792960d4c453e2a876108baf622144d6727336d2e36988aaa52361f
6
+ metadata.gz: ade3fbcaf6f52cfdb44e079ee18668ee9796dc8b07a689a02305869853bed0063f318da0ed2f36d12b0d0fe29e75e83429a64037cb9dc12cd67ecde08f93e153
7
+ data.tar.gz: 3c0fc32599ba2eaad8edc2c270d1681517002c15a73f1b6759856bf8206a31106be0ba681f4749191a33ad9f08986b50fa27b353b4c9f8117a5f9c5d28f1f84c
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.0.171
10
+ - Package version: 4.0.172
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
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.0.171.gem
27
+ gem install ./ultracart_api-4.0.172.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.171.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.172.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.0.171'
36
+ gem 'ultracart_api', '~> 4.0.172'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1368,6 +1368,7 @@ Not every change is committed to every SDK.
1368
1368
 
1369
1369
  | Version | Date | Comments |
1370
1370
  | --: | :-: | --- |
1371
+ | 4.0.172 | 08/16/2023 | added validate_original_order query param to auto order update method |
1371
1372
  | 4.0.171 | 08/14/2023 | esp - add require_order_within_last to the settings object |
1372
1373
  | 4.0.170 | 08/14/2023 | esp - expose rate limiter values in settings object |
1373
1374
  | 4.0.169 | 07/27/2023 | dw bi - add settings to the report and page objects |
data/docs/AutoOrderApi.md CHANGED
@@ -613,6 +613,7 @@ api = UltracartClient::AutoOrderApi.new_using_api_key(Constants::API_KEY, Consta
613
613
  auto_order_oid = 56 # Integer | The auto order oid to update.
614
614
  auto_order = UltracartClient::AutoOrder.new # AutoOrder | Auto order to update
615
615
  opts = {
616
+ validate_original_order: 'validate_original_order_example', # String | Validate original order before updating
616
617
  _expand: '_expand_example' # String | The object expansion to perform on the result. See documentation for examples
617
618
  }
618
619
 
@@ -649,6 +650,7 @@ end
649
650
  | ---- | ---- | ----------- | ----- |
650
651
  | **auto_order_oid** | **Integer** | The auto order oid to update. | |
651
652
  | **auto_order** | [**AutoOrder**](AutoOrder.md) | Auto order to update | |
653
+ | **validate_original_order** | **String** | Validate original order before updating | [optional] |
652
654
  | **_expand** | **String** | The object expansion to perform on the result. See documentation for examples | [optional] |
653
655
 
654
656
  ### Return type
@@ -585,6 +585,7 @@ module UltracartClient
585
585
  # @param auto_order_oid [Integer] The auto order oid to update.
586
586
  # @param auto_order [AutoOrder] Auto order to update
587
587
  # @param [Hash] opts the optional parameters
588
+ # @option opts [String] :validate_original_order Validate original order before updating
588
589
  # @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
589
590
  # @return [AutoOrderResponse]
590
591
  def update_auto_order(auto_order_oid, auto_order, opts = {})
@@ -597,6 +598,7 @@ module UltracartClient
597
598
  # @param auto_order_oid [Integer] The auto order oid to update.
598
599
  # @param auto_order [AutoOrder] Auto order to update
599
600
  # @param [Hash] opts the optional parameters
601
+ # @option opts [String] :validate_original_order Validate original order before updating
600
602
  # @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
601
603
  # @return [Array<(AutoOrderResponse, Integer, Hash)>] AutoOrderResponse data, response status code and response headers
602
604
  def update_auto_order_with_http_info(auto_order_oid, auto_order, opts = {})
@@ -616,6 +618,7 @@ module UltracartClient
616
618
 
617
619
  # query parameters
618
620
  query_params = opts[:query_params] || {}
621
+ query_params[:'validate_original_order'] = opts[:'validate_original_order'] if !opts[:'validate_original_order'].nil?
619
622
  query_params[:'_expand'] = opts[:'_expand'] if !opts[:'_expand'].nil?
620
623
 
621
624
  # header parameters
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.171'
14
+ VERSION = '4.0.172'
15
15
  end
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.0.171
4
+ version: 4.0.172
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-14 00:00:00.000000000 Z
11
+ date: 2023-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus