Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#189)
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 3b4fe72 commit 354cf29
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ export interface NamespaceCreateResponse {
* Name of the Workers for Platforms dispatch namespace.
*/
namespace_name?: string;

/**
* The current number of scripts in this Dispatch Namespace
*/
script_count?: number;
}

export type NamespaceListResponse = Array<NamespaceListResponse.NamespaceListResponseItem>;
Expand Down Expand Up @@ -136,6 +141,11 @@ export namespace NamespaceListResponse {
* Name of the Workers for Platforms dispatch namespace.
*/
namespace_name?: string;

/**
* The current number of scripts in this Dispatch Namespace
*/
script_count?: number;
}
}

Expand Down Expand Up @@ -171,6 +181,11 @@ export interface NamespaceGetResponse {
* Name of the Workers for Platforms dispatch namespace.
*/
namespace_name?: string;

/**
* The current number of scripts in this Dispatch Namespace
*/
script_count?: number;
}

export interface NamespaceCreateParams {
Expand Down

0 comments on commit 354cf29

Please sign in to comment.