ultracart_api 3.1.18 → 3.1.37

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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -81
  3. data/docs/CouponPercentOffMsrpItems.md +1 -1
  4. data/docs/CustomerLoyalty.md +1 -0
  5. data/docs/EmailCampaign.md +2 -1
  6. data/docs/EmailFlow.md +2 -1
  7. data/docs/LibraryItemAttribute.md +0 -1
  8. data/docs/OrderProcessPaymentRequest.md +1 -0
  9. data/docs/ScreenRecording.md +13 -0
  10. data/docs/ScreenRecordingAdPlatform.md +13 -0
  11. data/docs/ScreenRecordingFilter.md +12 -0
  12. data/docs/ScreenRecordingFilterValues.md +12 -2
  13. data/docs/ScreenRecordingFilterValuesPageView.md +12 -0
  14. data/docs/ScreenRecordingPageView.md +2 -0
  15. data/docs/ScreenRecordingPageViewEvent.md +1 -0
  16. data/docs/ScreenRecordingQueryResponse.md +3 -0
  17. data/docs/ScreenRecordingSegment.md +3 -0
  18. data/docs/ScreenRecordingSettings.md +5 -0
  19. data/lib/ultracart_api.rb +2 -0
  20. data/lib/ultracart_api/models/coupon_percent_off_msrp_items.rb +1 -1
  21. data/lib/ultracart_api/models/customer_loyalty.rb +11 -1
  22. data/lib/ultracart_api/models/email_campaign.rb +12 -2
  23. data/lib/ultracart_api/models/email_flow.rb +12 -2
  24. data/lib/ultracart_api/models/library_item_attribute.rb +1 -10
  25. data/lib/ultracart_api/models/order_process_payment_request.rb +11 -1
  26. data/lib/ultracart_api/models/screen_recording.rb +128 -1
  27. data/lib/ultracart_api/models/screen_recording_ad_platform.rb +235 -0
  28. data/lib/ultracart_api/models/screen_recording_filter.rb +109 -1
  29. data/lib/ultracart_api/models/screen_recording_filter_values.rb +124 -18
  30. data/lib/ultracart_api/models/screen_recording_filter_values_page_view.rb +226 -0
  31. data/lib/ultracart_api/models/screen_recording_page_view.rb +21 -1
  32. data/lib/ultracart_api/models/screen_recording_page_view_event.rb +10 -1
  33. data/lib/ultracart_api/models/screen_recording_query_response.rb +30 -1
  34. data/lib/ultracart_api/models/screen_recording_segment.rb +30 -1
  35. data/lib/ultracart_api/models/screen_recording_settings.rb +49 -4
  36. data/lib/ultracart_api/version.rb +1 -1
  37. metadata +6 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ec877eeac5aebf27faca2f70559c977a0a530048e7869d317322e54a0d8ab37
4
- data.tar.gz: 4a3a15da646aff74261ff92d6d89af41033fe2ff24a95911eb28e5dbcae86151
3
+ metadata.gz: b5690416d00c2d70b1415240f127834c4705c6ab8ae1f351ff0d9855426a07d5
4
+ data.tar.gz: 9a71e679a3452d63c397fc6ab6073e889c4fd8e3ff2ea993fc5768132690250e
5
5
  SHA512:
6
- metadata.gz: 762401de2c3d75f779ab20e60c01a463a31133234d2099ef31bbf5cdc73711e90e4565c644d1306f1fdb63266e4c1215513e804f424e28af54d7d5bdcc25f57d
7
- data.tar.gz: d06e75abf6bae59074d849cc0b05187db96ff3b9eb262f053834a18cb75272c80e7eea51a0460a55cda5dfb1eff106b5b2efcad8d5adbaff5ae78943b7a6d310
6
+ metadata.gz: 96d5977c4a8311cedd2b1f18b3f59c46a4e573940325ebbc16d00610f647be5d79d0e679aabf7b0e099b38ab3317af5f3c5a522906bfce6b53207bb3f88b8841
7
+ data.tar.gz: e5af30079d2bcd2baf84594a8a0e5e1d8f0bc7d059e8c49496a4d1f5c4dc8cc33f1c425ca85fdb7393ed2919b24a3d2f9fcbcd960834a5c9fd18b375258d2752
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.18
10
+ - Package version: 3.1.37
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.18.gem
27
+ gem install ./ultracart_api-3.1.37.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.1.18.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.1.37.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.18'
35
+ gem 'ultracart_api', '~> 3.1.37'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -852,6 +852,7 @@ Class | Method | HTTP request | Description
852
852
  - [UltracartClient::ResponseMetadata](docs/ResponseMetadata.md)
853
853
  - [UltracartClient::ResultSet](docs/ResultSet.md)
854
854
  - [UltracartClient::ScreenRecording](docs/ScreenRecording.md)
855
+ - [UltracartClient::ScreenRecordingAdPlatform](docs/ScreenRecordingAdPlatform.md)
855
856
  - [UltracartClient::ScreenRecordingFilter](docs/ScreenRecordingFilter.md)
856
857
  - [UltracartClient::ScreenRecordingFilterGeoDistance](docs/ScreenRecordingFilterGeoDistance.md)
857
858
  - [UltracartClient::ScreenRecordingFilterIpSearch](docs/ScreenRecordingFilterIpSearch.md)
@@ -868,6 +869,7 @@ Class | Method | HTTP request | Description
868
869
  - [UltracartClient::ScreenRecordingFilterValuesEvent](docs/ScreenRecordingFilterValuesEvent.md)
869
870
  - [UltracartClient::ScreenRecordingFilterValuesEventParams](docs/ScreenRecordingFilterValuesEventParams.md)
870
871
  - [UltracartClient::ScreenRecordingFilterValuesPageParam](docs/ScreenRecordingFilterValuesPageParam.md)
872
+ - [UltracartClient::ScreenRecordingFilterValuesPageView](docs/ScreenRecordingFilterValuesPageView.md)
871
873
  - [UltracartClient::ScreenRecordingMerchantNotesRequest](docs/ScreenRecordingMerchantNotesRequest.md)
872
874
  - [UltracartClient::ScreenRecordingMultifield](docs/ScreenRecordingMultifield.md)
873
875
  - [UltracartClient::ScreenRecordingPageView](docs/ScreenRecordingPageView.md)
@@ -1000,80 +1002,3 @@ Class | Method | HTTP request | Description
1000
1002
  - **API key parameter name**: x-ultracart-simple-key
1001
1003
  - **Location**: HTTP header
1002
1004
 
1003
-
1004
-
1005
-
1006
- # CHANGE LOG
1007
- Not every change is committed to every SDK.
1008
-
1009
- | Version | Date | Comments |
1010
- | --: | :-: | --- |
1011
- | 3.1.18 | 03/17/2021 | Added order query by ship on date |
1012
- | 3.1.17 | 03/17/2021 | New coupon - percent off MSRP item |
1013
- | 3.1.16 | 03/16/2021 | screen recording filter page parameter names |
1014
- | 3.1.15 | 03/15/2021 | fix response from deleteScreenRecordingSegment that should have been void |
1015
- | 3.1.14 | 03/15/2021 | sort screen recordings by favorite flag |
1016
- | 3.1.13 | 03/02/2021 | new webhook order_payment_failed |
1017
- | 3.1.12 | 02/25/2021 | added screen recording visitor_first_seen property |
1018
- | 3.1.11 | 02/24/2021 | Added Screen recording visitor number |
1019
- | 3.1.10 | 02/24/2021 | Added Screen recording merchant notes |
1020
- | 3.1.9 | 02/24/2021 | Allow coupons to be configured as unique with expiration on cart step within StoreFront Communications |
1021
- | 3.1.8 | 02/24/2021 | Add flag: screen recording missing event boolean |
1022
- | 3.1.5 | 02/12/2021 | Bug Fix: PHP retry logic missing a closing brace. Also screen recording page view data response refactor |
1023
- | 3.1.3 | 02/11/2021 | Bug Fix: wrong return type on CustomerApi.validateEmailVerificationToken |
1024
- | 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 |
1025
- | 3.1.1 | 02/10/2021 | CustomerApi.getCustomerByEmail() method added |
1026
- | 3.1.0 | 02/10/2021 | Minor revision jump. Added new convenience methods for simple_key use to all api calls. Updated docs |
1027
- | 3.0.75 | 02/01/2021 | StoreFront Communication plan revision (internal use) |
1028
- | 3.0.71 | 01/28/2021 | BugFix: PHP SDK retry logic NPE |
1029
- | 3.0.70 | 01/26/2021 | Checkout return URL support |
1030
- | 3.0.66 | 01/22/2021 | code library attributes (mostly internal dev) |
1031
- | 3.0.65 | 01/22/2021 | Added folder support for email campaigns and flows |
1032
- | 3.0.64 | 01/20/2021 | Bug fix on revenue per customer field incorrectly named. |
1033
- | 3.0.63 | 01/20/2021 | CouponAPI: bug fixes and new method doesCouponCodeExist |
1034
- | 3.0.62 | 01/19/2021 | Added retry ability when rate limit is triggered (PHP SDK only) only) Other sdk to follow. |
1035
- | 3.0.60 | 01/14/2021 | Working with Ruby SDK |
1036
- | 3.0.57 | 12/17/2020 | CouponAPI: Added Buy one get one free coupon |
1037
- | 3.0.53 | 12/14/2020 | StoreFrontAPI: added a duplicate method to load the pricing tiers on the StoreFront |
1038
- | 3.0.51 | 12/09/2020 | UserAPI: internal bug preventing proper usage of user group creation |
1039
- | 3.0.45 | 12/03/2020 | CouponAPI: added partial searches to getCoupon params, added deleteCoupons method, fixed bugs |
1040
- | 3.0.44 | 12/03/2020 | Code library updates, intended for internal use |
1041
- | 3.0.43 | 12/02/2020 | Added fields to code library to handle versions of published items |
1042
- | 3.0.42 | 12/02/2020 | Added display values to CouponApi.getEditorValues to make type dropdowns easy |
1043
- | 3.0.41 | 11/17/2020 | New modify cart step option for StoreFront communications |
1044
- | 3.0.39 | 11/12/2020 | Added Customer.tax_codes.taxjar_exemption_type |
1045
- | 3.0.38 | 11/09/2020 | Added TaxProviderTaxJar.configuration.send_outside_nexus flag |
1046
- | 3.0.37 | 11/06/2020 | Added transactional email screenshots for code library |
1047
- | 3.0.36 | 11/03/2020 | Added missing constant for pre-order stage |
1048
- | 3.0.34 | 10/26/2020 | UserAPI initial release |
1049
- | 3.0.33 | 10/23/2020 | Added library_item_oid to StoreFront Communications email object for upcoming code library |
1050
- | 3.0.32 | 10/21/2020 | Added new StoreFrontApi.search method that takes a POST instead of a GET |
1051
- | 3.0.31 | 10/16/2020 | more dev work on code library (internal) |
1052
- | 3.0.30 | 10/08/2020 | development work on code library (internal), first version of UserAPI. The UserAPI is not live yet. |
1053
- | 3.0.29 | 09/29/2020 | new boolean field on coupon: bug fix |
1054
- | 3.0.28 | 09/29/2020 | new boolean field on coupon: free item with purchase of another item |
1055
- | 3.0.27 | 09/29/2020 | Refactored the code library applyToStoreFront to provide support for marketing emails |
1056
- | 3.0.26 | 09/25/2020 | Expose actual shipping and fulfillment costs in the order summary object |
1057
- | 3.0.25 | 09/16/2020 | New method: OrderApi.adjustOrderTotal |
1058
- | 3.0.24 | 09/10/2020 | Bugfix: incorrect response type on CheckoutAPI.registerAffiliateClick |
1059
- | 3.0.23 | 09/02/2020 | Added flag to email plan object. allow_tracking_emails |
1060
- | 3.0.22 | 09/02/2020 | Order object - added tracking details |
1061
- | 3.0.21 | 09/01/2020 | break fix in php sdk due to bad namespace |
1062
- | 3.0.20 | 09/01/2020 | Added OrderApi.processPayment method |
1063
- | 3.0.19 | 08/28/2020 | Code Library development: added kraken parameters for thumbnail image generation. |
1064
- | 3.0.17 | 08/26/2020 | cont. development work on Code Library |
1065
- | 3.0.14 | 08/19/2020 | development work on Code Library |
1066
- | 3.0.13 | 08/18/2020 | development work on Code Library |
1067
- | 3.0.12 | 08/13/2020 | screenshot urls for campaigns and flows (storefront communications) |
1068
- | 3.0.11 | 08/12/2020 | Refactoring and development for Code Library (not released yet) |
1069
- | 3.0.10 | 08/10/2020 | Method for registering an affliate click via the SDK, found within CheckoutAPI |
1070
- | 3.0.8 | 08/05/2020 | stub for code library 'getLibraryFilterValues' for populating drop down lists |
1071
- | 3.0.4 | 08/05/2020 | fixed misspell of 'version' in LibraryItem object. |
1072
- | 3.0.3 | 08/04/2020 | added description to addToLibrary call to allow for initial description |
1073
- | 3.0.2 | 08/03/2020 | added option on email render step config to allow override of subject, added flow/campaign flag to end once customer purchases |
1074
- | 3.0.1 | 07/27/2020 | added init_json to storefront communication email objects |
1075
- | 3.0.0 | 07/01/2020 | upgraded our swagger-codegen fork to the latest swagger source code. this was a major changes so we jumped version numbers. please test all code. |
1076
-
1077
- Some changes jump version numbers due to multiple commits for bug fixes, omissions, and errors.
1078
- At UltraCart, we eat our own dog food, and we increment the version number for every commit in order
1079
- to generate a new javascript npm. For this reason, version gaps will be found in the change log above.
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **discount_percent** | **Float** | The percentage of subtotal discount | [optional]
7
7
  **excluded_items** | **Array<String>** | A list of items which cannot be discounted. | [optional]
8
- **items** | **Array<String>** | An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items. | [optional]
8
+ **items** | **Array<String>** | An list of items which will receive a discount. | [optional]
9
9
  **limit** | **Integer** | The (optional) maximum quantity of discounted items. | [optional]
10
10
 
11
11
 
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **current_points** | **Integer** | Current Points | [optional]
7
7
  **ledger_entries** | [**Array<CustomerLoyaltyLedger>**](CustomerLoyaltyLedger.md) | Ledger entries | [optional]
8
+ **pending_points** | **Integer** | Pending Points | [optional]
8
9
  **redemptions** | [**Array<CustomerLoyaltyRedemption>**](CustomerLoyaltyRedemption.md) | Redemptions | [optional]
9
10
 
10
11
 
@@ -8,7 +8,8 @@ Name | Type | Description | Notes
8
8
  **deleted** | **BOOLEAN** | True if this campaign was deleted | [optional]
9
9
  **email_campaign_uuid** | **String** | Email campaign UUID | [optional]
10
10
  **email_communication_sequence_uuid** | **String** | Email communication sequence UUID | [optional]
11
- **end_once_customer_purchases** | **BOOLEAN** | True if the customer should end the flow once they purchase | [optional]
11
+ **end_once_customer_purchases** | **BOOLEAN** | True if the customer should end the flow once they purchase from this campaign | [optional]
12
+ **end_once_customer_purchases_anywhere** | **BOOLEAN** | True if the customer should end the flow once they purchase from anywhere | [optional]
12
13
  **esp_campaign_folder_uuid** | **String** | Campaign folder UUID. Null for uncategorized | [optional]
13
14
  **esp_domain_user** | **String** | User of the sending address | [optional]
14
15
  **esp_domain_uuid** | **String** | UUID of the sending domain | [optional]
data/docs/EmailFlow.md CHANGED
@@ -10,7 +10,8 @@ Name | Type | Description | Notes
10
10
  **deleted** | **BOOLEAN** | True if this campaign was deleted | [optional]
11
11
  **email_communication_sequence_uuid** | **String** | Email communication sequence UUID | [optional]
12
12
  **email_flow_uuid** | **String** | Email flow UUID | [optional]
13
- **end_once_customer_purchases** | **BOOLEAN** | True if the customer should end the flow once they purchase | [optional]
13
+ **end_once_customer_purchases** | **BOOLEAN** | True if the customer should end the flow once they purchase from an email on this flow | [optional]
14
+ **end_once_customer_purchases_anywhere** | **BOOLEAN** | True if the customer should end the flow once they purchase from any source | [optional]
14
15
  **enrolled_customers** | **Integer** | Number of enrolled customers. | [optional]
15
16
  **esp_domain_user** | **String** | Username of sending email | [optional]
16
17
  **esp_domain_uuid** | **String** | UUID of sending domain | [optional]
@@ -3,7 +3,6 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
- **library_item_oid** | **Integer** | | [optional]
7
6
  **name** | **String** | | [optional]
8
7
  **value** | **String** | | [optional]
9
8
 
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **amount** | **Float** | Specific amount to bill (optional). If not specified the total of the order is billed. | [optional]
6
7
  **card_verification_number_token** | **String** | Card verification number token from hosted fields used during credit card transaction processing (optional) | [optional]
7
8
 
8
9
 
@@ -3,10 +3,18 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **ad_platform** | [**ScreenRecordingAdPlatform**](ScreenRecordingAdPlatform.md) | | [optional]
6
7
  **analytics_client_oid** | **Integer** | | [optional]
7
8
  **analytics_session_dts** | **Integer** | | [optional]
8
9
  **analytics_session_oid** | **Integer** | | [optional]
10
+ **communications_campaign_name** | **String** | Campaign Name | [optional]
11
+ **communications_campaign_uuid** | **String** | Campaign UUID | [optional]
12
+ **communications_email_subject** | **String** | Email subject | [optional]
13
+ **communications_email_uuid** | **String** | Email UUID | [optional]
14
+ **communications_flow_name** | **String** | Flow Name | [optional]
15
+ **communications_flow_uuid** | **String** | Flow UUID | [optional]
9
16
  **email** | **String** | | [optional]
17
+ **email_domain** | **String** | | [optional]
10
18
  **end_timestamp** | **String** | Ending timestamp | [optional]
11
19
  **esp_customer_uuid** | **String** | | [optional]
12
20
  **events_gz_size** | **Integer** | | [optional]
@@ -16,11 +24,14 @@ Name | Type | Description | Notes
16
24
  **geolocation** | [**GeoPoint**](GeoPoint.md) | | [optional]
17
25
  **geolocation_country** | **String** | | [optional]
18
26
  **geolocation_state** | **String** | | [optional]
27
+ **language_iso_code** | **String** | Language ISO code | [optional]
19
28
  **merchant_id** | **String** | | [optional]
20
29
  **merchant_notes** | **String** | | [optional]
21
30
  **order_id** | **String** | | [optional]
22
31
  **page_view_count** | **Integer** | | [optional]
23
32
  **page_views** | [**Array<ScreenRecordingPageView>**](ScreenRecordingPageView.md) | | [optional]
33
+ **preferred_language** | **String** | ISO 3 Letter language code that the customer would prefer | [optional]
34
+ **referrer_domain** | **String** | | [optional]
24
35
  **rrweb_version** | **String** | | [optional]
25
36
  **screen_recording_uuid** | **String** | | [optional]
26
37
  **signed_download_url** | **String** | | [optional]
@@ -34,6 +45,8 @@ Name | Type | Description | Notes
34
45
  **user_agent_raw** | **String** | | [optional]
35
46
  **user_ip** | **String** | | [optional]
36
47
  **user_properties** | [**Array<ScreenRecordingUserProperty>**](ScreenRecordingUserProperty.md) | | [optional]
48
+ **utm_campaign** | **String** | UTM Campaign | [optional]
49
+ **utm_source** | **String** | UTM Source | [optional]
37
50
  **visitor_first_seen** | **String** | Timestamp this visitor was first seen | [optional]
38
51
  **visitor_number** | **Integer** | | [optional]
39
52
  **watched** | **BOOLEAN** | | [optional]
@@ -0,0 +1,13 @@
1
+ # UltracartClient::ScreenRecordingAdPlatform
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **fbc** | **String** | Facebook Click Id (Cookie) | [optional]
7
+ **fbclid** | **String** | Facebook Click Id Parameter (Parameter) | [optional]
8
+ **fbp** | **String** | Facebook Browser Id (Cookie) | [optional]
9
+ **gacid** | **String** | Google Analytics CID (Cookie) | [optional]
10
+ **glcid** | **String** | Google Adwords Click Id (Parameter) | [optional]
11
+ **msclkid** | **String** | Bing Click Id (Parameter | [optional]
12
+
13
+
@@ -3,7 +3,13 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **affiliate_email** | **String** | | [optional]
7
+ **affiliate_id** | **Integer** | | [optional]
8
+ **communications_campaign_name** | **String** | | [optional]
9
+ **communications_email_subject** | **String** | | [optional]
10
+ **communications_flow_name** | **String** | | [optional]
6
11
  **email** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
12
+ **email_domain** | **String** | | [optional]
7
13
  **email_identified** | **BOOLEAN** | | [optional]
8
14
  **end_timestamp** | [**ScreenRecordingFilterRangeDate**](ScreenRecordingFilterRangeDate.md) | | [optional]
9
15
  **esp_customer_uuid** | **String** | | [optional]
@@ -11,11 +17,15 @@ Name | Type | Description | Notes
11
17
  **geolocation** | [**ScreenRecordingFilterGeoDistance**](ScreenRecordingFilterGeoDistance.md) | | [optional]
12
18
  **geolocation_country** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
13
19
  **geolocation_state** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
20
+ **language_iso_code** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
21
+ **last_x_days** | **Integer** | | [optional]
14
22
  **max_filter_values** | **Integer** | | [optional]
15
23
  **order_id** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
16
24
  **page_view_count** | [**ScreenRecordingFilterRangeInteger**](ScreenRecordingFilterRangeInteger.md) | | [optional]
17
25
  **page_views** | [**Array<ScreenRecordingFilterPageView>**](ScreenRecordingFilterPageView.md) | | [optional]
18
26
  **placed_order** | **BOOLEAN** | | [optional]
27
+ **preferred_language** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
28
+ **referrer_domain** | **String** | | [optional]
19
29
  **screen_recording_uuids** | **Array<String>** | | [optional]
20
30
  **screen_sizes** | **Array<String>** | | [optional]
21
31
  **skip_filter_values** | **BOOLEAN** | | [optional]
@@ -29,6 +39,8 @@ Name | Type | Description | Notes
29
39
  **user_agent_os_name** | **String** | | [optional]
30
40
  **user_agent_os_version** | **String** | | [optional]
31
41
  **user_ip** | [**ScreenRecordingFilterIpSearch**](ScreenRecordingFilterIpSearch.md) | | [optional]
42
+ **utm_campaign** | **String** | | [optional]
43
+ **utm_source** | **String** | | [optional]
32
44
  **visitor_number** | **Integer** | | [optional]
33
45
  **watched** | **BOOLEAN** | | [optional]
34
46
 
@@ -3,16 +3,26 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
- **events** | [**Array<ScreenRecordingFilterValuesEvent>**](ScreenRecordingFilterValuesEvent.md) | | [optional]
6
+ **communications_campaign_names** | **Array<String>** | | [optional]
7
+ **communications_email_subjects** | **Array<String>** | | [optional]
8
+ **communications_flow_names** | **Array<String>** | | [optional]
9
+ **email_domains** | **Array<String>** | | [optional]
7
10
  **geolocation_countries** | **Array<String>** | | [optional]
8
11
  **geolocation_states** | **Array<String>** | | [optional]
12
+ **language_iso_codes** | **Array<String>** | | [optional]
9
13
  **max_values** | **Integer** | | [optional]
10
- **page_params** | [**Array<ScreenRecordingFilterValuesPageParam>**](ScreenRecordingFilterValuesPageParam.md) | | [optional]
14
+ **page_views** | [**Array<ScreenRecordingFilterValuesPageView>**](ScreenRecordingFilterValuesPageView.md) | | [optional]
15
+ **preferred_languages** | **Array<String>** | | [optional]
16
+ **referrer_domains** | **Array<String>** | | [optional]
17
+ **time_on_site_max** | **Integer** | | [optional]
18
+ **time_on_site_min** | **Integer** | | [optional]
11
19
  **urls** | **Array<String>** | | [optional]
12
20
  **user_agent_device_names** | **Array<String>** | | [optional]
13
21
  **user_agent_device_os_names** | **Array<String>** | | [optional]
14
22
  **user_agent_device_os_versions** | **Array<String>** | | [optional]
15
23
  **user_agent_names** | **Array<String>** | | [optional]
16
24
  **user_agent_originals** | **Array<String>** | | [optional]
25
+ **utm_campaigns** | **Array<String>** | | [optional]
26
+ **utm_sources** | **Array<String>** | | [optional]
17
27
 
18
28
 
@@ -0,0 +1,12 @@
1
+ # UltracartClient::ScreenRecordingFilterValuesPageView
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **events** | [**Array<ScreenRecordingFilterValuesEvent>**](ScreenRecordingFilterValuesEvent.md) | | [optional]
7
+ **page_params** | [**Array<ScreenRecordingFilterValuesPageParam>**](ScreenRecordingFilterValuesPageParam.md) | | [optional]
8
+ **time_on_page_max** | **Integer** | | [optional]
9
+ **time_on_page_min** | **Integer** | | [optional]
10
+ **urls** | **Array<String>** | | [optional]
11
+
12
+
@@ -16,6 +16,8 @@ Name | Type | Description | Notes
16
16
  **referrer_raw** | **String** | | [optional]
17
17
  **screen_recording_page_view_uuid** | **String** | | [optional]
18
18
  **time_on_page** | **Integer** | | [optional]
19
+ **timing_dom_content_loaded** | **Integer** | Amount of time for DOMContentLoaded event to fire (milliseconds) | [optional]
20
+ **timing_loaded** | **Integer** | Amount of time for loaded event to fire (milliseconds) | [optional]
19
21
  **truncated_events** | **BOOLEAN** | | [optional]
20
22
  **ucapv** | **String** | | [optional]
21
23
  **url** | **String** | | [optional]
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **name** | **String** | | [optional]
7
7
  **params** | [**Array<ScreenRecordingPageViewEventParameter>**](ScreenRecordingPageViewEventParameter.md) | | [optional]
8
+ **prior_page_view** | **BOOLEAN** | | [optional]
8
9
  **timestamp** | **String** | Timestamp of the event | [optional]
9
10
  **ts** | **Integer** | | [optional]
10
11
 
@@ -6,6 +6,9 @@ Name | Type | Description | Notes
6
6
  **error** | [**Error**](Error.md) | | [optional]
7
7
  **filter** | [**ScreenRecordingFilter**](ScreenRecordingFilter.md) | | [optional]
8
8
  **filter_values** | [**ScreenRecordingFilterValues**](ScreenRecordingFilterValues.md) | | [optional]
9
+ **histogram_data** | **Array<Integer>** | | [optional]
10
+ **histogram_interval** | **String** | | [optional]
11
+ **histogram_start_dts** | **String** | | [optional]
9
12
  **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
10
13
  **screen_recordings** | [**Array<ScreenRecording>**](ScreenRecording.md) | | [optional]
11
14
  **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
@@ -6,6 +6,9 @@ Name | Type | Description | Notes
6
6
  **create_dts** | **String** | | [optional]
7
7
  **description** | **String** | | [optional]
8
8
  **filter** | [**ScreenRecordingFilter**](ScreenRecordingFilter.md) | | [optional]
9
+ **histogram_data** | **Array<Integer>** | | [optional]
10
+ **histogram_interval** | **String** | | [optional]
11
+ **histogram_start_dts** | **String** | | [optional]
9
12
  **name** | **String** | | [optional]
10
13
  **screen_recording_segment_oid** | **Integer** | | [optional]
11
14
  **session_count** | **Integer** | | [optional]
@@ -4,5 +4,10 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **enabled** | **BOOLEAN** | | [optional]
7
+ **sessions_current_billing_period** | **Integer** | | [optional]
8
+ **sessions_last_billing_period** | **Integer** | | [optional]
9
+ **sessions_trial_billing_period** | **Integer** | | [optional]
10
+ **trial_expiration** | **String** | | [optional]
11
+ **trial_expired** | **BOOLEAN** | | [optional]
7
12
 
8
13
 
data/lib/ultracart_api.rb CHANGED
@@ -486,6 +486,7 @@ require 'ultracart_api/models/register_affiliate_click_response'
486
486
  require 'ultracart_api/models/response_metadata'
487
487
  require 'ultracart_api/models/result_set'
488
488
  require 'ultracart_api/models/screen_recording'
489
+ require 'ultracart_api/models/screen_recording_ad_platform'
489
490
  require 'ultracart_api/models/screen_recording_filter'
490
491
  require 'ultracart_api/models/screen_recording_filter_geo_distance'
491
492
  require 'ultracart_api/models/screen_recording_filter_ip_search'
@@ -502,6 +503,7 @@ require 'ultracart_api/models/screen_recording_filter_values'
502
503
  require 'ultracart_api/models/screen_recording_filter_values_event'
503
504
  require 'ultracart_api/models/screen_recording_filter_values_event_params'
504
505
  require 'ultracart_api/models/screen_recording_filter_values_page_param'
506
+ require 'ultracart_api/models/screen_recording_filter_values_page_view'
505
507
  require 'ultracart_api/models/screen_recording_merchant_notes_request'
506
508
  require 'ultracart_api/models/screen_recording_multifield'
507
509
  require 'ultracart_api/models/screen_recording_page_view'
@@ -20,7 +20,7 @@ module UltracartClient
20
20
  # A list of items which cannot be discounted.
21
21
  attr_accessor :excluded_items
22
22
 
23
- # An optional list of items which will receive a discount. If blank, discount applies to all items except excluded items.
23
+ # An list of items which will receive a discount.
24
24
  attr_accessor :items
25
25
 
26
26
  # The (optional) maximum quantity of discounted items.
@@ -20,6 +20,9 @@ module UltracartClient
20
20
  # Ledger entries
21
21
  attr_accessor :ledger_entries
22
22
 
23
+ # Pending Points
24
+ attr_accessor :pending_points
25
+
23
26
  # Redemptions
24
27
  attr_accessor :redemptions
25
28
 
@@ -28,6 +31,7 @@ module UltracartClient
28
31
  {
29
32
  :'current_points' => :'current_points',
30
33
  :'ledger_entries' => :'ledger_entries',
34
+ :'pending_points' => :'pending_points',
31
35
  :'redemptions' => :'redemptions'
32
36
  }
33
37
  end
@@ -37,6 +41,7 @@ module UltracartClient
37
41
  {
38
42
  :'current_points' => :'Integer',
39
43
  :'ledger_entries' => :'Array<CustomerLoyaltyLedger>',
44
+ :'pending_points' => :'Integer',
40
45
  :'redemptions' => :'Array<CustomerLoyaltyRedemption>'
41
46
  }
42
47
  end
@@ -59,6 +64,10 @@ module UltracartClient
59
64
  end
60
65
  end
61
66
 
67
+ if attributes.has_key?(:'pending_points')
68
+ self.pending_points = attributes[:'pending_points']
69
+ end
70
+
62
71
  if attributes.has_key?(:'redemptions')
63
72
  if (value = attributes[:'redemptions']).is_a?(Array)
64
73
  self.redemptions = value
@@ -86,6 +95,7 @@ module UltracartClient
86
95
  self.class == o.class &&
87
96
  current_points == o.current_points &&
88
97
  ledger_entries == o.ledger_entries &&
98
+ pending_points == o.pending_points &&
89
99
  redemptions == o.redemptions
90
100
  end
91
101
 
@@ -98,7 +108,7 @@ module UltracartClient
98
108
  # Calculates hash code according to all attributes.
99
109
  # @return [Fixnum] Hash code
100
110
  def hash
101
- [current_points, ledger_entries, redemptions].hash
111
+ [current_points, ledger_entries, pending_points, redemptions].hash
102
112
  end
103
113
 
104
114
  # Builds the object from hash