ultracart_api 3.10.9 → 3.10.10
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 +21 -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: 8bd98ee3c7def977a233112816500dcfd796038b3977a17e8570dddbb990373a
|
4
|
+
data.tar.gz: c27c296a15c0f66655d288510fb61a2ce5fb068db31ed88b1e163ea9d29e3406
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 724f38c7ca60a4d0a9f3237077b31a43686dab25fda1f8a972b173dc078bd553727b964e0602b3a2d82b22cbab65cec5d504285a873533c23d8cc21e9162e4c5
|
7
|
+
data.tar.gz: 2f26b7901a4fb2523e1e818cf2040f122bbe016d07bb340eb9f81debc3309f144f9eabbb92399c87cd591cb291fa8fb763ea184b5dd21a33ace16a80dbc89b6a
|
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.10
|
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.10.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.10.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.10'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1179,6 +1179,7 @@ Not every change is committed to every SDK.
|
|
1179
1179
|
|
1180
1180
|
| Version | Date | Comments |
|
1181
1181
|
| --: | :-: | --- |
|
1182
|
+
| 3.10.10 | 06/06/2022 | storefront communication options for syncing to third party provider list |
|
1182
1183
|
| 3.10.9 | 06/01/2022 | bug fixes for customer profile store credit |
|
1183
1184
|
| 3.10.8 | 05/27/2022 | customer store credit |
|
1184
1185
|
| 3.10.7 | 05/23/2022 | add internal gift cert to order summary, addl provider info for storefront comm |
|
data/docs/EmailSegment.md
CHANGED
@@ -17,6 +17,8 @@ Name | Type | Description | Notes
|
|
17
17
|
**rank_json** | **String** | Rank settings json | [optional]
|
18
18
|
**rebuild_required** | **BOOLEAN** | True if a rebuild is required because some part of the segment has changed | [optional]
|
19
19
|
**storefront_oid** | **Integer** | Storefront oid | [optional]
|
20
|
+
**thirdparty_list_id** | **String** | List id of third party provider to sync with. | [optional]
|
21
|
+
**thirdparty_provider_name** | **String** | Name of third party provider to sync segment to a list with. | [optional]
|
20
22
|
**used_by** | [**Array<EmailListSegmentUsedBy>**](EmailListSegmentUsedBy.md) | Details on the flows or campaigns that use this list. | [optional]
|
21
23
|
|
22
24
|
|
@@ -56,6 +56,12 @@ module UltracartClient
|
|
56
56
|
# Storefront oid
|
57
57
|
attr_accessor :storefront_oid
|
58
58
|
|
59
|
+
# List id of third party provider to sync with.
|
60
|
+
attr_accessor :thirdparty_list_id
|
61
|
+
|
62
|
+
# Name of third party provider to sync segment to a list with.
|
63
|
+
attr_accessor :thirdparty_provider_name
|
64
|
+
|
59
65
|
# Details on the flows or campaigns that use this list.
|
60
66
|
attr_accessor :used_by
|
61
67
|
|
@@ -76,6 +82,8 @@ module UltracartClient
|
|
76
82
|
:'rank_json' => :'rank_json',
|
77
83
|
:'rebuild_required' => :'rebuild_required',
|
78
84
|
:'storefront_oid' => :'storefront_oid',
|
85
|
+
:'thirdparty_list_id' => :'thirdparty_list_id',
|
86
|
+
:'thirdparty_provider_name' => :'thirdparty_provider_name',
|
79
87
|
:'used_by' => :'used_by'
|
80
88
|
}
|
81
89
|
end
|
@@ -97,6 +105,8 @@ module UltracartClient
|
|
97
105
|
:'rank_json' => :'String',
|
98
106
|
:'rebuild_required' => :'BOOLEAN',
|
99
107
|
:'storefront_oid' => :'Integer',
|
108
|
+
:'thirdparty_list_id' => :'String',
|
109
|
+
:'thirdparty_provider_name' => :'String',
|
100
110
|
:'used_by' => :'Array<EmailListSegmentUsedBy>'
|
101
111
|
}
|
102
112
|
end
|
@@ -165,6 +175,14 @@ module UltracartClient
|
|
165
175
|
self.storefront_oid = attributes[:'storefront_oid']
|
166
176
|
end
|
167
177
|
|
178
|
+
if attributes.has_key?(:'thirdparty_list_id')
|
179
|
+
self.thirdparty_list_id = attributes[:'thirdparty_list_id']
|
180
|
+
end
|
181
|
+
|
182
|
+
if attributes.has_key?(:'thirdparty_provider_name')
|
183
|
+
self.thirdparty_provider_name = attributes[:'thirdparty_provider_name']
|
184
|
+
end
|
185
|
+
|
168
186
|
if attributes.has_key?(:'used_by')
|
169
187
|
if (value = attributes[:'used_by']).is_a?(Array)
|
170
188
|
self.used_by = value
|
@@ -219,6 +237,8 @@ module UltracartClient
|
|
219
237
|
rank_json == o.rank_json &&
|
220
238
|
rebuild_required == o.rebuild_required &&
|
221
239
|
storefront_oid == o.storefront_oid &&
|
240
|
+
thirdparty_list_id == o.thirdparty_list_id &&
|
241
|
+
thirdparty_provider_name == o.thirdparty_provider_name &&
|
222
242
|
used_by == o.used_by
|
223
243
|
end
|
224
244
|
|
@@ -231,7 +251,7 @@ module UltracartClient
|
|
231
251
|
# Calculates hash code according to all attributes.
|
232
252
|
# @return [Fixnum] Hash code
|
233
253
|
def hash
|
234
|
-
[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, used_by].hash
|
254
|
+
[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_list_id, thirdparty_provider_name, used_by].hash
|
235
255
|
end
|
236
256
|
|
237
257
|
# 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.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|