ultracart_api 3.1.7 → 3.1.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/README.md +5 -4
- data/docs/ItemContentAssignment.md +1 -0
- data/docs/ScreenRecordingPageView.md +1 -0
- data/lib/ultracart_api/models/item_content_assignment.rb +11 -1
- data/lib/ultracart_api/models/screen_recording_page_view.rb +10 -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: ffa54caaac727da9f22be9484ec752d4d0a020d07e139cd03dcf62d10678fd82
|
4
|
+
data.tar.gz: 017b7672f0110511473c27ceb10b688a671f3aa76b8278db253d346792b8f1ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bd11b03f7adfbc41bac7376b6aa746da93858ea7e3d936108b68505da42f76ed168211b033629daf733801225a01c5b9a058a87cdb0d52d606ac4a989955e5c
|
7
|
+
data.tar.gz: 4cccc3a66b579f731271e76279833b964d8854301f3337b5a9528b4e3f2c59764a3ec88047c8826899fcc316bb928d845f76493b6f84477b3849dd8af0bdf8a7
|
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.8
|
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.8.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.8.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.8'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1004,6 +1004,7 @@ Not every change is committed to every SDK.
|
|
1004
1004
|
|
1005
1005
|
| Version | Date | Comments |
|
1006
1006
|
| --: | :-: | --- |
|
1007
|
+
| 3.1.8 | 02/24/2021 | Add flag: screen recording missing event boolean |
|
1007
1008
|
| 3.1.5 | 02/12/2021 | Bug Fix: PHP retry logic missing a closing brace. Also screen recording page view data response refactor |
|
1008
1009
|
| 3.1.3 | 02/11/2021 | Bug Fix: wrong return type on CustomerApi.validateEmailVerificationToken |
|
1009
1010
|
| 3.1.2 | 02/11/2021 | CustomerApi.getEmailVerificationToken, CustomerApi.validateEmailVerificationToken added to allow for custom email verification. Also added favorite flag to screen recording object |
|
@@ -3,6 +3,7 @@
|
|
3
3
|
## Properties
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
|
+
**default_assignment** | **BOOLEAN** | True if this group is the default assignment for this item | [optional]
|
6
7
|
**group_oid** | **Integer** | Page (group) object identifier | [optional]
|
7
8
|
**group_path** | **String** | Page (group) path | [optional]
|
8
9
|
**host** | **String** | StoreFront host name | [optional]
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
7
7
|
**first_event_timestamp** | **String** | First event timestamp | [optional]
|
8
8
|
**http_post** | **BOOLEAN** | | [optional]
|
9
9
|
**last_event_timestamp** | **String** | Last event timestamp | [optional]
|
10
|
+
**missing_events** | **BOOLEAN** | | [optional]
|
10
11
|
**params** | [**Array<ScreenRecordingPageViewParameter>**](ScreenRecordingPageViewParameter.md) | | [optional]
|
11
12
|
**range_end** | **Integer** | | [optional]
|
12
13
|
**range_start** | **Integer** | | [optional]
|
@@ -14,6 +14,9 @@ require 'date'
|
|
14
14
|
|
15
15
|
module UltracartClient
|
16
16
|
class ItemContentAssignment
|
17
|
+
# True if this group is the default assignment for this item
|
18
|
+
attr_accessor :default_assignment
|
19
|
+
|
17
20
|
# Page (group) object identifier
|
18
21
|
attr_accessor :group_oid
|
19
22
|
|
@@ -32,6 +35,7 @@ module UltracartClient
|
|
32
35
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
36
|
def self.attribute_map
|
34
37
|
{
|
38
|
+
:'default_assignment' => :'default_assignment',
|
35
39
|
:'group_oid' => :'group_oid',
|
36
40
|
:'group_path' => :'group_path',
|
37
41
|
:'host' => :'host',
|
@@ -43,6 +47,7 @@ module UltracartClient
|
|
43
47
|
# Attribute type mapping.
|
44
48
|
def self.swagger_types
|
45
49
|
{
|
50
|
+
:'default_assignment' => :'BOOLEAN',
|
46
51
|
:'group_oid' => :'Integer',
|
47
52
|
:'group_path' => :'String',
|
48
53
|
:'host' => :'String',
|
@@ -59,6 +64,10 @@ module UltracartClient
|
|
59
64
|
# convert string to symbol for hash key
|
60
65
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
61
66
|
|
67
|
+
if attributes.has_key?(:'default_assignment')
|
68
|
+
self.default_assignment = attributes[:'default_assignment']
|
69
|
+
end
|
70
|
+
|
62
71
|
if attributes.has_key?(:'group_oid')
|
63
72
|
self.group_oid = attributes[:'group_oid']
|
64
73
|
end
|
@@ -113,6 +122,7 @@ module UltracartClient
|
|
113
122
|
def ==(o)
|
114
123
|
return true if self.equal?(o)
|
115
124
|
self.class == o.class &&
|
125
|
+
default_assignment == o.default_assignment &&
|
116
126
|
group_oid == o.group_oid &&
|
117
127
|
group_path == o.group_path &&
|
118
128
|
host == o.host &&
|
@@ -129,7 +139,7 @@ module UltracartClient
|
|
129
139
|
# Calculates hash code according to all attributes.
|
130
140
|
# @return [Fixnum] Hash code
|
131
141
|
def hash
|
132
|
-
[group_oid, group_path, host, sort_order, url_part].hash
|
142
|
+
[default_assignment, group_oid, group_path, host, sort_order, url_part].hash
|
133
143
|
end
|
134
144
|
|
135
145
|
# Builds the object from hash
|
@@ -24,6 +24,8 @@ module UltracartClient
|
|
24
24
|
# Last event timestamp
|
25
25
|
attr_accessor :last_event_timestamp
|
26
26
|
|
27
|
+
attr_accessor :missing_events
|
28
|
+
|
27
29
|
attr_accessor :params
|
28
30
|
|
29
31
|
attr_accessor :range_end
|
@@ -53,6 +55,7 @@ module UltracartClient
|
|
53
55
|
:'first_event_timestamp' => :'first_event_timestamp',
|
54
56
|
:'http_post' => :'http_post',
|
55
57
|
:'last_event_timestamp' => :'last_event_timestamp',
|
58
|
+
:'missing_events' => :'missing_events',
|
56
59
|
:'params' => :'params',
|
57
60
|
:'range_end' => :'range_end',
|
58
61
|
:'range_start' => :'range_start',
|
@@ -74,6 +77,7 @@ module UltracartClient
|
|
74
77
|
:'first_event_timestamp' => :'String',
|
75
78
|
:'http_post' => :'BOOLEAN',
|
76
79
|
:'last_event_timestamp' => :'String',
|
80
|
+
:'missing_events' => :'BOOLEAN',
|
77
81
|
:'params' => :'Array<ScreenRecordingPageViewParameter>',
|
78
82
|
:'range_end' => :'Integer',
|
79
83
|
:'range_start' => :'Integer',
|
@@ -114,6 +118,10 @@ module UltracartClient
|
|
114
118
|
self.last_event_timestamp = attributes[:'last_event_timestamp']
|
115
119
|
end
|
116
120
|
|
121
|
+
if attributes.has_key?(:'missing_events')
|
122
|
+
self.missing_events = attributes[:'missing_events']
|
123
|
+
end
|
124
|
+
|
117
125
|
if attributes.has_key?(:'params')
|
118
126
|
if (value = attributes[:'params']).is_a?(Array)
|
119
127
|
self.params = value
|
@@ -185,6 +193,7 @@ module UltracartClient
|
|
185
193
|
first_event_timestamp == o.first_event_timestamp &&
|
186
194
|
http_post == o.http_post &&
|
187
195
|
last_event_timestamp == o.last_event_timestamp &&
|
196
|
+
missing_events == o.missing_events &&
|
188
197
|
params == o.params &&
|
189
198
|
range_end == o.range_end &&
|
190
199
|
range_start == o.range_start &&
|
@@ -207,7 +216,7 @@ module UltracartClient
|
|
207
216
|
# Calculates hash code according to all attributes.
|
208
217
|
# @return [Fixnum] Hash code
|
209
218
|
def hash
|
210
|
-
[events, first_event_timestamp, http_post, last_event_timestamp, params, range_end, range_start, referrer, referrer_params, referrer_raw, screen_recording_page_view_uuid, time_on_page, truncated_events, ucapv, url].hash
|
219
|
+
[events, first_event_timestamp, http_post, last_event_timestamp, missing_events, params, range_end, range_start, referrer, referrer_params, referrer_raw, screen_recording_page_view_uuid, time_on_page, truncated_events, ucapv, url].hash
|
211
220
|
end
|
212
221
|
|
213
222
|
# 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.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-02-
|
11
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|