-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathNotifications.ts
More file actions
57 lines (44 loc) · 1.82 KB
/
Notifications.ts
File metadata and controls
57 lines (44 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2023-2025 The MathWorks, Inc.
enum Notification {
// Connection Status Updates
MatlabConnectionClientUpdate = 'matlab/connection/update/client',
MatlabConnectionServerUpdate = 'matlab/connection/update/server',
// Errors
MatlabLaunchFailed = 'matlab/launchfailed',
MatlabFeatureUnavailable = 'feature/needsmatlab',
MatlabFeatureUnavailableNoMatlab = 'feature/needsmatlab/nomatlab',
// MATLAB Version Deprecation
MatlabVersionDeprecation = 'matlab/version/deprecation',
// Execution
MatlabRequestInstance = 'matlab/request',
TerminalCompletionRequest = 'TerminalCompletionRequest',
TerminalCompletionResponse = 'TerminalCompletionResponse',
MVMEvalRequest = 'evalRequest',
MVMEvalComplete = 'evalResponse',
MVMFevalRequest = 'fevalRequest',
MVMFevalComplete = 'fevalResponse',
MVMSetBreakpointRequest = 'setBreakpointRequest',
MVMSetBreakpointComplete = 'setBreakpointResponse',
MVMClearBreakpointRequest = 'clearBreakpointRequest',
MVMClearBreakpointComplete = 'clearBreakpointResponse',
MVMText = 'text',
MVMClc = 'clc',
MVMPromptChange = 'mvmPromptChange',
MVMInterruptRequest = 'interruptRequest',
MVMUnpauseRequest = 'unpauseRequest',
MVMStateChange = 'mvmStateChange',
DebuggingStateChange = 'DebuggingStateChange',
DebugAdaptorRequest = 'DebugAdaptorRequest',
DebugAdaptorResponse = 'DebugAdaptorResponse',
DebugAdaptorEvent = 'DebugAdaptorEvent',
// Telemetry
LogTelemetryData = 'telemetry/logdata',
// Sections generated for Section Styling
MatlabSections = 'matlab/sections',
// Licensing
LicensingServerUrl = 'licensing/server/url',
LicensingData = 'licensing/data',
LicensingDelete = 'licensing/delete',
LicensingError = 'licensing/error'
}
export default Notification