ultracart_api 3.1.48 → 3.2.8
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/LICENSE +201 -201
- data/README.md +18 -7
- data/docs/AutoOrderQuery.md +3 -1
- data/docs/CustomerApi.md +92 -92
- data/docs/IntegrationLog.md +4 -1
- data/docs/IntegrationLogApi.md +59 -2
- data/docs/IntegrationLogFile.md +1 -0
- data/docs/IntegrationLogQueryFilterValues.md +3 -0
- data/docs/IntegrationLogQueryRequest.md +1 -0
- data/docs/IntegrationLogResponse.md +12 -0
- data/docs/LibraryItemAttribute.md +0 -1
- data/docs/ScreenRecordingHeatmap.md +12 -0
- data/docs/ScreenRecordingHeatmapRequest.md +1 -0
- data/docs/StorefrontApi.md +52 -52
- data/lib/ultracart_api.rb +1 -0
- data/lib/ultracart_api/api/customer_api.rb +98 -98
- data/lib/ultracart_api/api/integration_log_api.rb +70 -3
- data/lib/ultracart_api/api/storefront_api.rb +52 -52
- data/lib/ultracart_api/models/auto_order_query.rb +22 -2
- data/lib/ultracart_api/models/integration_log.rb +32 -4
- data/lib/ultracart_api/models/integration_log_file.rb +10 -1
- data/lib/ultracart_api/models/integration_log_query_filter_values.rb +32 -1
- data/lib/ultracart_api/models/integration_log_query_request.rb +10 -1
- data/lib/ultracart_api/models/integration_log_response.rb +221 -0
- data/lib/ultracart_api/models/library_item_attribute.rb +1 -10
- data/lib/ultracart_api/models/screen_recording_heatmap.rb +109 -1
- data/lib/ultracart_api/models/screen_recording_heatmap_request.rb +12 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +4 -2
@@ -14,8 +14,6 @@ require 'date'
|
|
14
14
|
|
15
15
|
module UltracartClient
|
16
16
|
class LibraryItemAttribute
|
17
|
-
attr_accessor :library_item_oid
|
18
|
-
|
19
17
|
attr_accessor :name
|
20
18
|
|
21
19
|
attr_accessor :value
|
@@ -23,7 +21,6 @@ module UltracartClient
|
|
23
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
24
22
|
def self.attribute_map
|
25
23
|
{
|
26
|
-
:'library_item_oid' => :'libraryItemOid',
|
27
24
|
:'name' => :'name',
|
28
25
|
:'value' => :'value'
|
29
26
|
}
|
@@ -32,7 +29,6 @@ module UltracartClient
|
|
32
29
|
# Attribute type mapping.
|
33
30
|
def self.swagger_types
|
34
31
|
{
|
35
|
-
:'library_item_oid' => :'Integer',
|
36
32
|
:'name' => :'String',
|
37
33
|
:'value' => :'String'
|
38
34
|
}
|
@@ -46,10 +42,6 @@ module UltracartClient
|
|
46
42
|
# convert string to symbol for hash key
|
47
43
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
48
44
|
|
49
|
-
if attributes.has_key?(:'libraryItemOid')
|
50
|
-
self.library_item_oid = attributes[:'libraryItemOid']
|
51
|
-
end
|
52
|
-
|
53
45
|
if attributes.has_key?(:'name')
|
54
46
|
self.name = attributes[:'name']
|
55
47
|
end
|
@@ -77,7 +69,6 @@ module UltracartClient
|
|
77
69
|
def ==(o)
|
78
70
|
return true if self.equal?(o)
|
79
71
|
self.class == o.class &&
|
80
|
-
library_item_oid == o.library_item_oid &&
|
81
72
|
name == o.name &&
|
82
73
|
value == o.value
|
83
74
|
end
|
@@ -91,7 +82,7 @@ module UltracartClient
|
|
91
82
|
# Calculates hash code according to all attributes.
|
92
83
|
# @return [Fixnum] Hash code
|
93
84
|
def hash
|
94
|
-
[
|
85
|
+
[name, value].hash
|
95
86
|
end
|
96
87
|
|
97
88
|
# Builds the object from hash
|
@@ -14,44 +14,80 @@ require 'date'
|
|
14
14
|
|
15
15
|
module UltracartClient
|
16
16
|
class ScreenRecordingHeatmap
|
17
|
+
attr_accessor :large_click_thumbnail_url
|
18
|
+
|
17
19
|
attr_accessor :large_click_url
|
18
20
|
|
21
|
+
attr_accessor :large_movement_thumbnail_url
|
22
|
+
|
19
23
|
attr_accessor :large_movement_url
|
20
24
|
|
25
|
+
attr_accessor :large_regular_thumbnail_url
|
26
|
+
|
21
27
|
attr_accessor :large_regular_url
|
22
28
|
|
29
|
+
attr_accessor :large_scroll_thumbnail_url
|
30
|
+
|
23
31
|
attr_accessor :large_scroll_url
|
24
32
|
|
33
|
+
attr_accessor :medium_click_thumbnail_url
|
34
|
+
|
25
35
|
attr_accessor :medium_click_url
|
26
36
|
|
37
|
+
attr_accessor :medium_movement_thumbnail_url
|
38
|
+
|
27
39
|
attr_accessor :medium_movement_url
|
28
40
|
|
41
|
+
attr_accessor :medium_regular_thumbnail_url
|
42
|
+
|
29
43
|
attr_accessor :medium_regular_url
|
30
44
|
|
45
|
+
attr_accessor :medium_scroll_thumbnail_url
|
46
|
+
|
31
47
|
attr_accessor :medium_scroll_url
|
32
48
|
|
49
|
+
attr_accessor :small_click_thumbnail_url
|
50
|
+
|
33
51
|
attr_accessor :small_click_url
|
34
52
|
|
53
|
+
attr_accessor :small_movement_thumbnail_url
|
54
|
+
|
35
55
|
attr_accessor :small_movement_url
|
36
56
|
|
57
|
+
attr_accessor :small_regular_thumbnail_url
|
58
|
+
|
37
59
|
attr_accessor :small_regular_url
|
38
60
|
|
61
|
+
attr_accessor :small_scroll_thumbnail_url
|
62
|
+
|
39
63
|
attr_accessor :small_scroll_url
|
40
64
|
|
41
65
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
66
|
def self.attribute_map
|
43
67
|
{
|
68
|
+
:'large_click_thumbnail_url' => :'large_click_thumbnail_url',
|
44
69
|
:'large_click_url' => :'large_click_url',
|
70
|
+
:'large_movement_thumbnail_url' => :'large_movement_thumbnail_url',
|
45
71
|
:'large_movement_url' => :'large_movement_url',
|
72
|
+
:'large_regular_thumbnail_url' => :'large_regular_thumbnail_url',
|
46
73
|
:'large_regular_url' => :'large_regular_url',
|
74
|
+
:'large_scroll_thumbnail_url' => :'large_scroll_thumbnail_url',
|
47
75
|
:'large_scroll_url' => :'large_scroll_url',
|
76
|
+
:'medium_click_thumbnail_url' => :'medium_click_thumbnail_url',
|
48
77
|
:'medium_click_url' => :'medium_click_url',
|
78
|
+
:'medium_movement_thumbnail_url' => :'medium_movement_thumbnail_url',
|
49
79
|
:'medium_movement_url' => :'medium_movement_url',
|
80
|
+
:'medium_regular_thumbnail_url' => :'medium_regular_thumbnail_url',
|
50
81
|
:'medium_regular_url' => :'medium_regular_url',
|
82
|
+
:'medium_scroll_thumbnail_url' => :'medium_scroll_thumbnail_url',
|
51
83
|
:'medium_scroll_url' => :'medium_scroll_url',
|
84
|
+
:'small_click_thumbnail_url' => :'small_click_thumbnail_url',
|
52
85
|
:'small_click_url' => :'small_click_url',
|
86
|
+
:'small_movement_thumbnail_url' => :'small_movement_thumbnail_url',
|
53
87
|
:'small_movement_url' => :'small_movement_url',
|
88
|
+
:'small_regular_thumbnail_url' => :'small_regular_thumbnail_url',
|
54
89
|
:'small_regular_url' => :'small_regular_url',
|
90
|
+
:'small_scroll_thumbnail_url' => :'small_scroll_thumbnail_url',
|
55
91
|
:'small_scroll_url' => :'small_scroll_url'
|
56
92
|
}
|
57
93
|
end
|
@@ -59,17 +95,29 @@ module UltracartClient
|
|
59
95
|
# Attribute type mapping.
|
60
96
|
def self.swagger_types
|
61
97
|
{
|
98
|
+
:'large_click_thumbnail_url' => :'String',
|
62
99
|
:'large_click_url' => :'String',
|
100
|
+
:'large_movement_thumbnail_url' => :'String',
|
63
101
|
:'large_movement_url' => :'String',
|
102
|
+
:'large_regular_thumbnail_url' => :'String',
|
64
103
|
:'large_regular_url' => :'String',
|
104
|
+
:'large_scroll_thumbnail_url' => :'String',
|
65
105
|
:'large_scroll_url' => :'String',
|
106
|
+
:'medium_click_thumbnail_url' => :'String',
|
66
107
|
:'medium_click_url' => :'String',
|
108
|
+
:'medium_movement_thumbnail_url' => :'String',
|
67
109
|
:'medium_movement_url' => :'String',
|
110
|
+
:'medium_regular_thumbnail_url' => :'String',
|
68
111
|
:'medium_regular_url' => :'String',
|
112
|
+
:'medium_scroll_thumbnail_url' => :'String',
|
69
113
|
:'medium_scroll_url' => :'String',
|
114
|
+
:'small_click_thumbnail_url' => :'String',
|
70
115
|
:'small_click_url' => :'String',
|
116
|
+
:'small_movement_thumbnail_url' => :'String',
|
71
117
|
:'small_movement_url' => :'String',
|
118
|
+
:'small_regular_thumbnail_url' => :'String',
|
72
119
|
:'small_regular_url' => :'String',
|
120
|
+
:'small_scroll_thumbnail_url' => :'String',
|
73
121
|
:'small_scroll_url' => :'String'
|
74
122
|
}
|
75
123
|
end
|
@@ -82,50 +130,98 @@ module UltracartClient
|
|
82
130
|
# convert string to symbol for hash key
|
83
131
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
84
132
|
|
133
|
+
if attributes.has_key?(:'large_click_thumbnail_url')
|
134
|
+
self.large_click_thumbnail_url = attributes[:'large_click_thumbnail_url']
|
135
|
+
end
|
136
|
+
|
85
137
|
if attributes.has_key?(:'large_click_url')
|
86
138
|
self.large_click_url = attributes[:'large_click_url']
|
87
139
|
end
|
88
140
|
|
141
|
+
if attributes.has_key?(:'large_movement_thumbnail_url')
|
142
|
+
self.large_movement_thumbnail_url = attributes[:'large_movement_thumbnail_url']
|
143
|
+
end
|
144
|
+
|
89
145
|
if attributes.has_key?(:'large_movement_url')
|
90
146
|
self.large_movement_url = attributes[:'large_movement_url']
|
91
147
|
end
|
92
148
|
|
149
|
+
if attributes.has_key?(:'large_regular_thumbnail_url')
|
150
|
+
self.large_regular_thumbnail_url = attributes[:'large_regular_thumbnail_url']
|
151
|
+
end
|
152
|
+
|
93
153
|
if attributes.has_key?(:'large_regular_url')
|
94
154
|
self.large_regular_url = attributes[:'large_regular_url']
|
95
155
|
end
|
96
156
|
|
157
|
+
if attributes.has_key?(:'large_scroll_thumbnail_url')
|
158
|
+
self.large_scroll_thumbnail_url = attributes[:'large_scroll_thumbnail_url']
|
159
|
+
end
|
160
|
+
|
97
161
|
if attributes.has_key?(:'large_scroll_url')
|
98
162
|
self.large_scroll_url = attributes[:'large_scroll_url']
|
99
163
|
end
|
100
164
|
|
165
|
+
if attributes.has_key?(:'medium_click_thumbnail_url')
|
166
|
+
self.medium_click_thumbnail_url = attributes[:'medium_click_thumbnail_url']
|
167
|
+
end
|
168
|
+
|
101
169
|
if attributes.has_key?(:'medium_click_url')
|
102
170
|
self.medium_click_url = attributes[:'medium_click_url']
|
103
171
|
end
|
104
172
|
|
173
|
+
if attributes.has_key?(:'medium_movement_thumbnail_url')
|
174
|
+
self.medium_movement_thumbnail_url = attributes[:'medium_movement_thumbnail_url']
|
175
|
+
end
|
176
|
+
|
105
177
|
if attributes.has_key?(:'medium_movement_url')
|
106
178
|
self.medium_movement_url = attributes[:'medium_movement_url']
|
107
179
|
end
|
108
180
|
|
181
|
+
if attributes.has_key?(:'medium_regular_thumbnail_url')
|
182
|
+
self.medium_regular_thumbnail_url = attributes[:'medium_regular_thumbnail_url']
|
183
|
+
end
|
184
|
+
|
109
185
|
if attributes.has_key?(:'medium_regular_url')
|
110
186
|
self.medium_regular_url = attributes[:'medium_regular_url']
|
111
187
|
end
|
112
188
|
|
189
|
+
if attributes.has_key?(:'medium_scroll_thumbnail_url')
|
190
|
+
self.medium_scroll_thumbnail_url = attributes[:'medium_scroll_thumbnail_url']
|
191
|
+
end
|
192
|
+
|
113
193
|
if attributes.has_key?(:'medium_scroll_url')
|
114
194
|
self.medium_scroll_url = attributes[:'medium_scroll_url']
|
115
195
|
end
|
116
196
|
|
197
|
+
if attributes.has_key?(:'small_click_thumbnail_url')
|
198
|
+
self.small_click_thumbnail_url = attributes[:'small_click_thumbnail_url']
|
199
|
+
end
|
200
|
+
|
117
201
|
if attributes.has_key?(:'small_click_url')
|
118
202
|
self.small_click_url = attributes[:'small_click_url']
|
119
203
|
end
|
120
204
|
|
205
|
+
if attributes.has_key?(:'small_movement_thumbnail_url')
|
206
|
+
self.small_movement_thumbnail_url = attributes[:'small_movement_thumbnail_url']
|
207
|
+
end
|
208
|
+
|
121
209
|
if attributes.has_key?(:'small_movement_url')
|
122
210
|
self.small_movement_url = attributes[:'small_movement_url']
|
123
211
|
end
|
124
212
|
|
213
|
+
if attributes.has_key?(:'small_regular_thumbnail_url')
|
214
|
+
self.small_regular_thumbnail_url = attributes[:'small_regular_thumbnail_url']
|
215
|
+
end
|
216
|
+
|
125
217
|
if attributes.has_key?(:'small_regular_url')
|
126
218
|
self.small_regular_url = attributes[:'small_regular_url']
|
127
219
|
end
|
128
220
|
|
221
|
+
if attributes.has_key?(:'small_scroll_thumbnail_url')
|
222
|
+
self.small_scroll_thumbnail_url = attributes[:'small_scroll_thumbnail_url']
|
223
|
+
end
|
224
|
+
|
129
225
|
if attributes.has_key?(:'small_scroll_url')
|
130
226
|
self.small_scroll_url = attributes[:'small_scroll_url']
|
131
227
|
end
|
@@ -149,17 +245,29 @@ module UltracartClient
|
|
149
245
|
def ==(o)
|
150
246
|
return true if self.equal?(o)
|
151
247
|
self.class == o.class &&
|
248
|
+
large_click_thumbnail_url == o.large_click_thumbnail_url &&
|
152
249
|
large_click_url == o.large_click_url &&
|
250
|
+
large_movement_thumbnail_url == o.large_movement_thumbnail_url &&
|
153
251
|
large_movement_url == o.large_movement_url &&
|
252
|
+
large_regular_thumbnail_url == o.large_regular_thumbnail_url &&
|
154
253
|
large_regular_url == o.large_regular_url &&
|
254
|
+
large_scroll_thumbnail_url == o.large_scroll_thumbnail_url &&
|
155
255
|
large_scroll_url == o.large_scroll_url &&
|
256
|
+
medium_click_thumbnail_url == o.medium_click_thumbnail_url &&
|
156
257
|
medium_click_url == o.medium_click_url &&
|
258
|
+
medium_movement_thumbnail_url == o.medium_movement_thumbnail_url &&
|
157
259
|
medium_movement_url == o.medium_movement_url &&
|
260
|
+
medium_regular_thumbnail_url == o.medium_regular_thumbnail_url &&
|
158
261
|
medium_regular_url == o.medium_regular_url &&
|
262
|
+
medium_scroll_thumbnail_url == o.medium_scroll_thumbnail_url &&
|
159
263
|
medium_scroll_url == o.medium_scroll_url &&
|
264
|
+
small_click_thumbnail_url == o.small_click_thumbnail_url &&
|
160
265
|
small_click_url == o.small_click_url &&
|
266
|
+
small_movement_thumbnail_url == o.small_movement_thumbnail_url &&
|
161
267
|
small_movement_url == o.small_movement_url &&
|
268
|
+
small_regular_thumbnail_url == o.small_regular_thumbnail_url &&
|
162
269
|
small_regular_url == o.small_regular_url &&
|
270
|
+
small_scroll_thumbnail_url == o.small_scroll_thumbnail_url &&
|
163
271
|
small_scroll_url == o.small_scroll_url
|
164
272
|
end
|
165
273
|
|
@@ -172,7 +280,7 @@ module UltracartClient
|
|
172
280
|
# Calculates hash code according to all attributes.
|
173
281
|
# @return [Fixnum] Hash code
|
174
282
|
def hash
|
175
|
-
[large_click_url, large_movement_url, large_regular_url, large_scroll_url, medium_click_url, medium_movement_url, medium_regular_url, medium_scroll_url, small_click_url, small_movement_url, small_regular_url, small_scroll_url].hash
|
283
|
+
[large_click_thumbnail_url, large_click_url, large_movement_thumbnail_url, large_movement_url, large_regular_thumbnail_url, large_regular_url, large_scroll_thumbnail_url, large_scroll_url, medium_click_thumbnail_url, medium_click_url, medium_movement_thumbnail_url, medium_movement_url, medium_regular_thumbnail_url, medium_regular_url, medium_scroll_thumbnail_url, medium_scroll_url, small_click_thumbnail_url, small_click_url, small_movement_thumbnail_url, small_movement_url, small_regular_thumbnail_url, small_regular_url, small_scroll_thumbnail_url, small_scroll_url].hash
|
176
284
|
end
|
177
285
|
|
178
286
|
# Builds the object from hash
|
@@ -16,12 +16,15 @@ module UltracartClient
|
|
16
16
|
class ScreenRecordingHeatmapRequest
|
17
17
|
attr_accessor :range
|
18
18
|
|
19
|
+
attr_accessor :screen_sizes
|
20
|
+
|
19
21
|
attr_accessor :url
|
20
22
|
|
21
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
24
|
def self.attribute_map
|
23
25
|
{
|
24
26
|
:'range' => :'range',
|
27
|
+
:'screen_sizes' => :'screen_sizes',
|
25
28
|
:'url' => :'url'
|
26
29
|
}
|
27
30
|
end
|
@@ -30,6 +33,7 @@ module UltracartClient
|
|
30
33
|
def self.swagger_types
|
31
34
|
{
|
32
35
|
:'range' => :'ScreenRecordingFilterRangeDate',
|
36
|
+
:'screen_sizes' => :'Array<String>',
|
33
37
|
:'url' => :'String'
|
34
38
|
}
|
35
39
|
end
|
@@ -46,6 +50,12 @@ module UltracartClient
|
|
46
50
|
self.range = attributes[:'range']
|
47
51
|
end
|
48
52
|
|
53
|
+
if attributes.has_key?(:'screen_sizes')
|
54
|
+
if (value = attributes[:'screen_sizes']).is_a?(Array)
|
55
|
+
self.screen_sizes = value
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
49
59
|
if attributes.has_key?(:'url')
|
50
60
|
self.url = attributes[:'url']
|
51
61
|
end
|
@@ -70,6 +80,7 @@ module UltracartClient
|
|
70
80
|
return true if self.equal?(o)
|
71
81
|
self.class == o.class &&
|
72
82
|
range == o.range &&
|
83
|
+
screen_sizes == o.screen_sizes &&
|
73
84
|
url == o.url
|
74
85
|
end
|
75
86
|
|
@@ -82,7 +93,7 @@ module UltracartClient
|
|
82
93
|
# Calculates hash code according to all attributes.
|
83
94
|
# @return [Fixnum] Hash code
|
84
95
|
def hash
|
85
|
-
[range, url].hash
|
96
|
+
[range, screen_sizes, url].hash
|
86
97
|
end
|
87
98
|
|
88
99
|
# 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.
|
4
|
+
version: 3.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-06
|
11
|
+
date: 2021-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -523,6 +523,7 @@ files:
|
|
523
523
|
- docs/IntegrationLogQueryFilterValues.md
|
524
524
|
- docs/IntegrationLogQueryRequest.md
|
525
525
|
- docs/IntegrationLogQueryResponse.md
|
526
|
+
- docs/IntegrationLogResponse.md
|
526
527
|
- docs/Item.md
|
527
528
|
- docs/ItemAccounting.md
|
528
529
|
- docs/ItemAmember.md
|
@@ -1130,6 +1131,7 @@ files:
|
|
1130
1131
|
- lib/ultracart_api/models/integration_log_query_filter_values.rb
|
1131
1132
|
- lib/ultracart_api/models/integration_log_query_request.rb
|
1132
1133
|
- lib/ultracart_api/models/integration_log_query_response.rb
|
1134
|
+
- lib/ultracart_api/models/integration_log_response.rb
|
1133
1135
|
- lib/ultracart_api/models/item.rb
|
1134
1136
|
- lib/ultracart_api/models/item_accounting.rb
|
1135
1137
|
- lib/ultracart_api/models/item_amember.rb
|