Skip to content

Commit d50cd95

Browse files
committed
update TS too
1 parent 8374b20 commit d50cd95

File tree

5 files changed

+94
-27
lines changed

5 files changed

+94
-27
lines changed

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 59 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 23 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_json_spec/project.tags.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,20 @@
77
"stability": "stable",
88
"visibility": "public",
99
"headers": {
10-
"accept": [
11-
"application/json"
12-
]
10+
"accept": ["application/json"]
1311
},
1412
"url": {
1513
"paths": [
1614
{
1715
"path": "/_project/tags",
18-
"methods": [
19-
"GET",
20-
"POST"
21-
]
16+
"methods": ["GET", "POST"]
2217
}
2318
]
2419
},
2520
"params": {
2621
"project_routing": {
2722
"type": "string",
28-
"description": "A Lucene query using project metadata tags to limit which projects to search, such as _alias:_origin or _alias:*pr*. Only supported in serverless."
23+
"description": "A Lucene query using project metadata tags to limit which projects to search, such as _alias:_origin or _alias:*pr*."
2924
}
3025
}
3126
}

specification/project/tags/TagsRequest.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,14 @@ export interface Request extends RequestBase {
3333
urls: [
3434
{
3535
path: '/_project/tags'
36-
methods: ['GET']
36+
methods: ['GET', 'POST']
3737
}
3838
]
39+
query_parameters: {
40+
/**
41+
* A Lucene query using project metadata tags to limit which projects to search, such as _alias:_origin or _alias:*pr*.
42+
* @availability serverless stability=experimental visibility=public
43+
*/
44+
project_routing?: string
45+
}
3946
}

0 commit comments

Comments
 (0)