Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
223 changes: 209 additions & 14 deletions oas_docs/output/kibana.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"./oas_docs/output/kibana.yaml": 821,
"./oas_docs/output/kibana.yaml": 796,
"./oas_docs/output/kibana.serverless.yaml": 723
}
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,11 @@ export const CaseResponseProperties = lazySchema(() =>
duration: z.number().int().nullable(),
external_service: ExternalService,
id: z.string(),
/**
* A monotonically increasing number assigned to each case, unique per space. This value is generated asynchronously after the case is created and may not be present immediately in the response.

*/
incremental_id: z.number().int().nullable().optional(),
/**
* Observables attached to the case.
*/
Expand Down Expand Up @@ -1184,6 +1189,11 @@ export const CaseResponseGetCase = lazySchema(() =>
duration: z.number().int().nullable(),
external_service: ExternalService,
id: z.string(),
/**
* A monotonically increasing number assigned to each case, unique per space. This value is generated asynchronously after the case is created and may not be present immediately in the response.

*/
incremental_id: z.number().int().nullable().optional(),
/**
* Observables attached to the case.
*/
Expand Down Expand Up @@ -1720,16 +1730,21 @@ export const UserActionsFindResponseProperties = lazySchema(() =>
*/
type: z.enum([
'assignees',
'create_case',
'category',
'comment',
'connector',
'create_case',
'customFields',
'delete_case',
'description',
'extended_fields',
'observables',
'pushed',
'tags',
'title',
'status',
'settings',
'severity',
'status',
'tags',
'title',
]),
})
);
Expand Down
Loading
Loading