ultracart_api 3.10.198 → 3.10.199

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: c84c57d52b189fdbbbc7b6becf0ef1c354e9d44ff1afae5810d8b75ffcd6533b
4
- data.tar.gz: bd6405f95e198c627ee1c0119e76851373dba3b5c88caddb8b3ead940e3fac11
3
+ metadata.gz: 846dcc45fbb936c21e7a6c0384e87e715c96a601a2807c2e51be9ffbf3213e88
4
+ data.tar.gz: 503f29233d9263c25a1471b9f85c5b99c875a085a4153fed56e4e798c50af954
5
5
  SHA512:
6
- metadata.gz: '08a932bd333902b86534ae965df25323d16846f9e91e020771d657e501fcd48e12cdd60050f34bd0af41be2dfe30738619f604192e83b92c7c596270bc46648a'
7
- data.tar.gz: b2121bb9449861bb8a7e1e72c343046fceb5ad037247c13da876ce01a08e0c60b9e954c3ab995e9b7b22dc43ecc8310cd347d262e59fa703e9d2ff7b41645a1a
6
+ metadata.gz: ea5b9281152077dc7e94a38dfbc4425cbf770b7365798f392ce70574b03e0c461b5788bc22305015ee5176e4e6d96cfb104ea0be6c95cf7fc44512c79be2b304
7
+ data.tar.gz: 2ddb9caee4b1094d9dbe627098a7e74b0cf59c8b684c9cfdbe5cce6377428aa023dc3311dab2799481efb1e8578b3611b11d335d59beb7813cdbcaa0cdd42f17
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.198
10
+ - Package version: 3.10.199
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.198.gem
27
+ gem install ./ultracart_api-3.10.199.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.198.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.199.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.198'
35
+ gem 'ultracart_api', '~> 3.10.199'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1505,6 +1505,7 @@ Not every change is committed to every SDK.
1505
1505
 
1506
1506
  | Version | Date | Comments |
1507
1507
  | --: | :-: | --- |
1508
+ | 3.10.199 | 05/13/2024 | conversation pbx - allow nullable day of week in time range |
1508
1509
  | 3.10.198 | 05/08/2024 | added echeck fields to channel partner order import |
1509
1510
  | 3.10.197 | 05/02/2024 | conversation - new method to load pbx audio usage |
1510
1511
  | 3.10.196 | 05/02/2024 | autoorder - fields to record merge association and tstamp |
data/docs/CartCheckout.md CHANGED
@@ -4,6 +4,7 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **comments** | **String** | Comments from the customer. Rarely used on the single page checkout. | [optional]
7
+ **current_step** | **String** | Current step of the checkout (read only) | [optional]
7
8
  **custom_field1** | **String** | Custom field 1 | [optional]
8
9
  **custom_field10** | **String** | Custom field 10 | [optional]
9
10
  **custom_field2** | **String** | Custom field 2 | [optional]
@@ -17,6 +17,9 @@ module UltracartClient
17
17
  # Comments from the customer. Rarely used on the single page checkout.
18
18
  attr_accessor :comments
19
19
 
20
+ # Current step of the checkout (read only)
21
+ attr_accessor :current_step
22
+
20
23
  # Custom field 1
21
24
  attr_accessor :custom_field1
22
25
 
@@ -69,6 +72,7 @@ module UltracartClient
69
72
  def self.attribute_map
70
73
  {
71
74
  :'comments' => :'comments',
75
+ :'current_step' => :'current_step',
72
76
  :'custom_field1' => :'custom_field1',
73
77
  :'custom_field10' => :'custom_field10',
74
78
  :'custom_field2' => :'custom_field2',
@@ -92,6 +96,7 @@ module UltracartClient
92
96
  def self.swagger_types
93
97
  {
94
98
  :'comments' => :'String',
99
+ :'current_step' => :'String',
95
100
  :'custom_field1' => :'String',
96
101
  :'custom_field10' => :'String',
97
102
  :'custom_field2' => :'String',
@@ -123,6 +128,10 @@ module UltracartClient
123
128
  self.comments = attributes[:'comments']
124
129
  end
125
130
 
131
+ if attributes.has_key?(:'current_step')
132
+ self.current_step = attributes[:'current_step']
133
+ end
134
+
126
135
  if attributes.has_key?(:'custom_field1')
127
136
  self.custom_field1 = attributes[:'custom_field1']
128
137
  end
@@ -402,6 +411,7 @@ module UltracartClient
402
411
  return true if self.equal?(o)
403
412
  self.class == o.class &&
404
413
  comments == o.comments &&
414
+ current_step == o.current_step &&
405
415
  custom_field1 == o.custom_field1 &&
406
416
  custom_field10 == o.custom_field10 &&
407
417
  custom_field2 == o.custom_field2 &&
@@ -429,7 +439,7 @@ module UltracartClient
429
439
  # Calculates hash code according to all attributes.
430
440
  # @return [Fixnum] Hash code
431
441
  def hash
432
- [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
442
+ [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
433
443
  end
434
444
 
435
445
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.198'
14
+ VERSION = '3.10.199'
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.198
4
+ version: 3.10.199
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