ultracart_api 3.11.2 → 3.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4884646c4fa4b3b9ef78cc7f97ab91406fd6732589bd80a18884003f00bd1a71
4
- data.tar.gz: d8f88a7ef7a109d24331e955191ad2671fff66fa4326286f414631086cadba12
3
+ metadata.gz: 5ba1cde8e1cf154f552f77d5be524e5937c72e2233816b145eead385f2f3b618
4
+ data.tar.gz: 0b1be5d1cd2f86ab816a7f03c5cc80652e7b7dce3c0afb1bbbce55f9bfb4e4f1
5
5
  SHA512:
6
- metadata.gz: b769e88deecca6c9c294de8e8162053f25485a33dd16c891b828f7922960cca86c1710744b752aab1d6d779912b5fdfc0e2ed5db2fcc84eb6c8d170b3fead923
7
- data.tar.gz: a19b58e70f2943a8bc41271a570174f32578bff64bbbb93609ffc32b84a2910843de55e03959e95b0326d9b65465df3a9d69f558a0d6ace289e150f4d8df8f11
6
+ metadata.gz: f6363dc9cee9da844a892764e87c8f23288c6514600fbd88aeda5b46b8d0d4b7bd2ffe85fda9259999c7dc73ecaf833d23878037306d024db4394778b7c8bf53
7
+ data.tar.gz: c9e70b539969a07bdcac733d603c152c3bc53137f87c22267f722c6023145a5d25e913573582d53bd286ad53021dddaf9294a2e5de926b83d25e80cb67403a13
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.11.2
10
+ - Package version: 3.11.3
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
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.11.2.gem
27
+ gem install ./ultracart_api-3.11.3.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.2.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.11.3.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.11.2'
35
+ gem 'ultracart_api', '~> 3.11.3'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1518,6 +1518,7 @@ Not every change is committed to every SDK.
1518
1518
 
1519
1519
  | Version | Date | Comments |
1520
1520
  | --: | :-: | --- |
1521
+ | 3.11.3 | 03/07/2025 | updated github readme.md files |
1521
1522
  | 3.11.2 | 03/05/2025 | added ChannelPartnerOrder.use_prior_payment_information_from_order_id |
1522
1523
  | 3.11.1 | 02/28/2025 | auto order pause method |
1523
1524
  | 3.11.0 | 02/21/2025 | ItemApi.getInventorySnapshot had bad nickname causing bad sdk method name |
data/docs/AutoOrderApi.md CHANGED
@@ -516,7 +516,7 @@ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
516
516
  api_instance = UltracartClient::AutoOrderApi.new_using_api_key(simple_key, false, false)
517
517
 
518
518
 
519
- auto_order = UltracartClient::AutoOrder.new # AutoOrder | Auto orders to pause
519
+ auto_order = UltracartClient::AutoOrder.new # AutoOrder | Auto order to pause
520
520
 
521
521
  auto_order_oid = 56 # Integer | The auto order oid to pause.
522
522
 
@@ -537,7 +537,7 @@ end
537
537
 
538
538
  Name | Type | Description | Notes
539
539
  ------------- | ------------- | ------------- | -------------
540
- **auto_order** | [**AutoOrder**](AutoOrder.md)| Auto orders to pause |
540
+ **auto_order** | [**AutoOrder**](AutoOrder.md)| Auto order to pause |
541
541
  **auto_order_oid** | **Integer**| The auto order oid to pause. |
542
542
  **_expand** | **String**| The object expansion to perform on the result. See documentation for examples | [optional]
543
543
 
@@ -573,7 +573,7 @@ module UltracartClient
573
573
  end
574
574
  # Pause auto order
575
575
  # Completely pause an auto order
576
- # @param auto_order Auto orders to pause
576
+ # @param auto_order Auto order to pause
577
577
  # @param auto_order_oid The auto order oid to pause.
578
578
  # @param [Hash] opts the optional parameters
579
579
  # @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
@@ -585,7 +585,7 @@ module UltracartClient
585
585
 
586
586
  # Pause auto order
587
587
  # Completely pause an auto order
588
- # @param auto_order Auto orders to pause
588
+ # @param auto_order Auto order to pause
589
589
  # @param auto_order_oid The auto order oid to pause.
590
590
  # @param [Hash] opts the optional parameters
591
591
  # @option opts [String] :_expand The object expansion to perform on the result. See documentation for examples
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.11.2'
14
+ VERSION = '3.11.3'
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.11.2
4
+ version: 3.11.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-05 00:00:00.000000000 Z
11
+ date: 2025-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus