From b696a1fd0dfaf8927fdff6a91972228314eaf89b Mon Sep 17 00:00:00 2001 From: Daniel Del Carmen Date: Wed, 18 Dec 2024 12:12:02 +0100 Subject: [PATCH] fix links in workflows --- .../payment-services-extension/workflows/checkout.md | 8 ++++---- .../payment-services-extension/workflows/minicart.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/graphql/payment-services-extension/workflows/checkout.md b/src/pages/graphql/payment-services-extension/workflows/checkout.md index 177737f3a..b2b3cb779 100644 --- a/src/pages/graphql/payment-services-extension/workflows/checkout.md +++ b/src/pages/graphql/payment-services-extension/workflows/checkout.md @@ -16,15 +16,15 @@ These steps describe the flow of requests and responses required to complete a t ![Payment Services sequence diagram](../../../_images/graphql/payment-services.svg) -1. Run the [`getPaymentConfig`](../../schema/checkout/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay. +1. Run the [`getPaymentConfig`](../../payment-services-extension/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay. 1. Commerce returns payment configuration information. -1. Run [`setPaymentMethodOnCart`](../../schema/cart/mutations/set-payment-method.md) to [set the payment method](../tutorials/checkout/set-payment-method.md). +1. Run [`setPaymentMethodOnCart`](../../schema/cart/mutations/set-payment-method.md) to [set the payment method](../../tutorials/checkout/set-payment-method.md). 1. Adobe Commerce returns a `Cart` object. -1. Run [`createPaymentOrder`](../../schema/checkout/mutations/create-payment-order.md) to begin the authorization process. +1. Run [`createPaymentOrder`](../../payment-services-extension/mutations/create-payment-order.md) to begin the authorization process. 1. Commerce forwards the request to PayPal. @@ -32,7 +32,7 @@ These steps describe the flow of requests and responses required to complete a t 1. Adobe Commerce generates a `order_id` and forwards the value in the `mp_order_id` field and the PayPal response in the `id` field. -1. (Optional) If hosted fields and the Signifyd integration are enabled, run [`getPaymentOrder`](../../schema/checkout/queries/get-payment-order.md). +1. (Optional) If hosted fields and the Signifyd integration are enabled, run [`getPaymentOrder`](../../payment-services-extension/queries/get-payment-order.md). 1. (Optional) Adobe Commerce returns details about the payment order. diff --git a/src/pages/graphql/payment-services-extension/workflows/minicart.md b/src/pages/graphql/payment-services-extension/workflows/minicart.md index 1e5872a16..22c673f4c 100644 --- a/src/pages/graphql/payment-services-extension/workflows/minicart.md +++ b/src/pages/graphql/payment-services-extension/workflows/minicart.md @@ -14,11 +14,11 @@ These steps describe the additional flow of requests and responses required to p ![Payment Services sequence diagram](../../../_images/graphql/payment-services-minicart.svg) -1. Run the [`getPaymentConfig`](../../schema/checkout/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay. +1. Run the [`getPaymentConfig`](../../payment-services-extension/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay. 1. Adobe Commerce returns payment configuration information. -1. Run [`createPaymentOrder`](../../schema/checkout/mutations/create-payment-order.md) to begin the authorization process. +1. Run [`createPaymentOrder`](../../payment-services-extension/mutations/create-payment-order.md) to begin the authorization process. 1. Commerce forwards the request to PayPal. @@ -26,7 +26,7 @@ These steps describe the additional flow of requests and responses required to p 1. Commerce generates an `order_id` and forwards the value in the `mp_order_id` field and in the PayPal response in the `id` field. -1. Run the [`syncPaymentOrder`](../../schema/checkout/mutations/sync-payment-order.md) mutation to get payment details and update the quote with shipping, billing, email, and phone number details. +1. Run the [`syncPaymentOrder`](../../payment-services-extension/mutations/sync-payment-order.md) mutation to get payment details and update the quote with shipping, billing, email, and phone number details. 1. Commerce returns details about the payment order.