ultracart_api 3.1.10 → 3.1.11
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 +5 -4
- data/docs/ScreenRecording.md +1 -0
- data/lib/ultracart_api/models/screen_recording.rb +10 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: baf85d43803f09a90974f427f2ef55a3e34d6fb77791ee9138afd05b3b131278
|
|
4
|
+
data.tar.gz: 3761dcd0a48dee44a7b9be64456f0f33133f2f6967fe17be394bc562a6a151fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e136f041f2a6b6c982043def9ff20ea9cea15a40495cf4f2c5668912354633e8ee7b0c10a0bd03a6a2723c26a03b77c2a133d1e3a61d88d4e29f9adc36f289a
|
|
7
|
+
data.tar.gz: cc97f8c45f306d9fbb0cc255042cad9ae5fafd0a257a0f721e6bd8df855e7294768b7553c1382b0746703ea372fc7732882786bf5c181c65ae75bf45b3435cea
|
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.1.
|
|
10
|
+
- Package version: 3.1.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.1.
|
|
27
|
+
gem install ./ultracart_api-3.1.11.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.1.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.1.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.1.
|
|
35
|
+
gem 'ultracart_api', '~> 3.1.11'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1006,6 +1006,7 @@ Not every change is committed to every SDK.
|
|
|
1006
1006
|
|
|
1007
1007
|
| Version | Date | Comments |
|
|
1008
1008
|
| --: | :-: | --- |
|
|
1009
|
+
| 3.1.11 | 02/24/2021 | Added Screen recording visitor number |
|
|
1009
1010
|
| 3.1.10 | 02/24/2021 | Added Screen recording merchant notes |
|
|
1010
1011
|
| 3.1.9 | 02/24/2021 | Allow coupons to be configured as unique with expiration on cart step within StoreFront Communications |
|
|
1011
1012
|
| 3.1.8 | 02/24/2021 | Add flag: screen recording missing event boolean |
|
data/docs/ScreenRecording.md
CHANGED
|
@@ -34,6 +34,7 @@ Name | Type | Description | Notes
|
|
|
34
34
|
**user_agent_raw** | **String** | | [optional]
|
|
35
35
|
**user_ip** | **String** | | [optional]
|
|
36
36
|
**user_properties** | [**Array<ScreenRecordingUserProperty>**](ScreenRecordingUserProperty.md) | | [optional]
|
|
37
|
+
**visitor_number** | **Integer** | | [optional]
|
|
37
38
|
**watched** | **BOOLEAN** | | [optional]
|
|
38
39
|
**window_height** | **Integer** | | [optional]
|
|
39
40
|
**window_width** | **Integer** | | [optional]
|
|
@@ -80,6 +80,8 @@ module UltracartClient
|
|
|
80
80
|
|
|
81
81
|
attr_accessor :user_properties
|
|
82
82
|
|
|
83
|
+
attr_accessor :visitor_number
|
|
84
|
+
|
|
83
85
|
attr_accessor :watched
|
|
84
86
|
|
|
85
87
|
attr_accessor :window_height
|
|
@@ -120,6 +122,7 @@ module UltracartClient
|
|
|
120
122
|
:'user_agent_raw' => :'user_agent_raw',
|
|
121
123
|
:'user_ip' => :'user_ip',
|
|
122
124
|
:'user_properties' => :'user_properties',
|
|
125
|
+
:'visitor_number' => :'visitor_number',
|
|
123
126
|
:'watched' => :'watched',
|
|
124
127
|
:'window_height' => :'window_height',
|
|
125
128
|
:'window_width' => :'window_width'
|
|
@@ -160,6 +163,7 @@ module UltracartClient
|
|
|
160
163
|
:'user_agent_raw' => :'String',
|
|
161
164
|
:'user_ip' => :'String',
|
|
162
165
|
:'user_properties' => :'Array<ScreenRecordingUserProperty>',
|
|
166
|
+
:'visitor_number' => :'Integer',
|
|
163
167
|
:'watched' => :'BOOLEAN',
|
|
164
168
|
:'window_height' => :'Integer',
|
|
165
169
|
:'window_width' => :'Integer'
|
|
@@ -310,6 +314,10 @@ module UltracartClient
|
|
|
310
314
|
end
|
|
311
315
|
end
|
|
312
316
|
|
|
317
|
+
if attributes.has_key?(:'visitor_number')
|
|
318
|
+
self.visitor_number = attributes[:'visitor_number']
|
|
319
|
+
end
|
|
320
|
+
|
|
313
321
|
if attributes.has_key?(:'watched')
|
|
314
322
|
self.watched = attributes[:'watched']
|
|
315
323
|
end
|
|
@@ -372,6 +380,7 @@ module UltracartClient
|
|
|
372
380
|
user_agent_raw == o.user_agent_raw &&
|
|
373
381
|
user_ip == o.user_ip &&
|
|
374
382
|
user_properties == o.user_properties &&
|
|
383
|
+
visitor_number == o.visitor_number &&
|
|
375
384
|
watched == o.watched &&
|
|
376
385
|
window_height == o.window_height &&
|
|
377
386
|
window_width == o.window_width
|
|
@@ -386,7 +395,7 @@ module UltracartClient
|
|
|
386
395
|
# Calculates hash code according to all attributes.
|
|
387
396
|
# @return [Fixnum] Hash code
|
|
388
397
|
def hash
|
|
389
|
-
[analytics_client_oid, analytics_session_dts, analytics_session_oid, email, end_timestamp, esp_customer_uuid, events_gz_size, events_json_key, favorite, favorites, geolocation, geolocation_country, geolocation_state, merchant_id, merchant_notes, order_id, page_view_count, page_views, rrweb_version, screen_recording_uuid, signed_download_url, start_timestamp, storefront_oids, storefronts, tags, time_on_site, ucacid, user_agent, user_agent_raw, user_ip, user_properties, watched, window_height, window_width].hash
|
|
398
|
+
[analytics_client_oid, analytics_session_dts, analytics_session_oid, email, end_timestamp, esp_customer_uuid, events_gz_size, events_json_key, favorite, favorites, geolocation, geolocation_country, geolocation_state, merchant_id, merchant_notes, order_id, page_view_count, page_views, rrweb_version, screen_recording_uuid, signed_download_url, start_timestamp, storefront_oids, storefronts, tags, time_on_site, ucacid, user_agent, user_agent_raw, user_ip, user_properties, visitor_number, watched, window_height, window_width].hash
|
|
390
399
|
end
|
|
391
400
|
|
|
392
401
|
# Builds the object from hash
|