ultracart_api 4.0.93.rc → 4.0.94.rc
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/EmailSegment.md +2 -0
- data/lib/ultracart_api/models/email_segment.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: 345dfbd650f7482716965b7a524e0a541905c7452d61b6fcf6b25217ba8722fc
|
4
|
+
data.tar.gz: f8fcc2cfc62e8335ae3ed187737999d4054a3601435cb27619cb7c1a02908802
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b42a58503acef5e404e1acdb37c458f25b9160eda970c257a0f8d9c152114211b7b77dfd3a8426b9854750536108ef110df04ef0d259cd6072fc3b2f37d5a24
|
7
|
+
data.tar.gz: e151789a9cf8d44a2abb0be910a989c87ce9a185d2787995199f80a5f0451a18218b03484fbbf95fbb6cb7062490b387103f6c9920626f6f091b2ac7aa2898c0
|
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.94.rc
|
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.94.rc.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.94.rc.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.94.rc'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1236,6 +1236,7 @@ Not every change is committed to every SDK.
|
|
1236
1236
|
|
1237
1237
|
| Version | Date | Comments |
|
1238
1238
|
| --: | :-: | --- |
|
1239
|
+
| 4.0.94-RC | 12/08/2022 | communications - expose the rebuild percentage |
|
1239
1240
|
| 4.0.93-RC | 12/06/2022 | convo - add session_start_dts to webchat context, cart - add customer_profile.signup_dts |
|
1240
1241
|
| 4.0.92-RC | 12/06/2022 | customer api - expose edi information and editor values |
|
1241
1242
|
| 4.0.91-RC | 12/02/2022 | conversations - customer last unresponded dts |
|
data/docs/EmailSegment.md
CHANGED
@@ -16,6 +16,7 @@
|
|
16
16
|
| **merchant_id** | **String** | Merchant ID | [optional] |
|
17
17
|
| **name** | **String** | Name of email segment | [optional] |
|
18
18
|
| **rank_json** | **String** | Rank settings json | [optional] |
|
19
|
+
| **rebuild_percentage** | **Float** | Percentage of completion for a rebuild. The value range will be 0-1. Multiply by 100 to format for display. | [optional] |
|
19
20
|
| **rebuild_required** | **Boolean** | True if a rebuild is required because some part of the segment has changed | [optional] |
|
20
21
|
| **storefront_oid** | **Integer** | Storefront oid | [optional] |
|
21
22
|
| **thirdparty_join_add_tags** | **Array<String>** | Third party provider tags to add when a customer joins the segment. | [optional] |
|
@@ -44,6 +45,7 @@ instance = UltracartClient::EmailSegment.new(
|
|
44
45
|
merchant_id: null,
|
45
46
|
name: null,
|
46
47
|
rank_json: null,
|
48
|
+
rebuild_percentage: null,
|
47
49
|
rebuild_required: null,
|
48
50
|
storefront_oid: null,
|
49
51
|
thirdparty_join_add_tags: null,
|
@@ -51,6 +51,9 @@ module UltracartClient
|
|
51
51
|
# Rank settings json
|
52
52
|
attr_accessor :rank_json
|
53
53
|
|
54
|
+
# Percentage of completion for a rebuild. The value range will be 0-1. Multiply by 100 to format for display.
|
55
|
+
attr_accessor :rebuild_percentage
|
56
|
+
|
54
57
|
# True if a rebuild is required because some part of the segment has changed
|
55
58
|
attr_accessor :rebuild_required
|
56
59
|
|
@@ -93,6 +96,7 @@ module UltracartClient
|
|
93
96
|
:'merchant_id' => :'merchant_id',
|
94
97
|
:'name' => :'name',
|
95
98
|
:'rank_json' => :'rank_json',
|
99
|
+
:'rebuild_percentage' => :'rebuild_percentage',
|
96
100
|
:'rebuild_required' => :'rebuild_required',
|
97
101
|
:'storefront_oid' => :'storefront_oid',
|
98
102
|
:'thirdparty_join_add_tags' => :'thirdparty_join_add_tags',
|
@@ -125,6 +129,7 @@ module UltracartClient
|
|
125
129
|
:'merchant_id' => :'String',
|
126
130
|
:'name' => :'String',
|
127
131
|
:'rank_json' => :'String',
|
132
|
+
:'rebuild_percentage' => :'Float',
|
128
133
|
:'rebuild_required' => :'Boolean',
|
129
134
|
:'storefront_oid' => :'Integer',
|
130
135
|
:'thirdparty_join_add_tags' => :'Array<String>',
|
@@ -206,6 +211,10 @@ module UltracartClient
|
|
206
211
|
self.rank_json = attributes[:'rank_json']
|
207
212
|
end
|
208
213
|
|
214
|
+
if attributes.key?(:'rebuild_percentage')
|
215
|
+
self.rebuild_percentage = attributes[:'rebuild_percentage']
|
216
|
+
end
|
217
|
+
|
209
218
|
if attributes.key?(:'rebuild_required')
|
210
219
|
self.rebuild_required = attributes[:'rebuild_required']
|
211
220
|
end
|
@@ -298,6 +307,7 @@ module UltracartClient
|
|
298
307
|
merchant_id == o.merchant_id &&
|
299
308
|
name == o.name &&
|
300
309
|
rank_json == o.rank_json &&
|
310
|
+
rebuild_percentage == o.rebuild_percentage &&
|
301
311
|
rebuild_required == o.rebuild_required &&
|
302
312
|
storefront_oid == o.storefront_oid &&
|
303
313
|
thirdparty_join_add_tags == o.thirdparty_join_add_tags &&
|
@@ -318,7 +328,7 @@ module UltracartClient
|
|
318
328
|
# Calculates hash code according to all attributes.
|
319
329
|
# @return [Integer] Hash code
|
320
330
|
def hash
|
321
|
-
[allow_csv_download, allow_facebook_audiences, created_dts, deleted, email_segment_uuid, esp_list_segment_folder_uuid, facebook_custom_audience, filter_profile_equation_json, member_count, merchant_id, name, rank_json, rebuild_required, storefront_oid, thirdparty_join_add_tags, thirdparty_join_remove_tags, thirdparty_leave_add_tags, thirdparty_leave_remove_tags, thirdparty_list_id, thirdparty_provider_name, used_by].hash
|
331
|
+
[allow_csv_download, allow_facebook_audiences, created_dts, deleted, email_segment_uuid, esp_list_segment_folder_uuid, facebook_custom_audience, filter_profile_equation_json, member_count, merchant_id, name, rank_json, rebuild_percentage, rebuild_required, storefront_oid, thirdparty_join_add_tags, thirdparty_join_remove_tags, thirdparty_leave_add_tags, thirdparty_leave_remove_tags, thirdparty_list_id, thirdparty_provider_name, used_by].hash
|
322
332
|
end
|
323
333
|
|
324
334
|
# 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: 4.0.
|
4
|
+
version: 4.0.94.rc
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|