remove get 1password token from doc (#3189)

This commit is contained in:
Shuchang Zheng
2025-08-14 08:29:13 -07:00
committed by GitHub
parent 7e3e16a22e
commit 75603f4b98
2 changed files with 2 additions and 9 deletions

View File

@@ -193,6 +193,7 @@ navigation:
- section: Scripts - section: Scripts
contents: contents:
- POST /v1/scripts - POST /v1/scripts
- POST /v1/scripts/{script_id}/run
- POST /v1/scripts/{script_id}/deploy - POST /v1/scripts/{script_id}/deploy
- GET /v1/scripts/{script_id} - GET /v1/scripts/{script_id}
- GET /v1/scripts - GET /v1/scripts

View File

@@ -379,10 +379,6 @@ async def get_credentials(
response_model=CreateOnePasswordTokenResponse, response_model=CreateOnePasswordTokenResponse,
summary="Get OnePassword service account token", summary="Get OnePassword service account token",
description="Retrieves the current OnePassword service account token for the organization.", description="Retrieves the current OnePassword service account token for the organization.",
tags=["Auth Tokens"],
openapi_extra={
"x-fern-sdk-method-name": "get_onepassword_token",
},
) )
@base_router.get( @base_router.get(
"/credentials/onepassword/get/", "/credentials/onepassword/get/",
@@ -435,11 +431,7 @@ async def get_onepassword_token(
include_in_schema=False, include_in_schema=False,
) )
async def update_onepassword_token( async def update_onepassword_token(
data: CreateOnePasswordTokenRequest = Body( data: CreateOnePasswordTokenRequest,
...,
description="The OnePassword token data",
openapi_extra={"x-fern-sdk-parameter-name": "data"},
),
current_org: Organization = Depends(org_auth_service.get_current_org), current_org: Organization = Depends(org_auth_service.get_current_org),
) -> CreateOnePasswordTokenResponse: ) -> CreateOnePasswordTokenResponse:
""" """