ultracart_api 3.10.76 → 3.10.77
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 +1 -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: 91094d5d17015eb705708a5fd2d8c92d780a5595c49d7e3793d0672f29e37966
|
4
|
+
data.tar.gz: 7583246ba94da64955806edfb58699afda0be9ff069095589466acf63c52995e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa1783270e8b03e9f6eeab6d128f21b0268caefae73634dd5d657ca8c4dc28f580c6b2bfd1897cbae508872507e7f423834ea0154f834e0c564a1f0537285f67
|
7
|
+
data.tar.gz: eb8b863c60a6511936a8182085964249fd26a38a0af532b0ec9e927ac6bd3de6900adc46987b983b655935b81f81f1b0ca61e42030b28ed230247e3789c1467f
|
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.77
|
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.77.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.77.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.77'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1227,6 +1227,7 @@ Not every change is committed to every SDK.
|
|
1227
1227
|
|
1228
1228
|
| Version | Date | Comments |
|
1229
1229
|
| --: | :-: | --- |
|
1230
|
+
| 3.10.77 | 12/08/2022 | communications - expose the rebuild percentage |
|
1230
1231
|
| 3.10.76 | 12/06/2022 | convo - add session_start_dts to webchat context, cart - add customer_profile.signup_dts |
|
1231
1232
|
| 3.10.75 | 12/06/2022 | customer api - expose edi information and editor values |
|
1232
1233
|
| 3.10.74 | 12/02/2022 | conversations - customer last unresponded dts |
|
data/docs/EmailSegment.md
CHANGED
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
|
|
15
15
|
**merchant_id** | **String** | Merchant ID | [optional]
|
16
16
|
**name** | **String** | Name of email segment | [optional]
|
17
17
|
**rank_json** | **String** | Rank settings json | [optional]
|
18
|
+
**rebuild_percentage** | **Float** | Percentage of completion for a rebuild. The value range will be 0-1. Multiply by 100 to format for display. | [optional]
|
18
19
|
**rebuild_required** | **BOOLEAN** | True if a rebuild is required because some part of the segment has changed | [optional]
|
19
20
|
**storefront_oid** | **Integer** | Storefront oid | [optional]
|
20
21
|
**thirdparty_join_add_tags** | **Array<String>** | Third party provider tags to add when a customer joins the segment. | [optional]
|
@@ -50,6 +50,9 @@ module UltracartClient
|
|
50
50
|
# Rank settings json
|
51
51
|
attr_accessor :rank_json
|
52
52
|
|
53
|
+
# Percentage of completion for a rebuild. The value range will be 0-1. Multiply by 100 to format for display.
|
54
|
+
attr_accessor :rebuild_percentage
|
55
|
+
|
53
56
|
# True if a rebuild is required because some part of the segment has changed
|
54
57
|
attr_accessor :rebuild_required
|
55
58
|
|
@@ -92,6 +95,7 @@ module UltracartClient
|
|
92
95
|
:'merchant_id' => :'merchant_id',
|
93
96
|
:'name' => :'name',
|
94
97
|
:'rank_json' => :'rank_json',
|
98
|
+
:'rebuild_percentage' => :'rebuild_percentage',
|
95
99
|
:'rebuild_required' => :'rebuild_required',
|
96
100
|
:'storefront_oid' => :'storefront_oid',
|
97
101
|
:'thirdparty_join_add_tags' => :'thirdparty_join_add_tags',
|
@@ -119,6 +123,7 @@ module UltracartClient
|
|
119
123
|
:'merchant_id' => :'String',
|
120
124
|
:'name' => :'String',
|
121
125
|
:'rank_json' => :'String',
|
126
|
+
:'rebuild_percentage' => :'Float',
|
122
127
|
:'rebuild_required' => :'BOOLEAN',
|
123
128
|
:'storefront_oid' => :'Integer',
|
124
129
|
:'thirdparty_join_add_tags' => :'Array<String>',
|
@@ -187,6 +192,10 @@ module UltracartClient
|
|
187
192
|
self.rank_json = attributes[:'rank_json']
|
188
193
|
end
|
189
194
|
|
195
|
+
if attributes.has_key?(:'rebuild_percentage')
|
196
|
+
self.rebuild_percentage = attributes[:'rebuild_percentage']
|
197
|
+
end
|
198
|
+
|
190
199
|
if attributes.has_key?(:'rebuild_required')
|
191
200
|
self.rebuild_required = attributes[:'rebuild_required']
|
192
201
|
end
|
@@ -279,6 +288,7 @@ module UltracartClient
|
|
279
288
|
merchant_id == o.merchant_id &&
|
280
289
|
name == o.name &&
|
281
290
|
rank_json == o.rank_json &&
|
291
|
+
rebuild_percentage == o.rebuild_percentage &&
|
282
292
|
rebuild_required == o.rebuild_required &&
|
283
293
|
storefront_oid == o.storefront_oid &&
|
284
294
|
thirdparty_join_add_tags == o.thirdparty_join_add_tags &&
|
@@ -299,7 +309,7 @@ module UltracartClient
|
|
299
309
|
# Calculates hash code according to all attributes.
|
300
310
|
# @return [Fixnum] Hash code
|
301
311
|
def hash
|
302
|
-
[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
|
312
|
+
[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
|
303
313
|
end
|
304
314
|
|
305
315
|
# 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.77
|
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
|