Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Entity Analytics] Ensuring definition transforms are managed #193408

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ paths:
type: string
required:
- note
description: 'The note to add or update, along with additional metadata.'
description: The note to add or update, along with additional metadata.
required: true
responses:
'200':
Expand Down Expand Up @@ -185,7 +185,7 @@ paths:
required:
- eventId
- timelineId
description: 'The pinned event to add or update, along with additional metadata.'
description: The pinned event to add or update, along with additional metadata.
required: true
responses:
'200':
Expand Down Expand Up @@ -321,7 +321,7 @@ paths:
- timelineId
- version
- timeline
description: 'The Timeline updates, along with the Timeline ID and version.'
description: The Timeline updates, along with the Timeline ID and version.
required: true
responses:
'200':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ paths:
type: string
required:
- note
description: 'The note to add or update, along with additional metadata.'
description: The note to add or update, along with additional metadata.
required: true
responses:
'200':
Expand Down Expand Up @@ -185,7 +185,7 @@ paths:
required:
- eventId
- timelineId
description: 'The pinned event to add or update, along with additional metadata.'
description: The pinned event to add or update, along with additional metadata.
required: true
responses:
'200':
Expand Down Expand Up @@ -321,7 +321,7 @@ paths:
- timelineId
- version
- timeline
description: 'The Timeline updates, along with the Timeline ID and version.'
description: The Timeline updates, along with the Timeline ID and version.
required: true
responses:
'200':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export const HOST_ENTITY_DEFINITION: EntityDefinition = entityDefinitionSchema.p
interval: '1m',
},
version: '1.0.0',
managed: true,
});

export const USER_ENTITY_DEFINITION: EntityDefinition = entityDefinitionSchema.parse({
Expand All @@ -53,4 +54,5 @@ export const USER_ENTITY_DEFINITION: EntityDefinition = entityDefinitionSchema.p
interval: '1m',
},
version: '1.0.0',
managed: true,
});