Skip to content

Commit 46ce19f

Browse files
chore(api): update composite API spec
1 parent 4900594 commit 46ce19f

7 files changed

Lines changed: 19 additions & 19 deletions

File tree

.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/cloudflare/types/zero_trust/access/ai_controls/mcp/portal_read_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class Server(BaseModel):
1919

2020
name: str
2121

22-
prompts: List[object]
22+
prompts: List[Dict[str, object]]
2323

24-
tools: List[object]
24+
tools: List[Dict[str, object]]
2525

2626
updated_prompts: List[Dict[str, Union[float, str]]]
2727

src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_create_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List, Optional
3+
from typing import Dict, List, Optional
44
from datetime import datetime
55
from typing_extensions import Literal
66

@@ -19,9 +19,9 @@ class ServerCreateResponse(BaseModel):
1919

2020
name: str
2121

22-
prompts: List[object]
22+
prompts: List[Dict[str, object]]
2323

24-
tools: List[object]
24+
tools: List[Dict[str, object]]
2525

2626
created_at: Optional[datetime] = None
2727

src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_delete_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List, Optional
3+
from typing import Dict, List, Optional
44
from datetime import datetime
55
from typing_extensions import Literal
66

@@ -19,9 +19,9 @@ class ServerDeleteResponse(BaseModel):
1919

2020
name: str
2121

22-
prompts: List[object]
22+
prompts: List[Dict[str, object]]
2323

24-
tools: List[object]
24+
tools: List[Dict[str, object]]
2525

2626
created_at: Optional[datetime] = None
2727

src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_list_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List, Optional
3+
from typing import Dict, List, Optional
44
from datetime import datetime
55
from typing_extensions import Literal
66

@@ -19,9 +19,9 @@ class ServerListResponse(BaseModel):
1919

2020
name: str
2121

22-
prompts: List[object]
22+
prompts: List[Dict[str, object]]
2323

24-
tools: List[object]
24+
tools: List[Dict[str, object]]
2525

2626
created_at: Optional[datetime] = None
2727

src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_read_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List, Optional
3+
from typing import Dict, List, Optional
44
from datetime import datetime
55
from typing_extensions import Literal
66

@@ -19,9 +19,9 @@ class ServerReadResponse(BaseModel):
1919

2020
name: str
2121

22-
prompts: List[object]
22+
prompts: List[Dict[str, object]]
2323

24-
tools: List[object]
24+
tools: List[Dict[str, object]]
2525

2626
created_at: Optional[datetime] = None
2727

src/cloudflare/types/zero_trust/access/ai_controls/mcp/server_update_response.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List, Optional
3+
from typing import Dict, List, Optional
44
from datetime import datetime
55
from typing_extensions import Literal
66

@@ -19,9 +19,9 @@ class ServerUpdateResponse(BaseModel):
1919

2020
name: str
2121

22-
prompts: List[object]
22+
prompts: List[Dict[str, object]]
2323

24-
tools: List[object]
24+
tools: List[Dict[str, object]]
2525

2626
created_at: Optional[datetime] = None
2727

0 commit comments

Comments
 (0)