ultracart_api 4.0.75.rc → 4.0.77.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 +6 -4
- data/docs/ConversationParticipant.md +2 -0
- data/docs/EmailStepStat.md +20 -0
- data/lib/ultracart_api/models/conversation_participant.rb +10 -1
- data/lib/ultracart_api/models/email_step_stat.rb +101 -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: 639888558132173a7137fed8b1f5e1814b130db84cba9468cddedf3b283c0871
|
|
4
|
+
data.tar.gz: f95221716e72505b7f945b72764058444f74e7d589ecf7bea98a5fa43ec83361
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a7cb390c2b99dd33a63dedc8f4905ac5e96ad8f786b673a3c8c1068fa7e0289bd97f3b426bd61cf00be282919be83a0b96348bd7a1aebbb7080df8e9b0357be
|
|
7
|
+
data.tar.gz: 5659bb0b2c34683274a020427cd53a2d11a7e3a8519ccc4ec5be99744a7a33e2208d3405245d85643d156e1af49cf06834a5acd5f9cad0ada4dd6b1e9f6dbb69
|
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.77.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.77.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.77.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.77.rc'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -1221,6 +1221,8 @@ Not every change is committed to every SDK.
|
|
|
1221
1221
|
|
|
1222
1222
|
| Version | Date | Comments |
|
|
1223
1223
|
| --: | :-: | --- |
|
|
1224
|
+
| 4.0.77-RC | 10/31/2022 | communication bug fix on dup annonation |
|
|
1225
|
+
| 4.0.76-RC | 10/31/2022 | communications - addl statistics on EmailStepStat object |
|
|
1224
1226
|
| 4.0.75-RC | 10/26/2022 | esp - methods for sms testing |
|
|
1225
1227
|
| 4.0.74-RC | 10/17/2022 | conversations - add last_interactive_message_dts |
|
|
1226
1228
|
| 4.0.73-RC | 10/07/2022 | bug fix for digital items response |
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
| **left_dts** | **String** | Left conversation date/time | [optional] |
|
|
13
13
|
| **profile_image_url** | **String** | | [optional] |
|
|
14
14
|
| **status** | **String** | | [optional] |
|
|
15
|
+
| **timezone** | **String** | | [optional] |
|
|
15
16
|
| **unread_messages** | **Integer** | | [optional] |
|
|
16
17
|
|
|
17
18
|
## Example
|
|
@@ -28,6 +29,7 @@ instance = UltracartClient::ConversationParticipant.new(
|
|
|
28
29
|
left_dts: null,
|
|
29
30
|
profile_image_url: null,
|
|
30
31
|
status: null,
|
|
32
|
+
timezone: null,
|
|
31
33
|
unread_messages: null
|
|
32
34
|
)
|
|
33
35
|
```
|
data/docs/EmailStepStat.md
CHANGED
|
@@ -4,16 +4,26 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **left_click_count** | **Integer** | click count (left side) | [optional] |
|
|
8
|
+
| **left_click_count_formatted** | **String** | click count formatted (left side) | [optional] |
|
|
7
9
|
| **left_conversion_count** | **Integer** | conversion count (left/default side) | [optional] |
|
|
8
10
|
| **left_conversion_count_formatted** | **String** | conversion count formatted (left/default side) | [optional] |
|
|
9
11
|
| **left_customer_count** | **Integer** | customer count (left/default side) | [optional] |
|
|
10
12
|
| **left_customer_count_formatted** | **String** | customer count formatted (left/default side) | [optional] |
|
|
13
|
+
| **left_delivered_count** | **Integer** | delivered count (left side) | [optional] |
|
|
14
|
+
| **left_delivered_count_formatted** | **String** | delivered count formatted (left side) | [optional] |
|
|
11
15
|
| **left_order_count** | **Integer** | order count (left/default side) | [optional] |
|
|
12
16
|
| **left_order_count_formatted** | **String** | order count formatted (left/default side) | [optional] |
|
|
13
17
|
| **left_profit** | **Float** | profit (left/default side) | [optional] |
|
|
14
18
|
| **left_profit_formatted** | **String** | profit formatted (left/default side) | [optional] |
|
|
15
19
|
| **left_revenue** | **Float** | revenue (left/default side) | [optional] |
|
|
16
20
|
| **left_revenue_formatted** | **String** | revenue formatted (left/default side) | [optional] |
|
|
21
|
+
| **left_send_count** | **Integer** | send count (left side) | [optional] |
|
|
22
|
+
| **left_send_count_formatted** | **String** | send count formatted (left side) | [optional] |
|
|
23
|
+
| **left_skipped_count** | **Integer** | conversion count (left side) | [optional] |
|
|
24
|
+
| **left_skipped_count_formatted** | **String** | skipped count formatted (left side) | [optional] |
|
|
25
|
+
| **left_unsubscribe_count** | **Integer** | unsubscribe count (left side) | [optional] |
|
|
26
|
+
| **left_unsubscribe_count_formatted** | **String** | unsubscribe count formatted (left side) | [optional] |
|
|
17
27
|
| **right_conversion_count** | **Integer** | conversion count (right side) | [optional] |
|
|
18
28
|
| **right_conversion_count_formatted** | **String** | conversion count formatted (right side) | [optional] |
|
|
19
29
|
| **right_customer_count** | **Integer** | customer count (right side) | [optional] |
|
|
@@ -31,16 +41,26 @@
|
|
|
31
41
|
require 'ultracart_api'
|
|
32
42
|
|
|
33
43
|
instance = UltracartClient::EmailStepStat.new(
|
|
44
|
+
left_click_count: null,
|
|
45
|
+
left_click_count_formatted: null,
|
|
34
46
|
left_conversion_count: null,
|
|
35
47
|
left_conversion_count_formatted: null,
|
|
36
48
|
left_customer_count: null,
|
|
37
49
|
left_customer_count_formatted: null,
|
|
50
|
+
left_delivered_count: null,
|
|
51
|
+
left_delivered_count_formatted: null,
|
|
38
52
|
left_order_count: null,
|
|
39
53
|
left_order_count_formatted: null,
|
|
40
54
|
left_profit: null,
|
|
41
55
|
left_profit_formatted: null,
|
|
42
56
|
left_revenue: null,
|
|
43
57
|
left_revenue_formatted: null,
|
|
58
|
+
left_send_count: null,
|
|
59
|
+
left_send_count_formatted: null,
|
|
60
|
+
left_skipped_count: null,
|
|
61
|
+
left_skipped_count_formatted: null,
|
|
62
|
+
left_unsubscribe_count: null,
|
|
63
|
+
left_unsubscribe_count_formatted: null,
|
|
44
64
|
right_conversion_count: null,
|
|
45
65
|
right_conversion_count_formatted: null,
|
|
46
66
|
right_customer_count: null,
|
|
@@ -34,6 +34,8 @@ module UltracartClient
|
|
|
34
34
|
|
|
35
35
|
attr_accessor :status
|
|
36
36
|
|
|
37
|
+
attr_accessor :timezone
|
|
38
|
+
|
|
37
39
|
attr_accessor :unread_messages
|
|
38
40
|
|
|
39
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -47,6 +49,7 @@ module UltracartClient
|
|
|
47
49
|
:'left_dts' => :'left_dts',
|
|
48
50
|
:'profile_image_url' => :'profile_image_url',
|
|
49
51
|
:'status' => :'status',
|
|
52
|
+
:'timezone' => :'timezone',
|
|
50
53
|
:'unread_messages' => :'unread_messages'
|
|
51
54
|
}
|
|
52
55
|
end
|
|
@@ -67,6 +70,7 @@ module UltracartClient
|
|
|
67
70
|
:'left_dts' => :'String',
|
|
68
71
|
:'profile_image_url' => :'String',
|
|
69
72
|
:'status' => :'String',
|
|
73
|
+
:'timezone' => :'String',
|
|
70
74
|
:'unread_messages' => :'Integer'
|
|
71
75
|
}
|
|
72
76
|
end
|
|
@@ -124,6 +128,10 @@ module UltracartClient
|
|
|
124
128
|
self.status = attributes[:'status']
|
|
125
129
|
end
|
|
126
130
|
|
|
131
|
+
if attributes.key?(:'timezone')
|
|
132
|
+
self.timezone = attributes[:'timezone']
|
|
133
|
+
end
|
|
134
|
+
|
|
127
135
|
if attributes.key?(:'unread_messages')
|
|
128
136
|
self.unread_messages = attributes[:'unread_messages']
|
|
129
137
|
end
|
|
@@ -155,6 +163,7 @@ module UltracartClient
|
|
|
155
163
|
left_dts == o.left_dts &&
|
|
156
164
|
profile_image_url == o.profile_image_url &&
|
|
157
165
|
status == o.status &&
|
|
166
|
+
timezone == o.timezone &&
|
|
158
167
|
unread_messages == o.unread_messages
|
|
159
168
|
end
|
|
160
169
|
|
|
@@ -167,7 +176,7 @@ module UltracartClient
|
|
|
167
176
|
# Calculates hash code according to all attributes.
|
|
168
177
|
# @return [Integer] Hash code
|
|
169
178
|
def hash
|
|
170
|
-
[conversation_participant_arn, conversation_participant_name, conversation_participant_uuid, joined_dts, last_message_dts, left_dts, profile_image_url, status, unread_messages].hash
|
|
179
|
+
[conversation_participant_arn, conversation_participant_name, conversation_participant_uuid, joined_dts, last_message_dts, left_dts, profile_image_url, status, timezone, unread_messages].hash
|
|
171
180
|
end
|
|
172
181
|
|
|
173
182
|
# Builds the object from hash
|
|
@@ -15,6 +15,12 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module UltracartClient
|
|
17
17
|
class EmailStepStat
|
|
18
|
+
# click count (left side)
|
|
19
|
+
attr_accessor :left_click_count
|
|
20
|
+
|
|
21
|
+
# click count formatted (left side)
|
|
22
|
+
attr_accessor :left_click_count_formatted
|
|
23
|
+
|
|
18
24
|
# conversion count (left/default side)
|
|
19
25
|
attr_accessor :left_conversion_count
|
|
20
26
|
|
|
@@ -27,6 +33,12 @@ module UltracartClient
|
|
|
27
33
|
# customer count formatted (left/default side)
|
|
28
34
|
attr_accessor :left_customer_count_formatted
|
|
29
35
|
|
|
36
|
+
# delivered count (left side)
|
|
37
|
+
attr_accessor :left_delivered_count
|
|
38
|
+
|
|
39
|
+
# delivered count formatted (left side)
|
|
40
|
+
attr_accessor :left_delivered_count_formatted
|
|
41
|
+
|
|
30
42
|
# order count (left/default side)
|
|
31
43
|
attr_accessor :left_order_count
|
|
32
44
|
|
|
@@ -45,6 +57,24 @@ module UltracartClient
|
|
|
45
57
|
# revenue formatted (left/default side)
|
|
46
58
|
attr_accessor :left_revenue_formatted
|
|
47
59
|
|
|
60
|
+
# send count (left side)
|
|
61
|
+
attr_accessor :left_send_count
|
|
62
|
+
|
|
63
|
+
# send count formatted (left side)
|
|
64
|
+
attr_accessor :left_send_count_formatted
|
|
65
|
+
|
|
66
|
+
# conversion count (left side)
|
|
67
|
+
attr_accessor :left_skipped_count
|
|
68
|
+
|
|
69
|
+
# skipped count formatted (left side)
|
|
70
|
+
attr_accessor :left_skipped_count_formatted
|
|
71
|
+
|
|
72
|
+
# unsubscribe count (left side)
|
|
73
|
+
attr_accessor :left_unsubscribe_count
|
|
74
|
+
|
|
75
|
+
# unsubscribe count formatted (left side)
|
|
76
|
+
attr_accessor :left_unsubscribe_count_formatted
|
|
77
|
+
|
|
48
78
|
# conversion count (right side)
|
|
49
79
|
attr_accessor :right_conversion_count
|
|
50
80
|
|
|
@@ -78,16 +108,26 @@ module UltracartClient
|
|
|
78
108
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
79
109
|
def self.attribute_map
|
|
80
110
|
{
|
|
111
|
+
:'left_click_count' => :'left_click_count',
|
|
112
|
+
:'left_click_count_formatted' => :'left_click_count_formatted',
|
|
81
113
|
:'left_conversion_count' => :'left_conversion_count',
|
|
82
114
|
:'left_conversion_count_formatted' => :'left_conversion_count_formatted',
|
|
83
115
|
:'left_customer_count' => :'left_customer_count',
|
|
84
116
|
:'left_customer_count_formatted' => :'left_customer_count_formatted',
|
|
117
|
+
:'left_delivered_count' => :'left_delivered_count',
|
|
118
|
+
:'left_delivered_count_formatted' => :'left_delivered_count_formatted',
|
|
85
119
|
:'left_order_count' => :'left_order_count',
|
|
86
120
|
:'left_order_count_formatted' => :'left_order_count_formatted',
|
|
87
121
|
:'left_profit' => :'left_profit',
|
|
88
122
|
:'left_profit_formatted' => :'left_profit_formatted',
|
|
89
123
|
:'left_revenue' => :'left_revenue',
|
|
90
124
|
:'left_revenue_formatted' => :'left_revenue_formatted',
|
|
125
|
+
:'left_send_count' => :'left_send_count',
|
|
126
|
+
:'left_send_count_formatted' => :'left_send_count_formatted',
|
|
127
|
+
:'left_skipped_count' => :'left_skipped_count',
|
|
128
|
+
:'left_skipped_count_formatted' => :'left_skipped_count_formatted',
|
|
129
|
+
:'left_unsubscribe_count' => :'left_unsubscribe_count',
|
|
130
|
+
:'left_unsubscribe_count_formatted' => :'left_unsubscribe_count_formatted',
|
|
91
131
|
:'right_conversion_count' => :'right_conversion_count',
|
|
92
132
|
:'right_conversion_count_formatted' => :'right_conversion_count_formatted',
|
|
93
133
|
:'right_customer_count' => :'right_customer_count',
|
|
@@ -109,16 +149,26 @@ module UltracartClient
|
|
|
109
149
|
# Attribute type mapping.
|
|
110
150
|
def self.openapi_types
|
|
111
151
|
{
|
|
152
|
+
:'left_click_count' => :'Integer',
|
|
153
|
+
:'left_click_count_formatted' => :'String',
|
|
112
154
|
:'left_conversion_count' => :'Integer',
|
|
113
155
|
:'left_conversion_count_formatted' => :'String',
|
|
114
156
|
:'left_customer_count' => :'Integer',
|
|
115
157
|
:'left_customer_count_formatted' => :'String',
|
|
158
|
+
:'left_delivered_count' => :'Integer',
|
|
159
|
+
:'left_delivered_count_formatted' => :'String',
|
|
116
160
|
:'left_order_count' => :'Integer',
|
|
117
161
|
:'left_order_count_formatted' => :'String',
|
|
118
162
|
:'left_profit' => :'Float',
|
|
119
163
|
:'left_profit_formatted' => :'String',
|
|
120
164
|
:'left_revenue' => :'Float',
|
|
121
165
|
:'left_revenue_formatted' => :'String',
|
|
166
|
+
:'left_send_count' => :'Integer',
|
|
167
|
+
:'left_send_count_formatted' => :'String',
|
|
168
|
+
:'left_skipped_count' => :'Integer',
|
|
169
|
+
:'left_skipped_count_formatted' => :'String',
|
|
170
|
+
:'left_unsubscribe_count' => :'Integer',
|
|
171
|
+
:'left_unsubscribe_count_formatted' => :'String',
|
|
122
172
|
:'right_conversion_count' => :'Integer',
|
|
123
173
|
:'right_conversion_count_formatted' => :'String',
|
|
124
174
|
:'right_customer_count' => :'Integer',
|
|
@@ -153,6 +203,14 @@ module UltracartClient
|
|
|
153
203
|
h[k.to_sym] = v
|
|
154
204
|
}
|
|
155
205
|
|
|
206
|
+
if attributes.key?(:'left_click_count')
|
|
207
|
+
self.left_click_count = attributes[:'left_click_count']
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
if attributes.key?(:'left_click_count_formatted')
|
|
211
|
+
self.left_click_count_formatted = attributes[:'left_click_count_formatted']
|
|
212
|
+
end
|
|
213
|
+
|
|
156
214
|
if attributes.key?(:'left_conversion_count')
|
|
157
215
|
self.left_conversion_count = attributes[:'left_conversion_count']
|
|
158
216
|
end
|
|
@@ -169,6 +227,14 @@ module UltracartClient
|
|
|
169
227
|
self.left_customer_count_formatted = attributes[:'left_customer_count_formatted']
|
|
170
228
|
end
|
|
171
229
|
|
|
230
|
+
if attributes.key?(:'left_delivered_count')
|
|
231
|
+
self.left_delivered_count = attributes[:'left_delivered_count']
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
if attributes.key?(:'left_delivered_count_formatted')
|
|
235
|
+
self.left_delivered_count_formatted = attributes[:'left_delivered_count_formatted']
|
|
236
|
+
end
|
|
237
|
+
|
|
172
238
|
if attributes.key?(:'left_order_count')
|
|
173
239
|
self.left_order_count = attributes[:'left_order_count']
|
|
174
240
|
end
|
|
@@ -193,6 +259,30 @@ module UltracartClient
|
|
|
193
259
|
self.left_revenue_formatted = attributes[:'left_revenue_formatted']
|
|
194
260
|
end
|
|
195
261
|
|
|
262
|
+
if attributes.key?(:'left_send_count')
|
|
263
|
+
self.left_send_count = attributes[:'left_send_count']
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
if attributes.key?(:'left_send_count_formatted')
|
|
267
|
+
self.left_send_count_formatted = attributes[:'left_send_count_formatted']
|
|
268
|
+
end
|
|
269
|
+
|
|
270
|
+
if attributes.key?(:'left_skipped_count')
|
|
271
|
+
self.left_skipped_count = attributes[:'left_skipped_count']
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
if attributes.key?(:'left_skipped_count_formatted')
|
|
275
|
+
self.left_skipped_count_formatted = attributes[:'left_skipped_count_formatted']
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
if attributes.key?(:'left_unsubscribe_count')
|
|
279
|
+
self.left_unsubscribe_count = attributes[:'left_unsubscribe_count']
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
if attributes.key?(:'left_unsubscribe_count_formatted')
|
|
283
|
+
self.left_unsubscribe_count_formatted = attributes[:'left_unsubscribe_count_formatted']
|
|
284
|
+
end
|
|
285
|
+
|
|
196
286
|
if attributes.key?(:'right_conversion_count')
|
|
197
287
|
self.right_conversion_count = attributes[:'right_conversion_count']
|
|
198
288
|
end
|
|
@@ -252,16 +342,26 @@ module UltracartClient
|
|
|
252
342
|
def ==(o)
|
|
253
343
|
return true if self.equal?(o)
|
|
254
344
|
self.class == o.class &&
|
|
345
|
+
left_click_count == o.left_click_count &&
|
|
346
|
+
left_click_count_formatted == o.left_click_count_formatted &&
|
|
255
347
|
left_conversion_count == o.left_conversion_count &&
|
|
256
348
|
left_conversion_count_formatted == o.left_conversion_count_formatted &&
|
|
257
349
|
left_customer_count == o.left_customer_count &&
|
|
258
350
|
left_customer_count_formatted == o.left_customer_count_formatted &&
|
|
351
|
+
left_delivered_count == o.left_delivered_count &&
|
|
352
|
+
left_delivered_count_formatted == o.left_delivered_count_formatted &&
|
|
259
353
|
left_order_count == o.left_order_count &&
|
|
260
354
|
left_order_count_formatted == o.left_order_count_formatted &&
|
|
261
355
|
left_profit == o.left_profit &&
|
|
262
356
|
left_profit_formatted == o.left_profit_formatted &&
|
|
263
357
|
left_revenue == o.left_revenue &&
|
|
264
358
|
left_revenue_formatted == o.left_revenue_formatted &&
|
|
359
|
+
left_send_count == o.left_send_count &&
|
|
360
|
+
left_send_count_formatted == o.left_send_count_formatted &&
|
|
361
|
+
left_skipped_count == o.left_skipped_count &&
|
|
362
|
+
left_skipped_count_formatted == o.left_skipped_count_formatted &&
|
|
363
|
+
left_unsubscribe_count == o.left_unsubscribe_count &&
|
|
364
|
+
left_unsubscribe_count_formatted == o.left_unsubscribe_count_formatted &&
|
|
265
365
|
right_conversion_count == o.right_conversion_count &&
|
|
266
366
|
right_conversion_count_formatted == o.right_conversion_count_formatted &&
|
|
267
367
|
right_customer_count == o.right_customer_count &&
|
|
@@ -283,7 +383,7 @@ module UltracartClient
|
|
|
283
383
|
# Calculates hash code according to all attributes.
|
|
284
384
|
# @return [Integer] Hash code
|
|
285
385
|
def hash
|
|
286
|
-
[left_conversion_count, left_conversion_count_formatted, left_customer_count, left_customer_count_formatted, left_order_count, left_order_count_formatted, left_profit, left_profit_formatted, left_revenue, left_revenue_formatted, right_conversion_count, right_conversion_count_formatted, right_customer_count, right_customer_count_formatted, right_order_count, right_order_count_formatted, right_profit, right_profit_formatted, right_revenue, right_revenue_formatted].hash
|
|
386
|
+
[left_click_count, left_click_count_formatted, left_conversion_count, left_conversion_count_formatted, left_customer_count, left_customer_count_formatted, left_delivered_count, left_delivered_count_formatted, left_order_count, left_order_count_formatted, left_profit, left_profit_formatted, left_revenue, left_revenue_formatted, left_send_count, left_send_count_formatted, left_skipped_count, left_skipped_count_formatted, left_unsubscribe_count, left_unsubscribe_count_formatted, right_conversion_count, right_conversion_count_formatted, right_customer_count, right_customer_count_formatted, right_order_count, right_order_count_formatted, right_profit, right_profit_formatted, right_revenue, right_revenue_formatted].hash
|
|
287
387
|
end
|
|
288
388
|
|
|
289
389
|
# 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.77.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-10-
|
|
11
|
+
date: 2022-10-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|