ultracart_api 3.1.37 → 3.1.43
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 +109 -4
- data/docs/CouponTierAmount.md +1 -0
- data/docs/CouponTierPercent.md +1 -0
- data/docs/CouponTierQuantityAmount.md +1 -0
- data/docs/CouponTierQuantityPercent.md +1 -0
- data/docs/CouponTieredPercentOffShipping.md +1 -0
- data/docs/Item.md +1 -1
- data/docs/LibraryItemAttribute.md +1 -0
- data/docs/OrderApi.md +1 -1
- data/docs/OrderSummary.md +1 -0
- data/docs/ScreenRecordingFilterPageView.md +1 -0
- data/docs/ScreenRecordingFilterValuesPageView.md +1 -0
- data/docs/ScreenRecordingHeatmap.md +19 -0
- data/docs/ScreenRecordingHeatmapIndexResponse.md +12 -0
- data/docs/ScreenRecordingHeatmapRequest.md +9 -0
- data/docs/ScreenRecordingHeatmapReset.md +8 -0
- data/docs/ScreenRecordingHeatmapResponse.md +12 -0
- data/docs/ScreenRecordingHeatmapUrl.md +12 -0
- data/docs/ScreenRecordingPageView.md +1 -0
- data/docs/StorefrontApi.md +158 -0
- data/docs/WebhookLog.md +1 -0
- data/lib/ultracart_api.rb +6 -0
- data/lib/ultracart_api/api/order_api.rb +2 -2
- data/lib/ultracart_api/api/storefront_api.rb +176 -0
- data/lib/ultracart_api/models/coupon_tier_amount.rb +26 -1
- data/lib/ultracart_api/models/coupon_tier_percent.rb +26 -1
- data/lib/ultracart_api/models/coupon_tier_quantity_amount.rb +29 -4
- data/lib/ultracart_api/models/coupon_tier_quantity_percent.rb +29 -4
- data/lib/ultracart_api/models/coupon_tiered_percent_off_shipping.rb +26 -1
- data/lib/ultracart_api/models/item.rb +8 -8
- data/lib/ultracart_api/models/library_item_attribute.rb +10 -1
- data/lib/ultracart_api/models/order_summary.rb +10 -1
- data/lib/ultracart_api/models/screen_recording_filter_page_view.rb +10 -1
- data/lib/ultracart_api/models/screen_recording_filter_values_page_view.rb +12 -1
- data/lib/ultracart_api/models/screen_recording_heatmap.rb +283 -0
- data/lib/ultracart_api/models/screen_recording_heatmap_index_response.rb +223 -0
- data/lib/ultracart_api/models/screen_recording_heatmap_request.rb +193 -0
- data/lib/ultracart_api/models/screen_recording_heatmap_reset.rb +184 -0
- data/lib/ultracart_api/models/screen_recording_heatmap_response.rb +221 -0
- data/lib/ultracart_api/models/screen_recording_heatmap_url.rb +222 -0
- data/lib/ultracart_api/models/screen_recording_page_view.rb +10 -1
- data/lib/ultracart_api/models/webhook_log.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +14 -2
@@ -20,6 +20,9 @@ module UltracartClient
|
|
20
20
|
# Number of milliseconds to process the notification
|
21
21
|
attr_accessor :duration
|
22
22
|
|
23
|
+
# Number of milliseconds of delay caused by queuing
|
24
|
+
attr_accessor :queue_delay
|
25
|
+
|
23
26
|
# Request payload (first 100,000 characters)
|
24
27
|
attr_accessor :request
|
25
28
|
|
@@ -49,6 +52,7 @@ module UltracartClient
|
|
49
52
|
{
|
50
53
|
:'delivery_dts' => :'delivery_dts',
|
51
54
|
:'duration' => :'duration',
|
55
|
+
:'queue_delay' => :'queue_delay',
|
52
56
|
:'request' => :'request',
|
53
57
|
:'request_headers' => :'request_headers',
|
54
58
|
:'request_id' => :'request_id',
|
@@ -65,6 +69,7 @@ module UltracartClient
|
|
65
69
|
{
|
66
70
|
:'delivery_dts' => :'String',
|
67
71
|
:'duration' => :'Integer',
|
72
|
+
:'queue_delay' => :'Integer',
|
68
73
|
:'request' => :'String',
|
69
74
|
:'request_headers' => :'Array<HTTPHeader>',
|
70
75
|
:'request_id' => :'String',
|
@@ -92,6 +97,10 @@ module UltracartClient
|
|
92
97
|
self.duration = attributes[:'duration']
|
93
98
|
end
|
94
99
|
|
100
|
+
if attributes.has_key?(:'queue_delay')
|
101
|
+
self.queue_delay = attributes[:'queue_delay']
|
102
|
+
end
|
103
|
+
|
95
104
|
if attributes.has_key?(:'request')
|
96
105
|
self.request = attributes[:'request']
|
97
106
|
end
|
@@ -149,6 +158,7 @@ module UltracartClient
|
|
149
158
|
self.class == o.class &&
|
150
159
|
delivery_dts == o.delivery_dts &&
|
151
160
|
duration == o.duration &&
|
161
|
+
queue_delay == o.queue_delay &&
|
152
162
|
request == o.request &&
|
153
163
|
request_headers == o.request_headers &&
|
154
164
|
request_id == o.request_id &&
|
@@ -168,7 +178,7 @@ module UltracartClient
|
|
168
178
|
# Calculates hash code according to all attributes.
|
169
179
|
# @return [Fixnum] Hash code
|
170
180
|
def hash
|
171
|
-
[delivery_dts, duration, request, request_headers, request_id, response, response_headers, status_code, success, uri].hash
|
181
|
+
[delivery_dts, duration, queue_delay, request, request_headers, request_id, response, response_headers, status_code, success, uri].hash
|
172
182
|
end
|
173
183
|
|
174
184
|
# 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.1.
|
4
|
+
version: 3.1.43
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -698,6 +698,12 @@ files:
|
|
698
698
|
- docs/ScreenRecordingFilterValuesEventParams.md
|
699
699
|
- docs/ScreenRecordingFilterValuesPageParam.md
|
700
700
|
- docs/ScreenRecordingFilterValuesPageView.md
|
701
|
+
- docs/ScreenRecordingHeatmap.md
|
702
|
+
- docs/ScreenRecordingHeatmapIndexResponse.md
|
703
|
+
- docs/ScreenRecordingHeatmapRequest.md
|
704
|
+
- docs/ScreenRecordingHeatmapReset.md
|
705
|
+
- docs/ScreenRecordingHeatmapResponse.md
|
706
|
+
- docs/ScreenRecordingHeatmapUrl.md
|
701
707
|
- docs/ScreenRecordingMerchantNotesRequest.md
|
702
708
|
- docs/ScreenRecordingMultifield.md
|
703
709
|
- docs/ScreenRecordingPageView.md
|
@@ -1288,6 +1294,12 @@ files:
|
|
1288
1294
|
- lib/ultracart_api/models/screen_recording_filter_values_event_params.rb
|
1289
1295
|
- lib/ultracart_api/models/screen_recording_filter_values_page_param.rb
|
1290
1296
|
- lib/ultracart_api/models/screen_recording_filter_values_page_view.rb
|
1297
|
+
- lib/ultracart_api/models/screen_recording_heatmap.rb
|
1298
|
+
- lib/ultracart_api/models/screen_recording_heatmap_index_response.rb
|
1299
|
+
- lib/ultracart_api/models/screen_recording_heatmap_request.rb
|
1300
|
+
- lib/ultracart_api/models/screen_recording_heatmap_reset.rb
|
1301
|
+
- lib/ultracart_api/models/screen_recording_heatmap_response.rb
|
1302
|
+
- lib/ultracart_api/models/screen_recording_heatmap_url.rb
|
1291
1303
|
- lib/ultracart_api/models/screen_recording_merchant_notes_request.rb
|
1292
1304
|
- lib/ultracart_api/models/screen_recording_multifield.rb
|
1293
1305
|
- lib/ultracart_api/models/screen_recording_page_view.rb
|