ultracart_api 3.10.10 → 3.10.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8bd98ee3c7def977a233112816500dcfd796038b3977a17e8570dddbb990373a
4
- data.tar.gz: c27c296a15c0f66655d288510fb61a2ce5fb068db31ed88b1e163ea9d29e3406
3
+ metadata.gz: b793c9f5c6226c2d93d02c2bb1be367d1d69ff0490a831d4fcfae5bfe9d00acb
4
+ data.tar.gz: a2d23c7c71322745264de1ae6688165b04d208b9bf9582811ae88d6451e5ee7c
5
5
  SHA512:
6
- metadata.gz: 724f38c7ca60a4d0a9f3237077b31a43686dab25fda1f8a972b173dc078bd553727b964e0602b3a2d82b22cbab65cec5d504285a873533c23d8cc21e9162e4c5
7
- data.tar.gz: 2f26b7901a4fb2523e1e818cf2040f122bbe016d07bb340eb9f81debc3309f144f9eabbb92399c87cd591cb291fa8fb763ea184b5dd21a33ace16a80dbc89b6a
6
+ metadata.gz: 58ef54881f616391a3080e7bb3880f07052b4dad6da72b5b5423904c634b451df754bb45516059c4175ec69ca3191ce3897617f48a6ccfe06bb1de1ba6f0a40b
7
+ data.tar.gz: cbead0b3a548d120a51d4ff81102cfff3f186f5bc94dff18f3c6924d46c4a94c17b7f45f9c220e79808d790b775cde65a2b248a22bef812fb50d20bb9b0fe642
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
10
+ - Package version: 3.10.11
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.10.gem
27
+ gem install ./ultracart_api-3.10.11.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.10.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.11.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.10'
35
+ gem 'ultracart_api', '~> 3.10.11'
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.11 | 06/10/2022 | esp segment 3rd party sync add/remove tag fields |
1182
1183
  | 3.10.10 | 06/06/2022 | storefront communication options for syncing to third party provider list |
1183
1184
  | 3.10.9 | 06/01/2022 | bug fixes for customer profile store credit |
1184
1185
  | 3.10.8 | 05/27/2022 | customer store credit |
data/docs/EmailSegment.md CHANGED
@@ -17,6 +17,10 @@ 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_join_add_tags** | **Array<String>** | Third party provider tags to add when a customer joins the segment. | [optional]
21
+ **thirdparty_join_remove_tags** | **Array<String>** | Third party provider tags to remove when a customer joins the segment. | [optional]
22
+ **thirdparty_leave_add_tags** | **Array<String>** | Third party provider tags to add when a customer leaves the segment. | [optional]
23
+ **thirdparty_leave_remove_tags** | **Array<String>** | Third party provider tags to remove when a customer leaves the segment. | [optional]
20
24
  **thirdparty_list_id** | **String** | List id of third party provider to sync with. | [optional]
21
25
  **thirdparty_provider_name** | **String** | Name of third party provider to sync segment to a list with. | [optional]
22
26
  **used_by** | [**Array<EmailListSegmentUsedBy>**](EmailListSegmentUsedBy.md) | Details on the flows or campaigns that use this list. | [optional]
@@ -56,6 +56,18 @@ module UltracartClient
56
56
  # Storefront oid
57
57
  attr_accessor :storefront_oid
58
58
 
59
+ # Third party provider tags to add when a customer joins the segment.
60
+ attr_accessor :thirdparty_join_add_tags
61
+
62
+ # Third party provider tags to remove when a customer joins the segment.
63
+ attr_accessor :thirdparty_join_remove_tags
64
+
65
+ # Third party provider tags to add when a customer leaves the segment.
66
+ attr_accessor :thirdparty_leave_add_tags
67
+
68
+ # Third party provider tags to remove when a customer leaves the segment.
69
+ attr_accessor :thirdparty_leave_remove_tags
70
+
59
71
  # List id of third party provider to sync with.
60
72
  attr_accessor :thirdparty_list_id
61
73
 
@@ -82,6 +94,10 @@ module UltracartClient
82
94
  :'rank_json' => :'rank_json',
83
95
  :'rebuild_required' => :'rebuild_required',
84
96
  :'storefront_oid' => :'storefront_oid',
97
+ :'thirdparty_join_add_tags' => :'thirdparty_join_add_tags',
98
+ :'thirdparty_join_remove_tags' => :'thirdparty_join_remove_tags',
99
+ :'thirdparty_leave_add_tags' => :'thirdparty_leave_add_tags',
100
+ :'thirdparty_leave_remove_tags' => :'thirdparty_leave_remove_tags',
85
101
  :'thirdparty_list_id' => :'thirdparty_list_id',
86
102
  :'thirdparty_provider_name' => :'thirdparty_provider_name',
87
103
  :'used_by' => :'used_by'
@@ -105,6 +121,10 @@ module UltracartClient
105
121
  :'rank_json' => :'String',
106
122
  :'rebuild_required' => :'BOOLEAN',
107
123
  :'storefront_oid' => :'Integer',
124
+ :'thirdparty_join_add_tags' => :'Array<String>',
125
+ :'thirdparty_join_remove_tags' => :'Array<String>',
126
+ :'thirdparty_leave_add_tags' => :'Array<String>',
127
+ :'thirdparty_leave_remove_tags' => :'Array<String>',
108
128
  :'thirdparty_list_id' => :'String',
109
129
  :'thirdparty_provider_name' => :'String',
110
130
  :'used_by' => :'Array<EmailListSegmentUsedBy>'
@@ -175,6 +195,30 @@ module UltracartClient
175
195
  self.storefront_oid = attributes[:'storefront_oid']
176
196
  end
177
197
 
198
+ if attributes.has_key?(:'thirdparty_join_add_tags')
199
+ if (value = attributes[:'thirdparty_join_add_tags']).is_a?(Array)
200
+ self.thirdparty_join_add_tags = value
201
+ end
202
+ end
203
+
204
+ if attributes.has_key?(:'thirdparty_join_remove_tags')
205
+ if (value = attributes[:'thirdparty_join_remove_tags']).is_a?(Array)
206
+ self.thirdparty_join_remove_tags = value
207
+ end
208
+ end
209
+
210
+ if attributes.has_key?(:'thirdparty_leave_add_tags')
211
+ if (value = attributes[:'thirdparty_leave_add_tags']).is_a?(Array)
212
+ self.thirdparty_leave_add_tags = value
213
+ end
214
+ end
215
+
216
+ if attributes.has_key?(:'thirdparty_leave_remove_tags')
217
+ if (value = attributes[:'thirdparty_leave_remove_tags']).is_a?(Array)
218
+ self.thirdparty_leave_remove_tags = value
219
+ end
220
+ end
221
+
178
222
  if attributes.has_key?(:'thirdparty_list_id')
179
223
  self.thirdparty_list_id = attributes[:'thirdparty_list_id']
180
224
  end
@@ -237,6 +281,10 @@ module UltracartClient
237
281
  rank_json == o.rank_json &&
238
282
  rebuild_required == o.rebuild_required &&
239
283
  storefront_oid == o.storefront_oid &&
284
+ thirdparty_join_add_tags == o.thirdparty_join_add_tags &&
285
+ thirdparty_join_remove_tags == o.thirdparty_join_remove_tags &&
286
+ thirdparty_leave_add_tags == o.thirdparty_leave_add_tags &&
287
+ thirdparty_leave_remove_tags == o.thirdparty_leave_remove_tags &&
240
288
  thirdparty_list_id == o.thirdparty_list_id &&
241
289
  thirdparty_provider_name == o.thirdparty_provider_name &&
242
290
  used_by == o.used_by
@@ -251,7 +299,7 @@ module UltracartClient
251
299
  # Calculates hash code according to all attributes.
252
300
  # @return [Fixnum] Hash code
253
301
  def 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
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
255
303
  end
256
304
 
257
305
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.10'
14
+ VERSION = '3.10.11'
15
15
  end
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.10
4
+ version: 3.10.11
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-06 00:00:00.000000000 Z
11
+ date: 2022-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus