Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
0a823a0
[DOCS] Add missing property in Security APIs
lcawl Oct 28, 2025
207636a
Merge branch 'main' into oas-security
lcawl Oct 28, 2025
f1e1102
Changes from yarn openapi:bundle
kibanamachine Oct 28, 2025
ff4e914
Changes from make api-docs
kibanamachine Oct 28, 2025
81eebdc
Changes from node scripts/capture_oas_snapshot --include-path /api/…
kibanamachine Oct 28, 2025
ff33d32
Changes from yarn openapi:generate
kibanamachine Oct 28, 2025
1ab5709
Merge branch 'main' into oas-security
lcawl Oct 30, 2025
41d5a67
Changes from node scripts/capture_oas_snapshot --include-path /api/…
kibanamachine Oct 30, 2025
c2d736d
Merge branch 'main' into oas-security
lcawl Nov 3, 2025
bf184dc
Merge branch 'main' into oas-security
lcawl Nov 3, 2025
de7331a
Changes from node scripts/capture_oas_snapshot --include-path /api/…
kibanamachine Nov 3, 2025
56fa470
Merge branch 'main' into oas-security
lcawl Nov 4, 2025
20f0e15
Add path variation
lcawl Nov 4, 2025
6f1e030
Add schema references
lcawl Nov 4, 2025
9ba1d47
Changes from node scripts/capture_oas_snapshot --include-path /api/…
kibanamachine Nov 4, 2025
e3fbe7e
Changes from yarn openapi:bundle
kibanamachine Nov 4, 2025
44ae78b
Changes from make api-docs
kibanamachine Nov 4, 2025
84b761a
Remove parameter references for bundling
lcawl Nov 4, 2025
8f19ee3
Generate crud_kb_route.gen.ts
lcawl Nov 4, 2025
711f4ac
Merge branch 'main' into oas-security
lcawl Nov 6, 2025
1822f94
Address CI failure in use_knowledge_base_status.tsx
lcawl Nov 6, 2025
9852ee5
Add examples
lcawl Nov 6, 2025
6f2ad19
Remove refs
lcawl Nov 6, 2025
4666d56
Generate bundle
lcawl Nov 6, 2025
e4c2c22
Merge branch 'main' into oas-security
lcawl Nov 6, 2025
b2110fb
Regenerate Kibana OpenAPI output
lcawl Nov 6, 2025
597b755
Merge branch 'main' into oas-security
lcawl Nov 6, 2025
43a70c0
Changes from node scripts/capture_oas_snapshot --include-path /api/…
kibanamachine Nov 6, 2025
09a814b
Update constants.ts and api.tsx
lcawl Nov 10, 2025
b893303
Merge branch 'main' into oas-security
lcawl Nov 10, 2025
a8604bd
Changes from node scripts/eslint_all_files --no-cache --fix
kibanamachine Nov 10, 2025
4df815e
Address CI error in use_setup_knowledge_base.tsx
lcawl Nov 11, 2025
97919a2
Fix get_kb_resource.test.ts
lcawl Nov 12, 2025
87a823a
Merge branch 'main' into oas-security
lcawl Nov 12, 2025
3982320
Changes from node scripts/capture_oas_snapshot --include-path /api/…
kibanamachine Nov 12, 2025
c37dae6
Clean up types and revert to a single route constant
spong Nov 15, 2025
4093e05
Merge branch 'main' of github.com:elastic/kibana into oas-security
spong Nov 15, 2025
97b34b7
Revert formatting style change
spong Nov 15, 2025
2b4eea0
Merge branch 'main' into oas-security
spong Nov 17, 2025
bf539b8
Merge branch 'main' into oas-security
spong Nov 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions oas_docs/output/kibana.serverless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49365,6 +49365,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
responses:
Expand Down Expand Up @@ -49436,6 +49437,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
- description: ELSER modelId to use when setting up the Knowledge Base. If not provided, a default model will be used.
Expand Down
2 changes: 2 additions & 0 deletions oas_docs/output/kibana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55484,6 +55484,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
responses:
Expand Down Expand Up @@ -55562,6 +55563,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
- description: ELSER modelId to use when setting up the Knowledge Base. If not provided, a default model will be used.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"./oas_docs/output/kibana.yaml": 1523,
"./oas_docs/output/kibana.serverless.yaml": 1469
"./oas_docs/output/kibana.yaml": 1515,
"./oas_docs/output/kibana.serverless.yaml": 1461
}
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
responses:
Expand Down Expand Up @@ -942,6 +943,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
- description: >-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
responses:
Expand Down Expand Up @@ -942,6 +943,7 @@ paths:
example: kb12345
in: path
name: resource
required: true
schema:
type: string
- description: >-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const CreateKnowledgeBaseRequestParams = z.object({
/**
* The KnowledgeBase `resource` value.
*/
resource: z.string().optional(),
resource: z.string(),
});
export type CreateKnowledgeBaseRequestParamsInput = z.input<
typeof CreateKnowledgeBaseRequestParams
Expand All @@ -60,7 +60,7 @@ export const ReadKnowledgeBaseRequestParams = z.object({
/**
* The KnowledgeBase `resource` value.
*/
resource: z.string().optional(),
resource: z.string(),
});
export type ReadKnowledgeBaseRequestParamsInput = z.input<typeof ReadKnowledgeBaseRequestParams>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ paths:
schema:
type: string
example: "kb12345"
required: true
- name: modelId
in: query
description: ELSER modelId to use when setting up the Knowledge Base. If not provided, a default model will be used.
Expand Down Expand Up @@ -75,6 +76,7 @@ paths:
schema:
type: string
example: "kb12345"
required: true
responses:
200:
description: Indicates a successful call.
Expand Down