Skip to content

Commit e20c138

Browse files
committed
chore(aisearch): update generated types, remove unused tests
1 parent 7ff4adf commit e20c138

16 files changed

Lines changed: 0 additions & 194 deletions

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

src/cloudflare/types/aisearch/namespaces/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

0 commit comments

Comments
 (0)