Hide requested API reference pages from Mintlify (#5630)

This commit is contained in:
Marc Kelechava 2026-04-23 17:19:37 -07:00 committed by GitHub
parent f70b4cc6f3
commit 7e9394b9e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -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"
}
]
}
}

View file

@ -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",
},
)