From 354cf29b191629b5a8aea8421adbb84fc4b2e6e1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 19:24:03 +0000 Subject: [PATCH] feat(api): OpenAPI spec update via Stainless API (#189) --- .../dispatch/namespaces/namespaces.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/resources/workers-for-platforms/dispatch/namespaces/namespaces.ts b/src/resources/workers-for-platforms/dispatch/namespaces/namespaces.ts index 7e36669b7d..a43f671cbb 100644 --- a/src/resources/workers-for-platforms/dispatch/namespaces/namespaces.ts +++ b/src/resources/workers-for-platforms/dispatch/namespaces/namespaces.ts @@ -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; @@ -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; } } @@ -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 {