remove get 1password token from doc (#3189)
This commit is contained in:
@@ -193,6 +193,7 @@ navigation:
|
||||
- section: Scripts
|
||||
contents:
|
||||
- POST /v1/scripts
|
||||
- POST /v1/scripts/{script_id}/run
|
||||
- POST /v1/scripts/{script_id}/deploy
|
||||
- GET /v1/scripts/{script_id}
|
||||
- GET /v1/scripts
|
||||
|
||||
@@ -379,10 +379,6 @@ async def get_credentials(
|
||||
response_model=CreateOnePasswordTokenResponse,
|
||||
summary="Get OnePassword service account token",
|
||||
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(
|
||||
"/credentials/onepassword/get/",
|
||||
@@ -435,11 +431,7 @@ async def get_onepassword_token(
|
||||
include_in_schema=False,
|
||||
)
|
||||
async def update_onepassword_token(
|
||||
data: CreateOnePasswordTokenRequest = Body(
|
||||
...,
|
||||
description="The OnePassword token data",
|
||||
openapi_extra={"x-fern-sdk-parameter-name": "data"},
|
||||
),
|
||||
data: CreateOnePasswordTokenRequest,
|
||||
current_org: Organization = Depends(org_auth_service.get_current_org),
|
||||
) -> CreateOnePasswordTokenResponse:
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user