diff --git a/.stats.yml b/.stats.yml index a871eb2b..7c63a881 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 69 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/structify%2Fstructify-6c24c5c093c6eaaba26ce7b3960df8f01ed2a9d425f92b9bae0e1bc78105bea4.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/structify%2Fstructify-dc36e38095c39b5b82c94b484552182a5d6e598a2b7b4f96d2e3acbc3adec79b.yml diff --git a/src/structify/types/dataset_match_response.py b/src/structify/types/dataset_match_response.py index c760f5f9..a2dff2a7 100644 --- a/src/structify/types/dataset_match_response.py +++ b/src/structify/types/dataset_match_response.py @@ -1,12 +1,17 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. +from typing import Dict +from typing_extensions import TypeAlias from .._models import BaseModel -__all__ = ["DatasetMatchResponse"] +__all__ = ["DatasetMatchResponse", "DatasetMatchResponseItem"] -class DatasetMatchResponse(BaseModel): +class DatasetMatchResponseItem(BaseModel): entity: str score: float + + +DatasetMatchResponse: TypeAlias = Dict[str, DatasetMatchResponseItem]