feat(core): Add Data Store Backend API (no-changelog) (#17824)

This commit is contained in:
Charlie Kolb
2025-08-12 14:54:24 +02:00
committed by GitHub
parent d06581ef3f
commit 98dc71e6a7
48 changed files with 3491 additions and 30 deletions

View File

@@ -42,9 +42,10 @@ type EndpointGroup =
| 'evaluation'
| 'ai'
| 'folder'
| 'insights';
| 'insights'
| 'data-store';
type ModuleName = 'insights' | 'external-secrets';
type ModuleName = 'insights' | 'external-secrets' | 'data-store';
export interface SetupProps {
endpointGroups?: EndpointGroup[];