fix: add overlay to remove nullable from pagination offset params (#121)

This commit is contained in:
Matt Apperson
2026-04-14 12:48:15 -04:00
committed by GitHub
parent 2bba049182
commit b2386114cd
440 changed files with 36150 additions and 32168 deletions
+15 -89
View File
@@ -1,11 +1,13 @@
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from __future__ import annotations
from openrouter.types import BaseModel, Nullable, UNSET_SENTINEL
from openrouter.components import (
listkeyassignmentsresponse as components_listkeyassignmentsresponse,
)
from openrouter.types import BaseModel
from openrouter.utils import FieldMetadata, HeaderMetadata, QueryParamMetadata
import pydantic
from pydantic import model_serializer
from typing import List, Optional
from typing import Awaitable, Callable, Optional, Union
from typing_extensions import Annotated, NotRequired, TypedDict
@@ -69,9 +71,9 @@ class ListKeyAssignmentsRequestTypedDict(TypedDict):
r"""Comma-separated list of app categories (e.g. \"cli-agent,cloud-agent\"). Used for marketplace rankings.
"""
offset: NotRequired[str]
offset: NotRequired[int]
r"""Number of records to skip for pagination"""
limit: NotRequired[str]
limit: NotRequired[int]
r"""Maximum number of records to return (max 100)"""
@@ -105,102 +107,26 @@ class ListKeyAssignmentsRequest(BaseModel):
"""
offset: Annotated[
Optional[str],
Optional[int],
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
] = None
r"""Number of records to skip for pagination"""
limit: Annotated[
Optional[str],
Optional[int],
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
] = None
r"""Maximum number of records to return (max 100)"""
class ListKeyAssignmentsDataTypedDict(TypedDict):
id: str
r"""Unique identifier for the assignment"""
key_hash: str
r"""Hash of the assigned API key"""
guardrail_id: str
r"""ID of the guardrail"""
key_name: str
r"""Name of the API key"""
key_label: str
r"""Label of the API key"""
assigned_by: Nullable[str]
r"""User ID of who made the assignment"""
created_at: str
r"""ISO 8601 timestamp of when the assignment was created"""
class ListKeyAssignmentsData(BaseModel):
id: str
r"""Unique identifier for the assignment"""
key_hash: str
r"""Hash of the assigned API key"""
guardrail_id: str
r"""ID of the guardrail"""
key_name: str
r"""Name of the API key"""
key_label: str
r"""Label of the API key"""
assigned_by: Nullable[str]
r"""User ID of who made the assignment"""
created_at: str
r"""ISO 8601 timestamp of when the assignment was created"""
@model_serializer(mode="wrap")
def serialize_model(self, handler):
optional_fields = []
nullable_fields = ["assigned_by"]
null_default_fields = []
serialized = handler(self)
m = {}
for n, f in type(self).model_fields.items():
k = f.alias or n
val = serialized.get(k)
serialized.pop(k, None)
optional_nullable = k in optional_fields and k in nullable_fields
is_set = (
self.__pydantic_fields_set__.intersection({n})
or k in null_default_fields
) # pylint: disable=no-member
if val is not None and val != UNSET_SENTINEL:
m[k] = val
elif val != UNSET_SENTINEL and (
not k in optional_fields or (optional_nullable and is_set)
):
m[k] = val
return m
class ListKeyAssignmentsResponseTypedDict(TypedDict):
r"""List of key assignments"""
data: List[ListKeyAssignmentsDataTypedDict]
r"""List of key assignments"""
total_count: float
r"""Total number of key assignments for this guardrail"""
result: components_listkeyassignmentsresponse.ListKeyAssignmentsResponseTypedDict
class ListKeyAssignmentsResponse(BaseModel):
r"""List of key assignments"""
next: Union[
Callable[[], Optional[ListKeyAssignmentsResponse]],
Callable[[], Awaitable[Optional[ListKeyAssignmentsResponse]]],
]
data: List[ListKeyAssignmentsData]
r"""List of key assignments"""
total_count: float
r"""Total number of key assignments for this guardrail"""
result: components_listkeyassignmentsresponse.ListKeyAssignmentsResponse