opencode-sdk-python/src/opencode_ai/resources/session/permissions.py
2025-09-03 17:15:28 +00:00

189 lines
7.2 KiB
Python

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing_extensions import Literal
import httpx
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
from ..._utils import maybe_transform, async_maybe_transform
from ..._compat import cached_property
from ..._resource import SyncAPIResource, AsyncAPIResource
from ..._response import (
to_raw_response_wrapper,
to_streamed_response_wrapper,
async_to_raw_response_wrapper,
async_to_streamed_response_wrapper,
)
from ..._base_client import make_request_options
from ...types.session import permission_respond_params
from ...types.session.permission_respond_response import PermissionRespondResponse
__all__ = ["PermissionsResource", "AsyncPermissionsResource"]
class PermissionsResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> PermissionsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/sst/opencode-sdk-python#accessing-raw-response-data-eg-headers
"""
return PermissionsResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> PermissionsResourceWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/sst/opencode-sdk-python#with_streaming_response
"""
return PermissionsResourceWithStreamingResponse(self)
def respond(
self,
permission_id: str,
*,
id: str,
response: Literal["once", "always", "reject"],
directory: str | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> PermissionRespondResponse:
"""
Respond to a permission request
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
if not permission_id:
raise ValueError(f"Expected a non-empty value for `permission_id` but received {permission_id!r}")
return self._post(
f"/session/{id}/permissions/{permission_id}",
body=maybe_transform({"response": response}, permission_respond_params.PermissionRespondParams),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform({"directory": directory}, permission_respond_params.PermissionRespondParams),
),
cast_to=PermissionRespondResponse,
)
class AsyncPermissionsResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncPermissionsResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/sst/opencode-sdk-python#accessing-raw-response-data-eg-headers
"""
return AsyncPermissionsResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncPermissionsResourceWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/sst/opencode-sdk-python#with_streaming_response
"""
return AsyncPermissionsResourceWithStreamingResponse(self)
async def respond(
self,
permission_id: str,
*,
id: str,
response: Literal["once", "always", "reject"],
directory: str | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> PermissionRespondResponse:
"""
Respond to a permission request
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not id:
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
if not permission_id:
raise ValueError(f"Expected a non-empty value for `permission_id` but received {permission_id!r}")
return await self._post(
f"/session/{id}/permissions/{permission_id}",
body=await async_maybe_transform({"response": response}, permission_respond_params.PermissionRespondParams),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=await async_maybe_transform(
{"directory": directory}, permission_respond_params.PermissionRespondParams
),
),
cast_to=PermissionRespondResponse,
)
class PermissionsResourceWithRawResponse:
def __init__(self, permissions: PermissionsResource) -> None:
self._permissions = permissions
self.respond = to_raw_response_wrapper(
permissions.respond,
)
class AsyncPermissionsResourceWithRawResponse:
def __init__(self, permissions: AsyncPermissionsResource) -> None:
self._permissions = permissions
self.respond = async_to_raw_response_wrapper(
permissions.respond,
)
class PermissionsResourceWithStreamingResponse:
def __init__(self, permissions: PermissionsResource) -> None:
self._permissions = permissions
self.respond = to_streamed_response_wrapper(
permissions.respond,
)
class AsyncPermissionsResourceWithStreamingResponse:
def __init__(self, permissions: AsyncPermissionsResource) -> None:
self._permissions = permissions
self.respond = async_to_streamed_response_wrapper(
permissions.respond,
)