ultracart_api 3.10.198 → 3.10.200
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 +6 -4
- data/docs/CartCheckout.md +1 -0
- data/lib/ultracart_api/models/cart_checkout.rb +11 -1
- data/lib/ultracart_api/models/conversation_pbx_time_based.rb +12 -12
- 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: eb89272a4e71c26e89af5749c89512a7e038b3a439e7a9a00c23946b921b9eb3
|
|
4
|
+
data.tar.gz: ebfeba6d4ee8890b8520eeae5fa02ed40f954534b7a921dbe990752536b15119
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cad471f62e7a6e5583ca375779ecd8bbd04d5d376f7fe7d97c3a4cdb34729bb2ea733e1ff58a74e0db08ed85cccc86d6f8f92dfd6822b9691388a5c7749a200
|
|
7
|
+
data.tar.gz: 5bfcc6971b986af1ed5a9bf8b1267224097f79514a8451f4e40e8bb64e58e0fdb011900a170aa56351641dbfeeaf43f40dfeeaafff8b98309ccc763d2afc7a42
|
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.200
|
|
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.200.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.200.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.200'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1505,6 +1505,8 @@ Not every change is committed to every SDK.
|
|
|
1505
1505
|
|
|
1506
1506
|
| Version | Date | Comments |
|
|
1507
1507
|
| --: | :-: | --- |
|
|
1508
|
+
| 3.10.200 | 05/13/2024 | conversation pbx - bug fix on camelCase property names |
|
|
1509
|
+
| 3.10.199 | 05/13/2024 | conversation pbx - allow nullable day of week in time range |
|
|
1508
1510
|
| 3.10.198 | 05/08/2024 | added echeck fields to channel partner order import |
|
|
1509
1511
|
| 3.10.197 | 05/02/2024 | conversation - new method to load pbx audio usage |
|
|
1510
1512
|
| 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
|
|
@@ -25,10 +25,10 @@ module UltracartClient
|
|
|
25
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
26
26
|
def self.attribute_map
|
|
27
27
|
{
|
|
28
|
-
:'conversation_pbx_time_based_uuid' => :'
|
|
29
|
-
:'mapping_config' => :'
|
|
30
|
-
:'merchant_id' => :'
|
|
31
|
-
:'time_based_name' => :'
|
|
28
|
+
:'conversation_pbx_time_based_uuid' => :'conversation_pbx_time_based_uuid',
|
|
29
|
+
:'mapping_config' => :'mapping_config',
|
|
30
|
+
:'merchant_id' => :'merchant_id',
|
|
31
|
+
:'time_based_name' => :'time_based_name'
|
|
32
32
|
}
|
|
33
33
|
end
|
|
34
34
|
|
|
@@ -50,20 +50,20 @@ module UltracartClient
|
|
|
50
50
|
# convert string to symbol for hash key
|
|
51
51
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
52
52
|
|
|
53
|
-
if attributes.has_key?(:'
|
|
54
|
-
self.conversation_pbx_time_based_uuid = attributes[:'
|
|
53
|
+
if attributes.has_key?(:'conversation_pbx_time_based_uuid')
|
|
54
|
+
self.conversation_pbx_time_based_uuid = attributes[:'conversation_pbx_time_based_uuid']
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
-
if attributes.has_key?(:'
|
|
58
|
-
self.mapping_config = attributes[:'
|
|
57
|
+
if attributes.has_key?(:'mapping_config')
|
|
58
|
+
self.mapping_config = attributes[:'mapping_config']
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
-
if attributes.has_key?(:'
|
|
62
|
-
self.merchant_id = attributes[:'
|
|
61
|
+
if attributes.has_key?(:'merchant_id')
|
|
62
|
+
self.merchant_id = attributes[:'merchant_id']
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
if attributes.has_key?(:'
|
|
66
|
-
self.time_based_name = attributes[:'
|
|
65
|
+
if attributes.has_key?(:'time_based_name')
|
|
66
|
+
self.time_based_name = attributes[:'time_based_name']
|
|
67
67
|
end
|
|
68
68
|
end
|
|
69
69
|
|
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.200
|
|
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
|