Skip to content

Commit 3ef3fff

Browse files
chore(api): update composite API spec
1 parent 5cc95f1 commit 3ef3fff

17 files changed

Lines changed: 1 addition & 195 deletions

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 2195
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a6c352830d1270d0abb5bb983058ea21815e1bb7d2e163965335dcb0e706f057.yml
3-
openapi_spec_hash: a7e122c59429c7ec48c11144e6842390
3+
openapi_spec_hash: 11e5636b14b208096bae746c985af8aa
44
config_hash: a83bae9f0be0219cfe77d38d5af60d4a

src/cloudflare/types/aisearch/instance_create_params.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -214,19 +213,9 @@ class IndexingOptions(TypedDict, total=False):
214213
"""
215214

216215

217-
class MetadataSearchForAgents(TypedDict, total=False):
218-
hostname: Required[str]
219-
220-
zone_id: Required[str]
221-
222-
zone_name: Required[str]
223-
224-
225216
class Metadata(TypedDict, total=False):
226217
created_from_aisearch_wizard: bool
227218

228-
search_for_agents: MetadataSearchForAgents
229-
230219
worker_domain: str
231220

232221

src/cloudflare/types/aisearch/instance_create_response.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -62,19 +61,9 @@ class IndexingOptions(BaseModel):
6261
"""
6362

6463

65-
class MetadataSearchForAgents(BaseModel):
66-
hostname: str
67-
68-
zone_id: str
69-
70-
zone_name: str
71-
72-
7364
class Metadata(BaseModel):
7465
created_from_aisearch_wizard: Optional[bool] = None
7566

76-
search_for_agents: Optional[MetadataSearchForAgents] = None
77-
7867
worker_domain: Optional[str] = None
7968

8069

src/cloudflare/types/aisearch/instance_delete_response.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -62,19 +61,9 @@ class IndexingOptions(BaseModel):
6261
"""
6362

6463

65-
class MetadataSearchForAgents(BaseModel):
66-
hostname: str
67-
68-
zone_id: str
69-
70-
zone_name: str
71-
72-
7364
class Metadata(BaseModel):
7465
created_from_aisearch_wizard: Optional[bool] = None
7566

76-
search_for_agents: Optional[MetadataSearchForAgents] = None
77-
7867
worker_domain: Optional[str] = None
7968

8069

src/cloudflare/types/aisearch/instance_list_response.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -62,19 +61,9 @@ class IndexingOptions(BaseModel):
6261
"""
6362

6463

65-
class MetadataSearchForAgents(BaseModel):
66-
hostname: str
67-
68-
zone_id: str
69-
70-
zone_name: str
71-
72-
7364
class Metadata(BaseModel):
7465
created_from_aisearch_wizard: Optional[bool] = None
7566

76-
search_for_agents: Optional[MetadataSearchForAgents] = None
77-
7867
worker_domain: Optional[str] = None
7968

8069

src/cloudflare/types/aisearch/instance_read_response.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -62,19 +61,9 @@ class IndexingOptions(BaseModel):
6261
"""
6362

6463

65-
class MetadataSearchForAgents(BaseModel):
66-
hostname: str
67-
68-
zone_id: str
69-
70-
zone_name: str
71-
72-
7364
class Metadata(BaseModel):
7465
created_from_aisearch_wizard: Optional[bool] = None
7566

76-
search_for_agents: Optional[MetadataSearchForAgents] = None
77-
7867
worker_domain: Optional[str] = None
7968

8069

src/cloudflare/types/aisearch/instance_update_params.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -249,19 +248,9 @@ class IndexingOptions(TypedDict, total=False):
249248
"""
250249

251250

252-
class MetadataSearchForAgents(TypedDict, total=False):
253-
hostname: Required[str]
254-
255-
zone_id: Required[str]
256-
257-
zone_name: Required[str]
258-
259-
260251
class Metadata(TypedDict, total=False):
261252
created_from_aisearch_wizard: bool
262253

263-
search_for_agents: MetadataSearchForAgents
264-
265254
worker_domain: str
266255

267256

src/cloudflare/types/aisearch/instance_update_response.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -62,19 +61,9 @@ class IndexingOptions(BaseModel):
6261
"""
6362

6463

65-
class MetadataSearchForAgents(BaseModel):
66-
hostname: str
67-
68-
zone_id: str
69-
70-
zone_name: str
71-
72-
7364
class Metadata(BaseModel):
7465
created_from_aisearch_wizard: Optional[bool] = None
7566

76-
search_for_agents: Optional[MetadataSearchForAgents] = None
77-
7867
worker_domain: Optional[str] = None
7968

8069

src/cloudflare/types/aisearch/namespaces/instance_create_params.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -214,19 +213,9 @@ class IndexingOptions(TypedDict, total=False):
214213
"""
215214

216215

217-
class MetadataSearchForAgents(TypedDict, total=False):
218-
hostname: Required[str]
219-
220-
zone_id: Required[str]
221-
222-
zone_name: Required[str]
223-
224-
225216
class Metadata(TypedDict, total=False):
226217
created_from_aisearch_wizard: bool
227218

228-
search_for_agents: MetadataSearchForAgents
229-
230219
worker_domain: str
231220

232221

src/cloudflare/types/aisearch/namespaces/instance_create_response.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"IndexMethod",
1616
"IndexingOptions",
1717
"Metadata",
18-
"MetadataSearchForAgents",
1918
"PublicEndpointParams",
2019
"PublicEndpointParamsChatCompletionsEndpoint",
2120
"PublicEndpointParamsMcp",
@@ -62,19 +61,9 @@ class IndexingOptions(BaseModel):
6261
"""
6362

6463

65-
class MetadataSearchForAgents(BaseModel):
66-
hostname: str
67-
68-
zone_id: str
69-
70-
zone_name: str
71-
72-
7364
class Metadata(BaseModel):
7465
created_from_aisearch_wizard: Optional[bool] = None
7566

76-
search_for_agents: Optional[MetadataSearchForAgents] = None
77-
7867
worker_domain: Optional[str] = None
7968

8069

0 commit comments

Comments
 (0)