ultracart_api 4.0.58.rc → 4.0.59.rc

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: 206deb75e21fb2a4d9efe7b6e189d7ea7bf68580866dcde171fa10f5757e790d
4
- data.tar.gz: 9ed88d43c55f74363b6006df5926aa6d3012a39f314ae06d0f17176927eb9825
3
+ metadata.gz: '0878d28ffa7fe2f9d9dae951260f81d8b0aff184ef17e9fe5851f9a0a1952aee'
4
+ data.tar.gz: 9a0257c0a573a3f65254f9ef433705a027b4145a8e60ad4001fe5a42d6bdfc50
5
5
  SHA512:
6
- metadata.gz: 60fd4bc3266bea7a0e10f3d0b40984dff684ce8ad945c31acea17887da10fdf90182f9254413438d4e75f7e5e232f0c648c4045566518b23f50534f88dc6122b
7
- data.tar.gz: 6cee56e4a0795664101442d6240db26c2e9bdcaa949e7e2d4efd9c64cb06cc8a02e1b04daa940c79d1bd0b3532f9f4c28582a70c65a50f2cd2acebad79e4004c
6
+ metadata.gz: a9b076a555858bcbce790169dafa6cd7190a4689e7527039731a06c14614c8bd9703dfa3d6ef86be1881fbdd15df6027b646ce95d729248b776246a260d3c2bf
7
+ data.tar.gz: c9b2049ffe2569fcb49f93bbffad4548ff3f63fc2ccc874bff7f8afa49bdc820c283150412dbd4f29f3b77a3bd212c16a99603d3310b1ec95715c1619caa8a53
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.58.rc
10
+ - Package version: 4.0.59.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.58.rc.gem
27
+ gem install ./ultracart_api-4.0.59.rc.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.58.rc.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.59.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.58.rc'
36
+ gem 'ultracart_api', '~> 4.0.59.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1188,6 +1188,7 @@ Not every change is committed to every SDK.
1188
1188
 
1189
1189
  | Version | Date | Comments |
1190
1190
  | --: | :-: | --- |
1191
+ | 4.0.59-RC | 08/30/2022 | storefront comm fields for sms configuration |
1191
1192
  | 4.0.58-RC | 08/26/2022 | postcard address fields for comm sequence testing |
1192
1193
  | 4.0.57-RC | 08/22/2022 | exposing individual reviews within item.review object |
1193
1194
  | 4.0.56-RC | 08/19/2022 | order api - added cell phone fields for sms |
@@ -25,6 +25,8 @@
25
25
  | **revenue_per_customer_formatted** | **String** | Revenue per customer associated with campaign | [optional] |
26
26
  | **scheduled_dts** | **String** | Scheduled date | [optional] |
27
27
  | **screenshot_large_full_url** | **String** | URL to a large full length screenshot | [optional] |
28
+ | **sms_esp_twilio_uuid** | **String** | Twilio Account UUID. Null for none | [optional] |
29
+ | **sms_phone_number** | **String** | Twilio SMS Phone Number. Null for none | [optional] |
28
30
  | **status** | **String** | Status of the campaign of draft, archived, and sent | [optional] |
29
31
  | **status_dts** | **String** | Timestamp when the last status change happened | [optional] |
30
32
  | **storefront_oid** | **Integer** | Storefront oid | [optional] |
@@ -56,6 +58,8 @@ instance = UltracartClient::EmailCampaign.new(
56
58
  revenue_per_customer_formatted: null,
57
59
  scheduled_dts: null,
58
60
  screenshot_large_full_url: null,
61
+ sms_esp_twilio_uuid: null,
62
+ sms_phone_number: null,
59
63
  status: null,
60
64
  status_dts: null,
61
65
  storefront_oid: null
data/docs/EmailFlow.md CHANGED
@@ -26,6 +26,8 @@
26
26
  | **revenue_formatted** | **String** | Revenue, formatted | [optional] |
27
27
  | **revenue_per_customer_formatted** | **String** | Revenue per customer, formatted | [optional] |
28
28
  | **screenshot_large_full_url** | **String** | URL to a large full length screenshot | [optional] |
29
+ | **sms_esp_twilio_uuid** | **String** | Twilio Account UUID. Null for none | [optional] |
30
+ | **sms_phone_number** | **String** | Twilio SMS Phone Number. Null for none | [optional] |
29
31
  | **status** | **String** | Status of the campaign of draft, archived, active, and inactive | [optional] |
30
32
  | **status_dts** | **String** | Timestamp when the last status change happened | [optional] |
31
33
  | **storefront_oid** | **Integer** | Storefront oid | [optional] |
@@ -61,6 +63,8 @@ instance = UltracartClient::EmailFlow.new(
61
63
  revenue_formatted: null,
62
64
  revenue_per_customer_formatted: null,
63
65
  screenshot_large_full_url: null,
66
+ sms_esp_twilio_uuid: null,
67
+ sms_phone_number: null,
64
68
  status: null,
65
69
  status_dts: null,
66
70
  storefront_oid: null,
@@ -13,6 +13,8 @@
13
13
  | **postcard_from_name** | **String** | | [optional] |
14
14
  | **postcard_from_postal_code** | **String** | | [optional] |
15
15
  | **postcard_from_state** | **String** | | [optional] |
16
+ | **sms_esp_twilio_uuid** | **String** | | [optional] |
17
+ | **sms_phone_number** | **String** | | [optional] |
16
18
  | **transactional_esp_domain_user** | **String** | | [optional] |
17
19
  | **transactional_esp_domain_uuid** | **String** | | [optional] |
18
20
  | **transactional_esp_friendly_name** | **String** | | [optional] |
@@ -32,6 +34,8 @@ instance = UltracartClient::EmailSettings.new(
32
34
  postcard_from_name: null,
33
35
  postcard_from_postal_code: null,
34
36
  postcard_from_state: null,
37
+ sms_esp_twilio_uuid: null,
38
+ sms_phone_number: null,
35
39
  transactional_esp_domain_user: null,
36
40
  transactional_esp_domain_uuid: null,
37
41
  transactional_esp_friendly_name: null
@@ -78,6 +78,12 @@ module UltracartClient
78
78
  # URL to a large full length screenshot
79
79
  attr_accessor :screenshot_large_full_url
80
80
 
81
+ # Twilio Account UUID. Null for none
82
+ attr_accessor :sms_esp_twilio_uuid
83
+
84
+ # Twilio SMS Phone Number. Null for none
85
+ attr_accessor :sms_phone_number
86
+
81
87
  # Status of the campaign of draft, archived, and sent
82
88
  attr_accessor :status
83
89
 
@@ -111,6 +117,8 @@ module UltracartClient
111
117
  :'revenue_per_customer_formatted' => :'revenue_per_customer_formatted',
112
118
  :'scheduled_dts' => :'scheduled_dts',
113
119
  :'screenshot_large_full_url' => :'screenshot_large_full_url',
120
+ :'sms_esp_twilio_uuid' => :'sms_esp_twilio_uuid',
121
+ :'sms_phone_number' => :'sms_phone_number',
114
122
  :'status' => :'status',
115
123
  :'status_dts' => :'status_dts',
116
124
  :'storefront_oid' => :'storefront_oid'
@@ -146,6 +154,8 @@ module UltracartClient
146
154
  :'revenue_per_customer_formatted' => :'String',
147
155
  :'scheduled_dts' => :'String',
148
156
  :'screenshot_large_full_url' => :'String',
157
+ :'sms_esp_twilio_uuid' => :'String',
158
+ :'sms_phone_number' => :'String',
149
159
  :'status' => :'String',
150
160
  :'status_dts' => :'String',
151
161
  :'storefront_oid' => :'Integer'
@@ -259,6 +269,14 @@ module UltracartClient
259
269
  self.screenshot_large_full_url = attributes[:'screenshot_large_full_url']
260
270
  end
261
271
 
272
+ if attributes.key?(:'sms_esp_twilio_uuid')
273
+ self.sms_esp_twilio_uuid = attributes[:'sms_esp_twilio_uuid']
274
+ end
275
+
276
+ if attributes.key?(:'sms_phone_number')
277
+ self.sms_phone_number = attributes[:'sms_phone_number']
278
+ end
279
+
262
280
  if attributes.key?(:'status')
263
281
  self.status = attributes[:'status']
264
282
  end
@@ -326,6 +344,8 @@ module UltracartClient
326
344
  revenue_per_customer_formatted == o.revenue_per_customer_formatted &&
327
345
  scheduled_dts == o.scheduled_dts &&
328
346
  screenshot_large_full_url == o.screenshot_large_full_url &&
347
+ sms_esp_twilio_uuid == o.sms_esp_twilio_uuid &&
348
+ sms_phone_number == o.sms_phone_number &&
329
349
  status == o.status &&
330
350
  status_dts == o.status_dts &&
331
351
  storefront_oid == o.storefront_oid
@@ -340,7 +360,7 @@ module UltracartClient
340
360
  # Calculates hash code according to all attributes.
341
361
  # @return [Integer] Hash code
342
362
  def hash
343
- [click_rate_formatted, created_dts, deleted, email_campaign_uuid, email_communication_sequence_uuid, end_once_customer_purchases, end_once_customer_purchases_anywhere, esp_campaign_folder_uuid, esp_domain_user, esp_domain_uuid, esp_friendly_name, library_item_oid, memberships, merchant_id, name, open_rate_formatted, prevent_sending_due_to_spam, revenue_formatted, revenue_per_customer_formatted, scheduled_dts, screenshot_large_full_url, status, status_dts, storefront_oid].hash
363
+ [click_rate_formatted, created_dts, deleted, email_campaign_uuid, email_communication_sequence_uuid, end_once_customer_purchases, end_once_customer_purchases_anywhere, esp_campaign_folder_uuid, esp_domain_user, esp_domain_uuid, esp_friendly_name, library_item_oid, memberships, merchant_id, name, open_rate_formatted, prevent_sending_due_to_spam, revenue_formatted, revenue_per_customer_formatted, scheduled_dts, screenshot_large_full_url, sms_esp_twilio_uuid, sms_phone_number, status, status_dts, storefront_oid].hash
344
364
  end
345
365
 
346
366
  # Builds the object from hash
@@ -81,6 +81,12 @@ module UltracartClient
81
81
  # URL to a large full length screenshot
82
82
  attr_accessor :screenshot_large_full_url
83
83
 
84
+ # Twilio Account UUID. Null for none
85
+ attr_accessor :sms_esp_twilio_uuid
86
+
87
+ # Twilio SMS Phone Number. Null for none
88
+ attr_accessor :sms_phone_number
89
+
84
90
  # Status of the campaign of draft, archived, active, and inactive
85
91
  attr_accessor :status
86
92
 
@@ -124,6 +130,8 @@ module UltracartClient
124
130
  :'revenue_formatted' => :'revenue_formatted',
125
131
  :'revenue_per_customer_formatted' => :'revenue_per_customer_formatted',
126
132
  :'screenshot_large_full_url' => :'screenshot_large_full_url',
133
+ :'sms_esp_twilio_uuid' => :'sms_esp_twilio_uuid',
134
+ :'sms_phone_number' => :'sms_phone_number',
127
135
  :'status' => :'status',
128
136
  :'status_dts' => :'status_dts',
129
137
  :'storefront_oid' => :'storefront_oid',
@@ -163,6 +171,8 @@ module UltracartClient
163
171
  :'revenue_formatted' => :'String',
164
172
  :'revenue_per_customer_formatted' => :'String',
165
173
  :'screenshot_large_full_url' => :'String',
174
+ :'sms_esp_twilio_uuid' => :'String',
175
+ :'sms_phone_number' => :'String',
166
176
  :'status' => :'String',
167
177
  :'status_dts' => :'String',
168
178
  :'storefront_oid' => :'Integer',
@@ -281,6 +291,14 @@ module UltracartClient
281
291
  self.screenshot_large_full_url = attributes[:'screenshot_large_full_url']
282
292
  end
283
293
 
294
+ if attributes.key?(:'sms_esp_twilio_uuid')
295
+ self.sms_esp_twilio_uuid = attributes[:'sms_esp_twilio_uuid']
296
+ end
297
+
298
+ if attributes.key?(:'sms_phone_number')
299
+ self.sms_phone_number = attributes[:'sms_phone_number']
300
+ end
301
+
284
302
  if attributes.key?(:'status')
285
303
  self.status = attributes[:'status']
286
304
  end
@@ -361,6 +379,8 @@ module UltracartClient
361
379
  revenue_formatted == o.revenue_formatted &&
362
380
  revenue_per_customer_formatted == o.revenue_per_customer_formatted &&
363
381
  screenshot_large_full_url == o.screenshot_large_full_url &&
382
+ sms_esp_twilio_uuid == o.sms_esp_twilio_uuid &&
383
+ sms_phone_number == o.sms_phone_number &&
364
384
  status == o.status &&
365
385
  status_dts == o.status_dts &&
366
386
  storefront_oid == o.storefront_oid &&
@@ -378,7 +398,7 @@ module UltracartClient
378
398
  # Calculates hash code according to all attributes.
379
399
  # @return [Integer] Hash code
380
400
  def hash
381
- [allow_multiple_concurrent_enrollments, back_populating, click_rate_formatted, created_dts, deleted, email_communication_sequence_uuid, email_flow_uuid, end_once_customer_purchases, end_once_customer_purchases_anywhere, enrolled_customers, esp_domain_user, esp_domain_uuid, esp_flow_folder_uuid, esp_friendly_name, filter_profile_equation_json, library_item_oid, merchant_id, name, open_rate_formatted, revenue_formatted, revenue_per_customer_formatted, screenshot_large_full_url, status, status_dts, storefront_oid, trigger_parameter, trigger_parameter_name, trigger_type].hash
401
+ [allow_multiple_concurrent_enrollments, back_populating, click_rate_formatted, created_dts, deleted, email_communication_sequence_uuid, email_flow_uuid, end_once_customer_purchases, end_once_customer_purchases_anywhere, enrolled_customers, esp_domain_user, esp_domain_uuid, esp_flow_folder_uuid, esp_friendly_name, filter_profile_equation_json, library_item_oid, merchant_id, name, open_rate_formatted, revenue_formatted, revenue_per_customer_formatted, screenshot_large_full_url, sms_esp_twilio_uuid, sms_phone_number, status, status_dts, storefront_oid, trigger_parameter, trigger_parameter_name, trigger_type].hash
382
402
  end
383
403
 
384
404
  # Builds the object from hash
@@ -33,6 +33,10 @@ module UltracartClient
33
33
 
34
34
  attr_accessor :postcard_from_state
35
35
 
36
+ attr_accessor :sms_esp_twilio_uuid
37
+
38
+ attr_accessor :sms_phone_number
39
+
36
40
  attr_accessor :transactional_esp_domain_user
37
41
 
38
42
  attr_accessor :transactional_esp_domain_uuid
@@ -51,6 +55,8 @@ module UltracartClient
51
55
  :'postcard_from_name' => :'postcard_from_name',
52
56
  :'postcard_from_postal_code' => :'postcard_from_postal_code',
53
57
  :'postcard_from_state' => :'postcard_from_state',
58
+ :'sms_esp_twilio_uuid' => :'sms_esp_twilio_uuid',
59
+ :'sms_phone_number' => :'sms_phone_number',
54
60
  :'transactional_esp_domain_user' => :'transactional_esp_domain_user',
55
61
  :'transactional_esp_domain_uuid' => :'transactional_esp_domain_uuid',
56
62
  :'transactional_esp_friendly_name' => :'transactional_esp_friendly_name'
@@ -74,6 +80,8 @@ module UltracartClient
74
80
  :'postcard_from_name' => :'String',
75
81
  :'postcard_from_postal_code' => :'String',
76
82
  :'postcard_from_state' => :'String',
83
+ :'sms_esp_twilio_uuid' => :'String',
84
+ :'sms_phone_number' => :'String',
77
85
  :'transactional_esp_domain_user' => :'String',
78
86
  :'transactional_esp_domain_uuid' => :'String',
79
87
  :'transactional_esp_friendly_name' => :'String'
@@ -137,6 +145,14 @@ module UltracartClient
137
145
  self.postcard_from_state = attributes[:'postcard_from_state']
138
146
  end
139
147
 
148
+ if attributes.key?(:'sms_esp_twilio_uuid')
149
+ self.sms_esp_twilio_uuid = attributes[:'sms_esp_twilio_uuid']
150
+ end
151
+
152
+ if attributes.key?(:'sms_phone_number')
153
+ self.sms_phone_number = attributes[:'sms_phone_number']
154
+ end
155
+
140
156
  if attributes.key?(:'transactional_esp_domain_user')
141
157
  self.transactional_esp_domain_user = attributes[:'transactional_esp_domain_user']
142
158
  end
@@ -177,6 +193,8 @@ module UltracartClient
177
193
  postcard_from_name == o.postcard_from_name &&
178
194
  postcard_from_postal_code == o.postcard_from_postal_code &&
179
195
  postcard_from_state == o.postcard_from_state &&
196
+ sms_esp_twilio_uuid == o.sms_esp_twilio_uuid &&
197
+ sms_phone_number == o.sms_phone_number &&
180
198
  transactional_esp_domain_user == o.transactional_esp_domain_user &&
181
199
  transactional_esp_domain_uuid == o.transactional_esp_domain_uuid &&
182
200
  transactional_esp_friendly_name == o.transactional_esp_friendly_name
@@ -191,7 +209,7 @@ module UltracartClient
191
209
  # Calculates hash code according to all attributes.
192
210
  # @return [Integer] Hash code
193
211
  def hash
194
- [marketing_esp_domain_user, marketing_esp_domain_uuid, marketing_esp_friendly_name, postcard_from_address1, postcard_from_address2, postcard_from_city, postcard_from_name, postcard_from_postal_code, postcard_from_state, transactional_esp_domain_user, transactional_esp_domain_uuid, transactional_esp_friendly_name].hash
212
+ [marketing_esp_domain_user, marketing_esp_domain_uuid, marketing_esp_friendly_name, postcard_from_address1, postcard_from_address2, postcard_from_city, postcard_from_name, postcard_from_postal_code, postcard_from_state, sms_esp_twilio_uuid, sms_phone_number, transactional_esp_domain_user, transactional_esp_domain_uuid, transactional_esp_friendly_name].hash
195
213
  end
196
214
 
197
215
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.58.rc'
14
+ VERSION = '4.0.59.rc'
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: 4.0.58.rc
4
+ version: 4.0.59.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-08-26 00:00:00.000000000 Z
11
+ date: 2022-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus