Datalayer VS Code Extension - v0.0.14
    Preparing search index...

    Tree data provider for the Datalayer Settings view. Implements VS Code's TreeDataProvider interface to display secrets and datasources in separate collapsible sections.

    const provider = new SettingsTreeProvider(authProvider);
    provider.refresh(); // Refresh entire tree

    Implements

    Index

    Constructors

    Properties

    _onDidChangeTreeData: EventEmitter<void | SettingsTreeItem> = ...
    authService: SDKAuthProvider
    datasourcesCache: DatasourceDTO[] = []
    onDidChangeTreeData: Event<void | SettingsTreeItem> = ...

    An optional event to signal that an element or root has changed. This will trigger the view to update the changed element/root and its children recursively (if shown). To signal that root has changed, do not pass any argument or pass undefined or null.

    secretsCache: SecretDTO[] = []

    Methods