workarea-api 4.4.7 → 4.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.eslintrc.json +35 -0
- data/.github/workflows/ci.yml +35 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +2 -0
- data/.stylelintrc.json +8 -0
- data/CHANGELOG.md +15 -11
- data/Gemfile +3 -2
- data/README.md +13 -0
- data/Rakefile +14 -5
- data/admin/app/controllers/workarea/api/admin/categories_controller.rb +6 -0
- data/admin/app/controllers/workarea/api/admin/content_assets_controller.rb +6 -0
- data/admin/app/controllers/workarea/api/admin/content_controller.rb +6 -0
- data/admin/app/controllers/workarea/api/admin/discounts_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/email_signups_controller.rb +20 -4
- data/admin/app/controllers/workarea/api/admin/fulfillments_controller.rb +6 -1
- data/admin/app/controllers/workarea/api/admin/inventory_skus_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/navigation_menus_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/navigation_taxons_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/orders_controller.rb +19 -1
- data/admin/app/controllers/workarea/api/admin/pages_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/payment_profiles_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/payment_transactions_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/payments_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/pricing_skus_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/products_controller.rb +11 -4
- data/admin/app/controllers/workarea/api/admin/promo_code_lists_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/redirects_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/releases_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/shipping_services_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/shippings_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/swagger_controller.rb +33 -0
- data/admin/app/controllers/workarea/api/admin/tax_categories_controller.rb +2 -0
- data/admin/app/controllers/workarea/api/admin/users_controller.rb +28 -14
- data/admin/app/models/workarea/api/admin/date_filtering.rb +27 -0
- data/admin/lib/workarea/api/admin/engine.rb +11 -0
- data/admin/test/documentation/workarea/api/admin/email_signups_documentation_test.rb +14 -2
- data/admin/test/documentation/workarea/api/admin/global_functionality_documentation_test.rb +140 -0
- data/admin/test/documentation/workarea/api/admin/orders_documentation_test.rb +13 -6
- data/admin/test/documentation/workarea/api/admin/users_documentation_test.rb +14 -2
- data/admin/test/dummy/config/initializers/session_store.rb +3 -1
- data/admin/test/integration/workarea/api/admin/categories_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/content_assets_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/content_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/discounts_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/email_signups_integration_test.rb +38 -1
- data/admin/test/integration/workarea/api/admin/fulfillments_integration_test.rb +22 -0
- data/admin/test/integration/workarea/api/admin/inventory_skus_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/navigation_menus_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/navigation_taxons_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/orders_integration_test.rb +41 -2
- data/admin/test/integration/workarea/api/admin/pages_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/payment_profiles_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/payment_transactions_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/payments_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/pricing_skus_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/products_integration_test.rb +35 -0
- data/admin/test/integration/workarea/api/admin/promo_code_lists_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/redirects_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/releases_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/shipping_services_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/shippings_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/tax_categories_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/users_integration_test.rb +44 -1
- data/app/views/workarea/api/docs/nav.haml +12 -0
- data/doc/api/admin/categories/bulk_upserting_categories.json +8 -4
- data/doc/api/admin/categories/creating_a_category.json +11 -8
- data/doc/api/admin/categories/listing_categories.json +8 -5
- data/doc/api/admin/categories/removing_a_category.json +8 -4
- data/doc/api/admin/categories/showing_a_category.json +10 -7
- data/doc/api/admin/categories/updating_a_category.json +9 -5
- data/doc/api/admin/category_product_rules/creating_a_category_product_rule.json +11 -8
- data/doc/api/admin/category_product_rules/listing_category_product_rules.json +10 -7
- data/doc/api/admin/category_product_rules/removing_a_category_product_rule.json +8 -4
- data/doc/api/admin/category_product_rules/updating_a_category_product_rule.json +8 -4
- data/doc/api/admin/content/bulk_upserting_content.json +8 -4
- data/doc/api/admin/content/creating_content.json +11 -8
- data/doc/api/admin/content/listing_content.json +8 -5
- data/doc/api/admin/content/showing_content.json +10 -7
- data/doc/api/admin/content/updating_content.json +8 -4
- data/doc/api/admin/content_assets/bulk_upserting_content_assets.json +8 -4
- data/doc/api/admin/content_assets/creating_a_content_asset.json +11 -8
- data/doc/api/admin/content_assets/listing_content_assets.json +8 -5
- data/doc/api/admin/content_assets/removing_a_content_asset.json +8 -4
- data/doc/api/admin/content_assets/showing_a_content_asset.json +10 -7
- data/doc/api/admin/content_assets/updating_a_content_asset.json +9 -5
- data/doc/api/admin/discounts/creating_a_discount.json +11 -8
- data/doc/api/admin/discounts/listing_discounts.json +8 -5
- data/doc/api/admin/discounts/removing_a_discount.json +8 -4
- data/doc/api/admin/discounts/showing_a_discount.json +10 -7
- data/doc/api/admin/discounts/updating_discounts.json +8 -4
- data/doc/api/admin/email_signups/listing_email_signups.json +7 -4
- data/doc/api/admin/email_signups/showing_an_email_signup.json +10 -12
- data/doc/api/admin/fulfillment/listing_fulfillments.json +7 -4
- data/doc/api/admin/fulfillment/marking_items_as_canceled.json +9 -6
- data/doc/api/admin/fulfillment/marking_items_as_shipped.json +9 -6
- data/doc/api/admin/fulfillment/showing_fulfillment.json +7 -4
- data/doc/api/admin/index.json +653 -578
- data/doc/api/admin/inventory_skus/bulk_upserting_inventory_skus.json +8 -4
- data/doc/api/admin/inventory_skus/creating_an_inventory_sku.json +9 -6
- data/doc/api/admin/inventory_skus/listing_inventory_skus.json +7 -4
- data/doc/api/admin/inventory_skus/removing_an_inventory_sku.json +6 -2
- data/doc/api/admin/inventory_skus/showing_an_inventory_sku.json +7 -4
- data/doc/api/admin/inventory_skus/updating_an_inventory_sku.json +6 -2
- data/doc/api/admin/navigation_menus/creating_a_menu.json +11 -8
- data/doc/api/admin/navigation_menus/listing_menus.json +8 -5
- data/doc/api/admin/navigation_menus/removing_a_navigation_menu.json +8 -4
- data/doc/api/admin/navigation_menus/showing_a_navigation_menu.json +10 -7
- data/doc/api/admin/navigation_menus/updating_a_navigation_menus.json +8 -4
- data/doc/api/admin/navigation_taxonomy/bulk_upserting_navigation_taxons.json +8 -4
- data/doc/api/admin/navigation_taxonomy/creating_a_taxon.json +10 -7
- data/doc/api/admin/navigation_taxonomy/listing_taxons.json +7 -4
- data/doc/api/admin/navigation_taxonomy/removing_a_navigation_taxon.json +8 -4
- data/doc/api/admin/navigation_taxonomy/showing_a_navigation_taxon.json +9 -6
- data/doc/api/admin/navigation_taxonomy/updating_a_navigation_taxons.json +8 -4
- data/doc/api/admin/orders/listing_orders.json +8 -5
- data/doc/api/admin/orders/showing_an_order.json +8 -5
- data/doc/api/admin/pages/bulk_upserting_pages.json +8 -4
- data/doc/api/admin/pages/creating_a_page.json +11 -8
- data/doc/api/admin/pages/listing_pages.json +8 -5
- data/doc/api/admin/pages/removing_a_page.json +8 -4
- data/doc/api/admin/pages/showing_a_page.json +10 -7
- data/doc/api/admin/pages/updating_a_page.json +9 -5
- data/doc/api/admin/payment_profiles/bulk_upserting_payment_profiles.json +8 -4
- data/doc/api/admin/payment_profiles/creating_a_payment_profile.json +10 -7
- data/doc/api/admin/payment_profiles/listing_payment_profiles.json +7 -4
- data/doc/api/admin/payment_profiles/removing_a_payment_profile.json +8 -4
- data/doc/api/admin/payment_profiles/showing_a_payment_profile.json +9 -6
- data/doc/api/admin/payment_profiles/updating_a_payment_profiles.json +8 -4
- data/doc/api/admin/payment_transactions/listing_payment_transactions.json +7 -4
- data/doc/api/admin/payment_transactions/showing_a_payment_transaction.json +9 -6
- data/doc/api/admin/payments/listing_payments.json +7 -4
- data/doc/api/admin/payments/showing_an_payment.json +7 -4
- data/doc/api/admin/prices/creating_a_pricing_sku_price.json +8 -5
- data/doc/api/admin/prices/listing_pricing_sku_prices.json +8 -5
- data/doc/api/admin/prices/removing_a_pricing_sku_price.json +8 -4
- data/doc/api/admin/prices/updating_a_pricing_sku_price.json +8 -4
- data/doc/api/admin/pricing_skus/bulk_upserting_pricing_skus.json +8 -4
- data/doc/api/admin/pricing_skus/creating_an_pricing_sku.json +10 -7
- data/doc/api/admin/pricing_skus/listing_pricing_skus.json +8 -5
- data/doc/api/admin/pricing_skus/removing_an_pricing_sku.json +6 -2
- data/doc/api/admin/pricing_skus/showing_an_pricing_sku.json +8 -5
- data/doc/api/admin/pricing_skus/updating_an_pricing_sku.json +6 -2
- data/doc/api/admin/product_images/creating_a_product_image_from_base64.json +11 -8
- data/doc/api/admin/product_images/creating_a_product_image_from_url.json +11 -8
- data/doc/api/admin/product_images/listing_product_images.json +10 -7
- data/doc/api/admin/product_images/removing_a_product_image.json +8 -4
- data/doc/api/admin/product_images/updating_a_product_image.json +8 -4
- data/doc/api/admin/products/bulk_upserting_products.json +8 -4
- data/doc/api/admin/products/creating_a_product.json +11 -8
- data/doc/api/admin/products/listing_products.json +8 -5
- data/doc/api/admin/products/removing_a_product.json +8 -4
- data/doc/api/admin/products/showing_a_product.json +10 -7
- data/doc/api/admin/products/updating_a_product.json +9 -5
- data/doc/api/admin/promo_code_lists/bulk_upserting_promo_code_lists.json +8 -4
- data/doc/api/admin/promo_code_lists/creating_a_promo_code_list.json +10 -7
- data/doc/api/admin/promo_code_lists/listing_promo_code_lists.json +7 -4
- data/doc/api/admin/promo_code_lists/removing_a_promo_code_list.json +8 -4
- data/doc/api/admin/promo_code_lists/showing_a_promo_code_list.json +9 -6
- data/doc/api/admin/promo_code_lists/updating_a_promo_code_list.json +8 -4
- data/doc/api/admin/recommendation_settings/showing_recommendation_settings.json +9 -6
- data/doc/api/admin/recommendation_settings/updating_recommendation_settings.json +8 -4
- data/doc/api/admin/redirects/bulk_upserting_redirects.json +8 -4
- data/doc/api/admin/redirects/creating_a_redirect.json +10 -7
- data/doc/api/admin/redirects/listing_redirects.json +7 -4
- data/doc/api/admin/redirects/removing_a_redirect.json +8 -4
- data/doc/api/admin/redirects/showing_a_redirect.json +9 -6
- data/doc/api/admin/redirects/updating_a_redirects.json +8 -4
- data/doc/api/admin/release_changes/adding_changes_to_a_release.json +10 -6
- data/doc/api/admin/releases/bulk_upserting_releases.json +8 -4
- data/doc/api/admin/releases/creating_a_release.json +11 -8
- data/doc/api/admin/releases/listing_releases.json +8 -5
- data/doc/api/admin/releases/removing_a_release.json +8 -4
- data/doc/api/admin/releases/showing_a_release.json +10 -7
- data/doc/api/admin/releases/updating_a_release.json +9 -5
- data/doc/api/admin/saved_addresses/creating_a_saved_address.json +10 -7
- data/doc/api/admin/saved_addresses/listing_saved_address.json +9 -6
- data/doc/api/admin/saved_addresses/removing_a_saved_address.json +8 -4
- data/doc/api/admin/saved_addresses/updating_a_saved_address.json +8 -4
- data/doc/api/admin/saved_credit_cards/creating_a_saved_credit_card.json +11 -8
- data/doc/api/admin/saved_credit_cards/listing_saved_credit_cards.json +9 -6
- data/doc/api/admin/saved_credit_cards/removing_a_saved_credit_card.json +8 -4
- data/doc/api/admin/saved_credit_cards/updating_a_saved_credit_card.json +8 -4
- data/doc/api/admin/shipping/listing_shipments.json +7 -4
- data/doc/api/admin/shipping/showing_a_shipment.json +9 -6
- data/doc/api/admin/shipping_rates/creating_a_shipping_rate.json +10 -7
- data/doc/api/admin/shipping_rates/listing_shipping_rates.json +9 -6
- data/doc/api/admin/shipping_rates/removing_a_shipping_rate.json +8 -4
- data/doc/api/admin/shipping_rates/updating_a_shipping_rate.json +8 -4
- data/doc/api/admin/shipping_services/bulk_upserting_shipping_services.json +8 -4
- data/doc/api/admin/shipping_services/creating_a_shipping_service.json +10 -7
- data/doc/api/admin/shipping_services/listing_shipping_services.json +7 -4
- data/doc/api/admin/shipping_services/removing_a_shipping_service.json +8 -4
- data/doc/api/admin/shipping_services/showing_a_shipping_service.json +9 -6
- data/doc/api/admin/shipping_services/updating_a_shipping_service.json +9 -5
- data/doc/api/admin/tax_categories/bulk_upserting_tax_categories.json +8 -4
- data/doc/api/admin/tax_categories/creating_a_tax_category.json +10 -7
- data/doc/api/admin/tax_categories/listing_tax_categories.json +7 -4
- data/doc/api/admin/tax_categories/removing_a_tax_category.json +8 -4
- data/doc/api/admin/tax_categories/showing_a_tax_category.json +9 -6
- data/doc/api/admin/tax_categories/updating_a_tax_categories.json +8 -4
- data/doc/api/admin/tax_rates/creating_a_tax_rate.json +12 -9
- data/doc/api/admin/tax_rates/listing_tax_rates.json +10 -7
- data/doc/api/admin/tax_rates/removing_a_tax_rate.json +8 -4
- data/doc/api/admin/tax_rates/updating_a_tax_rate.json +8 -4
- data/doc/api/admin/users/bulk_upserting_users.json +8 -4
- data/doc/api/admin/users/creating_a_user.json +11 -8
- data/doc/api/admin/users/listing_users.json +8 -5
- data/doc/api/admin/users/removing_a_user.json +8 -4
- data/doc/api/admin/users/showing_a_user.json +10 -12
- data/doc/api/admin/users/updating_a_user.json +9 -5
- data/doc/api/admin/variants/creating_a_product_variant.json +11 -8
- data/doc/api/admin/variants/listing_product_variants.json +10 -7
- data/doc/api/admin/variants/removing_a_product_variant.json +8 -4
- data/doc/api/admin/variants/updating_a_product_variant.json +8 -4
- data/doc/api/storefront/accounts/creating_an_account.json +8 -7
- data/doc/api/storefront/accounts/getting_account_details.json +9 -8
- data/doc/api/storefront/accounts/updating_an_account.json +9 -8
- data/doc/api/storefront/analytics/saving_a_category_view.json +19 -6
- data/doc/api/storefront/analytics/saving_a_product_view.json +19 -6
- data/doc/api/storefront/analytics/saving_a_search.json +19 -6
- data/doc/api/storefront/assets/showing_an_asset.json +10 -9
- data/doc/api/storefront/authentication/creating_an_authentication_token.json +10 -9
- data/doc/api/storefront/authentication/refreshing_an_authentication_token.json +10 -9
- data/doc/api/storefront/authentication/using_an_authentication_token.json +11 -10
- data/doc/api/storefront/cart/adding_a_promo_code.json +11 -10
- data/doc/api/storefront/cart/adding_an_item.json +11 -10
- data/doc/api/storefront/cart/creating_a_new_cart_for_a_user.json +10 -9
- data/doc/api/storefront/cart/creating_a_new_guest_cart.json +8 -7
- data/doc/api/storefront/cart/delete_an_item.json +11 -10
- data/doc/api/storefront/cart/listing_user_s_carts.json +10 -9
- data/doc/api/storefront/cart/showing_cart.json +11 -10
- data/doc/api/storefront/cart/updating_an_item.json +11 -10
- data/doc/api/storefront/categories/showing_a_category.json +9 -8
- data/doc/api/storefront/categories/showing_a_listing_of_categories.json +9 -8
- data/doc/api/storefront/checkout/completing_a_checkout.json +10 -9
- data/doc/api/storefront/checkout/showing_a_checkout.json +11 -10
- data/doc/api/storefront/checkout/updating_a_checkout.json +10 -9
- data/doc/api/storefront/contacts/creating_a_contact.json +8 -7
- data/doc/api/storefront/email_signups/creating_an_email_signup.json +8 -7
- data/doc/api/storefront/email_signups/showing_an_email_signup_content.json +8 -7
- data/doc/api/storefront/index.json +263 -258
- data/doc/api/storefront/menus/listing_menus.json +9 -8
- data/doc/api/storefront/menus/showing_a_menu.json +11 -10
- data/doc/api/storefront/orders/listing_the_user_s_orders.json +10 -9
- data/doc/api/storefront/orders/showing_an_order.json +11 -10
- data/doc/api/storefront/pages/showing_a_page.json +9 -8
- data/doc/api/storefront/password_resets/sending_a_forgot_password_email.json +9 -7
- data/doc/api/storefront/personalized_recommendations/showing_recommendations_with_a_session_id.json +12 -12
- data/doc/api/storefront/personalized_recommendations/showing_recommendations_with_authentication.json +11 -10
- data/doc/api/storefront/products/showing_a_product.json +9 -8
- data/doc/api/storefront/products/showing_a_product_with_a_specific_sku_selected.json +9 -8
- data/doc/api/storefront/recent_views/showing_recent_views_from_authentication.json +11 -10
- data/doc/api/storefront/recent_views/showing_recent_views_with_a_session_id.json +12 -12
- data/doc/api/storefront/recent_views/updating_recent_views_with_a_session_id.json +7 -5
- data/doc/api/storefront/recent_views/updating_recent_views_with_authentication.json +9 -7
- data/doc/api/storefront/saved_addresses/creating_a_saved_address.json +8 -7
- data/doc/api/storefront/saved_addresses/deleting_a_saved_address.json +8 -6
- data/doc/api/storefront/saved_addresses/listing_the_user_s_saved_addresses.json +10 -9
- data/doc/api/storefront/saved_addresses/showing_a_saved_address.json +9 -8
- data/doc/api/storefront/saved_addresses/updating_a_saved_address.json +9 -8
- data/doc/api/storefront/saved_credit_cards/creating_a_saved_credit_card.json +8 -7
- data/doc/api/storefront/saved_credit_cards/deleting_a_saved_credit_card.json +8 -6
- data/doc/api/storefront/saved_credit_cards/listing_the_user_s_saved_credit_cards.json +10 -9
- data/doc/api/storefront/saved_credit_cards/showing_a_saved_credit_card.json +9 -8
- data/doc/api/storefront/saved_credit_cards/updating_a_saved_credit_card.json +9 -8
- data/doc/api/storefront/searches/showing_search_autocomplete_suggestions.json +10 -9
- data/doc/api/storefront/searches/showing_search_results.json +9 -8
- data/doc/api/storefront/segmentation/specifying_session_count_for_segmentation.json +93 -0
- data/doc/api/storefront/segmentation/using_session_ids_for_segmenting_non_authenticated_users.json +93 -0
- data/doc/api/storefront/system_content/showing_system_content.json +9 -8
- data/doc/api/storefront/system_content/showing_the_home_page.json +9 -8
- data/doc/api/storefront/taxons/showing_a_taxon.json +11 -10
- data/doc/api/storefront/validation_errors/checkout_validation_errors.json +10 -9
- data/doc/api/storefront/validation_errors/general_validation_errors.json +5 -4
- data/lib/workarea/api/documentation_test.rb +10 -1
- data/lib/workarea/api/version.rb +1 -1
- data/storefront/app/controllers/workarea/api/storefront/analytics_controller.rb +31 -19
- data/storefront/app/controllers/workarea/api/storefront/application_controller.rb +15 -2
- data/storefront/app/controllers/workarea/api/storefront/authentication.rb +6 -9
- data/storefront/app/controllers/workarea/api/storefront/categories_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/checkouts_controller.rb +0 -1
- data/storefront/app/controllers/workarea/api/storefront/menus_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/pages_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/products_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/recent_views_controller.rb +13 -26
- data/storefront/app/controllers/workarea/api/storefront/recommendations_controller.rb +2 -8
- data/storefront/app/controllers/workarea/api/storefront/searches_controller.rb +0 -12
- data/storefront/app/views/workarea/api/storefront/categories/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/email_signups/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/menus/_menu.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/pages/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/recent_views/show.json.jbuilder +0 -1
- data/storefront/app/views/workarea/api/storefront/searches/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/system_content/show.json.jbuilder +1 -1
- data/storefront/config/initializers/config.rb +19 -0
- data/storefront/lib/workarea/api/storefront/visit.decorator +52 -0
- data/storefront/lib/workarea/api/storefront.rb +1 -0
- data/storefront/test/documentation/workarea/api/storefront/segmentation_documentation_test.rb +104 -0
- data/storefront/test/dummy/config/initializers/session_store.rb +3 -1
- data/storefront/test/integration/workarea/api/storefront/analytics_integration_test.rb +12 -7
- data/storefront/test/integration/workarea/api/storefront/recent_views_integration_test.rb +38 -33
- data/storefront/test/integration/workarea/api/storefront/recommendations_integration_test.rb +1 -1
- data/storefront/test/integration/workarea/api/storefront/searches_integration_test.rb +0 -36
- data/storefront/test/integration/workarea/api/storefront/segments_integration_test.rb +218 -0
- metadata +18 -12
- data/doc/api/admin/orders/viewing_orders_by_date_range.json +0 -68
- data/doc/api/storefront/analytics/saving_a_search_abandonment.json +0 -38
- data/doc/api/storefront/analytics/saving_filters.json +0 -38
- data/storefront/app/controllers/workarea/api/storefront/user_activity.rb +0 -36
- data/storefront/app/view_models/workarea/api/storefront/search_suggestion_view_model.rb +0 -21
@@ -1,232 +1,248 @@
|
|
1
1
|
{
|
2
2
|
"resources": [
|
3
3
|
{
|
4
|
-
"name": "
|
4
|
+
"name": "Accounts",
|
5
5
|
"examples": [
|
6
6
|
{
|
7
|
-
"description": "
|
8
|
-
"link": "storefront/
|
7
|
+
"description": "Creating an account",
|
8
|
+
"link": "storefront/accounts/creating_an_account.json",
|
9
9
|
"groups": "all",
|
10
|
-
"route": "/api/storefront/
|
11
|
-
"method": "
|
10
|
+
"route": "/api/storefront/account",
|
11
|
+
"method": "POST"
|
12
12
|
},
|
13
13
|
{
|
14
|
-
"description": "
|
15
|
-
"link": "storefront/
|
14
|
+
"description": "Getting account details",
|
15
|
+
"link": "storefront/accounts/getting_account_details.json",
|
16
16
|
"groups": "all",
|
17
|
-
"route": "/api/storefront/
|
17
|
+
"route": "/api/storefront/account",
|
18
18
|
"method": "GET"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"description": "Updating an account",
|
22
|
+
"link": "storefront/accounts/updating_an_account.json",
|
23
|
+
"groups": "all",
|
24
|
+
"route": "/api/storefront/account",
|
25
|
+
"method": "POST"
|
19
26
|
}
|
20
27
|
]
|
21
28
|
},
|
22
29
|
{
|
23
|
-
"name": "
|
30
|
+
"name": "Analytics",
|
24
31
|
"examples": [
|
25
32
|
{
|
26
|
-
"description": "
|
27
|
-
"link": "storefront/
|
33
|
+
"description": "Saving a search",
|
34
|
+
"link": "storefront/analytics/saving_a_search.json",
|
28
35
|
"groups": "all",
|
29
|
-
"route": "/api/storefront/
|
30
|
-
"method": "
|
36
|
+
"route": "/api/storefront/analytics/search",
|
37
|
+
"method": "POST"
|
31
38
|
},
|
32
39
|
{
|
33
|
-
"description": "
|
34
|
-
"link": "storefront/
|
40
|
+
"description": "saving a category view",
|
41
|
+
"link": "storefront/analytics/saving_a_category_view.json",
|
35
42
|
"groups": "all",
|
36
|
-
"route": "/api/storefront/
|
37
|
-
"method": "
|
43
|
+
"route": "/api/storefront/analytics/category_view/:category_id",
|
44
|
+
"method": "POST"
|
38
45
|
},
|
39
46
|
{
|
40
|
-
"description": "
|
41
|
-
"link": "storefront/
|
47
|
+
"description": "saving a product view",
|
48
|
+
"link": "storefront/analytics/saving_a_product_view.json",
|
42
49
|
"groups": "all",
|
43
|
-
"route": "/api/storefront/
|
44
|
-
"method": "
|
45
|
-
}
|
50
|
+
"route": "/api/storefront/analytics/product_view/:product_id",
|
51
|
+
"method": "POST"
|
52
|
+
}
|
53
|
+
]
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"name": "Assets",
|
57
|
+
"examples": [
|
46
58
|
{
|
47
|
-
"description": "
|
48
|
-
"link": "storefront/
|
59
|
+
"description": "Showing an asset",
|
60
|
+
"link": "storefront/assets/showing_an_asset.json",
|
49
61
|
"groups": "all",
|
50
|
-
"route": "/api/storefront/
|
51
|
-
"method": "
|
62
|
+
"route": "/api/storefront/assets/:id",
|
63
|
+
"method": "GET"
|
52
64
|
}
|
53
65
|
]
|
54
66
|
},
|
55
67
|
{
|
56
|
-
"name": "
|
68
|
+
"name": "Authentication",
|
57
69
|
"examples": [
|
58
70
|
{
|
59
|
-
"description": "
|
60
|
-
"link": "storefront/
|
71
|
+
"description": "Creating an authentication token",
|
72
|
+
"link": "storefront/authentication/creating_an_authentication_token.json",
|
61
73
|
"groups": "all",
|
62
|
-
"route": "/api/storefront/
|
63
|
-
"method": "
|
74
|
+
"route": "/api/storefront/authentication_tokens",
|
75
|
+
"method": "POST"
|
64
76
|
},
|
65
77
|
{
|
66
|
-
"description": "
|
67
|
-
"link": "storefront/
|
78
|
+
"description": "Refreshing an authentication token",
|
79
|
+
"link": "storefront/authentication/refreshing_an_authentication_token.json",
|
68
80
|
"groups": "all",
|
69
|
-
"route": "/api/storefront/
|
70
|
-
"method": "
|
81
|
+
"route": "/api/storefront/authentication_tokens",
|
82
|
+
"method": "PATCH"
|
71
83
|
},
|
72
84
|
{
|
73
|
-
"description": "
|
74
|
-
"link": "storefront/
|
85
|
+
"description": "Using an authentication token",
|
86
|
+
"link": "storefront/authentication/using_an_authentication_token.json",
|
75
87
|
"groups": "all",
|
76
|
-
"route": "/api/storefront/
|
88
|
+
"route": "/api/storefront/account",
|
77
89
|
"method": "GET"
|
78
90
|
}
|
79
91
|
]
|
80
92
|
},
|
81
93
|
{
|
82
|
-
"name": "
|
94
|
+
"name": "Cart",
|
83
95
|
"examples": [
|
84
96
|
{
|
85
|
-
"description": "
|
86
|
-
"link": "storefront/
|
97
|
+
"description": "Adding a promo code",
|
98
|
+
"link": "storefront/cart/adding_a_promo_code.json",
|
87
99
|
"groups": "all",
|
88
|
-
"route": "/api/storefront/
|
89
|
-
"method": "
|
100
|
+
"route": "/api/storefront/carts/:id/add_promo_code",
|
101
|
+
"method": "POST"
|
90
102
|
},
|
91
103
|
{
|
92
|
-
"description": "
|
93
|
-
"link": "storefront/
|
104
|
+
"description": "Adding an item",
|
105
|
+
"link": "storefront/cart/adding_an_item.json",
|
94
106
|
"groups": "all",
|
95
|
-
"route": "/api/storefront/
|
96
|
-
"method": "
|
97
|
-
}
|
98
|
-
]
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"name": "Email Signups",
|
102
|
-
"examples": [
|
107
|
+
"route": "/api/storefront/carts/:cart_id/items",
|
108
|
+
"method": "POST"
|
109
|
+
},
|
103
110
|
{
|
104
|
-
"description": "Creating
|
105
|
-
"link": "storefront/
|
111
|
+
"description": "Creating a new cart for a user",
|
112
|
+
"link": "storefront/cart/creating_a_new_cart_for_a_user.json",
|
106
113
|
"groups": "all",
|
107
|
-
"route": "/api/storefront/
|
114
|
+
"route": "/api/storefront/carts",
|
108
115
|
"method": "POST"
|
109
116
|
},
|
110
117
|
{
|
111
|
-
"description": "
|
112
|
-
"link": "storefront/
|
118
|
+
"description": "Creating a new guest cart",
|
119
|
+
"link": "storefront/cart/creating_a_new_guest_cart.json",
|
113
120
|
"groups": "all",
|
114
|
-
"route": "/api/storefront/
|
115
|
-
"method": "
|
116
|
-
}
|
117
|
-
]
|
118
|
-
},
|
119
|
-
{
|
120
|
-
"name": "Searches",
|
121
|
-
"examples": [
|
121
|
+
"route": "/api/storefront/carts",
|
122
|
+
"method": "POST"
|
123
|
+
},
|
122
124
|
{
|
123
|
-
"description": "
|
124
|
-
"link": "storefront/
|
125
|
+
"description": "Delete an item",
|
126
|
+
"link": "storefront/cart/delete_an_item.json",
|
125
127
|
"groups": "all",
|
126
|
-
"route": "/api/storefront/
|
128
|
+
"route": "/api/storefront/carts/:cart_id/items/:id",
|
129
|
+
"method": "DELETE"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"description": "Listing user's carts",
|
133
|
+
"link": "storefront/cart/listing_user_s_carts.json",
|
134
|
+
"groups": "all",
|
135
|
+
"route": "/api/storefront/carts",
|
127
136
|
"method": "GET"
|
128
137
|
},
|
129
138
|
{
|
130
|
-
"description": "Showing
|
131
|
-
"link": "storefront/
|
139
|
+
"description": "Showing cart",
|
140
|
+
"link": "storefront/cart/showing_cart.json",
|
132
141
|
"groups": "all",
|
133
|
-
"route": "/api/storefront/
|
142
|
+
"route": "/api/storefront/carts/:id",
|
134
143
|
"method": "GET"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"description": "Updating an item",
|
147
|
+
"link": "storefront/cart/updating_an_item.json",
|
148
|
+
"groups": "all",
|
149
|
+
"route": "/api/storefront/carts/:cart_id/items/:id",
|
150
|
+
"method": "PATCH"
|
135
151
|
}
|
136
152
|
]
|
137
153
|
},
|
138
154
|
{
|
139
|
-
"name": "
|
155
|
+
"name": "Categories",
|
140
156
|
"examples": [
|
141
157
|
{
|
142
|
-
"description": "
|
143
|
-
"link": "storefront/
|
158
|
+
"description": "Showing a category",
|
159
|
+
"link": "storefront/categories/showing_a_category.json",
|
144
160
|
"groups": "all",
|
145
|
-
"route": "/api/storefront/
|
161
|
+
"route": "/api/storefront/categories/:slug",
|
146
162
|
"method": "GET"
|
147
163
|
},
|
148
164
|
{
|
149
|
-
"description": "
|
150
|
-
"link": "storefront/
|
151
|
-
"groups": "all",
|
152
|
-
"route": "/api/storefront/account",
|
153
|
-
"method": "POST"
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"description": "Updating an account",
|
157
|
-
"link": "storefront/accounts/updating_an_account.json",
|
165
|
+
"description": "Showing a listing of categories",
|
166
|
+
"link": "storefront/categories/showing_a_listing_of_categories.json",
|
158
167
|
"groups": "all",
|
159
|
-
"route": "/api/storefront/
|
160
|
-
"method": "
|
168
|
+
"route": "/api/storefront/categories",
|
169
|
+
"method": "GET"
|
161
170
|
}
|
162
171
|
]
|
163
172
|
},
|
164
173
|
{
|
165
|
-
"name": "
|
174
|
+
"name": "Checkout",
|
166
175
|
"examples": [
|
167
176
|
{
|
168
|
-
"description": "
|
169
|
-
"link": "storefront/
|
177
|
+
"description": "Completing a checkout",
|
178
|
+
"link": "storefront/checkout/completing_a_checkout.json",
|
170
179
|
"groups": "all",
|
171
|
-
"route": "/api/storefront/
|
172
|
-
"method": "
|
180
|
+
"route": "/api/storefront/checkouts/:id/complete",
|
181
|
+
"method": "POST"
|
173
182
|
},
|
174
183
|
{
|
175
|
-
"description": "
|
176
|
-
"link": "storefront/
|
184
|
+
"description": "Showing a checkout",
|
185
|
+
"link": "storefront/checkout/showing_a_checkout.json",
|
177
186
|
"groups": "all",
|
178
|
-
"route": "/api/storefront/
|
187
|
+
"route": "/api/storefront/checkouts/:id",
|
179
188
|
"method": "GET"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"description": "Updating a checkout",
|
192
|
+
"link": "storefront/checkout/updating_a_checkout.json",
|
193
|
+
"groups": "all",
|
194
|
+
"route": "/api/storefront/checkouts/:id",
|
195
|
+
"method": "PATCH"
|
180
196
|
}
|
181
197
|
]
|
182
198
|
},
|
183
199
|
{
|
184
|
-
"name": "
|
200
|
+
"name": "Contacts",
|
185
201
|
"examples": [
|
186
202
|
{
|
187
|
-
"description": "
|
188
|
-
"link": "storefront/
|
203
|
+
"description": "Creating a contact",
|
204
|
+
"link": "storefront/contacts/creating_a_contact.json",
|
189
205
|
"groups": "all",
|
190
|
-
"route": "/api/storefront/
|
206
|
+
"route": "/api/storefront/contacts",
|
191
207
|
"method": "POST"
|
192
208
|
}
|
193
209
|
]
|
194
210
|
},
|
195
211
|
{
|
196
|
-
"name": "
|
212
|
+
"name": "Email Signups",
|
197
213
|
"examples": [
|
198
214
|
{
|
199
|
-
"description": "Creating an
|
200
|
-
"link": "storefront/
|
215
|
+
"description": "Creating an email signup",
|
216
|
+
"link": "storefront/email_signups/creating_an_email_signup.json",
|
201
217
|
"groups": "all",
|
202
|
-
"route": "/api/storefront/
|
218
|
+
"route": "/api/storefront/email_signups",
|
203
219
|
"method": "POST"
|
204
220
|
},
|
205
221
|
{
|
206
|
-
"description": "
|
207
|
-
"link": "storefront/
|
208
|
-
"groups": "all",
|
209
|
-
"route": "/api/storefront/authentication_tokens",
|
210
|
-
"method": "PATCH"
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"description": "Using an authentication token",
|
214
|
-
"link": "storefront/authentication/using_an_authentication_token.json",
|
222
|
+
"description": "Showing an email signup content",
|
223
|
+
"link": "storefront/email_signups/showing_an_email_signup_content.json",
|
215
224
|
"groups": "all",
|
216
|
-
"route": "/api/storefront/
|
225
|
+
"route": "/api/storefront/email_signups",
|
217
226
|
"method": "GET"
|
218
227
|
}
|
219
228
|
]
|
220
229
|
},
|
221
230
|
{
|
222
|
-
"name": "
|
231
|
+
"name": "Menus",
|
223
232
|
"examples": [
|
224
233
|
{
|
225
|
-
"description": "
|
226
|
-
"link": "storefront/
|
234
|
+
"description": "Listing menus",
|
235
|
+
"link": "storefront/menus/listing_menus.json",
|
227
236
|
"groups": "all",
|
228
|
-
"route": "/api/storefront/
|
229
|
-
"method": "
|
237
|
+
"route": "/api/storefront/menus",
|
238
|
+
"method": "GET"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"description": "Showing a menu",
|
242
|
+
"link": "storefront/menus/showing_a_menu.json",
|
243
|
+
"groups": "all",
|
244
|
+
"route": "/api/storefront/menus/:id",
|
245
|
+
"method": "GET"
|
230
246
|
}
|
231
247
|
]
|
232
248
|
},
|
@@ -234,17 +250,17 @@
|
|
234
250
|
"name": "Orders",
|
235
251
|
"examples": [
|
236
252
|
{
|
237
|
-
"description": "
|
238
|
-
"link": "storefront/orders/
|
253
|
+
"description": "Listing the user's orders",
|
254
|
+
"link": "storefront/orders/listing_the_user_s_orders.json",
|
239
255
|
"groups": "all",
|
240
|
-
"route": "/api/storefront/orders
|
256
|
+
"route": "/api/storefront/orders",
|
241
257
|
"method": "GET"
|
242
258
|
},
|
243
259
|
{
|
244
|
-
"description": "
|
245
|
-
"link": "storefront/orders/
|
260
|
+
"description": "Showing an order",
|
261
|
+
"link": "storefront/orders/showing_an_order.json",
|
246
262
|
"groups": "all",
|
247
|
-
"route": "/api/storefront/orders",
|
263
|
+
"route": "/api/storefront/orders/:id",
|
248
264
|
"method": "GET"
|
249
265
|
}
|
250
266
|
]
|
@@ -261,6 +277,18 @@
|
|
261
277
|
}
|
262
278
|
]
|
263
279
|
},
|
280
|
+
{
|
281
|
+
"name": "Password Resets",
|
282
|
+
"examples": [
|
283
|
+
{
|
284
|
+
"description": "Sending a forgot password email",
|
285
|
+
"link": "storefront/password_resets/sending_a_forgot_password_email.json",
|
286
|
+
"groups": "all",
|
287
|
+
"route": "/api/storefront/password_resets",
|
288
|
+
"method": "POST"
|
289
|
+
}
|
290
|
+
]
|
291
|
+
},
|
264
292
|
{
|
265
293
|
"name": "Personalized Recommendations",
|
266
294
|
"examples": [
|
@@ -281,232 +309,190 @@
|
|
281
309
|
]
|
282
310
|
},
|
283
311
|
{
|
284
|
-
"name": "
|
312
|
+
"name": "Products",
|
285
313
|
"examples": [
|
286
314
|
{
|
287
|
-
"description": "
|
288
|
-
"link": "storefront/
|
289
|
-
"groups": "all",
|
290
|
-
"route": "/api/storefront/saved_addresses",
|
291
|
-
"method": "POST"
|
292
|
-
},
|
293
|
-
{
|
294
|
-
"description": "Updating a saved address",
|
295
|
-
"link": "storefront/saved_addresses/updating_a_saved_address.json",
|
296
|
-
"groups": "all",
|
297
|
-
"route": "/api/storefront/saved_addresses/:id",
|
298
|
-
"method": "PATCH"
|
299
|
-
},
|
300
|
-
{
|
301
|
-
"description": "Listing the user's saved addresses",
|
302
|
-
"link": "storefront/saved_addresses/listing_the_user_s_saved_addresses.json",
|
315
|
+
"description": "Showing a product",
|
316
|
+
"link": "storefront/products/showing_a_product.json",
|
303
317
|
"groups": "all",
|
304
|
-
"route": "/api/storefront/
|
318
|
+
"route": "/api/storefront/products/:slug",
|
305
319
|
"method": "GET"
|
306
320
|
},
|
307
321
|
{
|
308
|
-
"description": "Showing a
|
309
|
-
"link": "storefront/
|
322
|
+
"description": "Showing a product with a specific SKU selected",
|
323
|
+
"link": "storefront/products/showing_a_product_with_a_specific_sku_selected.json",
|
310
324
|
"groups": "all",
|
311
|
-
"route": "/api/storefront/
|
325
|
+
"route": "/api/storefront/products/:slug",
|
312
326
|
"method": "GET"
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"description": "Deleting a saved address",
|
316
|
-
"link": "storefront/saved_addresses/deleting_a_saved_address.json",
|
317
|
-
"groups": "all",
|
318
|
-
"route": "/api/storefront/saved_addresses/:id",
|
319
|
-
"method": "DELETE"
|
320
327
|
}
|
321
328
|
]
|
322
329
|
},
|
323
330
|
{
|
324
|
-
"name": "
|
331
|
+
"name": "Recent views",
|
325
332
|
"examples": [
|
326
333
|
{
|
327
|
-
"description": "Showing
|
328
|
-
"link": "storefront/
|
334
|
+
"description": "Showing recent views from authentication",
|
335
|
+
"link": "storefront/recent_views/showing_recent_views_from_authentication.json",
|
329
336
|
"groups": "all",
|
330
|
-
"route": "/api/storefront/
|
337
|
+
"route": "/api/storefront/recent_views",
|
331
338
|
"method": "GET"
|
332
|
-
}
|
333
|
-
]
|
334
|
-
},
|
335
|
-
{
|
336
|
-
"name": "Validation Errors",
|
337
|
-
"examples": [
|
339
|
+
},
|
338
340
|
{
|
339
|
-
"description": "
|
340
|
-
"link": "storefront/
|
341
|
+
"description": "Showing recent views with a session_id",
|
342
|
+
"link": "storefront/recent_views/showing_recent_views_with_a_session_id.json",
|
341
343
|
"groups": "all",
|
342
|
-
"route": "/api/storefront/
|
344
|
+
"route": "/api/storefront/recent_views",
|
345
|
+
"method": "GET"
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"description": "Updating recent views with a session_id",
|
349
|
+
"link": "storefront/recent_views/updating_recent_views_with_a_session_id.json",
|
350
|
+
"groups": "all",
|
351
|
+
"route": "/api/storefront/recent_views",
|
343
352
|
"method": "PATCH"
|
344
353
|
},
|
345
354
|
{
|
346
|
-
"description": "
|
347
|
-
"link": "storefront/
|
355
|
+
"description": "Updating recent views with authentication",
|
356
|
+
"link": "storefront/recent_views/updating_recent_views_with_authentication.json",
|
348
357
|
"groups": "all",
|
349
|
-
"route": "/api/storefront/
|
350
|
-
"method": "
|
358
|
+
"route": "/api/storefront/recent_views",
|
359
|
+
"method": "PATCH"
|
351
360
|
}
|
352
361
|
]
|
353
362
|
},
|
354
363
|
{
|
355
|
-
"name": "
|
364
|
+
"name": "Saved Addresses",
|
356
365
|
"examples": [
|
357
366
|
{
|
358
|
-
"description": "
|
359
|
-
"link": "storefront/
|
367
|
+
"description": "Creating a saved address",
|
368
|
+
"link": "storefront/saved_addresses/creating_a_saved_address.json",
|
360
369
|
"groups": "all",
|
361
|
-
"route": "/api/storefront/
|
370
|
+
"route": "/api/storefront/saved_addresses",
|
362
371
|
"method": "POST"
|
363
372
|
},
|
364
373
|
{
|
365
|
-
"description": "
|
366
|
-
"link": "storefront/
|
374
|
+
"description": "Deleting a saved address",
|
375
|
+
"link": "storefront/saved_addresses/deleting_a_saved_address.json",
|
367
376
|
"groups": "all",
|
368
|
-
"route": "/api/storefront/
|
369
|
-
"method": "
|
377
|
+
"route": "/api/storefront/saved_addresses/:id",
|
378
|
+
"method": "DELETE"
|
370
379
|
},
|
371
380
|
{
|
372
|
-
"description": "
|
373
|
-
"link": "storefront/
|
381
|
+
"description": "Listing the user's saved addresses",
|
382
|
+
"link": "storefront/saved_addresses/listing_the_user_s_saved_addresses.json",
|
374
383
|
"groups": "all",
|
375
|
-
"route": "/api/storefront/
|
376
|
-
"method": "
|
384
|
+
"route": "/api/storefront/saved_addresses",
|
385
|
+
"method": "GET"
|
377
386
|
},
|
378
387
|
{
|
379
|
-
"description": "
|
380
|
-
"link": "storefront/
|
388
|
+
"description": "Showing a saved address",
|
389
|
+
"link": "storefront/saved_addresses/showing_a_saved_address.json",
|
381
390
|
"groups": "all",
|
382
|
-
"route": "/api/storefront/
|
383
|
-
"method": "
|
391
|
+
"route": "/api/storefront/saved_addresses/:id",
|
392
|
+
"method": "GET"
|
384
393
|
},
|
385
394
|
{
|
386
|
-
"description": "
|
387
|
-
"link": "storefront/
|
395
|
+
"description": "Updating a saved address",
|
396
|
+
"link": "storefront/saved_addresses/updating_a_saved_address.json",
|
388
397
|
"groups": "all",
|
389
|
-
"route": "/api/storefront/
|
390
|
-
"method": "
|
398
|
+
"route": "/api/storefront/saved_addresses/:id",
|
399
|
+
"method": "PATCH"
|
391
400
|
}
|
392
401
|
]
|
393
402
|
},
|
394
403
|
{
|
395
|
-
"name": "
|
404
|
+
"name": "Saved Credit Cards",
|
396
405
|
"examples": [
|
397
406
|
{
|
398
|
-
"description": "Creating a
|
399
|
-
"link": "storefront/
|
407
|
+
"description": "Creating a saved credit card",
|
408
|
+
"link": "storefront/saved_credit_cards/creating_a_saved_credit_card.json",
|
400
409
|
"groups": "all",
|
401
|
-
"route": "/api/storefront/
|
410
|
+
"route": "/api/storefront/saved_credit_cards",
|
402
411
|
"method": "POST"
|
403
412
|
},
|
404
413
|
{
|
405
|
-
"description": "
|
406
|
-
"link": "storefront/
|
414
|
+
"description": "Deleting a saved credit card",
|
415
|
+
"link": "storefront/saved_credit_cards/deleting_a_saved_credit_card.json",
|
407
416
|
"groups": "all",
|
408
|
-
"route": "/api/storefront/
|
409
|
-
"method": "
|
417
|
+
"route": "/api/storefront/saved_credit_cards/:id",
|
418
|
+
"method": "DELETE"
|
410
419
|
},
|
411
420
|
{
|
412
|
-
"description": "Listing user's
|
413
|
-
"link": "storefront/
|
421
|
+
"description": "Listing the user's saved credit cards",
|
422
|
+
"link": "storefront/saved_credit_cards/listing_the_user_s_saved_credit_cards.json",
|
414
423
|
"groups": "all",
|
415
|
-
"route": "/api/storefront/
|
424
|
+
"route": "/api/storefront/saved_credit_cards",
|
416
425
|
"method": "GET"
|
417
426
|
},
|
418
427
|
{
|
419
|
-
"description": "
|
420
|
-
"link": "storefront/
|
421
|
-
"groups": "all",
|
422
|
-
"route": "/api/storefront/carts/:id/add_promo_code",
|
423
|
-
"method": "POST"
|
424
|
-
},
|
425
|
-
{
|
426
|
-
"description": "Delete an item",
|
427
|
-
"link": "storefront/cart/delete_an_item.json",
|
428
|
-
"groups": "all",
|
429
|
-
"route": "/api/storefront/carts/:cart_id/items/:id",
|
430
|
-
"method": "DELETE"
|
431
|
-
},
|
432
|
-
{
|
433
|
-
"description": "Creating a new guest cart",
|
434
|
-
"link": "storefront/cart/creating_a_new_guest_cart.json",
|
428
|
+
"description": "Showing a saved credit card",
|
429
|
+
"link": "storefront/saved_credit_cards/showing_a_saved_credit_card.json",
|
435
430
|
"groups": "all",
|
436
|
-
"route": "/api/storefront/
|
437
|
-
"method": "
|
431
|
+
"route": "/api/storefront/saved_credit_cards/:id",
|
432
|
+
"method": "GET"
|
438
433
|
},
|
439
434
|
{
|
440
|
-
"description": "Updating
|
441
|
-
"link": "storefront/
|
435
|
+
"description": "Updating a saved credit card",
|
436
|
+
"link": "storefront/saved_credit_cards/updating_a_saved_credit_card.json",
|
442
437
|
"groups": "all",
|
443
|
-
"route": "/api/storefront/
|
438
|
+
"route": "/api/storefront/saved_credit_cards/:id",
|
444
439
|
"method": "PATCH"
|
445
|
-
},
|
446
|
-
{
|
447
|
-
"description": "Adding an item",
|
448
|
-
"link": "storefront/cart/adding_an_item.json",
|
449
|
-
"groups": "all",
|
450
|
-
"route": "/api/storefront/carts/:cart_id/items",
|
451
|
-
"method": "POST"
|
452
440
|
}
|
453
441
|
]
|
454
442
|
},
|
455
443
|
{
|
456
|
-
"name": "
|
444
|
+
"name": "Searches",
|
457
445
|
"examples": [
|
458
446
|
{
|
459
|
-
"description": "Showing
|
460
|
-
"link": "storefront/
|
447
|
+
"description": "Showing search autocomplete suggestions",
|
448
|
+
"link": "storefront/searches/showing_search_autocomplete_suggestions.json",
|
461
449
|
"groups": "all",
|
462
|
-
"route": "/api/storefront/
|
450
|
+
"route": "/api/storefront/searches",
|
463
451
|
"method": "GET"
|
464
452
|
},
|
465
453
|
{
|
466
|
-
"description": "Showing
|
467
|
-
"link": "storefront/
|
454
|
+
"description": "Showing search results",
|
455
|
+
"link": "storefront/searches/showing_search_results.json",
|
468
456
|
"groups": "all",
|
469
|
-
"route": "/api/storefront/
|
457
|
+
"route": "/api/storefront/search",
|
470
458
|
"method": "GET"
|
471
459
|
}
|
472
460
|
]
|
473
461
|
},
|
474
462
|
{
|
475
|
-
"name": "
|
463
|
+
"name": "Segmentation",
|
476
464
|
"examples": [
|
477
465
|
{
|
478
|
-
"description": "
|
479
|
-
"link": "storefront/
|
480
|
-
"groups": "all",
|
481
|
-
"route": "/api/storefront/saved_credit_cards/:id",
|
482
|
-
"method": "PATCH"
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"description": "Showing a saved credit card",
|
486
|
-
"link": "storefront/saved_credit_cards/showing_a_saved_credit_card.json",
|
466
|
+
"description": "Specifying session count for segmentation",
|
467
|
+
"link": "storefront/segmentation/specifying_session_count_for_segmentation.json",
|
487
468
|
"groups": "all",
|
488
|
-
"route": "/api/storefront/
|
469
|
+
"route": "/api/storefront/system_content/home_page",
|
489
470
|
"method": "GET"
|
490
471
|
},
|
491
472
|
{
|
492
|
-
"description": "
|
493
|
-
"link": "storefront/
|
473
|
+
"description": "Using session IDs for segmenting non-authenticated users",
|
474
|
+
"link": "storefront/segmentation/using_session_ids_for_segmenting_non_authenticated_users.json",
|
494
475
|
"groups": "all",
|
495
|
-
"route": "/api/storefront/
|
496
|
-
"method": "
|
497
|
-
}
|
476
|
+
"route": "/api/storefront/system_content/home_page",
|
477
|
+
"method": "GET"
|
478
|
+
}
|
479
|
+
]
|
480
|
+
},
|
481
|
+
{
|
482
|
+
"name": "System Content",
|
483
|
+
"examples": [
|
498
484
|
{
|
499
|
-
"description": "
|
500
|
-
"link": "storefront/
|
485
|
+
"description": "Showing system content",
|
486
|
+
"link": "storefront/system_content/showing_system_content.json",
|
501
487
|
"groups": "all",
|
502
|
-
"route": "/api/storefront/
|
503
|
-
"method": "
|
488
|
+
"route": "/api/storefront/system_content/:name",
|
489
|
+
"method": "GET"
|
504
490
|
},
|
505
491
|
{
|
506
|
-
"description": "
|
507
|
-
"link": "storefront/
|
492
|
+
"description": "Showing the home page",
|
493
|
+
"link": "storefront/system_content/showing_the_home_page.json",
|
508
494
|
"groups": "all",
|
509
|
-
"route": "/api/storefront/
|
495
|
+
"route": "/api/storefront/system_content/home_page",
|
510
496
|
"method": "GET"
|
511
497
|
}
|
512
498
|
]
|
@@ -522,6 +508,25 @@
|
|
522
508
|
"method": "GET"
|
523
509
|
}
|
524
510
|
]
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"name": "Validation Errors",
|
514
|
+
"examples": [
|
515
|
+
{
|
516
|
+
"description": "Checkout validation errors",
|
517
|
+
"link": "storefront/validation_errors/checkout_validation_errors.json",
|
518
|
+
"groups": "all",
|
519
|
+
"route": "/api/storefront/checkouts/:id",
|
520
|
+
"method": "PATCH"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"description": "General validation errors",
|
524
|
+
"link": "storefront/validation_errors/general_validation_errors.json",
|
525
|
+
"groups": "all",
|
526
|
+
"route": "/api/storefront/account",
|
527
|
+
"method": "POST"
|
528
|
+
}
|
529
|
+
]
|
525
530
|
}
|
526
531
|
]
|
527
532
|
}
|