ultracart_api 3.2.10 → 3.2.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16cada7affe2fe3fb59b93e34e354be088f9407086af9372a555bba894a60ac6
4
- data.tar.gz: 831cb76e3d2835935266a8ec34b2dfdbc950c0ed33a526aa589ef005f6bde78f
3
+ metadata.gz: ab4a9230408e849839ffa05f1388f126d79ea05461e32435e17fc36cc368442d
4
+ data.tar.gz: d7860c7728fe67f723b1c5b156f8922ec4d502c0953dc139000fa8eb4be8c062
5
5
  SHA512:
6
- metadata.gz: 5210877c6aaa58718de4d451c255269bf67584be59cc63871a0e58c8f688f01488f0b75bc0fbbfd7dffe2b686360365020c7c2826e8677a63263e34814b39156
7
- data.tar.gz: 97c7da993cdee27c2adf586160335df72e5a1a21ac2f5410a9d96097c62167dab0435c7fa383fd2e687a2830f8150b18d837a94d9b371ed8449fe3d9d2740fea
6
+ metadata.gz: ee1653e846c97444c43922ac2580c468987f99fcd0baf2614f02f413fa0b50200db1f982dc51d8caf62390f9592c2eccd9d09d6c2d931fd701cbb9205d555152
7
+ data.tar.gz: a251dfca7836f01f542b193ab791a1b00cb4f07f5068aa243190df00e040067251350939e6d23b7f5aa338cd43047d3aabc773bc9f8418c40fe6c8312407391a
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.2.10
10
+ - Package version: 3.2.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.2.10.gem
27
+ gem install ./ultracart_api-3.2.11.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.2.10.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.2.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.2.10'
35
+ gem 'ultracart_api', '~> 3.2.11'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1032,6 +1032,7 @@ Not every change is committed to every SDK.
1032
1032
 
1033
1033
  | Version | Date | Comments |
1034
1034
  | --: | :-: | --- |
1035
+ | 3.2.11 | 07/08/2021 | screen recording - missing external tracking flag added |
1035
1036
  | 3.2.10 | 07/08/2021 | customer profile - allow drop shipping options |
1036
1037
  | 3.2.9 | 07/07/2021 | screen recording - provide cost per thousand and retention interval |
1037
1038
  | 3.2.8 | 07/06/2021 | intgeration logs - min max log date/time retured in filter values |
@@ -27,6 +27,7 @@ Name | Type | Description | Notes
27
27
  **language_iso_code** | **String** | Language ISO code | [optional]
28
28
  **merchant_id** | **String** | | [optional]
29
29
  **merchant_notes** | **String** | | [optional]
30
+ **missing_external_tracking** | **BOOLEAN** | True if external page view was not tracked | [optional]
30
31
  **order_id** | **String** | | [optional]
31
32
  **page_view_count** | **Integer** | | [optional]
32
33
  **page_views** | [**Array<ScreenRecordingPageView>**](ScreenRecordingPageView.md) | | [optional]
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **checkout_only** | **BOOLEAN** | | [optional]
6
7
  **error** | [**Error**](Error.md) | | [optional]
7
8
  **filter** | [**ScreenRecordingFilter**](ScreenRecordingFilter.md) | | [optional]
8
9
  **filter_values** | [**ScreenRecordingFilterValues**](ScreenRecordingFilterValues.md) | | [optional]
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **checkout_only** | **BOOLEAN** | | [optional]
6
7
  **error** | [**Error**](Error.md) | | [optional]
7
8
  **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
8
9
  **screen_recording** | [**ScreenRecording**](ScreenRecording.md) | | [optional]
@@ -72,6 +72,9 @@ module UltracartClient
72
72
 
73
73
  attr_accessor :merchant_notes
74
74
 
75
+ # True if external page view was not tracked
76
+ attr_accessor :missing_external_tracking
77
+
75
78
  attr_accessor :order_id
76
79
 
77
80
  attr_accessor :page_view_count
@@ -154,6 +157,7 @@ module UltracartClient
154
157
  :'language_iso_code' => :'language_iso_code',
155
158
  :'merchant_id' => :'merchant_id',
156
159
  :'merchant_notes' => :'merchant_notes',
160
+ :'missing_external_tracking' => :'missing_external_tracking',
157
161
  :'order_id' => :'order_id',
158
162
  :'page_view_count' => :'page_view_count',
159
163
  :'page_views' => :'page_views',
@@ -209,6 +213,7 @@ module UltracartClient
209
213
  :'language_iso_code' => :'String',
210
214
  :'merchant_id' => :'String',
211
215
  :'merchant_notes' => :'String',
216
+ :'missing_external_tracking' => :'BOOLEAN',
212
217
  :'order_id' => :'String',
213
218
  :'page_view_count' => :'Integer',
214
219
  :'page_views' => :'Array<ScreenRecordingPageView>',
@@ -343,6 +348,10 @@ module UltracartClient
343
348
  self.merchant_notes = attributes[:'merchant_notes']
344
349
  end
345
350
 
351
+ if attributes.has_key?(:'missing_external_tracking')
352
+ self.missing_external_tracking = attributes[:'missing_external_tracking']
353
+ end
354
+
346
355
  if attributes.has_key?(:'order_id')
347
356
  self.order_id = attributes[:'order_id']
348
357
  end
@@ -496,6 +505,7 @@ module UltracartClient
496
505
  language_iso_code == o.language_iso_code &&
497
506
  merchant_id == o.merchant_id &&
498
507
  merchant_notes == o.merchant_notes &&
508
+ missing_external_tracking == o.missing_external_tracking &&
499
509
  order_id == o.order_id &&
500
510
  page_view_count == o.page_view_count &&
501
511
  page_views == o.page_views &&
@@ -532,7 +542,7 @@ module UltracartClient
532
542
  # Calculates hash code according to all attributes.
533
543
  # @return [Fixnum] Hash code
534
544
  def hash
535
- [ad_platform, analytics_client_oid, analytics_session_dts, analytics_session_oid, communications_campaign_name, communications_campaign_uuid, communications_email_subject, communications_email_uuid, communications_flow_name, communications_flow_uuid, email, email_domain, end_timestamp, esp_customer_uuid, events_gz_size, events_json_key, favorite, favorites, geolocation, geolocation_country, geolocation_state, language_iso_code, merchant_id, merchant_notes, order_id, page_view_count, page_views, preferred_language, referrer_domain, 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, utm_campaign, utm_source, visitor_first_seen, visitor_number, watched, window_height, window_width].hash
545
+ [ad_platform, analytics_client_oid, analytics_session_dts, analytics_session_oid, communications_campaign_name, communications_campaign_uuid, communications_email_subject, communications_email_uuid, communications_flow_name, communications_flow_uuid, email, email_domain, end_timestamp, esp_customer_uuid, events_gz_size, events_json_key, favorite, favorites, geolocation, geolocation_country, geolocation_state, language_iso_code, merchant_id, merchant_notes, missing_external_tracking, order_id, page_view_count, page_views, preferred_language, referrer_domain, 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, utm_campaign, utm_source, visitor_first_seen, visitor_number, watched, window_height, window_width].hash
536
546
  end
537
547
 
538
548
  # Builds the object from hash
@@ -14,6 +14,8 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ScreenRecordingQueryResponse
17
+ attr_accessor :checkout_only
18
+
17
19
  attr_accessor :error
18
20
 
19
21
  attr_accessor :filter
@@ -38,6 +40,7 @@ module UltracartClient
38
40
  # Attribute mapping from ruby-style variable name to JSON key.
39
41
  def self.attribute_map
40
42
  {
43
+ :'checkout_only' => :'checkout_only',
41
44
  :'error' => :'error',
42
45
  :'filter' => :'filter',
43
46
  :'filter_values' => :'filter_values',
@@ -54,6 +57,7 @@ module UltracartClient
54
57
  # Attribute type mapping.
55
58
  def self.swagger_types
56
59
  {
60
+ :'checkout_only' => :'BOOLEAN',
57
61
  :'error' => :'Error',
58
62
  :'filter' => :'ScreenRecordingFilter',
59
63
  :'filter_values' => :'ScreenRecordingFilterValues',
@@ -75,6 +79,10 @@ module UltracartClient
75
79
  # convert string to symbol for hash key
76
80
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
77
81
 
82
+ if attributes.has_key?(:'checkout_only')
83
+ self.checkout_only = attributes[:'checkout_only']
84
+ end
85
+
78
86
  if attributes.has_key?(:'error')
79
87
  self.error = attributes[:'error']
80
88
  end
@@ -138,6 +146,7 @@ module UltracartClient
138
146
  def ==(o)
139
147
  return true if self.equal?(o)
140
148
  self.class == o.class &&
149
+ checkout_only == o.checkout_only &&
141
150
  error == o.error &&
142
151
  filter == o.filter &&
143
152
  filter_values == o.filter_values &&
@@ -159,7 +168,7 @@ module UltracartClient
159
168
  # Calculates hash code according to all attributes.
160
169
  # @return [Fixnum] Hash code
161
170
  def hash
162
- [error, filter, filter_values, histogram_data, histogram_interval, histogram_start_dts, metadata, screen_recordings, success, warning].hash
171
+ [checkout_only, error, filter, filter_values, histogram_data, histogram_interval, histogram_start_dts, metadata, screen_recordings, success, warning].hash
163
172
  end
164
173
 
165
174
  # Builds the object from hash
@@ -14,6 +14,8 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ScreenRecordingResponse
17
+ attr_accessor :checkout_only
18
+
17
19
  attr_accessor :error
18
20
 
19
21
  attr_accessor :metadata
@@ -28,6 +30,7 @@ module UltracartClient
28
30
  # Attribute mapping from ruby-style variable name to JSON key.
29
31
  def self.attribute_map
30
32
  {
33
+ :'checkout_only' => :'checkout_only',
31
34
  :'error' => :'error',
32
35
  :'metadata' => :'metadata',
33
36
  :'screen_recording' => :'screen_recording',
@@ -39,6 +42,7 @@ module UltracartClient
39
42
  # Attribute type mapping.
40
43
  def self.swagger_types
41
44
  {
45
+ :'checkout_only' => :'BOOLEAN',
42
46
  :'error' => :'Error',
43
47
  :'metadata' => :'ResponseMetadata',
44
48
  :'screen_recording' => :'ScreenRecording',
@@ -55,6 +59,10 @@ module UltracartClient
55
59
  # convert string to symbol for hash key
56
60
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
57
61
 
62
+ if attributes.has_key?(:'checkout_only')
63
+ self.checkout_only = attributes[:'checkout_only']
64
+ end
65
+
58
66
  if attributes.has_key?(:'error')
59
67
  self.error = attributes[:'error']
60
68
  end
@@ -94,6 +102,7 @@ module UltracartClient
94
102
  def ==(o)
95
103
  return true if self.equal?(o)
96
104
  self.class == o.class &&
105
+ checkout_only == o.checkout_only &&
97
106
  error == o.error &&
98
107
  metadata == o.metadata &&
99
108
  screen_recording == o.screen_recording &&
@@ -110,7 +119,7 @@ module UltracartClient
110
119
  # Calculates hash code according to all attributes.
111
120
  # @return [Fixnum] Hash code
112
121
  def hash
113
- [error, metadata, screen_recording, success, warning].hash
122
+ [checkout_only, error, metadata, screen_recording, success, warning].hash
114
123
  end
115
124
 
116
125
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.2.10'
14
+ VERSION = '3.2.11'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.10
4
+ version: 3.2.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart