@omniviewdev/runtime 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/dist/Client-DGdSmmVk.js +585 -0
- package/dist/Client-ES-O5dCV.cjs +1 -0
- package/dist/api.cjs +1 -0
- package/dist/api.d.ts +13 -0
- package/dist/api.js +120 -0
- package/dist/context/drawer/BottomDrawerContext.d.ts +20 -0
- package/dist/context/drawer/RightDrawerContext.d.ts +15 -0
- package/dist/context/drawer/index.d.ts +3 -0
- package/dist/context/drawer/types.d.ts +222 -0
- package/dist/context/index.d.ts +5 -0
- package/dist/context/modal/ConfirmationModalContext.d.ts +12 -0
- package/dist/context/modal/index.d.ts +1 -0
- package/dist/context/operations/OperationsContext.d.ts +27 -0
- package/dist/context/plugins/PluginContext.d.ts +9 -0
- package/dist/context/plugins/PluginContextProvider.d.ts +5 -0
- package/dist/context/plugins/index.d.ts +3 -0
- package/dist/context/plugins/usePluginContext.d.ts +3 -0
- package/dist/context/settings/SettingsContext.d.ts +9 -0
- package/dist/context/settings/index.d.ts +1 -0
- package/dist/errors/index.d.ts +3 -0
- package/dist/errors/parseAppError.d.ts +51 -0
- package/dist/errors/parseAppError.test.d.ts +1 -0
- package/dist/errors/types.d.ts +40 -0
- package/dist/extensions/index.d.ts +2 -0
- package/dist/extensions/points/resource/helpers.d.ts +19 -0
- package/dist/extensions/points/resource/types.d.ts +6 -0
- package/dist/extensions/provider.d.ts +18 -0
- package/dist/extensions/registry.d.ts +30 -0
- package/dist/extensions/utils.d.ts +4 -0
- package/dist/hooks/connection/index.d.ts +4 -0
- package/dist/hooks/connection/useConnection.d.ts +37 -0
- package/dist/hooks/connection/useConnectionNamespaces.d.ts +20 -0
- package/dist/hooks/connection/useConnectionStatus.d.ts +29 -0
- package/dist/hooks/connection/useConnections.d.ts +18 -0
- package/dist/hooks/data/index.d.ts +1 -0
- package/dist/hooks/data/usePluginData.d.ts +11 -0
- package/dist/hooks/drawer/index.d.ts +2 -0
- package/dist/hooks/drawer/useBottomDrawer.d.ts +1 -0
- package/dist/hooks/drawer/useRightDrawer.d.ts +5 -0
- package/dist/hooks/exec/index.d.ts +1 -0
- package/dist/hooks/exec/useExecSession.d.ts +21 -0
- package/dist/hooks/index.d.ts +13 -0
- package/dist/hooks/logs/index.d.ts +1 -0
- package/dist/hooks/logs/useLogSession.d.ts +21 -0
- package/dist/hooks/metric/index.d.ts +3 -0
- package/dist/hooks/metric/useMetricProviders.d.ts +9 -0
- package/dist/hooks/metric/useMetricStream.d.ts +40 -0
- package/dist/hooks/metric/useResourceMetrics.d.ts +46 -0
- package/dist/hooks/modal/index.d.ts +1 -0
- package/dist/hooks/modal/useConfirmationModal.d.ts +5 -0
- package/dist/hooks/networker/index.d.ts +3 -0
- package/dist/hooks/networker/types.d.ts +50 -0
- package/dist/hooks/networker/usePortForwardSessions.d.ts +13 -0
- package/dist/hooks/networker/useResourcePortForwarder.d.ts +21 -0
- package/dist/hooks/operations/useOperations.d.ts +1 -0
- package/dist/hooks/resource/index.d.ts +13 -0
- package/dist/hooks/resource/useActiveSyncs.d.ts +16 -0
- package/dist/hooks/resource/useEditorSchemas.d.ts +22 -0
- package/dist/hooks/resource/useInformerState.d.ts +24 -0
- package/dist/hooks/resource/useResource.d.ts +74 -0
- package/dist/hooks/resource/useResourceActions.d.ts +69 -0
- package/dist/hooks/resource/useResourceAreaComponent.d.ts +9 -0
- package/dist/hooks/resource/useResourceGroups.d.ts +22 -0
- package/dist/hooks/resource/useResourceMutations.d.ts +58 -0
- package/dist/hooks/resource/useResourceSearch.d.ts +36 -0
- package/dist/hooks/resource/useResourceType.d.ts +22 -0
- package/dist/hooks/resource/useResourceTypes.d.ts +22 -0
- package/dist/hooks/resource/useResources.d.ts +73 -0
- package/dist/hooks/resource/useStreamAction.d.ts +21 -0
- package/dist/hooks/settings/index.d.ts +1 -0
- package/dist/hooks/settings/useSettings.d.ts +2 -0
- package/dist/hooks/snackbar/index.d.ts +1 -0
- package/dist/hooks/snackbar/useSnackbar.d.ts +24 -0
- package/dist/hooks/useResolvedPluginId.d.ts +8 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2593 -0
- package/dist/models.cjs +1 -0
- package/dist/models.d.ts +1 -0
- package/dist/models.js +1915 -0
- package/dist/router/Link.d.ts +24 -0
- package/dist/router/index.d.ts +11 -0
- package/dist/router/usePluginRouter.d.ts +40 -0
- package/dist/runtime.cjs +1 -0
- package/dist/runtime.d.ts +1 -0
- package/dist/runtime.js +215 -0
- package/dist/types/app.d.ts +73 -0
- package/dist/types/extensions.d.ts +186 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/informer.d.ts +49 -0
- package/dist/types/plugin.d.ts +5 -0
- package/dist/utils/activeSyncAggregator.d.ts +29 -0
- package/dist/utils/activeSyncAggregator.test.d.ts +1 -0
- package/dist/wailsjs/go/data/Client.d.ts +10 -0
- package/dist/wailsjs/go/devserver/DevServerManager.d.ts +22 -0
- package/dist/wailsjs/go/diagnostics/DiagnosticsClient.d.ts +18 -0
- package/dist/wailsjs/go/exec/Client.d.ts +26 -0
- package/dist/wailsjs/go/logs/Client.d.ts +16 -0
- package/dist/wailsjs/go/main/App.d.ts +8 -0
- package/dist/wailsjs/go/metric/Client.d.ts +12 -0
- package/dist/wailsjs/go/models.d.ts +894 -0
- package/dist/wailsjs/go/networker/Client.d.ts +14 -0
- package/dist/wailsjs/go/plugin/pluginManager.d.ts +52 -0
- package/dist/wailsjs/go/resource/Client.d.ts +68 -0
- package/dist/wailsjs/go/settings/Client.d.ts +14 -0
- package/dist/wailsjs/go/settings/provider.d.ts +46 -0
- package/dist/wailsjs/go/ui/Client.d.ts +6 -0
- package/dist/wailsjs/go/utils/Client.d.ts +2 -0
- package/dist/wailsjs/runtime/runtime.d.ts +249 -0
- package/package.json +68 -0
|
@@ -0,0 +1,894 @@
|
|
|
1
|
+
export declare namespace config {
|
|
2
|
+
class PluginAuthor {
|
|
3
|
+
name: string;
|
|
4
|
+
email: string;
|
|
5
|
+
url: string;
|
|
6
|
+
static createFrom(source?: any): PluginAuthor;
|
|
7
|
+
constructor(source?: any);
|
|
8
|
+
}
|
|
9
|
+
class PluginResourceComponent {
|
|
10
|
+
name: string;
|
|
11
|
+
plugin: string;
|
|
12
|
+
area: string;
|
|
13
|
+
resources: string[];
|
|
14
|
+
extension: string;
|
|
15
|
+
static createFrom(source?: any): PluginResourceComponent;
|
|
16
|
+
constructor(source?: any);
|
|
17
|
+
}
|
|
18
|
+
class PluginComponents {
|
|
19
|
+
resource: PluginResourceComponent[];
|
|
20
|
+
static createFrom(source?: any): PluginComponents;
|
|
21
|
+
constructor(source?: any);
|
|
22
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
23
|
+
}
|
|
24
|
+
class PluginMaintainer {
|
|
25
|
+
name: string;
|
|
26
|
+
email: string;
|
|
27
|
+
static createFrom(source?: any): PluginMaintainer;
|
|
28
|
+
constructor(source?: any);
|
|
29
|
+
}
|
|
30
|
+
class PluginThemeColors {
|
|
31
|
+
primary: string;
|
|
32
|
+
secondary: string;
|
|
33
|
+
tertiary: string;
|
|
34
|
+
static createFrom(source?: any): PluginThemeColors;
|
|
35
|
+
constructor(source?: any);
|
|
36
|
+
}
|
|
37
|
+
class PluginTheme {
|
|
38
|
+
colors: PluginThemeColors;
|
|
39
|
+
static createFrom(source?: any): PluginTheme;
|
|
40
|
+
constructor(source?: any);
|
|
41
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
42
|
+
}
|
|
43
|
+
class PluginMeta {
|
|
44
|
+
id: string;
|
|
45
|
+
version: string;
|
|
46
|
+
name: string;
|
|
47
|
+
icon: string;
|
|
48
|
+
icon_url: string;
|
|
49
|
+
description: string;
|
|
50
|
+
repository: string;
|
|
51
|
+
website: string;
|
|
52
|
+
category: string;
|
|
53
|
+
license: string;
|
|
54
|
+
author?: PluginAuthor;
|
|
55
|
+
maintainers: PluginMaintainer[];
|
|
56
|
+
tags: string[];
|
|
57
|
+
dependencies: string[];
|
|
58
|
+
capabilities: string[];
|
|
59
|
+
theme: PluginTheme;
|
|
60
|
+
components: PluginComponents;
|
|
61
|
+
static createFrom(source?: any): PluginMeta;
|
|
62
|
+
constructor(source?: any);
|
|
63
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export declare namespace devserver {
|
|
67
|
+
class DevInfoFile {
|
|
68
|
+
pid: number;
|
|
69
|
+
protocol: string;
|
|
70
|
+
protocolVersion: number;
|
|
71
|
+
addr: string;
|
|
72
|
+
vitePort?: number;
|
|
73
|
+
pluginId?: string;
|
|
74
|
+
version?: string;
|
|
75
|
+
startedAt?: string;
|
|
76
|
+
static createFrom(source?: any): DevInfoFile;
|
|
77
|
+
constructor(source?: any);
|
|
78
|
+
}
|
|
79
|
+
class DevServerManager {
|
|
80
|
+
static createFrom(source?: any): DevServerManager;
|
|
81
|
+
constructor(source?: any);
|
|
82
|
+
}
|
|
83
|
+
class DevServerState {
|
|
84
|
+
pluginID: string;
|
|
85
|
+
mode: string;
|
|
86
|
+
devPath: string;
|
|
87
|
+
vitePort: number;
|
|
88
|
+
viteURL: string;
|
|
89
|
+
viteStatus: string;
|
|
90
|
+
goStatus: string;
|
|
91
|
+
lastBuildDuration: number;
|
|
92
|
+
lastBuildTime: time.Time;
|
|
93
|
+
lastError: string;
|
|
94
|
+
grpcConnected: boolean;
|
|
95
|
+
static createFrom(source?: any): DevServerState;
|
|
96
|
+
constructor(source?: any);
|
|
97
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
98
|
+
}
|
|
99
|
+
class LogEntry {
|
|
100
|
+
timestamp: time.Time;
|
|
101
|
+
source: string;
|
|
102
|
+
level: string;
|
|
103
|
+
message: string;
|
|
104
|
+
pluginID: string;
|
|
105
|
+
static createFrom(source?: any): LogEntry;
|
|
106
|
+
constructor(source?: any);
|
|
107
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
export declare namespace exec {
|
|
111
|
+
class Session {
|
|
112
|
+
created_at: time.Time;
|
|
113
|
+
labels: Record<string, string>;
|
|
114
|
+
params: Record<string, string>;
|
|
115
|
+
id: string;
|
|
116
|
+
command: string[];
|
|
117
|
+
attached: boolean;
|
|
118
|
+
static createFrom(source?: any): Session;
|
|
119
|
+
constructor(source?: any);
|
|
120
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
121
|
+
}
|
|
122
|
+
class AttachSessionResult {
|
|
123
|
+
session?: Session;
|
|
124
|
+
buffer: string;
|
|
125
|
+
static createFrom(source?: any): AttachSessionResult;
|
|
126
|
+
constructor(source?: any);
|
|
127
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
128
|
+
}
|
|
129
|
+
class CreateTerminalOptions {
|
|
130
|
+
labels: Record<string, string>;
|
|
131
|
+
command: string[];
|
|
132
|
+
static createFrom(source?: any): CreateTerminalOptions;
|
|
133
|
+
constructor(source?: any);
|
|
134
|
+
}
|
|
135
|
+
class Handler {
|
|
136
|
+
plugin: string;
|
|
137
|
+
resource: string;
|
|
138
|
+
target_builder: types.ActionTargetBuilder;
|
|
139
|
+
default_command: string[];
|
|
140
|
+
static createFrom(source?: any): Handler;
|
|
141
|
+
constructor(source?: any);
|
|
142
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
143
|
+
}
|
|
144
|
+
class SessionOptions {
|
|
145
|
+
params: Record<string, string>;
|
|
146
|
+
labels: Record<string, string>;
|
|
147
|
+
id: string;
|
|
148
|
+
resource_plugin: string;
|
|
149
|
+
resource_key: string;
|
|
150
|
+
resource_data: Record<string, any>;
|
|
151
|
+
command: string[];
|
|
152
|
+
tty: boolean;
|
|
153
|
+
static createFrom(source?: any): SessionOptions;
|
|
154
|
+
constructor(source?: any);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
export declare namespace logs {
|
|
158
|
+
class LogSessionOptions {
|
|
159
|
+
target: string;
|
|
160
|
+
follow: boolean;
|
|
161
|
+
include_previous: boolean;
|
|
162
|
+
include_timestamps: boolean;
|
|
163
|
+
tail_lines: number;
|
|
164
|
+
since_seconds: number;
|
|
165
|
+
since_time?: time.Time;
|
|
166
|
+
limit_bytes: number;
|
|
167
|
+
include_source_events: boolean;
|
|
168
|
+
params: Record<string, string>;
|
|
169
|
+
static createFrom(source?: any): LogSessionOptions;
|
|
170
|
+
constructor(source?: any);
|
|
171
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
172
|
+
}
|
|
173
|
+
class CreateSessionOptions {
|
|
174
|
+
resource_key: string;
|
|
175
|
+
resource_id: string;
|
|
176
|
+
resource_data: Record<string, any>;
|
|
177
|
+
options: LogSessionOptions;
|
|
178
|
+
static createFrom(source?: any): CreateSessionOptions;
|
|
179
|
+
constructor(source?: any);
|
|
180
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
181
|
+
}
|
|
182
|
+
class Handler {
|
|
183
|
+
plugin: string;
|
|
184
|
+
resource: string;
|
|
185
|
+
target_builder: types.ActionTargetBuilder;
|
|
186
|
+
static createFrom(source?: any): Handler;
|
|
187
|
+
constructor(source?: any);
|
|
188
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
189
|
+
}
|
|
190
|
+
class LogSource {
|
|
191
|
+
id: string;
|
|
192
|
+
labels: Record<string, string>;
|
|
193
|
+
static createFrom(source?: any): LogSource;
|
|
194
|
+
constructor(source?: any);
|
|
195
|
+
}
|
|
196
|
+
class LogSession {
|
|
197
|
+
id: string;
|
|
198
|
+
plugin_id: string;
|
|
199
|
+
connection_id: string;
|
|
200
|
+
resource_key: string;
|
|
201
|
+
resource_id: string;
|
|
202
|
+
options: LogSessionOptions;
|
|
203
|
+
status: number;
|
|
204
|
+
active_sources: LogSource[];
|
|
205
|
+
created_at: time.Time;
|
|
206
|
+
static createFrom(source?: any): LogSession;
|
|
207
|
+
constructor(source?: any);
|
|
208
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
export declare namespace main {
|
|
212
|
+
class FileFilter {
|
|
213
|
+
displayName: string;
|
|
214
|
+
pattern: string;
|
|
215
|
+
static createFrom(source?: any): FileFilter;
|
|
216
|
+
constructor(source?: any);
|
|
217
|
+
}
|
|
218
|
+
class FileDialogOptions {
|
|
219
|
+
defaultDirectory: string;
|
|
220
|
+
defaultFilename: string;
|
|
221
|
+
title: string;
|
|
222
|
+
filters: FileFilter[];
|
|
223
|
+
showHiddenFiles: boolean;
|
|
224
|
+
canCreateDirectories: boolean;
|
|
225
|
+
resolvesAliases: boolean;
|
|
226
|
+
treatPackagesAsDirectories: boolean;
|
|
227
|
+
static createFrom(source?: any): FileDialogOptions;
|
|
228
|
+
constructor(source?: any);
|
|
229
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
export declare namespace metric {
|
|
233
|
+
class AggregateValue {
|
|
234
|
+
metric_id: string;
|
|
235
|
+
min: number;
|
|
236
|
+
max: number;
|
|
237
|
+
avg: number;
|
|
238
|
+
sum: number;
|
|
239
|
+
p50: number;
|
|
240
|
+
p90: number;
|
|
241
|
+
p99: number;
|
|
242
|
+
count: number;
|
|
243
|
+
window: number;
|
|
244
|
+
labels: Record<string, string>;
|
|
245
|
+
static createFrom(source?: any): AggregateValue;
|
|
246
|
+
constructor(source?: any);
|
|
247
|
+
}
|
|
248
|
+
class ColorRange {
|
|
249
|
+
min: number;
|
|
250
|
+
max: number;
|
|
251
|
+
color: string;
|
|
252
|
+
static createFrom(source?: any): ColorRange;
|
|
253
|
+
constructor(source?: any);
|
|
254
|
+
}
|
|
255
|
+
class CurrentValue {
|
|
256
|
+
metric_id: string;
|
|
257
|
+
value: number;
|
|
258
|
+
timestamp: time.Time;
|
|
259
|
+
labels: Record<string, string>;
|
|
260
|
+
static createFrom(source?: any): CurrentValue;
|
|
261
|
+
constructor(source?: any);
|
|
262
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
263
|
+
}
|
|
264
|
+
class DataPoint {
|
|
265
|
+
timestamp: time.Time;
|
|
266
|
+
value: number;
|
|
267
|
+
labels: Record<string, string>;
|
|
268
|
+
static createFrom(source?: any): DataPoint;
|
|
269
|
+
constructor(source?: any);
|
|
270
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
271
|
+
}
|
|
272
|
+
class MetricDescriptor {
|
|
273
|
+
id: string;
|
|
274
|
+
name: string;
|
|
275
|
+
unit: number;
|
|
276
|
+
icon: string;
|
|
277
|
+
color_ranges: ColorRange[];
|
|
278
|
+
format_string: string;
|
|
279
|
+
supported_shapes: number[];
|
|
280
|
+
chart_group: string;
|
|
281
|
+
static createFrom(source?: any): MetricDescriptor;
|
|
282
|
+
constructor(source?: any);
|
|
283
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
284
|
+
}
|
|
285
|
+
class Handler {
|
|
286
|
+
resource: string;
|
|
287
|
+
metrics: MetricDescriptor[];
|
|
288
|
+
static createFrom(source?: any): Handler;
|
|
289
|
+
constructor(source?: any);
|
|
290
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
291
|
+
}
|
|
292
|
+
class MetricProviderSummary {
|
|
293
|
+
plugin_id: string;
|
|
294
|
+
provider_id: string;
|
|
295
|
+
name: string;
|
|
296
|
+
icon: string;
|
|
297
|
+
description: string;
|
|
298
|
+
handlers: Handler[];
|
|
299
|
+
static createFrom(source?: any): MetricProviderSummary;
|
|
300
|
+
constructor(source?: any);
|
|
301
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
302
|
+
}
|
|
303
|
+
class TimeSeries {
|
|
304
|
+
metric_id: string;
|
|
305
|
+
data_points: DataPoint[];
|
|
306
|
+
labels: Record<string, string>;
|
|
307
|
+
static createFrom(source?: any): TimeSeries;
|
|
308
|
+
constructor(source?: any);
|
|
309
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
310
|
+
}
|
|
311
|
+
class MetricResult {
|
|
312
|
+
time_series?: TimeSeries;
|
|
313
|
+
current_value?: CurrentValue;
|
|
314
|
+
aggregate_value?: AggregateValue;
|
|
315
|
+
static createFrom(source?: any): MetricResult;
|
|
316
|
+
constructor(source?: any);
|
|
317
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
318
|
+
}
|
|
319
|
+
class QueryRequest {
|
|
320
|
+
resource_key: string;
|
|
321
|
+
resource_id: string;
|
|
322
|
+
resource_namespace: string;
|
|
323
|
+
resource_data: Record<string, any>;
|
|
324
|
+
metric_ids: string[];
|
|
325
|
+
shape: number;
|
|
326
|
+
start_time: time.Time;
|
|
327
|
+
end_time: time.Time;
|
|
328
|
+
step: number;
|
|
329
|
+
params: Record<string, string>;
|
|
330
|
+
static createFrom(source?: any): QueryRequest;
|
|
331
|
+
constructor(source?: any);
|
|
332
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
333
|
+
}
|
|
334
|
+
class QueryResponse {
|
|
335
|
+
success: boolean;
|
|
336
|
+
results: MetricResult[];
|
|
337
|
+
error: string;
|
|
338
|
+
static createFrom(source?: any): QueryResponse;
|
|
339
|
+
constructor(source?: any);
|
|
340
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
341
|
+
}
|
|
342
|
+
class SubscribeRequest {
|
|
343
|
+
resource_key: string;
|
|
344
|
+
resource_id: string;
|
|
345
|
+
resource_namespace: string;
|
|
346
|
+
resource_data: Record<string, any>;
|
|
347
|
+
metric_ids: string[];
|
|
348
|
+
interval: number;
|
|
349
|
+
static createFrom(source?: any): SubscribeRequest;
|
|
350
|
+
constructor(source?: any);
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
export declare namespace networker {
|
|
354
|
+
class FindPortForwardSessionRequest {
|
|
355
|
+
resource_id: string;
|
|
356
|
+
connection_id: string;
|
|
357
|
+
static createFrom(source?: any): FindPortForwardSessionRequest;
|
|
358
|
+
constructor(source?: any);
|
|
359
|
+
}
|
|
360
|
+
class PortForwardSessionEncryption {
|
|
361
|
+
algorithm: string;
|
|
362
|
+
key: string;
|
|
363
|
+
enabled: boolean;
|
|
364
|
+
static createFrom(source?: any): PortForwardSessionEncryption;
|
|
365
|
+
constructor(source?: any);
|
|
366
|
+
}
|
|
367
|
+
class PortForwardSession {
|
|
368
|
+
created_at: time.Time;
|
|
369
|
+
updated_at: time.Time;
|
|
370
|
+
connection: any;
|
|
371
|
+
labels: Record<string, string>;
|
|
372
|
+
id: string;
|
|
373
|
+
protocol: string;
|
|
374
|
+
state: string;
|
|
375
|
+
connection_type: string;
|
|
376
|
+
encryption: PortForwardSessionEncryption;
|
|
377
|
+
local_port: number;
|
|
378
|
+
remote_port: number;
|
|
379
|
+
static createFrom(source?: any): PortForwardSession;
|
|
380
|
+
constructor(source?: any);
|
|
381
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
382
|
+
}
|
|
383
|
+
class PortForwardSessionOptions {
|
|
384
|
+
connection: any;
|
|
385
|
+
labels: Record<string, string>;
|
|
386
|
+
params: Record<string, string>;
|
|
387
|
+
protocol: string;
|
|
388
|
+
connection_type: string;
|
|
389
|
+
encryption: PortForwardSessionEncryption;
|
|
390
|
+
local_port: number;
|
|
391
|
+
remote_port: number;
|
|
392
|
+
static createFrom(source?: any): PortForwardSessionOptions;
|
|
393
|
+
constructor(source?: any);
|
|
394
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
export declare namespace plugin {
|
|
398
|
+
class LoadPluginOptions {
|
|
399
|
+
DevMode: boolean;
|
|
400
|
+
DevModePath: string;
|
|
401
|
+
ExistingState?: types.PluginState;
|
|
402
|
+
static createFrom(source?: any): LoadPluginOptions;
|
|
403
|
+
constructor(source?: any);
|
|
404
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
export declare namespace registry {
|
|
408
|
+
class AvailablePlugin {
|
|
409
|
+
id: string;
|
|
410
|
+
name: string;
|
|
411
|
+
description: string;
|
|
412
|
+
icon_url: string;
|
|
413
|
+
category: string;
|
|
414
|
+
tags: string[];
|
|
415
|
+
license: string;
|
|
416
|
+
official: boolean;
|
|
417
|
+
featured: boolean;
|
|
418
|
+
download_count: number;
|
|
419
|
+
average_rating: number;
|
|
420
|
+
review_count: number;
|
|
421
|
+
repository: string;
|
|
422
|
+
url: string;
|
|
423
|
+
installed: boolean;
|
|
424
|
+
installed_version: string;
|
|
425
|
+
latest_version: string;
|
|
426
|
+
update_available: boolean;
|
|
427
|
+
static createFrom(source?: any): AvailablePlugin;
|
|
428
|
+
constructor(source?: any);
|
|
429
|
+
}
|
|
430
|
+
class DailyStat {
|
|
431
|
+
date: string;
|
|
432
|
+
count: number;
|
|
433
|
+
static createFrom(source?: any): DailyStat;
|
|
434
|
+
constructor(source?: any);
|
|
435
|
+
}
|
|
436
|
+
class DownloadStats {
|
|
437
|
+
total: number;
|
|
438
|
+
last_month: number;
|
|
439
|
+
last_week: number;
|
|
440
|
+
daily_stats: DailyStat[];
|
|
441
|
+
static createFrom(source?: any): DownloadStats;
|
|
442
|
+
constructor(source?: any);
|
|
443
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
444
|
+
}
|
|
445
|
+
class Review {
|
|
446
|
+
id: string;
|
|
447
|
+
user_id: number;
|
|
448
|
+
rating: number;
|
|
449
|
+
title: string;
|
|
450
|
+
body: string;
|
|
451
|
+
created_at: string;
|
|
452
|
+
static createFrom(source?: any): Review;
|
|
453
|
+
constructor(source?: any);
|
|
454
|
+
}
|
|
455
|
+
class VersionInfo {
|
|
456
|
+
version: string;
|
|
457
|
+
description: string;
|
|
458
|
+
changelog: string;
|
|
459
|
+
min_ide_version: string;
|
|
460
|
+
max_ide_version: string;
|
|
461
|
+
capabilities: string[];
|
|
462
|
+
created_at: string;
|
|
463
|
+
static createFrom(source?: any): VersionInfo;
|
|
464
|
+
constructor(source?: any);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
export declare namespace settings {
|
|
468
|
+
enum SettingType {
|
|
469
|
+
TEXT = "text",
|
|
470
|
+
INTEGER = "integer",
|
|
471
|
+
FLOAT = "float",
|
|
472
|
+
TOGGLE = "toggle",
|
|
473
|
+
COLOR = "color",
|
|
474
|
+
DATETIME = "datetime",
|
|
475
|
+
PASSWORD = "password"
|
|
476
|
+
}
|
|
477
|
+
class SettingFileSelection {
|
|
478
|
+
enabled: boolean;
|
|
479
|
+
allowFolders: boolean;
|
|
480
|
+
extensions: string[];
|
|
481
|
+
multiple: boolean;
|
|
482
|
+
relative: boolean;
|
|
483
|
+
defaultPath: string;
|
|
484
|
+
static createFrom(source?: any): SettingFileSelection;
|
|
485
|
+
constructor(source?: any);
|
|
486
|
+
}
|
|
487
|
+
class SettingOption {
|
|
488
|
+
label: string;
|
|
489
|
+
description: string;
|
|
490
|
+
value: any;
|
|
491
|
+
static createFrom(source?: any): SettingOption;
|
|
492
|
+
constructor(source?: any);
|
|
493
|
+
}
|
|
494
|
+
class Setting {
|
|
495
|
+
id: string;
|
|
496
|
+
label: string;
|
|
497
|
+
description: string;
|
|
498
|
+
type: SettingType;
|
|
499
|
+
value: any;
|
|
500
|
+
default: any;
|
|
501
|
+
options: SettingOption[];
|
|
502
|
+
fileSelection?: SettingFileSelection;
|
|
503
|
+
sensitive: boolean;
|
|
504
|
+
static createFrom(source?: any): Setting;
|
|
505
|
+
constructor(source?: any);
|
|
506
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
507
|
+
}
|
|
508
|
+
class Category {
|
|
509
|
+
settings: Record<string, Setting>;
|
|
510
|
+
id: string;
|
|
511
|
+
label: string;
|
|
512
|
+
description: string;
|
|
513
|
+
icon: string;
|
|
514
|
+
static createFrom(source?: any): Category;
|
|
515
|
+
constructor(source?: any);
|
|
516
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
export declare namespace time {
|
|
520
|
+
class Time {
|
|
521
|
+
static createFrom(source?: any): Time;
|
|
522
|
+
constructor(source?: any);
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
export declare namespace trivy {
|
|
526
|
+
enum Command {
|
|
527
|
+
CONFIG = "config",
|
|
528
|
+
FILESYSTEM = "fs",
|
|
529
|
+
IMAGE = "image",
|
|
530
|
+
KUBERNETES = "kubernetes",
|
|
531
|
+
REPOSITORY = "repository",
|
|
532
|
+
ROOTFS = "rootfs",
|
|
533
|
+
SBOM = "sbom"
|
|
534
|
+
}
|
|
535
|
+
enum Scanner {
|
|
536
|
+
VULN = "vuln",
|
|
537
|
+
MISCONFIG = "misconfig",
|
|
538
|
+
SECRET = "secret",
|
|
539
|
+
LICENSE = "license"
|
|
540
|
+
}
|
|
541
|
+
class ScanOptions {
|
|
542
|
+
filePatterns: string[];
|
|
543
|
+
skipDirs: string[];
|
|
544
|
+
skipFiles: string[];
|
|
545
|
+
scanners: string[];
|
|
546
|
+
static createFrom(source?: any): ScanOptions;
|
|
547
|
+
constructor(source?: any);
|
|
548
|
+
}
|
|
549
|
+
class ScanResult {
|
|
550
|
+
timestamp: time.Time;
|
|
551
|
+
result: Record<string, any>;
|
|
552
|
+
id: string;
|
|
553
|
+
command: Command;
|
|
554
|
+
static createFrom(source?: any): ScanResult;
|
|
555
|
+
constructor(source?: any);
|
|
556
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
export declare namespace types {
|
|
560
|
+
enum ConnectionStatusCode {
|
|
561
|
+
UNKNOWN = "UNKNOWN",
|
|
562
|
+
CONNECTED = "CONNECTED",
|
|
563
|
+
DISCONNECTED = "DISCONNECTED",
|
|
564
|
+
PENDING = "PENDING",
|
|
565
|
+
FAILED = "FAILED",
|
|
566
|
+
ERROR = "ERROR",
|
|
567
|
+
UNAUTHORIZED = "UNAUTHORIZED",
|
|
568
|
+
FORBIDDEN = "FORBIDDEN",
|
|
569
|
+
BAD_REQUEST = "BAD_REQUEST",
|
|
570
|
+
NOT_FOUND = "NOT_FOUND",
|
|
571
|
+
TIMEOUT = "TIMEOUT",
|
|
572
|
+
UNAVAILABLE = "UNAVAILABLE",
|
|
573
|
+
REQUEST_ENTITY_TOO_LARGE = "REQUEST_ENTITY_TOO_LARGE"
|
|
574
|
+
}
|
|
575
|
+
class ActionDescriptor {
|
|
576
|
+
id: string;
|
|
577
|
+
label: string;
|
|
578
|
+
description: string;
|
|
579
|
+
icon: string;
|
|
580
|
+
scope: string;
|
|
581
|
+
streaming: boolean;
|
|
582
|
+
static createFrom(source?: any): ActionDescriptor;
|
|
583
|
+
constructor(source?: any);
|
|
584
|
+
}
|
|
585
|
+
class ActionInput {
|
|
586
|
+
id: string;
|
|
587
|
+
namespace: string;
|
|
588
|
+
params: Record<string, any>;
|
|
589
|
+
static createFrom(source?: any): ActionInput;
|
|
590
|
+
constructor(source?: any);
|
|
591
|
+
}
|
|
592
|
+
class ActionResult {
|
|
593
|
+
success: boolean;
|
|
594
|
+
data: Record<string, any>;
|
|
595
|
+
message: string;
|
|
596
|
+
static createFrom(source?: any): ActionResult;
|
|
597
|
+
constructor(source?: any);
|
|
598
|
+
}
|
|
599
|
+
class ActionTargetBuilder {
|
|
600
|
+
selectors: Record<string, string>;
|
|
601
|
+
label_selector: string;
|
|
602
|
+
label: string;
|
|
603
|
+
paths: string[];
|
|
604
|
+
static createFrom(source?: any): ActionTargetBuilder;
|
|
605
|
+
constructor(source?: any);
|
|
606
|
+
}
|
|
607
|
+
class ResourceLink {
|
|
608
|
+
idAccessor: string;
|
|
609
|
+
namespaceAccessor: string;
|
|
610
|
+
namespaced: boolean;
|
|
611
|
+
resourceKey: string;
|
|
612
|
+
keyAccessor: string;
|
|
613
|
+
keyMap: Record<string, string>;
|
|
614
|
+
detailExtractors: Record<string, string>;
|
|
615
|
+
displayId: boolean;
|
|
616
|
+
static createFrom(source?: any): ResourceLink;
|
|
617
|
+
constructor(source?: any);
|
|
618
|
+
}
|
|
619
|
+
class ColumnDef {
|
|
620
|
+
id: string;
|
|
621
|
+
header: string;
|
|
622
|
+
accessor: string;
|
|
623
|
+
accessorPriority?: string;
|
|
624
|
+
colorMap?: Record<string, string>;
|
|
625
|
+
color?: string;
|
|
626
|
+
align?: string;
|
|
627
|
+
hidden?: boolean;
|
|
628
|
+
width?: number;
|
|
629
|
+
formatter?: string;
|
|
630
|
+
component?: string;
|
|
631
|
+
componentParams?: any;
|
|
632
|
+
resourceLink?: ResourceLink;
|
|
633
|
+
valueMap?: Record<string, string>;
|
|
634
|
+
static createFrom(source?: any): ColumnDef;
|
|
635
|
+
constructor(source?: any);
|
|
636
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
637
|
+
}
|
|
638
|
+
class Connection {
|
|
639
|
+
last_refresh: time.Time;
|
|
640
|
+
data: Record<string, any>;
|
|
641
|
+
labels: Record<string, any>;
|
|
642
|
+
id: string;
|
|
643
|
+
uid: string;
|
|
644
|
+
name: string;
|
|
645
|
+
description: string;
|
|
646
|
+
avatar: string;
|
|
647
|
+
expiry_time: number;
|
|
648
|
+
Client: any;
|
|
649
|
+
static createFrom(source?: any): Connection;
|
|
650
|
+
constructor(source?: any);
|
|
651
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
652
|
+
}
|
|
653
|
+
class ConnectionStatus {
|
|
654
|
+
connection?: Connection;
|
|
655
|
+
status: ConnectionStatusCode;
|
|
656
|
+
error: string;
|
|
657
|
+
details: string;
|
|
658
|
+
static createFrom(source?: any): ConnectionStatus;
|
|
659
|
+
constructor(source?: any);
|
|
660
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
661
|
+
}
|
|
662
|
+
class CreateInput {
|
|
663
|
+
params: any;
|
|
664
|
+
input: Record<string, any>;
|
|
665
|
+
namespace: string;
|
|
666
|
+
static createFrom(source?: any): CreateInput;
|
|
667
|
+
constructor(source?: any);
|
|
668
|
+
}
|
|
669
|
+
class CreateResult {
|
|
670
|
+
result: Record<string, any>;
|
|
671
|
+
success: boolean;
|
|
672
|
+
static createFrom(source?: any): CreateResult;
|
|
673
|
+
constructor(source?: any);
|
|
674
|
+
}
|
|
675
|
+
class DeleteInput {
|
|
676
|
+
input: Record<string, any>;
|
|
677
|
+
params: Record<string, any>;
|
|
678
|
+
id: string;
|
|
679
|
+
namespace: string;
|
|
680
|
+
static createFrom(source?: any): DeleteInput;
|
|
681
|
+
constructor(source?: any);
|
|
682
|
+
}
|
|
683
|
+
class DeleteResult {
|
|
684
|
+
result: Record<string, any>;
|
|
685
|
+
success: boolean;
|
|
686
|
+
static createFrom(source?: any): DeleteResult;
|
|
687
|
+
constructor(source?: any);
|
|
688
|
+
}
|
|
689
|
+
class EditorSchema {
|
|
690
|
+
resourceKey: string;
|
|
691
|
+
fileMatch: string;
|
|
692
|
+
uri: string;
|
|
693
|
+
url?: string;
|
|
694
|
+
content?: number[];
|
|
695
|
+
language: string;
|
|
696
|
+
static createFrom(source?: any): EditorSchema;
|
|
697
|
+
constructor(source?: any);
|
|
698
|
+
}
|
|
699
|
+
class PaginationParams {
|
|
700
|
+
page: number;
|
|
701
|
+
pageSize: number;
|
|
702
|
+
static createFrom(source?: any): PaginationParams;
|
|
703
|
+
constructor(source?: any);
|
|
704
|
+
}
|
|
705
|
+
class OrderParams {
|
|
706
|
+
by: string;
|
|
707
|
+
direction: boolean;
|
|
708
|
+
static createFrom(source?: any): OrderParams;
|
|
709
|
+
constructor(source?: any);
|
|
710
|
+
}
|
|
711
|
+
class FindInput {
|
|
712
|
+
params: Record<string, any>;
|
|
713
|
+
conditions: Record<string, any>;
|
|
714
|
+
namespaces: string[];
|
|
715
|
+
order: OrderParams;
|
|
716
|
+
pagination: PaginationParams;
|
|
717
|
+
static createFrom(source?: any): FindInput;
|
|
718
|
+
constructor(source?: any);
|
|
719
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
720
|
+
}
|
|
721
|
+
class PaginationResult {
|
|
722
|
+
page: number;
|
|
723
|
+
pageSize: number;
|
|
724
|
+
total: number;
|
|
725
|
+
pages: number;
|
|
726
|
+
static createFrom(source?: any): PaginationResult;
|
|
727
|
+
constructor(source?: any);
|
|
728
|
+
}
|
|
729
|
+
class FindResult {
|
|
730
|
+
result: any[];
|
|
731
|
+
success: boolean;
|
|
732
|
+
pagination: PaginationResult;
|
|
733
|
+
static createFrom(source?: any): FindResult;
|
|
734
|
+
constructor(source?: any);
|
|
735
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
736
|
+
}
|
|
737
|
+
class GetInput {
|
|
738
|
+
params: Record<string, any>;
|
|
739
|
+
id: string;
|
|
740
|
+
namespace: string;
|
|
741
|
+
static createFrom(source?: any): GetInput;
|
|
742
|
+
constructor(source?: any);
|
|
743
|
+
}
|
|
744
|
+
class GetResult {
|
|
745
|
+
result: Record<string, any>;
|
|
746
|
+
success: boolean;
|
|
747
|
+
static createFrom(source?: any): GetResult;
|
|
748
|
+
constructor(source?: any);
|
|
749
|
+
}
|
|
750
|
+
class InformerConnectionSummary {
|
|
751
|
+
connection: string;
|
|
752
|
+
resources: Record<string, number>;
|
|
753
|
+
resourceCounts: Record<string, number>;
|
|
754
|
+
totalResources: number;
|
|
755
|
+
syncedCount: number;
|
|
756
|
+
errorCount: number;
|
|
757
|
+
static createFrom(source?: any): InformerConnectionSummary;
|
|
758
|
+
constructor(source?: any);
|
|
759
|
+
}
|
|
760
|
+
class LayoutItem {
|
|
761
|
+
id: string;
|
|
762
|
+
title: string;
|
|
763
|
+
icon: string;
|
|
764
|
+
description: string;
|
|
765
|
+
items: LayoutItem[];
|
|
766
|
+
static createFrom(source?: any): LayoutItem;
|
|
767
|
+
constructor(source?: any);
|
|
768
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
769
|
+
}
|
|
770
|
+
class ListInput {
|
|
771
|
+
params: Record<string, any>;
|
|
772
|
+
namespaces: string[];
|
|
773
|
+
order: OrderParams;
|
|
774
|
+
pagination: PaginationParams;
|
|
775
|
+
static createFrom(source?: any): ListInput;
|
|
776
|
+
constructor(source?: any);
|
|
777
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
778
|
+
}
|
|
779
|
+
class ListResult {
|
|
780
|
+
result: any[];
|
|
781
|
+
success: boolean;
|
|
782
|
+
pagination: PaginationResult;
|
|
783
|
+
static createFrom(source?: any): ListResult;
|
|
784
|
+
constructor(source?: any);
|
|
785
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
786
|
+
}
|
|
787
|
+
class Plugin {
|
|
788
|
+
id: string;
|
|
789
|
+
metadata: config.PluginMeta;
|
|
790
|
+
enabled: boolean;
|
|
791
|
+
running: boolean;
|
|
792
|
+
devMode: boolean;
|
|
793
|
+
devPath: string;
|
|
794
|
+
loading: boolean;
|
|
795
|
+
loadError: string;
|
|
796
|
+
capabilities: number[];
|
|
797
|
+
static createFrom(source?: any): Plugin;
|
|
798
|
+
constructor(source?: any);
|
|
799
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
800
|
+
}
|
|
801
|
+
class PluginState {
|
|
802
|
+
Metadata: config.PluginMeta;
|
|
803
|
+
ID: string;
|
|
804
|
+
DevPath: string;
|
|
805
|
+
Enabled: boolean;
|
|
806
|
+
DevMode: boolean;
|
|
807
|
+
static createFrom(source?: any): PluginState;
|
|
808
|
+
constructor(source?: any);
|
|
809
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
810
|
+
}
|
|
811
|
+
class ResourceDefinition {
|
|
812
|
+
id_accessor: string;
|
|
813
|
+
namespace_accessor: string;
|
|
814
|
+
memoizer_accessor: string;
|
|
815
|
+
columnDefs: ColumnDef[];
|
|
816
|
+
supportedOperations?: number[];
|
|
817
|
+
static createFrom(source?: any): ResourceDefinition;
|
|
818
|
+
constructor(source?: any);
|
|
819
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
820
|
+
}
|
|
821
|
+
class ResourceGroup {
|
|
822
|
+
id: string;
|
|
823
|
+
name: string;
|
|
824
|
+
description: string;
|
|
825
|
+
icon: string;
|
|
826
|
+
resources: Record<string, Array<ResourceMeta>>;
|
|
827
|
+
static createFrom(source?: any): ResourceGroup;
|
|
828
|
+
constructor(source?: any);
|
|
829
|
+
convertValues(a: any, classs: any, asMap?: boolean): any;
|
|
830
|
+
}
|
|
831
|
+
class ResourceMeta {
|
|
832
|
+
group: string;
|
|
833
|
+
version: string;
|
|
834
|
+
kind: string;
|
|
835
|
+
label: string;
|
|
836
|
+
icon: string;
|
|
837
|
+
description: string;
|
|
838
|
+
category: string;
|
|
839
|
+
static createFrom(source?: any): ResourceMeta;
|
|
840
|
+
constructor(source?: any);
|
|
841
|
+
}
|
|
842
|
+
class UpdateInput {
|
|
843
|
+
input: Record<string, any>;
|
|
844
|
+
params: Record<string, any>;
|
|
845
|
+
id: string;
|
|
846
|
+
namespace: string;
|
|
847
|
+
static createFrom(source?: any): UpdateInput;
|
|
848
|
+
constructor(source?: any);
|
|
849
|
+
}
|
|
850
|
+
class UpdateResult {
|
|
851
|
+
result: Record<string, any>;
|
|
852
|
+
success: boolean;
|
|
853
|
+
static createFrom(source?: any): UpdateResult;
|
|
854
|
+
constructor(source?: any);
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
export declare namespace ui {
|
|
858
|
+
class GetPluginComponentsInput {
|
|
859
|
+
plugin: string;
|
|
860
|
+
static createFrom(source?: any): GetPluginComponentsInput;
|
|
861
|
+
constructor(source?: any);
|
|
862
|
+
}
|
|
863
|
+
class GetResourceAreaComponentInput {
|
|
864
|
+
plugin: string;
|
|
865
|
+
resource: string;
|
|
866
|
+
area: string;
|
|
867
|
+
static createFrom(source?: any): GetResourceAreaComponentInput;
|
|
868
|
+
constructor(source?: any);
|
|
869
|
+
}
|
|
870
|
+
class GetResourceComponentsInput {
|
|
871
|
+
plugin: string;
|
|
872
|
+
resource: string;
|
|
873
|
+
static createFrom(source?: any): GetResourceComponentsInput;
|
|
874
|
+
constructor(source?: any);
|
|
875
|
+
}
|
|
876
|
+
class ResourceComponent {
|
|
877
|
+
owner: string;
|
|
878
|
+
name: string;
|
|
879
|
+
plugin: string;
|
|
880
|
+
resource: string;
|
|
881
|
+
area: string;
|
|
882
|
+
extension: string;
|
|
883
|
+
static createFrom(source?: any): ResourceComponent;
|
|
884
|
+
constructor(source?: any);
|
|
885
|
+
}
|
|
886
|
+
}
|
|
887
|
+
export declare namespace utils {
|
|
888
|
+
class GetLanguageInput {
|
|
889
|
+
filename: string;
|
|
890
|
+
contents: string;
|
|
891
|
+
static createFrom(source?: any): GetLanguageInput;
|
|
892
|
+
constructor(source?: any);
|
|
893
|
+
}
|
|
894
|
+
}
|