ultracart_api 4.0.215 → 4.0.216

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: 521074a5d1a6dfd7258769ecc711b401db9cb5143f60b2b4431b7c611b5319b6
4
- data.tar.gz: 316beb1ac49bfdb9a0218808603b1477ca22173fee876a95642be0a66f46ab6a
3
+ metadata.gz: 6d82e08c35cd9aea6a661df348fc4e18f6d56c84172c47dc22ed8755625943ca
4
+ data.tar.gz: 2a50c3e624284f2a982f54d122279180d3ecd3552b1a816a1eb2997c7ae9d550
5
5
  SHA512:
6
- metadata.gz: 7a32b0a4ea581e23941c3092a01665869759756b16a7b5bcf174dcd8f9f04667cefb6248b75416c91a15ace75328b57d0ea1f4e3dde9687706f934e089e9eff1
7
- data.tar.gz: 7a36687d83a28ba2064ff07584efb048fb244e4fce17687724e7e6086bb49cb2edd8c8a39b5eaa7358e0752922ac1e4544cb2518f259a260c3abb7ecf2b25b1e
6
+ metadata.gz: bc3349bea6b808b55112f041d6f6be7efd024af8652142f27c2d8ae6b9d4e4e98a249aa7bb909996c5b92445c95dd06b11b1e3f5841c3500b20bd8d9c99ae205
7
+ data.tar.gz: cf6ba28b9bd5897698366807e0952d862bcb961b0347b11ee83dca7a9daaa498abe4d465b2df697b22f3d0aa98261f7fc7345163dd46a5da7b4c67870963c318
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.215
10
+ - Package version: 4.0.216
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.215.gem
27
+ gem install ./ultracart_api-4.0.216.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.215.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.216.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.215'
36
+ gem 'ultracart_api', '~> 4.0.216'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1513,6 +1513,7 @@ Not every change is committed to every SDK.
1513
1513
 
1514
1514
  | Version | Date | Comments |
1515
1515
  | --: | :-: | --- |
1516
+ | 4.0.216 | 05/13/2024 | conversation pbx - allow nullable day of week in time range |
1516
1517
  | 4.0.215 | 05/08/2024 | added echeck fields to channel partner order import |
1517
1518
  | 4.0.214 | 05/02/2024 | conversation - new method to load pbx audio usage |
1518
1519
  | 4.0.213 | 05/02/2024 | autoorder - fields to record merge association and tstamp |
data/docs/CartCheckout.md CHANGED
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **comments** | **String** | Comments from the customer. Rarely used on the single page checkout. | [optional] |
8
+ | **current_step** | **String** | Current step of the checkout (read only) | [optional] |
8
9
  | **custom_field1** | **String** | Custom field 1 | [optional] |
9
10
  | **custom_field10** | **String** | Custom field 10 | [optional] |
10
11
  | **custom_field2** | **String** | Custom field 2 | [optional] |
@@ -29,6 +30,7 @@ require 'ultracart_api'
29
30
 
30
31
  instance = UltracartClient::CartCheckout.new(
31
32
  comments: null,
33
+ current_step: null,
32
34
  custom_field1: null,
33
35
  custom_field10: null,
34
36
  custom_field2: null,
@@ -18,6 +18,9 @@ module UltracartClient
18
18
  # Comments from the customer. Rarely used on the single page checkout.
19
19
  attr_accessor :comments
20
20
 
21
+ # Current step of the checkout (read only)
22
+ attr_accessor :current_step
23
+
21
24
  # Custom field 1
22
25
  attr_accessor :custom_field1
23
26
 
@@ -70,6 +73,7 @@ module UltracartClient
70
73
  def self.attribute_map
71
74
  {
72
75
  :'comments' => :'comments',
76
+ :'current_step' => :'current_step',
73
77
  :'custom_field1' => :'custom_field1',
74
78
  :'custom_field10' => :'custom_field10',
75
79
  :'custom_field2' => :'custom_field2',
@@ -98,6 +102,7 @@ module UltracartClient
98
102
  def self.openapi_types
99
103
  {
100
104
  :'comments' => :'String',
105
+ :'current_step' => :'String',
101
106
  :'custom_field1' => :'String',
102
107
  :'custom_field10' => :'String',
103
108
  :'custom_field2' => :'String',
@@ -142,6 +147,10 @@ module UltracartClient
142
147
  self.comments = attributes[:'comments']
143
148
  end
144
149
 
150
+ if attributes.key?(:'current_step')
151
+ self.current_step = attributes[:'current_step']
152
+ end
153
+
145
154
  if attributes.key?(:'custom_field1')
146
155
  self.custom_field1 = attributes[:'custom_field1']
147
156
  end
@@ -421,6 +430,7 @@ module UltracartClient
421
430
  return true if self.equal?(o)
422
431
  self.class == o.class &&
423
432
  comments == o.comments &&
433
+ current_step == o.current_step &&
424
434
  custom_field1 == o.custom_field1 &&
425
435
  custom_field10 == o.custom_field10 &&
426
436
  custom_field2 == o.custom_field2 &&
@@ -448,7 +458,7 @@ module UltracartClient
448
458
  # Calculates hash code according to all attributes.
449
459
  # @return [Integer] Hash code
450
460
  def hash
451
- [comments, custom_field1, custom_field10, custom_field2, custom_field3, custom_field4, custom_field5, custom_field6, custom_field7, custom_field8, custom_field9, ip_address, return_code, return_url, screen_branding_theme_code, storefront_host_name, user_agent].hash
461
+ [comments, current_step, custom_field1, custom_field10, custom_field2, custom_field3, custom_field4, custom_field5, custom_field6, custom_field7, custom_field8, custom_field9, ip_address, return_code, return_url, screen_branding_theme_code, storefront_host_name, user_agent].hash
452
462
  end
453
463
 
454
464
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.215'
14
+ VERSION = '4.0.216'
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.215
4
+ version: 4.0.216
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-08 00:00:00.000000000 Z
11
+ date: 2024-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus