Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Mar 21, 2024
1 parent 0798a30 commit 6fed697
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ class NamespaceCreateResponse(BaseModel):

namespace_name: Optional[str] = None
"""Name of the Workers for Platforms dispatch namespace."""

script_count: Optional[int] = None
"""The current number of scripts in this Dispatch Namespace"""
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ class NamespaceGetResponse(BaseModel):

namespace_name: Optional[str] = None
"""Name of the Workers for Platforms dispatch namespace."""

script_count: Optional[int] = None
"""The current number of scripts in this Dispatch Namespace"""
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@ class NamespaceListResponseItem(BaseModel):
namespace_name: Optional[str] = None
"""Name of the Workers for Platforms dispatch namespace."""

script_count: Optional[int] = None
"""The current number of scripts in this Dispatch Namespace"""


NamespaceListResponse = List[NamespaceListResponseItem]

0 comments on commit 6fed697

Please sign in to comment.