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 +4 -4
- data/README.md +5 -4
- data/docs/CartCheckout.md +1 -0
- data/lib/ultracart_api/models/cart_checkout.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 846dcc45fbb936c21e7a6c0384e87e715c96a601a2807c2e51be9ffbf3213e88
|
|
4
|
+
data.tar.gz: 503f29233d9263c25a1471b9f85c5b99c875a085a4153fed56e4e798c50af954
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
27
|
+
gem install ./ultracart_api-3.10.199.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
|
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.
|
|
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
|
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.
|
|
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-
|
|
11
|
+
date: 2024-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|