ultracart_api 4.0.190 → 4.0.191
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcb077f60b7902dd7e337594f44b0654507994f16128e2ff81b2a1726746224c
|
4
|
+
data.tar.gz: f68d55ded81b7d89f8fd5015bbe9b9f2b1c09927483283bdcf0b9d37448724eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1465e2a4a63d6f64caf2dc26ccbc7b7b6cf80547bba43e7f305fa044fba33878d57b9ff423d2cfe578df56fd1c274e3038aea46359f86f83378a459f5399837f
|
7
|
+
data.tar.gz: bb986959567db4e998398e1042a22fdac5b3568b77e2ac26b7b63669916bcee9f150987bf34fe9526276dcb7bdb31b8d9ecdb73e4ffe892c25feed92078bfb76
|
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.
|
10
|
+
- Package version: 4.0.191
|
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.
|
27
|
+
gem install ./ultracart_api-4.0.191.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.191.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.
|
36
|
+
gem 'ultracart_api', '~> 4.0.191'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1404,6 +1404,7 @@ Not every change is committed to every SDK.
|
|
1404
1404
|
|
1405
1405
|
| Version | Date | Comments |
|
1406
1406
|
| --: | :-: | --- |
|
1407
|
+
| 4.0.191 | 11/20/2023 | coupon - add item tag support to percent off items and free shipping |
|
1407
1408
|
| 4.0.190 | 11/20/2023 | item.google_product_search.color bugfix for bad length validation: 20 to 100 |
|
1408
1409
|
| 4.0.189 | 11/13/2023 | coupon - editor values for item tags |
|
1409
1410
|
| 4.0.188 | 11/13/2023 | coupon - percent off items - add support for include/exclude by item tags |
|
@@ -5,7 +5,9 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **discount_percent** | **Float** | The percentage of subtotal discount | [optional] |
|
8
|
+
| **excluded_item_tags** | **Array<String>** | A list of item tags which cannot be discounted. | [optional] |
|
8
9
|
| **excluded_items** | **Array<String>** | A list of items which cannot be discounted. | [optional] |
|
10
|
+
| **item_tags** | **Array<String>** | An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items. | [optional] |
|
9
11
|
| **items** | **Array<String>** | An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items. | [optional] |
|
10
12
|
|
11
13
|
## Example
|
@@ -15,7 +17,9 @@ require 'ultracart_api'
|
|
15
17
|
|
16
18
|
instance = UltracartClient::CouponPercentOffItemsAndFreeShipping.new(
|
17
19
|
discount_percent: null,
|
20
|
+
excluded_item_tags: null,
|
18
21
|
excluded_items: null,
|
22
|
+
item_tags: null,
|
19
23
|
items: null
|
20
24
|
)
|
21
25
|
```
|
@@ -18,9 +18,15 @@ module UltracartClient
|
|
18
18
|
# The percentage of subtotal discount
|
19
19
|
attr_accessor :discount_percent
|
20
20
|
|
21
|
+
# A list of item tags which cannot be discounted.
|
22
|
+
attr_accessor :excluded_item_tags
|
23
|
+
|
21
24
|
# A list of items which cannot be discounted.
|
22
25
|
attr_accessor :excluded_items
|
23
26
|
|
27
|
+
# An optional list of item tags which will receive a discount. If blank, discount applies to all items except excluded items.
|
28
|
+
attr_accessor :item_tags
|
29
|
+
|
24
30
|
# An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
|
25
31
|
attr_accessor :items
|
26
32
|
|
@@ -28,7 +34,9 @@ module UltracartClient
|
|
28
34
|
def self.attribute_map
|
29
35
|
{
|
30
36
|
:'discount_percent' => :'discount_percent',
|
37
|
+
:'excluded_item_tags' => :'excluded_item_tags',
|
31
38
|
:'excluded_items' => :'excluded_items',
|
39
|
+
:'item_tags' => :'item_tags',
|
32
40
|
:'items' => :'items'
|
33
41
|
}
|
34
42
|
end
|
@@ -42,7 +50,9 @@ module UltracartClient
|
|
42
50
|
def self.openapi_types
|
43
51
|
{
|
44
52
|
:'discount_percent' => :'Float',
|
53
|
+
:'excluded_item_tags' => :'Array<String>',
|
45
54
|
:'excluded_items' => :'Array<String>',
|
55
|
+
:'item_tags' => :'Array<String>',
|
46
56
|
:'items' => :'Array<String>'
|
47
57
|
}
|
48
58
|
end
|
@@ -72,12 +82,24 @@ module UltracartClient
|
|
72
82
|
self.discount_percent = attributes[:'discount_percent']
|
73
83
|
end
|
74
84
|
|
85
|
+
if attributes.key?(:'excluded_item_tags')
|
86
|
+
if (value = attributes[:'excluded_item_tags']).is_a?(Array)
|
87
|
+
self.excluded_item_tags = value
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
75
91
|
if attributes.key?(:'excluded_items')
|
76
92
|
if (value = attributes[:'excluded_items']).is_a?(Array)
|
77
93
|
self.excluded_items = value
|
78
94
|
end
|
79
95
|
end
|
80
96
|
|
97
|
+
if attributes.key?(:'item_tags')
|
98
|
+
if (value = attributes[:'item_tags']).is_a?(Array)
|
99
|
+
self.item_tags = value
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
81
103
|
if attributes.key?(:'items')
|
82
104
|
if (value = attributes[:'items']).is_a?(Array)
|
83
105
|
self.items = value
|
@@ -104,7 +126,9 @@ module UltracartClient
|
|
104
126
|
return true if self.equal?(o)
|
105
127
|
self.class == o.class &&
|
106
128
|
discount_percent == o.discount_percent &&
|
129
|
+
excluded_item_tags == o.excluded_item_tags &&
|
107
130
|
excluded_items == o.excluded_items &&
|
131
|
+
item_tags == o.item_tags &&
|
108
132
|
items == o.items
|
109
133
|
end
|
110
134
|
|
@@ -117,7 +141,7 @@ module UltracartClient
|
|
117
141
|
# Calculates hash code according to all attributes.
|
118
142
|
# @return [Integer] Hash code
|
119
143
|
def hash
|
120
|
-
[discount_percent, excluded_items, items].hash
|
144
|
+
[discount_percent, excluded_item_tags, excluded_items, item_tags, items].hash
|
121
145
|
end
|
122
146
|
|
123
147
|
# Builds the object from hash
|