ultracart_api 4.1.13 → 4.1.15
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 +23 -2
- data/docs/AffiliateApi.md +123 -167
- data/docs/AutoOrderApi.md +1250 -903
- data/docs/CartUpsellAfter.md +6 -2
- data/docs/ChannelPartnerApi.md +1678 -1121
- data/docs/ChargebackApi.md +297 -405
- data/docs/CheckoutApi.md +1622 -1424
- data/docs/ConversationApi.md +4820 -6315
- data/docs/ConversationVirtualAgentCapabilities.md +4 -0
- data/docs/CouponApi.md +1522 -1443
- data/docs/CustomReport.md +36 -0
- data/docs/CustomReportAccountConfig.md +34 -0
- data/docs/CustomReportAccountConfigResponse.md +26 -0
- data/docs/CustomReportExecutionParameter.md +22 -0
- data/docs/CustomReportExecutionRequest.md +18 -0
- data/docs/CustomReportParameter.md +28 -0
- data/docs/CustomReportParameterOption.md +20 -0
- data/docs/CustomReportQuery.md +28 -0
- data/docs/CustomReportResponse.md +26 -0
- data/docs/CustomReportTooltip.md +20 -0
- data/docs/CustomerApi.md +2570 -1845
- data/docs/DatawarehouseApi.md +933 -723
- data/docs/FulfillmentApi.md +567 -441
- data/docs/GiftCertificateApi.md +617 -598
- data/docs/IntegrationLogApi.md +290 -385
- data/docs/Item.md +1 -1
- data/docs/ItemApi.md +2174 -1746
- data/docs/OauthApi.md +203 -163
- data/docs/OrderApi.md +2883 -2177
- data/docs/SsoApi.md +223 -288
- data/docs/StorefrontApi.md +9692 -12967
- data/docs/TaxApi.md +1541 -2017
- data/docs/UserApi.md +606 -790
- data/docs/WebhookApi.md +787 -628
- data/docs/WorkflowApi.md +666 -879
- data/lib/ultracart_api/api/datawarehouse_api.rb +474 -0
- data/lib/ultracart_api/api/order_api.rb +131 -0
- data/lib/ultracart_api/models/cart_upsell_after.rb +25 -5
- data/lib/ultracart_api/models/conversation_virtual_agent_capabilities.rb +55 -1
- data/lib/ultracart_api/models/custom_report.rb +306 -0
- data/lib/ultracart_api/models/custom_report_account_config.rb +296 -0
- data/lib/ultracart_api/models/custom_report_account_config_response.rb +256 -0
- data/lib/ultracart_api/models/custom_report_execution_parameter.rb +237 -0
- data/lib/ultracart_api/models/custom_report_execution_request.rb +221 -0
- data/lib/ultracart_api/models/custom_report_parameter.rb +266 -0
- data/lib/ultracart_api/models/custom_report_parameter_option.rb +228 -0
- data/lib/ultracart_api/models/custom_report_query.rb +266 -0
- data/lib/ultracart_api/models/custom_report_response.rb +256 -0
- data/lib/ultracart_api/models/custom_report_tooltip.rb +228 -0
- data/lib/ultracart_api/models/item.rb +1 -1
- data/lib/ultracart_api/version.rb +1 -1
- data/lib/ultracart_api.rb +10 -0
- metadata +22 -2
data/docs/CartUpsellAfter.md
CHANGED
@@ -6,7 +6,9 @@
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **finalize_after_dts** | **String** | The date/time after which the cart will finalize into an order. | [optional] |
|
8
8
|
| **finalize_after_minutes** | **Integer** | The amount of inactivity in minutes after which the cart should be finalized into an order. This will calculate the finalize_after_dts field. | [optional] |
|
9
|
-
| **upsell_path_code** | **String** | Upsell path code | [optional] |
|
9
|
+
| **upsell_path_code** | **String** | Upsell path code (this is for legacy upsells only) | [optional] |
|
10
|
+
| **upsell_path_name** | **String** | Upsell path name to start on (StoreFront Upsells). Will only be respected on a handoff API call. | [optional] |
|
11
|
+
| **upsell_path_variation** | **String** | Upsell path variation to start on (StoreFront Upsells). Will only be respected on a handoff API call. | [optional] |
|
10
12
|
|
11
13
|
## Example
|
12
14
|
|
@@ -16,7 +18,9 @@ require 'ultracart_api'
|
|
16
18
|
instance = UltracartClient::CartUpsellAfter.new(
|
17
19
|
finalize_after_dts: null,
|
18
20
|
finalize_after_minutes: null,
|
19
|
-
upsell_path_code: null
|
21
|
+
upsell_path_code: null,
|
22
|
+
upsell_path_name: null,
|
23
|
+
upsell_path_variation: null
|
20
24
|
)
|
21
25
|
```
|
22
26
|
|