Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import { SparqlConnection } from "@src/languages/sparql/services/sparql-connection";
import { AuthCredential, MicrosoftAuthCredential } from '@src/services/core/credential';
import { ExecuteCommandMessage } from '../webview-messaging';
export type SparqlConnectionMessages =
ExecuteCommandMessage |
{ id: 'SaveSparqlConnection', connection: SparqlConnection, credential: AuthCredential | null } |
{ id: 'UpdateSparqlConnection', connection: SparqlConnection } |
{ id: 'DeleteSparqlConnection', connectionId: string } |
{ id: 'GetSparqlConnection' } |
{ id: 'GetSparqlConnectionResult', connection: SparqlConnection } |
{ id: 'GetSparqlConnectionCredential', connectionId: string } |
{ id: 'GetSparqlConnectionCredentialResult', connectionId: string, credential: AuthCredential | undefined } |
{ id: 'FetchMicrosoftAuthCredential', connectionId: string, scopes: string[] } |
{ id: 'FetchMicrosoftAuthCredentialResult', connectionId: string, credential: MicrosoftAuthCredential | null } |
{ id: 'TestSparqlConnection', connection: SparqlConnection, credential: AuthCredential | null } |
{ id: 'TestSparqlConnectionResult', error: { code: number, message: string } | null } |
{ id: 'GetInferenceFeatureEnabled' } |
{ id: 'GetInferenceFeatureEnabledResult', value: boolean } |
{ id: 'ToggleSparqlConnectionInference', connectionId: string } |
{ id: 'ToggleSparqlConnectionInferenceResult', connectionId: string, inferenceEnabled: boolean }; |