mirror of
https://github.com/anomalyco/opencode-sdk-python.git
synced 2026-05-18 23:53:38 +00:00
feat(api): manual updates
This commit is contained in:
parent
9b3134a27e
commit
979c43dbc7
225 changed files with 25869 additions and 1 deletions
33
src/opencode_ai/resources/session/__init__.py
Normal file
33
src/opencode_ai/resources/session/__init__.py
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
|
||||
from .session import (
|
||||
SessionResource,
|
||||
AsyncSessionResource,
|
||||
SessionResourceWithRawResponse,
|
||||
AsyncSessionResourceWithRawResponse,
|
||||
SessionResourceWithStreamingResponse,
|
||||
AsyncSessionResourceWithStreamingResponse,
|
||||
)
|
||||
from .permissions import (
|
||||
PermissionsResource,
|
||||
AsyncPermissionsResource,
|
||||
PermissionsResourceWithRawResponse,
|
||||
AsyncPermissionsResourceWithRawResponse,
|
||||
PermissionsResourceWithStreamingResponse,
|
||||
AsyncPermissionsResourceWithStreamingResponse,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"PermissionsResource",
|
||||
"AsyncPermissionsResource",
|
||||
"PermissionsResourceWithRawResponse",
|
||||
"AsyncPermissionsResourceWithRawResponse",
|
||||
"PermissionsResourceWithStreamingResponse",
|
||||
"AsyncPermissionsResourceWithStreamingResponse",
|
||||
"SessionResource",
|
||||
"AsyncSessionResource",
|
||||
"SessionResourceWithRawResponse",
|
||||
"AsyncSessionResourceWithRawResponse",
|
||||
"SessionResourceWithStreamingResponse",
|
||||
"AsyncSessionResourceWithStreamingResponse",
|
||||
]
|
||||
189
src/opencode_ai/resources/session/permissions.py
Normal file
189
src/opencode_ai/resources/session/permissions.py
Normal file
|
|
@ -0,0 +1,189 @@
|
|||
# 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,
|
||||
)
|
||||
1937
src/opencode_ai/resources/session/session.py
Normal file
1937
src/opencode_ai/resources/session/session.py
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue