Skip to content

Commit

Permalink
feat(api): api update (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Dec 18, 2024
1 parent b353747 commit 858781d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -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
9 changes: 7 additions & 2 deletions src/structify/types/dataset_match_response.py
Original file line number Diff line number Diff line change
@@ -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]

0 comments on commit 858781d

Please sign in to comment.