ultracart_api 3.1.37 → 3.1.43

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +109 -4
  3. data/docs/CouponTierAmount.md +1 -0
  4. data/docs/CouponTierPercent.md +1 -0
  5. data/docs/CouponTierQuantityAmount.md +1 -0
  6. data/docs/CouponTierQuantityPercent.md +1 -0
  7. data/docs/CouponTieredPercentOffShipping.md +1 -0
  8. data/docs/Item.md +1 -1
  9. data/docs/LibraryItemAttribute.md +1 -0
  10. data/docs/OrderApi.md +1 -1
  11. data/docs/OrderSummary.md +1 -0
  12. data/docs/ScreenRecordingFilterPageView.md +1 -0
  13. data/docs/ScreenRecordingFilterValuesPageView.md +1 -0
  14. data/docs/ScreenRecordingHeatmap.md +19 -0
  15. data/docs/ScreenRecordingHeatmapIndexResponse.md +12 -0
  16. data/docs/ScreenRecordingHeatmapRequest.md +9 -0
  17. data/docs/ScreenRecordingHeatmapReset.md +8 -0
  18. data/docs/ScreenRecordingHeatmapResponse.md +12 -0
  19. data/docs/ScreenRecordingHeatmapUrl.md +12 -0
  20. data/docs/ScreenRecordingPageView.md +1 -0
  21. data/docs/StorefrontApi.md +158 -0
  22. data/docs/WebhookLog.md +1 -0
  23. data/lib/ultracart_api.rb +6 -0
  24. data/lib/ultracart_api/api/order_api.rb +2 -2
  25. data/lib/ultracart_api/api/storefront_api.rb +176 -0
  26. data/lib/ultracart_api/models/coupon_tier_amount.rb +26 -1
  27. data/lib/ultracart_api/models/coupon_tier_percent.rb +26 -1
  28. data/lib/ultracart_api/models/coupon_tier_quantity_amount.rb +29 -4
  29. data/lib/ultracart_api/models/coupon_tier_quantity_percent.rb +29 -4
  30. data/lib/ultracart_api/models/coupon_tiered_percent_off_shipping.rb +26 -1
  31. data/lib/ultracart_api/models/item.rb +8 -8
  32. data/lib/ultracart_api/models/library_item_attribute.rb +10 -1
  33. data/lib/ultracart_api/models/order_summary.rb +10 -1
  34. data/lib/ultracart_api/models/screen_recording_filter_page_view.rb +10 -1
  35. data/lib/ultracart_api/models/screen_recording_filter_values_page_view.rb +12 -1
  36. data/lib/ultracart_api/models/screen_recording_heatmap.rb +283 -0
  37. data/lib/ultracart_api/models/screen_recording_heatmap_index_response.rb +223 -0
  38. data/lib/ultracart_api/models/screen_recording_heatmap_request.rb +193 -0
  39. data/lib/ultracart_api/models/screen_recording_heatmap_reset.rb +184 -0
  40. data/lib/ultracart_api/models/screen_recording_heatmap_response.rb +221 -0
  41. data/lib/ultracart_api/models/screen_recording_heatmap_url.rb +222 -0
  42. data/lib/ultracart_api/models/screen_recording_page_view.rb +10 -1
  43. data/lib/ultracart_api/models/webhook_log.rb +11 -1
  44. data/lib/ultracart_api/version.rb +1 -1
  45. metadata +14 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b5690416d00c2d70b1415240f127834c4705c6ab8ae1f351ff0d9855426a07d5
4
- data.tar.gz: 9a71e679a3452d63c397fc6ab6073e889c4fd8e3ff2ea993fc5768132690250e
3
+ metadata.gz: 9a584bb7f1b5227ef69f544f4ec4def7c4ca7ea7518df56e6c5eafc0a49a4ed7
4
+ data.tar.gz: 07d1a2187132a73f168b8148ecb48fd9c4c2270643682ea453b089203f789698
5
5
  SHA512:
6
- metadata.gz: 96d5977c4a8311cedd2b1f18b3f59c46a4e573940325ebbc16d00610f647be5d79d0e679aabf7b0e099b38ab3317af5f3c5a522906bfce6b53207bb3f88b8841
7
- data.tar.gz: e5af30079d2bcd2baf84594a8a0e5e1d8f0bc7d059e8c49496a4d1f5c4dc8cc33f1c425ca85fdb7393ed2919b24a3d2f9fcbcd960834a5c9fd18b375258d2752
6
+ metadata.gz: 137591dbcaf512304fc96557366f1fafcbd513dd4f51279eedb45b6416bcb5cfb09a12c6658d5545f455fa6ae1c2e58441f53748c66475bc05dcbd7118a33d05
7
+ data.tar.gz: 786156668460d885e03803fdc77a28238d8a67d54b8c8013025827db8c170bbd5ad07ed8be1b72fbfce30e59c659cb99a537f18623e082ba4508a74f33631aae
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.37
10
+ - Package version: 3.1.43
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.37.gem
27
+ gem install ./ultracart_api-3.1.43.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.1.37.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.1.43.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.37'
35
+ gem 'ultracart_api', '~> 3.1.43'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -205,6 +205,7 @@ Class | Method | HTTP request | Description
205
205
  *UltracartClient::StorefrontApi* | [**delete_email_postcard**](docs/StorefrontApi.md#delete_email_postcard) | **DELETE** /storefront/{storefront_oid}/email/postcards/{commseq_postcard_uuid} | Delete email postcard
206
206
  *UltracartClient::StorefrontApi* | [**delete_email_sending_domain**](docs/StorefrontApi.md#delete_email_sending_domain) | **DELETE** /storefront/email/sending_domains/{domain} | delete email campaign
207
207
  *UltracartClient::StorefrontApi* | [**delete_experiment**](docs/StorefrontApi.md#delete_experiment) | **DELETE** /storefront/{storefront_oid}/experiments/{storefront_experiment_oid} | Delete experiment
208
+ *UltracartClient::StorefrontApi* | [**delete_heatmap**](docs/StorefrontApi.md#delete_heatmap) | **DELETE** /storefront/{storefront_oid}/screen_recordings/heatmap | Delete screen recording heatmap
208
209
  *UltracartClient::StorefrontApi* | [**delete_library_item**](docs/StorefrontApi.md#delete_library_item) | **DELETE** /storefront/code_library/{library_item_oid} | Delete library item
209
210
  *UltracartClient::StorefrontApi* | [**delete_library_item_published_versions**](docs/StorefrontApi.md#delete_library_item_published_versions) | **DELETE** /storefront/code_library/{library_item_oid}/published_versions | Delete all published versions for a library item, including anything in review.
210
211
  *UltracartClient::StorefrontApi* | [**delete_screen_recording_segment**](docs/StorefrontApi.md#delete_screen_recording_segment) | **DELETE** /storefront/{storefront_oid}/screen_recordings/segments/{screen_recording_segment_oid} | Delete screen recording segment
@@ -264,6 +265,8 @@ Class | Method | HTTP request | Description
264
265
  *UltracartClient::StorefrontApi* | [**get_email_templates**](docs/StorefrontApi.md#get_email_templates) | **GET** /storefront/{storefront_oid}/email/templates | Get email templates
265
266
  *UltracartClient::StorefrontApi* | [**get_email_third_party_providers**](docs/StorefrontApi.md#get_email_third_party_providers) | **GET** /storefront/{storefront_oid}/email/third_party_providers | Get a list of third party email providers
266
267
  *UltracartClient::StorefrontApi* | [**get_experiments**](docs/StorefrontApi.md#get_experiments) | **GET** /storefront/{storefront_oid}/experiments | Get experiments
268
+ *UltracartClient::StorefrontApi* | [**get_heatmap**](docs/StorefrontApi.md#get_heatmap) | **POST** /storefront/{storefront_oid}/screen_recordings/heatmap | Get screen recording heatmap
269
+ *UltracartClient::StorefrontApi* | [**get_heatmap_index**](docs/StorefrontApi.md#get_heatmap_index) | **POST** /storefront/{storefront_oid}/screen_recordings/heatmap/index | Get screen recording heatmap index
267
270
  *UltracartClient::StorefrontApi* | [**get_histogram_property_names**](docs/StorefrontApi.md#get_histogram_property_names) | **GET** /storefront/{storefront_oid}/email/histogram/property_names | Get histogram property names
268
271
  *UltracartClient::StorefrontApi* | [**get_histogram_property_values**](docs/StorefrontApi.md#get_histogram_property_values) | **GET** /storefront/{storefront_oid}/email/histogram/property_values | Get histogram property values
269
272
  *UltracartClient::StorefrontApi* | [**get_library_filter_values**](docs/StorefrontApi.md#get_library_filter_values) | **GET** /storefront/code_library/filter_values | Get library values used to populate drop down boxes for filtering.
@@ -870,6 +873,12 @@ Class | Method | HTTP request | Description
870
873
  - [UltracartClient::ScreenRecordingFilterValuesEventParams](docs/ScreenRecordingFilterValuesEventParams.md)
871
874
  - [UltracartClient::ScreenRecordingFilterValuesPageParam](docs/ScreenRecordingFilterValuesPageParam.md)
872
875
  - [UltracartClient::ScreenRecordingFilterValuesPageView](docs/ScreenRecordingFilterValuesPageView.md)
876
+ - [UltracartClient::ScreenRecordingHeatmap](docs/ScreenRecordingHeatmap.md)
877
+ - [UltracartClient::ScreenRecordingHeatmapIndexResponse](docs/ScreenRecordingHeatmapIndexResponse.md)
878
+ - [UltracartClient::ScreenRecordingHeatmapRequest](docs/ScreenRecordingHeatmapRequest.md)
879
+ - [UltracartClient::ScreenRecordingHeatmapReset](docs/ScreenRecordingHeatmapReset.md)
880
+ - [UltracartClient::ScreenRecordingHeatmapResponse](docs/ScreenRecordingHeatmapResponse.md)
881
+ - [UltracartClient::ScreenRecordingHeatmapUrl](docs/ScreenRecordingHeatmapUrl.md)
873
882
  - [UltracartClient::ScreenRecordingMerchantNotesRequest](docs/ScreenRecordingMerchantNotesRequest.md)
874
883
  - [UltracartClient::ScreenRecordingMultifield](docs/ScreenRecordingMultifield.md)
875
884
  - [UltracartClient::ScreenRecordingPageView](docs/ScreenRecordingPageView.md)
@@ -1002,3 +1011,99 @@ Class | Method | HTTP request | Description
1002
1011
  - **API key parameter name**: x-ultracart-simple-key
1003
1012
  - **Location**: HTTP header
1004
1013
 
1014
+
1015
+
1016
+
1017
+ # CHANGE LOG
1018
+ Not every change is committed to every SDK.
1019
+
1020
+ | Version | Date | Comments |
1021
+ | --: | :-: | --- |
1022
+ | 3.1.43 | 06/01/2021 | one of us cannot spell, not saying who |
1023
+ | 3.1.42 | 06/01/2021 | added quickbooks accounting codes at the tiered level for tiered coupons |
1024
+ | 3.1.41 | 05/21/2021 | screen recording heatmap methods |
1025
+ | 3.1.40 | 05/20/2021 | Order.summary.actual_payment_processing field added |
1026
+ | 3.1.39 | 05/19/2021 | full deployment to ensure all language SDKs are up to date |
1027
+ | 3.1.37 | 05/18/2021 | removed php sdk dependency on ext-mbstring by generating sdk with polyfill requirement. sdk is more portable now. |
1028
+ | 3.1.35 | 05/14/2021 | screen recording histogram data |
1029
+ | 3.1.34 | 05/12/2021 | screen recording preferred language, last x days filter, referrer domain |
1030
+ | 3.1.33 | 05/11/2021 | creen recording filter for affiliate id and email |
1031
+ | 3.1.32 | 05/06/2021 | customer profile pending loyalty points |
1032
+ | 3.1.31 | 05/06/2021 | Added email domian field to screen recordings for filtering |
1033
+ | 3.1.30 | 04/27/2021 | OrderApi.processPayment now allows a specific amount to be billed |
1034
+ | 3.1.29 | 04/26/2021 | screen recording language iso code |
1035
+ | 3.1.28 | 04/26/2021 | screen recording statistics on the setting object |
1036
+ | 3.1.27 | 04/20/2021 | bug fix - annotation misspell on new email campaign property |
1037
+ | 3.1.26 | 04/20/2021 | StoreFront Connumications - flag to end campaign or flow once purchase happens anywhere |
1038
+ | 3.1.25 | 04/19/2021 | Screen recording UTM campaign and source fields |
1039
+ | 3.1.24 | 04/16/2021 | Screen recording aggregations on communications campaign/flows |
1040
+ | 3.1.22 | 04/09/2021 | Move URL filter values into page level view for screen recordings |
1041
+ | 3.1.18 | 03/17/2021 | Added order query by ship on date |
1042
+ | 3.1.17 | 03/17/2021 | New coupon - percent off MSRP item |
1043
+ | 3.1.16 | 03/16/2021 | screen recording filter page parameter names |
1044
+ | 3.1.15 | 03/15/2021 | fix response from deleteScreenRecordingSegment that should have been void |
1045
+ | 3.1.14 | 03/15/2021 | sort screen recordings by favorite flag |
1046
+ | 3.1.13 | 03/02/2021 | new webhook order_payment_failed |
1047
+ | 3.1.12 | 02/25/2021 | added screen recording visitor_first_seen property |
1048
+ | 3.1.11 | 02/24/2021 | Added Screen recording visitor number |
1049
+ | 3.1.10 | 02/24/2021 | Added Screen recording merchant notes |
1050
+ | 3.1.9 | 02/24/2021 | Allow coupons to be configured as unique with expiration on cart step within StoreFront Communications |
1051
+ | 3.1.8 | 02/24/2021 | Add flag: screen recording missing event boolean |
1052
+ | 3.1.5 | 02/12/2021 | Bug Fix: PHP retry logic missing a closing brace. Also screen recording page view data response refactor |
1053
+ | 3.1.3 | 02/11/2021 | Bug Fix: wrong return type on CustomerApi.validateEmailVerificationToken |
1054
+ | 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 |
1055
+ | 3.1.1 | 02/10/2021 | CustomerApi.getCustomerByEmail() method added |
1056
+ | 3.1.0 | 02/10/2021 | Minor revision jump. Added new convenience methods for simple_key use to all api calls. Updated docs |
1057
+ | 3.0.75 | 02/01/2021 | StoreFront Communication plan revision (internal use) |
1058
+ | 3.0.71 | 01/28/2021 | BugFix: PHP SDK retry logic NPE |
1059
+ | 3.0.70 | 01/26/2021 | Checkout return URL support |
1060
+ | 3.0.66 | 01/22/2021 | code library attributes (mostly internal dev) |
1061
+ | 3.0.65 | 01/22/2021 | Added folder support for email campaigns and flows |
1062
+ | 3.0.64 | 01/20/2021 | Bug fix on revenue per customer field incorrectly named. |
1063
+ | 3.0.63 | 01/20/2021 | CouponAPI: bug fixes and new method doesCouponCodeExist |
1064
+ | 3.0.62 | 01/19/2021 | Added retry ability when rate limit is triggered (PHP SDK only) only) Other sdk to follow. |
1065
+ | 3.0.60 | 01/14/2021 | Working with Ruby SDK |
1066
+ | 3.0.57 | 12/17/2020 | CouponAPI: Added Buy one get one free coupon |
1067
+ | 3.0.53 | 12/14/2020 | StoreFrontAPI: added a duplicate method to load the pricing tiers on the StoreFront |
1068
+ | 3.0.51 | 12/09/2020 | UserAPI: internal bug preventing proper usage of user group creation |
1069
+ | 3.0.45 | 12/03/2020 | CouponAPI: added partial searches to getCoupon params, added deleteCoupons method, fixed bugs |
1070
+ | 3.0.44 | 12/03/2020 | Code library updates, intended for internal use |
1071
+ | 3.0.43 | 12/02/2020 | Added fields to code library to handle versions of published items |
1072
+ | 3.0.42 | 12/02/2020 | Added display values to CouponApi.getEditorValues to make type dropdowns easy |
1073
+ | 3.0.41 | 11/17/2020 | New modify cart step option for StoreFront communications |
1074
+ | 3.0.39 | 11/12/2020 | Added Customer.tax_codes.taxjar_exemption_type |
1075
+ | 3.0.38 | 11/09/2020 | Added TaxProviderTaxJar.configuration.send_outside_nexus flag |
1076
+ | 3.0.37 | 11/06/2020 | Added transactional email screenshots for code library |
1077
+ | 3.0.36 | 11/03/2020 | Added missing constant for pre-order stage |
1078
+ | 3.0.34 | 10/26/2020 | UserAPI initial release |
1079
+ | 3.0.33 | 10/23/2020 | Added library_item_oid to StoreFront Communications email object for upcoming code library |
1080
+ | 3.0.32 | 10/21/2020 | Added new StoreFrontApi.search method that takes a POST instead of a GET |
1081
+ | 3.0.31 | 10/16/2020 | more dev work on code library (internal) |
1082
+ | 3.0.30 | 10/08/2020 | development work on code library (internal), first version of UserAPI. The UserAPI is not live yet. |
1083
+ | 3.0.29 | 09/29/2020 | new boolean field on coupon: bug fix |
1084
+ | 3.0.28 | 09/29/2020 | new boolean field on coupon: free item with purchase of another item |
1085
+ | 3.0.27 | 09/29/2020 | Refactored the code library applyToStoreFront to provide support for marketing emails |
1086
+ | 3.0.26 | 09/25/2020 | Expose actual shipping and fulfillment costs in the order summary object |
1087
+ | 3.0.25 | 09/16/2020 | New method: OrderApi.adjustOrderTotal |
1088
+ | 3.0.24 | 09/10/2020 | Bugfix: incorrect response type on CheckoutAPI.registerAffiliateClick |
1089
+ | 3.0.23 | 09/02/2020 | Added flag to email plan object. allow_tracking_emails |
1090
+ | 3.0.22 | 09/02/2020 | Order object - added tracking details |
1091
+ | 3.0.21 | 09/01/2020 | break fix in php sdk due to bad namespace |
1092
+ | 3.0.20 | 09/01/2020 | Added OrderApi.processPayment method |
1093
+ | 3.0.19 | 08/28/2020 | Code Library development: added kraken parameters for thumbnail image generation. |
1094
+ | 3.0.17 | 08/26/2020 | cont. development work on Code Library |
1095
+ | 3.0.14 | 08/19/2020 | development work on Code Library |
1096
+ | 3.0.13 | 08/18/2020 | development work on Code Library |
1097
+ | 3.0.12 | 08/13/2020 | screenshot urls for campaigns and flows (storefront communications) |
1098
+ | 3.0.11 | 08/12/2020 | Refactoring and development for Code Library (not released yet) |
1099
+ | 3.0.10 | 08/10/2020 | Method for registering an affliate click via the SDK, found within CheckoutAPI |
1100
+ | 3.0.8 | 08/05/2020 | stub for code library 'getLibraryFilterValues' for populating drop down lists |
1101
+ | 3.0.4 | 08/05/2020 | fixed misspell of 'version' in LibraryItem object. |
1102
+ | 3.0.3 | 08/04/2020 | added description to addToLibrary call to allow for initial description |
1103
+ | 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 |
1104
+ | 3.0.1 | 07/27/2020 | added init_json to storefront communication email objects |
1105
+ | 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. |
1106
+
1107
+ Some changes jump version numbers due to multiple commits for bug fixes, omissions, and errors.
1108
+ At UltraCart, we eat our own dog food, and we increment the version number for every commit in order
1109
+ to generate a new javascript npm. For this reason, version gaps will be found in the change log above.
@@ -4,6 +4,7 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **discount_amount** | **Float** | The amount of subtotal discount | [optional]
7
+ **quickbooks_code** | **String** | Quickbooks accounting code. | [optional]
7
8
  **subtotal_amount** | **Float** | The amount of subtotal required to receive the discount amount | [optional]
8
9
 
9
10
 
@@ -4,6 +4,7 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **discount_percent** | **Float** | The percent of subtotal discount | [optional]
7
+ **quickbooks_code** | **String** | Quickbooks accounting code. | [optional]
7
8
  **subtotal_amount** | **Float** | The amount of subtotal required to receive the discount percent | [optional]
8
9
 
9
10
 
@@ -5,5 +5,6 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **discount_amount** | **Float** | The amount of discount per item. | [optional]
7
7
  **item_quantity** | **Integer** | The quantity of item purchased (in units) | [optional]
8
+ **quickbooks_code** | **String** | Quickbooks accounting code. | [optional]
8
9
 
9
10
 
@@ -5,5 +5,6 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **discount_percent** | **Float** | The percent of discount per item. | [optional]
7
7
  **item_quantity** | **Integer** | The quantity of item purchased (in units) | [optional]
8
+ **quickbooks_code** | **String** | Quickbooks accounting code. | [optional]
8
9
 
9
10
 
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **quickbooks_code** | **String** | Quickbooks accounting code. | [optional]
6
7
  **shipping_methods** | **Array<String>** | One or more shipping methods that may receive this discount | [optional]
7
8
  **tiers** | [**Array<CouponTierPercent>**](CouponTierPercent.md) | A list of discount tiers. | [optional]
8
9
 
data/docs/Item.md CHANGED
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
  **amember** | [**ItemAmember**](ItemAmember.md) | | [optional]
8
8
  **auto_order** | [**ItemAutoOrder**](ItemAutoOrder.md) | | [optional]
9
9
  **ccbill** | [**ItemCCBill**](ItemCCBill.md) | | [optional]
10
- **channel_partner_mappings** | [**Array<ItemChannelPartnerMapping>**](ItemChannelPartnerMapping.md) | Channel Partner Item Mapping | [optional]
10
+ **channel_partner_item_mappings** | [**Array<ItemChannelPartnerMapping>**](ItemChannelPartnerMapping.md) | Channel Partner Item Mapping | [optional]
11
11
  **chargeback** | [**ItemChargeback**](ItemChargeback.md) | | [optional]
12
12
  **checkout** | [**ItemCheckout**](ItemCheckout.md) | | [optional]
13
13
  **content** | [**ItemContent**](ItemContent.md) | | [optional]
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **library_item_oid** | **Integer** | | [optional]
6
7
  **name** | **String** | | [optional]
7
8
  **value** | **String** | | [optional]
8
9
 
data/docs/OrderApi.md CHANGED
@@ -31,7 +31,7 @@ Method | HTTP request | Description
31
31
 
32
32
  Adjusts an order total
33
33
 
34
- Adjusts an order total. Adjusts individual items appropriately and considers taxes. Desired total should be provided in the same currency as the order. Returns true if successful.
34
+ Adjusts an order total. Adjusts individual items appropriately and considers taxes. Desired total should be provided in the same currency as the order and must be less than the current total and greater than zero. This call will change the order total. It returns true if the desired total is achieved. If the goal seeking algorithm falls short (usually by pennies), this method returns back false. View the merchant notes for the order for further details.
35
35
 
36
36
  ### Example
37
37
  ```ruby
data/docs/OrderSummary.md CHANGED
@@ -4,6 +4,7 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **actual_fulfillment** | [**Currency**](Currency.md) | | [optional]
7
+ **actual_payment_processing** | [**Currency**](Currency.md) | | [optional]
7
8
  **actual_shipping** | [**Currency**](Currency.md) | | [optional]
8
9
  **arbitrary_shipping_handling_total** | [**Currency**](Currency.md) | | [optional]
9
10
  **other_refunded** | [**Currency**](Currency.md) | | [optional]
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **domain** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
6
7
  **events** | [**Array<ScreenRecordingFilterPageViewEvent>**](ScreenRecordingFilterPageViewEvent.md) | | [optional]
7
8
  **params** | [**Array<ScreenRecordingFilterPageViewParam>**](ScreenRecordingFilterPageViewParam.md) | | [optional]
8
9
  **referrer** | [**ScreenRecordingFilterStringSearch**](ScreenRecordingFilterStringSearch.md) | | [optional]
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **domains** | **Array<String>** | | [optional]
6
7
  **events** | [**Array<ScreenRecordingFilterValuesEvent>**](ScreenRecordingFilterValuesEvent.md) | | [optional]
7
8
  **page_params** | [**Array<ScreenRecordingFilterValuesPageParam>**](ScreenRecordingFilterValuesPageParam.md) | | [optional]
8
9
  **time_on_page_max** | **Integer** | | [optional]
@@ -0,0 +1,19 @@
1
+ # UltracartClient::ScreenRecordingHeatmap
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **large_click_url** | **String** | | [optional]
7
+ **large_movement_url** | **String** | | [optional]
8
+ **large_regular_url** | **String** | | [optional]
9
+ **large_scroll_url** | **String** | | [optional]
10
+ **medium_click_url** | **String** | | [optional]
11
+ **medium_movement_url** | **String** | | [optional]
12
+ **medium_regular_url** | **String** | | [optional]
13
+ **medium_scroll_url** | **String** | | [optional]
14
+ **small_click_url** | **String** | | [optional]
15
+ **small_movement_url** | **String** | | [optional]
16
+ **small_regular_url** | **String** | | [optional]
17
+ **small_scroll_url** | **String** | | [optional]
18
+
19
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::ScreenRecordingHeatmapIndexResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | [**Error**](Error.md) | | [optional]
7
+ **heatmap_urls** | [**Array<ScreenRecordingHeatmapUrl>**](ScreenRecordingHeatmapUrl.md) | | [optional]
8
+ **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
9
+ **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
10
+ **warning** | [**Warning**](Warning.md) | | [optional]
11
+
12
+
@@ -0,0 +1,9 @@
1
+ # UltracartClient::ScreenRecordingHeatmapRequest
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **range** | [**ScreenRecordingFilterRangeDate**](ScreenRecordingFilterRangeDate.md) | | [optional]
7
+ **url** | **String** | | [optional]
8
+
9
+
@@ -0,0 +1,8 @@
1
+ # UltracartClient::ScreenRecordingHeatmapReset
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **url** | **String** | | [optional]
7
+
8
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::ScreenRecordingHeatmapResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | [**Error**](Error.md) | | [optional]
7
+ **heatmap** | [**ScreenRecordingHeatmap**](ScreenRecordingHeatmap.md) | | [optional]
8
+ **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
9
+ **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
10
+ **warning** | [**Warning**](Warning.md) | | [optional]
11
+
12
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::ScreenRecordingHeatmapUrl
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **histogram_data** | **Array<Integer>** | | [optional]
7
+ **histogram_interval** | **String** | | [optional]
8
+ **histogram_start_dts** | **String** | | [optional]
9
+ **session_count** | **Integer** | | [optional]
10
+ **url** | **String** | | [optional]
11
+
12
+
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **domain** | **String** | | [optional]
6
7
  **events** | [**Array<ScreenRecordingPageViewEvent>**](ScreenRecordingPageViewEvent.md) | | [optional]
7
8
  **first_event_timestamp** | **String** | First event timestamp | [optional]
8
9
  **http_post** | **BOOLEAN** | | [optional]
@@ -21,6 +21,7 @@ Method | HTTP request | Description
21
21
  [**delete_email_postcard**](StorefrontApi.md#delete_email_postcard) | **DELETE** /storefront/{storefront_oid}/email/postcards/{commseq_postcard_uuid} | Delete email postcard
22
22
  [**delete_email_sending_domain**](StorefrontApi.md#delete_email_sending_domain) | **DELETE** /storefront/email/sending_domains/{domain} | delete email campaign
23
23
  [**delete_experiment**](StorefrontApi.md#delete_experiment) | **DELETE** /storefront/{storefront_oid}/experiments/{storefront_experiment_oid} | Delete experiment
24
+ [**delete_heatmap**](StorefrontApi.md#delete_heatmap) | **DELETE** /storefront/{storefront_oid}/screen_recordings/heatmap | Delete screen recording heatmap
24
25
  [**delete_library_item**](StorefrontApi.md#delete_library_item) | **DELETE** /storefront/code_library/{library_item_oid} | Delete library item
25
26
  [**delete_library_item_published_versions**](StorefrontApi.md#delete_library_item_published_versions) | **DELETE** /storefront/code_library/{library_item_oid}/published_versions | Delete all published versions for a library item, including anything in review.
26
27
  [**delete_screen_recording_segment**](StorefrontApi.md#delete_screen_recording_segment) | **DELETE** /storefront/{storefront_oid}/screen_recordings/segments/{screen_recording_segment_oid} | Delete screen recording segment
@@ -80,6 +81,8 @@ Method | HTTP request | Description
80
81
  [**get_email_templates**](StorefrontApi.md#get_email_templates) | **GET** /storefront/{storefront_oid}/email/templates | Get email templates
81
82
  [**get_email_third_party_providers**](StorefrontApi.md#get_email_third_party_providers) | **GET** /storefront/{storefront_oid}/email/third_party_providers | Get a list of third party email providers
82
83
  [**get_experiments**](StorefrontApi.md#get_experiments) | **GET** /storefront/{storefront_oid}/experiments | Get experiments
84
+ [**get_heatmap**](StorefrontApi.md#get_heatmap) | **POST** /storefront/{storefront_oid}/screen_recordings/heatmap | Get screen recording heatmap
85
+ [**get_heatmap_index**](StorefrontApi.md#get_heatmap_index) | **POST** /storefront/{storefront_oid}/screen_recordings/heatmap/index | Get screen recording heatmap index
83
86
  [**get_histogram_property_names**](StorefrontApi.md#get_histogram_property_names) | **GET** /storefront/{storefront_oid}/email/histogram/property_names | Get histogram property names
84
87
  [**get_histogram_property_values**](StorefrontApi.md#get_histogram_property_values) | **GET** /storefront/{storefront_oid}/email/histogram/property_values | Get histogram property values
85
88
  [**get_library_filter_values**](StorefrontApi.md#get_library_filter_values) | **GET** /storefront/code_library/filter_values | Get library values used to populate drop down boxes for filtering.
@@ -1020,6 +1023,58 @@ nil (empty response body)
1020
1023
 
1021
1024
 
1022
1025
 
1026
+ # **delete_heatmap**
1027
+ > delete_heatmap(storefront_oid, query)
1028
+
1029
+ Delete screen recording heatmap
1030
+
1031
+ Delete screen recording heatmap
1032
+
1033
+ ### Example
1034
+ ```ruby
1035
+ # load the gem
1036
+ require 'ultracart_api'
1037
+
1038
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
1039
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
1040
+ api_instance = UltracartClient::StorefrontApi.new_using_api_key(simple_key, false, false)
1041
+
1042
+
1043
+ storefront_oid = 56 # Integer |
1044
+
1045
+ query = UltracartClient::ScreenRecordingHeatmapReset.new # ScreenRecordingHeatmapReset | Query
1046
+
1047
+
1048
+ begin
1049
+ #Delete screen recording heatmap
1050
+ api_instance.delete_heatmap(storefront_oid, query)
1051
+ rescue UltracartClient::ApiError => e
1052
+ puts "Exception when calling StorefrontApi->delete_heatmap: #{e}"
1053
+ end
1054
+ ```
1055
+
1056
+ ### Parameters
1057
+
1058
+ Name | Type | Description | Notes
1059
+ ------------- | ------------- | ------------- | -------------
1060
+ **storefront_oid** | **Integer**| |
1061
+ **query** | [**ScreenRecordingHeatmapReset**](ScreenRecordingHeatmapReset.md)| Query |
1062
+
1063
+ ### Return type
1064
+
1065
+ nil (empty response body)
1066
+
1067
+ ### Authorization
1068
+
1069
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
1070
+
1071
+ ### HTTP request headers
1072
+
1073
+ - **Content-Type**: application/json
1074
+ - **Accept**: application/json
1075
+
1076
+
1077
+
1023
1078
  # **delete_library_item**
1024
1079
  > delete_library_item(library_item_oid)
1025
1080
 
@@ -4010,6 +4065,109 @@ Name | Type | Description | Notes
4010
4065
 
4011
4066
 
4012
4067
 
4068
+ # **get_heatmap**
4069
+ > ScreenRecordingHeatmapResponse get_heatmap(storefront_oid, query)
4070
+
4071
+ Get screen recording heatmap
4072
+
4073
+ Get screen recording heatmap
4074
+
4075
+ ### Example
4076
+ ```ruby
4077
+ # load the gem
4078
+ require 'ultracart_api'
4079
+
4080
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
4081
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
4082
+ api_instance = UltracartClient::StorefrontApi.new_using_api_key(simple_key, false, false)
4083
+
4084
+
4085
+ storefront_oid = 56 # Integer |
4086
+
4087
+ query = UltracartClient::ScreenRecordingHeatmapRequest.new # ScreenRecordingHeatmapRequest | Query
4088
+
4089
+
4090
+ begin
4091
+ #Get screen recording heatmap
4092
+ result = api_instance.get_heatmap(storefront_oid, query)
4093
+ p result
4094
+ rescue UltracartClient::ApiError => e
4095
+ puts "Exception when calling StorefrontApi->get_heatmap: #{e}"
4096
+ end
4097
+ ```
4098
+
4099
+ ### Parameters
4100
+
4101
+ Name | Type | Description | Notes
4102
+ ------------- | ------------- | ------------- | -------------
4103
+ **storefront_oid** | **Integer**| |
4104
+ **query** | [**ScreenRecordingHeatmapRequest**](ScreenRecordingHeatmapRequest.md)| Query |
4105
+
4106
+ ### Return type
4107
+
4108
+ [**ScreenRecordingHeatmapResponse**](ScreenRecordingHeatmapResponse.md)
4109
+
4110
+ ### Authorization
4111
+
4112
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
4113
+
4114
+ ### HTTP request headers
4115
+
4116
+ - **Content-Type**: application/json
4117
+ - **Accept**: application/json
4118
+
4119
+
4120
+
4121
+ # **get_heatmap_index**
4122
+ > ScreenRecordingHeatmapIndexResponse get_heatmap_index(storefront_oid)
4123
+
4124
+ Get screen recording heatmap index
4125
+
4126
+ Get screen recording heatmap index
4127
+
4128
+ ### Example
4129
+ ```ruby
4130
+ # load the gem
4131
+ require 'ultracart_api'
4132
+
4133
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
4134
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
4135
+ api_instance = UltracartClient::StorefrontApi.new_using_api_key(simple_key, false, false)
4136
+
4137
+
4138
+ storefront_oid = 56 # Integer |
4139
+
4140
+
4141
+ begin
4142
+ #Get screen recording heatmap index
4143
+ result = api_instance.get_heatmap_index(storefront_oid)
4144
+ p result
4145
+ rescue UltracartClient::ApiError => e
4146
+ puts "Exception when calling StorefrontApi->get_heatmap_index: #{e}"
4147
+ end
4148
+ ```
4149
+
4150
+ ### Parameters
4151
+
4152
+ Name | Type | Description | Notes
4153
+ ------------- | ------------- | ------------- | -------------
4154
+ **storefront_oid** | **Integer**| |
4155
+
4156
+ ### Return type
4157
+
4158
+ [**ScreenRecordingHeatmapIndexResponse**](ScreenRecordingHeatmapIndexResponse.md)
4159
+
4160
+ ### Authorization
4161
+
4162
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
4163
+
4164
+ ### HTTP request headers
4165
+
4166
+ - **Content-Type**: application/json
4167
+ - **Accept**: application/json
4168
+
4169
+
4170
+
4013
4171
  # **get_histogram_property_names**
4014
4172
  > EmailHistogramPropertyNamesResponse get_histogram_property_names(storefront_oid, opts)
4015
4173