@spree/docs 0.1.69 → 0.1.71
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.
|
@@ -312,7 +312,7 @@ The new RESTful design allows you to implement different usage scenarios like mu
|
|
|
312
312
|
|
|
313
313
|
#### Session-based payments (Stripe, Adyen, PayPal)
|
|
314
314
|
|
|
315
|
-
API v2 had per-gateway endpoints (`/stripe/payment_intents`, `/adyen/payment_sessions`). API v3 unifies these behind a generic [Payment Sessions API](../../developer/core-concepts/payments.md#session-based-flow-stripe-adyen-paypal-etc) — the gateway-specific payload moves into the request body, and Spree dispatches to the right provider based on the `payment_method_id`. This shortens the integration time and allows
|
|
315
|
+
API v2 had per-gateway endpoints (`/stripe/payment_intents`, `/adyen/payment_sessions`). API v3 unifies these behind a generic [Payment Sessions API](../../developer/core-concepts/payments.md#session-based-flow-stripe-adyen-paypal-etc) — the gateway-specific payload moves into the request body, and Spree dispatches to the right provider based on the `payment_method_id`. This shortens the integration time and allows teams to deliver payment integrations faster. Also your frontend code doesn't need to change per gateway.
|
|
316
316
|
|
|
317
317
|
| Storefront API v2 | Store API v3 |
|
|
318
318
|
|---|---|
|
|
@@ -3,7 +3,7 @@ title: Extending Admin Dashboard UI
|
|
|
3
3
|
sidebarTitle: Extending UI
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
Spree Admin Dashboard allows you easily extend existing pages and screens with your own code, without any need to modify the core codebase. This allows you to easily inject your custom UI elements without compromising the integrity of the core codebase. Which in effect allows you to safely update your Spree installation to the latest version.
|
|
6
|
+
Spree Admin Dashboard allows you to easily extend existing pages and screens with your own code, without any need to modify the core codebase. This allows you to easily inject your custom UI elements without compromising the integrity of the core codebase. Which in effect allows you to safely update your Spree installation to the latest version.
|
|
7
7
|
|
|
8
8
|
## How it works
|
|
9
9
|
|