ultracart_api 3.10.154 → 3.10.155

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e1a56abe6fda00ce5357098faa5696c58084af2d2072cb7b08dde77147f038ff
4
- data.tar.gz: ea1592a7ce66666cf7f9976e6e49f29b18230f34d9fd1f83e2131a9d68acc984
3
+ metadata.gz: 57080fecb18b095e1f44bd2eab80895accce496e85a876e62bed6b67e0f60789
4
+ data.tar.gz: 5447019d580b5937c776098e3dd906d22bf0bc8b25f2ea61bf617d703e9068e1
5
5
  SHA512:
6
- metadata.gz: cb158b4c64ab215f81481afafaeba292b027907ea13d94ea9b0e6dde4b398d9d8f8669476cdecfece79bd0de7b8bd4a7c11f437bfc50f0588b2f35d5caf3554c
7
- data.tar.gz: ef227d180a367e6e11a850093af59585518eb9f4a85d1816adebe9f270cdce24719e229c4ffa79c11bd8261039e069b300ab20eab972de9c0b5db785fdb1aa2e
6
+ metadata.gz: 704f9b3869416c846440b9f4937b93cd6031db37f7350c9a59b39c1b17b87d446bf1a2b3f81d519739be61345d617d4b8f5ebf644fa877ea075a5c48bd843399
7
+ data.tar.gz: 4041322469ec3c62c2cfd4c98a186fe2091f46cfd36245e4e035a50b1f244e4939c186842c26f05d322008101741bf57d33d496ecca3b330638bd0840e776d91
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.10.154
10
+ - Package version: 3.10.155
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.10.154.gem
27
+ gem install ./ultracart_api-3.10.155.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.154.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.155.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.10.154'
35
+ gem 'ultracart_api', '~> 3.10.155'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1360,6 +1360,7 @@ Not every change is committed to every SDK.
1360
1360
 
1361
1361
  | Version | Date | Comments |
1362
1362
  | --: | :-: | --- |
1363
+ | 3.10.155 | 08/16/2023 | added validate_original_order query param to auto order update method |
1363
1364
  | 3.10.154 | 08/14/2023 | esp - add require_order_within_last to the settings object |
1364
1365
  | 3.10.153 | 08/14/2023 | esp - expose rate limiter values in settings object |
1365
1366
  | 3.10.152 | 07/27/2023 | dw bi - add settings to the report and page objects |
data/docs/AutoOrderApi.md CHANGED
@@ -462,6 +462,7 @@ auto_order = UltracartClient::AutoOrder.new # AutoOrder | Auto order to update
462
462
  auto_order_oid = 56 # Integer | The auto order oid to update.
463
463
 
464
464
  opts = {
465
+ validate_original_order: 'validate_original_order_example', # String | Validate original order before updating
465
466
  _expand: '_expand_example' # String | The object expansion to perform on the result. See documentation for examples
466
467
  }
467
468
 
@@ -480,6 +481,7 @@ Name | Type | Description | Notes
480
481
  ------------- | ------------- | ------------- | -------------
481
482
  **auto_order** | [**AutoOrder**](AutoOrder.md)| Auto order to update |
482
483
  **auto_order_oid** | **Integer**| The auto order oid to update. |
484
+ **validate_original_order** | **String**| Validate original order before updating | [optional]
483
485
  **_expand** | **String**| The object expansion to perform on the result. See documentation for examples | [optional]
484
486
 
485
487
  ### Return type
@@ -512,6 +512,7 @@ module UltracartClient
512
512
  # @param auto_order Auto order to update
513
513
  # @param auto_order_oid The auto order oid to update.
514
514
  # @param [Hash] opts the optional parameters
515
+ # @option opts [String] :validate_original_order Validate original order before updating
515
516
  # @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
516
517
  # @return [AutoOrderResponse]
517
518
  def update_auto_order(auto_order, auto_order_oid, opts = {})
@@ -524,6 +525,7 @@ module UltracartClient
524
525
  # @param auto_order Auto order to update
525
526
  # @param auto_order_oid The auto order oid to update.
526
527
  # @param [Hash] opts the optional parameters
528
+ # @option opts [String] :validate_original_order Validate original order before updating
527
529
  # @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
528
530
  # @return [Array<(AutoOrderResponse, Fixnum, Hash)>] AutoOrderResponse data, response status code and response headers
529
531
  def update_auto_order_with_http_info(auto_order, auto_order_oid, opts = {})
@@ -543,6 +545,7 @@ module UltracartClient
543
545
 
544
546
  # query parameters
545
547
  query_params = {}
548
+ query_params[:'validate_original_order'] = opts[:'validate_original_order'] if !opts[:'validate_original_order'].nil?
546
549
  query_params[:'_expand'] = opts[:'_expand'] if !opts[:'_expand'].nil?
547
550
 
548
551
  # header parameters
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.154'
14
+ VERSION = '3.10.155'
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: 3.10.154
4
+ version: 3.10.155
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