From 7e9394b9e491b7b44f96758295a2ee6d20e47d06 Mon Sep 17 00:00:00 2001 From: Marc Kelechava Date: Thu, 23 Apr 2026 17:19:37 -0700 Subject: [PATCH] Hide requested API reference pages from Mintlify (#5630) --- docs/api-reference/openapi.json | 4 +++- skyvern/forge/sdk/routes/sdk.py | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/api-reference/openapi.json b/docs/api-reference/openapi.json index 36255184f..b22301c09 100644 --- a/docs/api-reference/openapi.json +++ b/docs/api-reference/openapi.json @@ -2168,6 +2168,7 @@ }, "/v1/sdk/run_action": { "post": { + "x-excluded": true, "tags": [ "SDK" ], @@ -2224,6 +2225,7 @@ }, "/api/v1/billing/checkout": { "post": { + "x-excluded": true, "summary": "Create Checkout Session", "description": "Create a Stripe Checkout Session for subscribing to a tier.\n\nFrontend should redirect the user to the returned URL.\nAfter successful checkout, Stripe will send a webhook that we handle\nto store the subscription and initialize billing state.\n\nReturns 400 if org already has an active subscription (use portal instead).", "operationId": "create_checkout_session_api_v1_billing_checkout_post", @@ -13729,4 +13731,4 @@ "url": "http://localhost:8000" } ] -} \ No newline at end of file +} diff --git a/skyvern/forge/sdk/routes/sdk.py b/skyvern/forge/sdk/routes/sdk.py index c2533dead..ba87e8bf8 100644 --- a/skyvern/forge/sdk/routes/sdk.py +++ b/skyvern/forge/sdk/routes/sdk.py @@ -34,6 +34,7 @@ LOG = structlog.get_logger() description="Execute a single SDK action with the specified parameters", tags=["SDK"], openapi_extra={ + "x-excluded": True, "x-fern-sdk-method-name": "run_sdk_action", }, )