Skip to content

Commit a016b30

Browse files
chore(api): update composite API spec
1 parent 4451ae3 commit a016b30

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1886
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-4dfa826e7a47e343bab3db833a468c775d60c9e5ae8b492fc8c1905d35f20691.yml
3-
openapi_spec_hash: aa342ab3145b47a6b45b6fff850ced4b
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-dfc53e97482beb4743c8fb4429a882cf4da91322cbcba120f91dd915787866fb.yml
3+
openapi_spec_hash: 53fb340f3f3ccd3f1d1df3dab9ede9c5
44
config_hash: feb968146b5a84697390fed70d260f68

src/resources/zero-trust/access/ai-controls/mcp/portals.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,9 @@ export namespace PortalReadResponse {
257257

258258
name: string;
259259

260-
prompts: Array<unknown>;
260+
prompts: Array<{ [key: string]: unknown }>;
261261

262-
tools: Array<unknown>;
262+
tools: Array<{ [key: string]: unknown }>;
263263

264264
updated_prompts: Array<{ [key: string]: number | string }>;
265265

src/resources/zero-trust/access/ai-controls/mcp/servers.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ export interface ServerCreateResponse {
176176

177177
name: string;
178178

179-
prompts: Array<unknown>;
179+
prompts: Array<{ [key: string]: unknown }>;
180180

181-
tools: Array<unknown>;
181+
tools: Array<{ [key: string]: unknown }>;
182182

183183
created_at?: string;
184184

@@ -209,9 +209,9 @@ export interface ServerUpdateResponse {
209209

210210
name: string;
211211

212-
prompts: Array<unknown>;
212+
prompts: Array<{ [key: string]: unknown }>;
213213

214-
tools: Array<unknown>;
214+
tools: Array<{ [key: string]: unknown }>;
215215

216216
created_at?: string;
217217

@@ -242,9 +242,9 @@ export interface ServerListResponse {
242242

243243
name: string;
244244

245-
prompts: Array<unknown>;
245+
prompts: Array<{ [key: string]: unknown }>;
246246

247-
tools: Array<unknown>;
247+
tools: Array<{ [key: string]: unknown }>;
248248

249249
created_at?: string;
250250

@@ -275,9 +275,9 @@ export interface ServerDeleteResponse {
275275

276276
name: string;
277277

278-
prompts: Array<unknown>;
278+
prompts: Array<{ [key: string]: unknown }>;
279279

280-
tools: Array<unknown>;
280+
tools: Array<{ [key: string]: unknown }>;
281281

282282
created_at?: string;
283283

@@ -308,9 +308,9 @@ export interface ServerReadResponse {
308308

309309
name: string;
310310

311-
prompts: Array<unknown>;
311+
prompts: Array<{ [key: string]: unknown }>;
312312

313-
tools: Array<unknown>;
313+
tools: Array<{ [key: string]: unknown }>;
314314

315315
created_at?: string;
316316

0 commit comments

Comments
 (0)