@trebired/code-server-kit 0.2.0 → 1.0.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.md +236 -218
  3. package/dist/diagnostics.d.ts +6 -0
  4. package/dist/diagnostics.d.ts.map +1 -0
  5. package/dist/diagnostics.js +150 -0
  6. package/dist/diagnostics.js.map +1 -0
  7. package/dist/errors.d.ts +23 -2
  8. package/dist/errors.d.ts.map +1 -1
  9. package/dist/errors.js +43 -1
  10. package/dist/errors.js.map +1 -1
  11. package/dist/index.d.ts +11 -6
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js +10 -5
  14. package/dist/index.js.map +1 -1
  15. package/dist/logging.d.ts +5 -0
  16. package/dist/logging.d.ts.map +1 -0
  17. package/dist/logging.js +11 -0
  18. package/dist/logging.js.map +1 -0
  19. package/dist/plan.d.ts +3 -2
  20. package/dist/plan.d.ts.map +1 -1
  21. package/dist/plan.js +68 -68
  22. package/dist/plan.js.map +1 -1
  23. package/dist/preparation.d.ts +5 -0
  24. package/dist/preparation.d.ts.map +1 -0
  25. package/dist/preparation.js +194 -0
  26. package/dist/preparation.js.map +1 -0
  27. package/dist/profile.d.ts +5 -2
  28. package/dist/profile.d.ts.map +1 -1
  29. package/dist/profile.js +122 -1
  30. package/dist/profile.js.map +1 -1
  31. package/dist/proxy.d.ts +4 -2
  32. package/dist/proxy.d.ts.map +1 -1
  33. package/dist/proxy.js +62 -1
  34. package/dist/proxy.js.map +1 -1
  35. package/dist/resolve.d.ts.map +1 -1
  36. package/dist/resolve.js +43 -1
  37. package/dist/resolve.js.map +1 -1
  38. package/dist/session.d.ts +11 -0
  39. package/dist/session.d.ts.map +1 -0
  40. package/dist/session.js +770 -0
  41. package/dist/session.js.map +1 -0
  42. package/dist/spec.d.ts +3 -3
  43. package/dist/spec.d.ts.map +1 -1
  44. package/dist/spec.js +2 -33
  45. package/dist/spec.js.map +1 -1
  46. package/dist/systemd.d.ts +20 -0
  47. package/dist/systemd.d.ts.map +1 -0
  48. package/dist/systemd.js +305 -0
  49. package/dist/systemd.js.map +1 -0
  50. package/dist/types.d.ts +354 -7
  51. package/dist/types.d.ts.map +1 -1
  52. package/package.json +3 -2
package/dist/types.d.ts CHANGED
@@ -1,25 +1,91 @@
1
1
  import type { ChildProcess } from "node:child_process";
2
+ import type { LoggerAdapterEvent, LoggerAdapterGenericLogMethod, LoggerAdapterLogger, LoggerAdapterLogMethod, LoggerAdapterWriter, NormalizedLoggerAdapter } from "@trebired/logger-adapter";
2
3
  type CodeServerEntryKind = "node_script" | "executable";
3
4
  type CodeServerLaunchMode = "auto" | "direct" | "node";
5
+ type CodeServerLaunchStrategy = "direct" | "systemd";
6
+ type CodeServerSystemdScope = "user" | "system";
4
7
  type CodeServerPathAccessMode = "read" | "write";
8
+ type CodeServerWatchdogMode = "disabled_fallback" | "native";
9
+ type CodeServerSessionState = "planned" | "launching" | "ready" | "failed" | "stopped" | "stale" | "reusing_existing";
10
+ type CodeServerSessionHealth = "failed" | "ready" | "starting" | "stale" | "stopped";
11
+ type CodeServerPreparationMode = "auto" | "ensure" | "skip";
12
+ type CodeServerPreparationState = "missing" | "prepared" | "repairable";
5
13
  type CodeServerProfileItem = "settings.json" | "extensions.json" | "keybindings.json" | "snippets" | "extensions";
14
+ type CodeServerProfileRestorePolicy = "always" | "if-missing-or-empty";
15
+ type CodeServerProfilePersistPolicy = "always" | "if-changed";
16
+ type CodeServerProfileSignatureMode = "content-hash";
17
+ type CodeServerDiagnosticCategory = "entrypoint_resolution_failed" | "invalid_configuration" | "missing_runtime_dependency" | "preparation_failed" | "process_exited_before_ready" | "startup_timeout" | "systemd_launch_failed" | "systemd_unit_failed" | "unknown";
18
+ type CodeServerKitLogMethod = LoggerAdapterLogMethod;
19
+ type CodeServerKitLogEvent = LoggerAdapterEvent;
20
+ type CodeServerKitGenericLogMethod = LoggerAdapterGenericLogMethod;
21
+ type CodeServerKitLogger = LoggerAdapterLogger;
22
+ type CodeServerKitLoggerAdapter = LoggerAdapterWriter;
23
+ type NormalizedCodeServerKitLogger = NormalizedLoggerAdapter;
24
+ type CodeServerPreparationIssue = {
25
+ code: string;
26
+ details: Record<string, unknown>;
27
+ message: string;
28
+ };
29
+ type CodeServerRuntimeDependencyIssue = CodeServerPreparationIssue & {
30
+ dependency: string;
31
+ fatal: boolean;
32
+ };
33
+ type CodeServerPreparationStatus = {
34
+ checkedAt: string;
35
+ issues: CodeServerPreparationIssue[];
36
+ packageRoot: string;
37
+ postinstallScriptPath: string | null;
38
+ state: CodeServerPreparationState;
39
+ supportRoot: string | null;
40
+ watchdogIssue: CodeServerRuntimeDependencyIssue | null;
41
+ watchdogMode: CodeServerWatchdogMode;
42
+ };
43
+ type CodeServerPreparationResult = {
44
+ changed: boolean;
45
+ command: string | null;
46
+ output: string | null;
47
+ status: CodeServerPreparationStatus;
48
+ };
49
+ type CodeServerPreparationOptions = {
50
+ logger?: CodeServerKitLogger;
51
+ loggerAdapter?: CodeServerKitLoggerAdapter;
52
+ resolveFrom?: string;
53
+ strictWatchdog?: boolean;
54
+ };
55
+ type CodeServerPackageManagerHints = {
56
+ installCommand: string;
57
+ packageManager: "npm" | "unknown";
58
+ };
59
+ type CodeServerPathBinding = {
60
+ access: CodeServerPathAccessMode;
61
+ hostPath: string;
62
+ mountPath: string;
63
+ reason: string;
64
+ };
6
65
  type CodeServerInstallation = {
66
+ defaultCwd: string;
67
+ defaultEnv: NodeJS.ProcessEnv;
68
+ entryArgs: string[];
69
+ entryCommand: string;
7
70
  entryKind: CodeServerEntryKind;
8
71
  entryPoint: string;
9
72
  entryRelativePath: string;
10
73
  packageJsonPath: string;
74
+ packageManagerHints: CodeServerPackageManagerHints;
11
75
  packageRoot: string;
76
+ preparationStatus: CodeServerPreparationStatus;
77
+ recommendedReadablePaths: string[];
78
+ supportBindings: CodeServerPathBinding[];
12
79
  supportRoot: string | null;
13
80
  version?: string;
14
81
  };
15
82
  type ResolveCodeServerInstallationOptions = {
16
83
  resolveFrom?: string;
84
+ strictWatchdog?: boolean;
17
85
  };
18
- type CodeServerPathBinding = {
19
- access: CodeServerPathAccessMode;
86
+ type CodeServerTranslatedPath = {
20
87
  hostPath: string;
21
- mountPath: string;
22
- reason: string;
88
+ visiblePath: string;
23
89
  };
24
90
  type CreateCodeServerLaunchPlanOptions = {
25
91
  bindAddr?: string;
@@ -32,6 +98,10 @@ type CreateCodeServerLaunchPlanOptions = {
32
98
  launchMode?: CodeServerLaunchMode;
33
99
  nodeCommand?: string;
34
100
  port?: number;
101
+ preparation?: {
102
+ mode?: CodeServerPreparationMode;
103
+ strictWatchdog?: boolean;
104
+ };
35
105
  resolveFrom?: string;
36
106
  trustedOrigins?: string[];
37
107
  userDataDir?: string;
@@ -52,14 +122,23 @@ type CodeServerLaunchPlan = {
52
122
  installation: CodeServerInstallation;
53
123
  launchMode: Exclude<CodeServerLaunchMode, "auto">;
54
124
  port: number;
125
+ preparationStatus: CodeServerPreparationStatus;
55
126
  recommendedReadablePaths: string[];
56
127
  recommendedWritablePaths: string[];
57
128
  supportBindings: CodeServerPathBinding[];
58
129
  supportRoot: string | null;
130
+ translatedPaths: CodeServerTranslatedPath[];
59
131
  trustedOrigins: string[];
60
132
  userDataDir: string;
133
+ watchdogMode: CodeServerWatchdogMode;
61
134
  workspacePath: string | null;
62
135
  };
136
+ type CodeServerIntegrationPlan = CodeServerLaunchPlan & {
137
+ defaultCwd: string;
138
+ defaultEnv: NodeJS.ProcessEnv;
139
+ hostVisiblePaths: string[];
140
+ sandboxVisiblePaths: string[];
141
+ };
63
142
  type CodeServerLaunchSpec = {
64
143
  args: string[];
65
144
  bindings: CodeServerPathBinding[];
@@ -149,6 +228,7 @@ type CodeServerProfileSyncPlan = {
149
228
  };
150
229
  type CodeServerProfileSkipReason = "missing_source" | "unreadable_source";
151
230
  type CodeServerProfileSyncResult = {
231
+ changed: boolean;
152
232
  copied: CodeServerProfileSyncEntry[];
153
233
  skipped: Array<{
154
234
  entry: CodeServerProfileSyncEntry;
@@ -159,6 +239,43 @@ type SyncCodeServerProfileOptions = CreateCodeServerProfileSyncPlanOptions & {
159
239
  skipMissing?: boolean;
160
240
  skipUnreadable?: boolean;
161
241
  };
242
+ type CodeServerProfileSnapshotEntry = {
243
+ item: CodeServerProfileItem;
244
+ present: boolean;
245
+ signature: string | null;
246
+ };
247
+ type CodeServerProfileSnapshot = {
248
+ entries: CodeServerProfileSnapshotEntry[];
249
+ rootDir: string;
250
+ signature: string;
251
+ };
252
+ type ReadCodeServerProfileSnapshotOptions = {
253
+ items?: CodeServerProfileItem[];
254
+ pathMap?: Partial<CodeServerProfilePathMap>;
255
+ rootDir: string;
256
+ snapshotExtensions?: boolean;
257
+ };
258
+ type ReadCodeServerProfileSignatureOptions = ReadCodeServerProfileSnapshotOptions;
259
+ type PersistCodeServerProfileIfChangedOptions = SyncCodeServerProfileOptions & {
260
+ signatureMode?: CodeServerProfileSignatureMode;
261
+ snapshotExtensions?: boolean;
262
+ };
263
+ type PersistCodeServerProfileIfChangedResult = CodeServerProfileSyncResult & {
264
+ nextSignature: string;
265
+ previousSignature: string | null;
266
+ };
267
+ type CodeServerProfileLifecycleOptions = {
268
+ items?: CodeServerProfileItem[];
269
+ pathMap?: Partial<CodeServerProfilePathMap>;
270
+ persistPolicy?: CodeServerProfilePersistPolicy;
271
+ persistTo?: string;
272
+ restoreFrom?: string;
273
+ restorePolicy?: CodeServerProfileRestorePolicy;
274
+ signatureMode?: CodeServerProfileSignatureMode;
275
+ skipMissing?: boolean;
276
+ skipUnreadable?: boolean;
277
+ snapshotExtensions?: boolean;
278
+ };
162
279
  type BuildForwardedHeadersOptions = {
163
280
  forwardedFor?: string | string[];
164
281
  forwardedHost?: string;
@@ -167,18 +284,248 @@ type BuildForwardedHeadersOptions = {
167
284
  port?: number | string;
168
285
  proto?: string;
169
286
  };
287
+ type BuildCodeServerWebSocketHeadersOptions = BuildForwardedHeadersOptions & {
288
+ connection?: string;
289
+ upgrade?: string;
290
+ };
291
+ type CodeServerProxyFailureCategory = "refused" | "reset" | "timeout" | "upstream_failure" | "unknown";
292
+ type ClassifyCodeServerProxyFailureOptions = {
293
+ error?: unknown;
294
+ statusCode?: number | null;
295
+ };
296
+ type CodeServerProxyFailure = {
297
+ category: CodeServerProxyFailureCategory;
298
+ details: Record<string, unknown>;
299
+ message: string;
300
+ };
170
301
  type CodeServerHtmlResponseOptions = {
171
302
  contentType?: string | null;
172
303
  headers?: Headers | Record<string, unknown>;
173
304
  method?: string;
174
305
  statusCode?: number;
175
306
  };
176
- type NormalizedCodeServerStartupFailure = {
177
- code: string | null;
307
+ type CodeServerSanitizerOptions = {
308
+ pathPrefixes?: string[];
309
+ values?: string[];
310
+ replacer?(value: string): string;
311
+ };
312
+ type CodeServerSanitizedDiagnostics = {
178
313
  details: Record<string, unknown>;
314
+ summary: string;
315
+ };
316
+ type CodeServerStartupDiagnostics = {
317
+ category: CodeServerDiagnosticCategory;
318
+ code: string;
319
+ details: Record<string, unknown>;
320
+ journalSummary?: string;
321
+ launchStrategy: CodeServerLaunchStrategy | null;
322
+ sanitized?: CodeServerSanitizedDiagnostics;
323
+ stderrTail?: string;
324
+ stdoutTail?: string;
325
+ summary: string;
326
+ watchdogMode?: CodeServerWatchdogMode;
327
+ };
328
+ type CollectCodeServerStartupDiagnosticsOptions = {
329
+ category?: CodeServerDiagnosticCategory;
330
+ error?: unknown;
331
+ journal?: string;
332
+ launchStrategy?: CodeServerLaunchStrategy | null;
333
+ preparationStatus?: CodeServerPreparationStatus | null;
334
+ process?: Pick<CodeServerProcessHandle, "getStderr" | "getStdout"> | null;
335
+ sanitizer?: CodeServerSanitizerOptions;
336
+ watchdogMode?: CodeServerWatchdogMode;
337
+ };
338
+ type NormalizedCodeServerStartupFailure = CodeServerStartupDiagnostics & {
179
339
  isCodeServerKitError: boolean;
340
+ name: string;
341
+ };
342
+ type CodeServerSessionDiagnosticsSnapshot = {
343
+ activeState?: string | null;
344
+ exitCode?: number | null;
345
+ exitSignal?: NodeJS.Signals | null;
346
+ journalTail?: string;
347
+ pid?: number | null;
348
+ readyElapsedMs?: number | null;
349
+ stderrTail?: string;
350
+ stdoutTail?: string;
351
+ subState?: string | null;
352
+ summary?: Record<string, unknown>;
353
+ updatedAt: string;
354
+ unitName?: string | null;
355
+ };
356
+ type CodeServerSessionDiagnostics = {
357
+ diagnosticsPath: string;
358
+ journalTail?: string;
359
+ normalizedFailure?: CodeServerStartupDiagnostics | null;
360
+ readyElapsedMs?: number | null;
361
+ recordPath: string;
362
+ stderrTail?: string;
363
+ stdoutTail?: string;
364
+ summary: Record<string, unknown>;
365
+ updatedAt: string;
366
+ };
367
+ type CodeServerSessionFailure = {
368
+ code: string;
369
+ details: Record<string, unknown>;
180
370
  message: string;
181
371
  name: string;
182
372
  };
183
- export type { BuildForwardedHeadersOptions, CodeServerEntryKind, CodeServerHtmlResponseOptions, CodeServerInstallation, CodeServerLaunchMode, CodeServerLaunchOptions, CodeServerLaunchPlan, CodeServerLaunchSpec, CodeServerPathAccessMode, CodeServerPathBinding, CodeServerProcessExit, CodeServerProcessHandle, CodeServerProfileEntryKind, CodeServerProfileItem, CodeServerProfilePathMap, CodeServerProfileSkipReason, CodeServerProfileSyncEntry, CodeServerProfileSyncPlan, CodeServerProfileSyncResult, CodeServerReadyFailure, CodeServerReadyFailureProbe, CodeServerReadyOptions, CodeServerReadyResult, CreateCodeServerLaunchPlanOptions, CreateCodeServerProfileSyncPlanOptions, LaunchCodeServerProcessOptions, NormalizedCodeServerStartupFailure, ResolveCodeServerInstallationOptions, SyncCodeServerProfileOptions, };
373
+ type CodeServerSessionRecord = {
374
+ bindAddr: string;
375
+ diagnostics: CodeServerSessionDiagnosticsSnapshot | null;
376
+ extensionsDir: string;
377
+ failure?: CodeServerSessionFailure | null;
378
+ health: CodeServerSessionHealth;
379
+ lastStartSummary?: string | null;
380
+ launchStrategy: CodeServerLaunchStrategy;
381
+ pid: number | null;
382
+ port: number;
383
+ preparation: CodeServerPreparationStatus | null;
384
+ readyAt: string | null;
385
+ sanitizedDiagnostics?: CodeServerSanitizedDiagnostics | null;
386
+ sessionKey: string;
387
+ specHash: string;
388
+ startedAt: string | null;
389
+ state: CodeServerSessionState;
390
+ stoppedAt: string | null;
391
+ systemdScope: CodeServerSystemdScope | null;
392
+ trustedOrigins: string[];
393
+ unitName: string | null;
394
+ updatedAt: string;
395
+ userDataDir: string;
396
+ watchdogMode: CodeServerWatchdogMode;
397
+ workspacePath: string | null;
398
+ };
399
+ type CodeServerSessionStatus = {
400
+ bindAddr: string;
401
+ diagnostics: CodeServerSessionDiagnostics | null;
402
+ extensionsDir: string;
403
+ failure: CodeServerSessionFailure | null;
404
+ health: CodeServerSessionHealth;
405
+ lastStartSummary: string | null;
406
+ launchStrategy: CodeServerLaunchStrategy;
407
+ pid: number | null;
408
+ port: number;
409
+ preparation: CodeServerPreparationStatus | null;
410
+ ready: boolean;
411
+ readyAt: string | null;
412
+ sanitizedDiagnostics: CodeServerSanitizedDiagnostics | null;
413
+ sessionKey: string;
414
+ specHash: string;
415
+ startedAt: string | null;
416
+ state: CodeServerSessionState;
417
+ stoppedAt: string | null;
418
+ systemdScope: CodeServerSystemdScope | null;
419
+ unitName: string | null;
420
+ updatedAt: string;
421
+ userDataDir: string;
422
+ watchdogMode: CodeServerWatchdogMode;
423
+ workspacePath: string | null;
424
+ };
425
+ type CodeServerSessionStartResult = {
426
+ created: boolean;
427
+ diagnostics: CodeServerSessionDiagnostics | null;
428
+ handle: CodeServerProcessHandle | null;
429
+ launchPlan: CodeServerLaunchPlan;
430
+ launchStrategy: CodeServerLaunchStrategy;
431
+ reused: boolean;
432
+ status: CodeServerSessionStatus;
433
+ };
434
+ type CodeServerSessionStopResult = {
435
+ diagnostics: CodeServerSessionDiagnostics | null;
436
+ signal?: NodeJS.Signals | number;
437
+ status: CodeServerSessionStatus;
438
+ stopped: boolean;
439
+ };
440
+ type CodeServerSessionRestartResult = {
441
+ start: CodeServerSessionStartResult;
442
+ stop: CodeServerSessionStopResult;
443
+ };
444
+ type CodeServerSessionManagerOptions = {
445
+ installation?: CodeServerInstallation;
446
+ logger?: CodeServerKitLogger;
447
+ loggerAdapter?: CodeServerKitLoggerAdapter;
448
+ resolveFrom?: string;
449
+ };
450
+ type CodeServerSystemdOptions = {
451
+ extraProperties?: string[];
452
+ scope?: CodeServerSystemdScope;
453
+ unitName?: string;
454
+ };
455
+ type CodeServerSessionRequest = CreateCodeServerLaunchPlanOptions & {
456
+ failureProbe?: CodeServerReadyFailureProbe;
457
+ launchStrategy?: CodeServerLaunchStrategy;
458
+ logger?: CodeServerKitLogger;
459
+ loggerAdapter?: CodeServerKitLoggerAdapter;
460
+ profile?: CodeServerProfileLifecycleOptions;
461
+ readinessRetryIntervalMs?: number;
462
+ readinessTimeoutMs?: number;
463
+ sanitizer?: CodeServerSanitizerOptions;
464
+ sessionKey: string;
465
+ stateRoot: string;
466
+ systemd?: CodeServerSystemdOptions;
467
+ };
468
+ type CodeServerSessionManager = {
469
+ getStatus(options: Pick<CodeServerSessionRequest, "logger" | "loggerAdapter" | "sanitizer" | "sessionKey" | "stateRoot">): Promise<CodeServerSessionStatus | null>;
470
+ readDiagnostics(options: Pick<CodeServerSessionRequest, "sessionKey" | "stateRoot">): Promise<CodeServerSessionDiagnostics | null>;
471
+ restart(options: CodeServerSessionRequest): Promise<CodeServerSessionRestartResult>;
472
+ start(options: CodeServerSessionRequest): Promise<CodeServerSessionStartResult>;
473
+ stop(options: Pick<CodeServerSessionRequest, "logger" | "loggerAdapter" | "profile" | "sanitizer" | "sessionKey" | "stateRoot"> & {
474
+ signal?: NodeJS.Signals | number;
475
+ }): Promise<CodeServerSessionStopResult | null>;
476
+ };
477
+ type CodeServerSystemdLaunchOptions = {
478
+ cwd?: string;
479
+ env?: NodeJS.ProcessEnv;
480
+ extraProperties?: string[];
481
+ logger?: CodeServerKitLogger;
482
+ loggerAdapter?: CodeServerKitLoggerAdapter;
483
+ plan: CodeServerLaunchPlan;
484
+ scope: CodeServerSystemdScope;
485
+ sessionKey?: string;
486
+ unitName?: string;
487
+ };
488
+ type CodeServerSystemdLaunchCommand = {
489
+ args: string[];
490
+ command: string;
491
+ scope: CodeServerSystemdScope;
492
+ unitName: string;
493
+ };
494
+ type CodeServerSystemdLaunchResult = CodeServerSystemdLaunchCommand & {
495
+ output: string;
496
+ };
497
+ type CodeServerSystemdStatus = {
498
+ activeState: string | null;
499
+ execMainPid: number | null;
500
+ failed: boolean;
501
+ loadState: string | null;
502
+ notFound: boolean;
503
+ raw: Record<string, string>;
504
+ reusable: boolean;
505
+ result: string | null;
506
+ scope: CodeServerSystemdScope;
507
+ stateLabel: "failed" | "not_found" | "ready" | "stale";
508
+ subState: string | null;
509
+ unitName: string;
510
+ };
511
+ type CodeServerSystemdJournalOptions = {
512
+ lines?: number;
513
+ logger?: CodeServerKitLogger;
514
+ loggerAdapter?: CodeServerKitLoggerAdapter;
515
+ scope: CodeServerSystemdScope;
516
+ unitName: string;
517
+ };
518
+ type CodeServerSystemdStopOptions = {
519
+ logger?: CodeServerKitLogger;
520
+ loggerAdapter?: CodeServerKitLoggerAdapter;
521
+ resetFailed?: boolean;
522
+ scope: CodeServerSystemdScope;
523
+ unitName: string;
524
+ };
525
+ type CodeServerSystemdFailure = {
526
+ diagnostics: CodeServerStartupDiagnostics;
527
+ summary: string;
528
+ };
529
+ export type { BuildCodeServerWebSocketHeadersOptions, BuildForwardedHeadersOptions, ClassifyCodeServerProxyFailureOptions, CodeServerDiagnosticCategory, CodeServerEntryKind, CodeServerHtmlResponseOptions, CodeServerInstallation, CodeServerIntegrationPlan, CodeServerKitGenericLogMethod, CodeServerKitLogEvent, CodeServerKitLogger, CodeServerKitLoggerAdapter, CodeServerKitLogMethod, CodeServerLaunchMode, CodeServerLaunchOptions, CodeServerLaunchPlan, CodeServerLaunchSpec, CodeServerLaunchStrategy, CodeServerPackageManagerHints, CodeServerPathAccessMode, CodeServerPathBinding, CodeServerPreparationIssue, CodeServerPreparationMode, CodeServerPreparationOptions, CodeServerPreparationResult, CodeServerPreparationState, CodeServerPreparationStatus, CodeServerProcessExit, CodeServerProcessHandle, CodeServerProfileEntryKind, CodeServerProfileItem, CodeServerProfileLifecycleOptions, CodeServerProfilePathMap, CodeServerProfilePersistPolicy, CodeServerProfileRestorePolicy, CodeServerProfileSignatureMode, CodeServerProfileSkipReason, CodeServerProfileSnapshot, CodeServerProfileSnapshotEntry, CodeServerProfileSyncEntry, CodeServerProfileSyncPlan, CodeServerProfileSyncResult, CodeServerProxyFailure, CodeServerProxyFailureCategory, CodeServerReadyFailure, CodeServerReadyFailureProbe, CodeServerReadyOptions, CodeServerReadyResult, CodeServerRuntimeDependencyIssue, CodeServerSanitizedDiagnostics, CodeServerSanitizerOptions, CodeServerSessionDiagnostics, CodeServerSessionDiagnosticsSnapshot, CodeServerSessionFailure, CodeServerSessionHealth, CodeServerSessionManager, CodeServerSessionManagerOptions, CodeServerSessionRecord, CodeServerSessionRequest, CodeServerSessionRestartResult, CodeServerSessionStartResult, CodeServerSessionState, CodeServerSessionStatus, CodeServerSessionStopResult, CodeServerSystemdFailure, CodeServerSystemdJournalOptions, CodeServerSystemdLaunchCommand, CodeServerSystemdLaunchOptions, CodeServerSystemdLaunchResult, CodeServerSystemdOptions, CodeServerSystemdScope, CodeServerSystemdStatus, CodeServerSystemdStopOptions, CodeServerSupportBindingSuggestion, CodeServerStartupDiagnostics, CodeServerTranslatedPath, CodeServerWatchdogMode, CollectCodeServerStartupDiagnosticsOptions, CreateCodeServerLaunchPlanOptions, CreateCodeServerProfileSyncPlanOptions, LaunchCodeServerProcessOptions, NormalizedCodeServerKitLogger, NormalizedCodeServerStartupFailure, PersistCodeServerProfileIfChangedOptions, PersistCodeServerProfileIfChangedResult, ReadCodeServerProfileSignatureOptions, ReadCodeServerProfileSnapshotOptions, ResolveCodeServerInstallationOptions, SyncCodeServerProfileOptions, };
530
+ type CodeServerSupportBindingSuggestion = CodeServerPathBinding;
184
531
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvD,OAAO,KAAK,EACV,kBAAkB,EAClB,6BAA6B,EAC7B,mBAAmB,EACnB,sBAAsB,EACtB,mBAAmB,EACnB,uBAAuB,EACxB,MAAM,0BAA0B,CAAC;AAElC,KAAK,mBAAmB,GAAG,aAAa,GAAG,YAAY,CAAC;AACxD,KAAK,oBAAoB,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;AACvD,KAAK,wBAAwB,GAAG,QAAQ,GAAG,SAAS,CAAC;AACrD,KAAK,sBAAsB,GAAG,MAAM,GAAG,QAAQ,CAAC;AAChD,KAAK,wBAAwB,GAAG,MAAM,GAAG,OAAO,CAAC;AACjD,KAAK,sBAAsB,GAAG,mBAAmB,GAAG,QAAQ,CAAC;AAC7D,KAAK,sBAAsB,GACvB,SAAS,GACT,WAAW,GACX,OAAO,GACP,QAAQ,GACR,SAAS,GACT,OAAO,GACP,kBAAkB,CAAC;AACvB,KAAK,uBAAuB,GAAG,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,GAAG,SAAS,CAAC;AACrF,KAAK,yBAAyB,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;AAC5D,KAAK,0BAA0B,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,CAAC;AACxE,KAAK,qBAAqB,GACtB,eAAe,GACf,iBAAiB,GACjB,kBAAkB,GAClB,UAAU,GACV,YAAY,CAAC;AACjB,KAAK,8BAA8B,GAAG,QAAQ,GAAG,qBAAqB,CAAC;AACvE,KAAK,8BAA8B,GAAG,QAAQ,GAAG,YAAY,CAAC;AAC9D,KAAK,8BAA8B,GAAG,cAAc,CAAC;AACrD,KAAK,4BAA4B,GAC7B,8BAA8B,GAC9B,uBAAuB,GACvB,4BAA4B,GAC5B,oBAAoB,GACpB,6BAA6B,GAC7B,iBAAiB,GACjB,uBAAuB,GACvB,qBAAqB,GACrB,SAAS,CAAC;AAEd,KAAK,sBAAsB,GAAG,sBAAsB,CAAC;AACrD,KAAK,qBAAqB,GAAG,kBAAkB,CAAC;AAChD,KAAK,6BAA6B,GAAG,6BAA6B,CAAC;AACnE,KAAK,mBAAmB,GAAG,mBAAmB,CAAC;AAC/C,KAAK,0BAA0B,GAAG,mBAAmB,CAAC;AACtD,KAAK,6BAA6B,GAAG,uBAAuB,CAAC;AAE7D,KAAK,0BAA0B,GAAG;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,gCAAgC,GAAG,0BAA0B,GAAG;IACnE,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;CAChB,CAAC;AAEF,KAAK,2BAA2B,GAAG;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,0BAA0B,EAAE,CAAC;IACrC,WAAW,EAAE,MAAM,CAAC;IACpB,qBAAqB,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC,KAAK,EAAE,0BAA0B,CAAC;IAClC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,gCAAgC,GAAG,IAAI,CAAC;IACvD,YAAY,EAAE,sBAAsB,CAAC;CACtC,CAAC;AAEF,KAAK,2BAA2B,GAAG;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,MAAM,EAAE,2BAA2B,CAAC;CACrC,CAAC;AAEF,KAAK,4BAA4B,GAAG;IAClC,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,aAAa,CAAC,EAAE,0BAA0B,CAAC;IAC3C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,KAAK,6BAA6B,GAAG;IACnC,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,KAAK,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF,KAAK,qBAAqB,GAAG;IAC3B,MAAM,EAAE,wBAAwB,CAAC;IACjC,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;IAC9B,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,mBAAmB,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,eAAe,EAAE,MAAM,CAAC;IACxB,mBAAmB,EAAE,6BAA6B,CAAC;IACnD,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,2BAA2B,CAAC;IAC/C,wBAAwB,EAAE,MAAM,EAAE,CAAC;IACnC,eAAe,EAAE,qBAAqB,EAAE,CAAC;IACzC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,oCAAoC,GAAG;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,KAAK,wBAAwB,GAAG;IAC9B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,KAAK,iCAAiC,GAAG;IACvC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,UAAU,CAAC,EAAE,oBAAoB,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE;QACZ,IAAI,CAAC,EAAE,yBAAyB,CAAC;QACjC,cAAc,CAAC,EAAE,OAAO,CAAC;KAC1B,CAAC;IACF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,KAAK,uBAAuB,GAAG,iCAAiC,CAAC;AAEjE,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,mBAAmB,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,sBAAsB,CAAC;IACrC,UAAU,EAAE,OAAO,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;IAClD,IAAI,EAAE,MAAM,CAAC;IACb,iBAAiB,EAAE,2BAA2B,CAAC;IAC/C,wBAAwB,EAAE,MAAM,EAAE,CAAC;IACnC,wBAAwB,EAAE,MAAM,EAAE,CAAC;IACnC,eAAe,EAAE,qBAAqB,EAAE,CAAC;IACzC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,eAAe,EAAE,wBAAwB,EAAE,CAAC;IAC5C,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,sBAAsB,CAAC;IACrC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,KAAK,yBAAyB,GAAG,oBAAoB,GAAG;IACtD,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC;IAC9B,gBAAgB,EAAE,MAAM,EAAE,CAAC;IAC3B,mBAAmB,EAAE,MAAM,EAAE,CAAC;CAC/B,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,qBAAqB,EAAE,CAAC;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,aAAa,EAAE,MAAM,EAAE,CAAC;CACzB,CAAC;AAEF,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;CAC/B,CAAC;AAEF,KAAK,uBAAuB,GAAG;IAC7B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,YAAY,CAAC;IACpB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,IAAI,EAAE,OAAO,CAAC,qBAAqB,CAAC,CAAC;IACrC,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,IAAI,MAAM,CAAC;IACpB,SAAS,IAAI,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;IAChD,UAAU,EAAE,OAAO,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;IAClD,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB,IAAI,EAAE,oBAAoB,CAAC;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAClC,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,2BAA2B,GAAG,CAAC,OAAO,EAAE;IAC3C,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,uBAAuB,CAAC;CACnC,KAAK,sBAAsB,GAAG,KAAK,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,CAAC,sBAAsB,GAAG,KAAK,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC,CAAC;AAEvI,KAAK,sBAAsB,GAAG;IAC5B,YAAY,CAAC,EAAE,2BAA2B,CAAC;IAC3C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,uBAAuB,CAAC;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,KAAK,qBAAqB,GAAG;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,IAAI,EAAE,oBAAoB,CAAC;IAC3B,MAAM,CAAC,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,MAAM,CAAC,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B,CAAC;AAEF,KAAK,wBAAwB,GAAG,MAAM,CAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC;AACtE,KAAK,0BAA0B,GAAG,WAAW,GAAG,MAAM,CAAC;AAEvD,KAAK,0BAA0B,GAAG;IAChC,IAAI,EAAE,qBAAqB,CAAC;IAC5B,IAAI,EAAE,0BAA0B,CAAC;IACjC,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,KAAK,sCAAsC,GAAG;IAC5C,KAAK,CAAC,EAAE,qBAAqB,EAAE,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC,wBAAwB,CAAC,CAAC;IAC5C,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,yBAAyB,GAAG;IAC/B,OAAO,EAAE,0BAA0B,EAAE,CAAC;IACtC,KAAK,EAAE,qBAAqB,EAAE,CAAC;IAC/B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,2BAA2B,GAAG,gBAAgB,GAAG,mBAAmB,CAAC;AAE1E,KAAK,2BAA2B,GAAG;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,0BAA0B,EAAE,CAAC;IACrC,OAAO,EAAE,KAAK,CAAC;QACb,KAAK,EAAE,0BAA0B,CAAC;QAClC,MAAM,EAAE,2BAA2B,CAAC;KACrC,CAAC,CAAC;CACJ,CAAC;AAEF,KAAK,4BAA4B,GAAG,sCAAsC,GAAG;IAC3E,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,IAAI,EAAE,qBAAqB,CAAC;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAEF,KAAK,yBAAyB,GAAG;IAC/B,OAAO,EAAE,8BAA8B,EAAE,CAAC;IAC1C,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,oCAAoC,GAAG;IAC1C,KAAK,CAAC,EAAE,qBAAqB,EAAE,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC,wBAAwB,CAAC,CAAC;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,KAAK,qCAAqC,GAAG,oCAAoC,CAAC;AAElF,KAAK,wCAAwC,GAAG,4BAA4B,GAAG;IAC7E,aAAa,CAAC,EAAE,8BAA8B,CAAC;IAC/C,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,KAAK,uCAAuC,GAAG,2BAA2B,GAAG;IAC3E,aAAa,EAAE,MAAM,CAAC;IACtB,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC,CAAC;AAEF,KAAK,iCAAiC,GAAG;IACvC,KAAK,CAAC,EAAE,qBAAqB,EAAE,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC,wBAAwB,CAAC,CAAC;IAC5C,aAAa,CAAC,EAAE,8BAA8B,CAAC;IAC/C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,8BAA8B,CAAC;IAC/C,aAAa,CAAC,EAAE,8BAA8B,CAAC;IAC/C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,KAAK,4BAA4B,GAAG;IAClC,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACjC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,KAAK,sCAAsC,GAAG,4BAA4B,GAAG;IAC3E,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,8BAA8B,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,kBAAkB,GAAG,SAAS,CAAC;AAEvG,KAAK,qCAAqC,GAAG;IAC3C,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,QAAQ,EAAE,8BAA8B,CAAC;IACzC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,6BAA6B,GAAG;IACnC,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC5C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,KAAK,0BAA0B,GAAG;IAChC,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CAClC,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,4BAA4B,GAAG;IAClC,QAAQ,EAAE,4BAA4B,CAAC;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,wBAAwB,GAAG,IAAI,CAAC;IAChD,SAAS,CAAC,EAAE,8BAA8B,CAAC;IAC3C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,sBAAsB,CAAC;CACvC,CAAC;AAEF,KAAK,0CAA0C,GAAG;IAChD,QAAQ,CAAC,EAAE,4BAA4B,CAAC;IACxC,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,wBAAwB,GAAG,IAAI,CAAC;IACjD,iBAAiB,CAAC,EAAE,2BAA2B,GAAG,IAAI,CAAC;IACvD,OAAO,CAAC,EAAE,IAAI,CAAC,uBAAuB,EAAE,WAAW,GAAG,WAAW,CAAC,GAAG,IAAI,CAAC;IAC1E,SAAS,CAAC,EAAE,0BAA0B,CAAC;IACvC,YAAY,CAAC,EAAE,sBAAsB,CAAC;CACvC,CAAC;AAEF,KAAK,kCAAkC,GAAG,4BAA4B,GAAG;IACvE,oBAAoB,EAAE,OAAO,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,oCAAoC,GAAG;IAC1C,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;IACnC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAClC,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAEF,KAAK,4BAA4B,GAAG;IAClC,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,iBAAiB,CAAC,EAAE,4BAA4B,GAAG,IAAI,CAAC;IACxD,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,wBAAwB,GAAG;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,uBAAuB,GAAG;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,oCAAoC,GAAG,IAAI,CAAC;IACzD,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,wBAAwB,GAAG,IAAI,CAAC;IAC1C,MAAM,EAAE,uBAAuB,CAAC;IAChC,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,cAAc,EAAE,wBAAwB,CAAC;IACzC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,2BAA2B,GAAG,IAAI,CAAC;IAChD,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,oBAAoB,CAAC,EAAE,8BAA8B,GAAG,IAAI,CAAC;IAC7D,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,KAAK,EAAE,sBAAsB,CAAC;IAC9B,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,YAAY,EAAE,sBAAsB,GAAG,IAAI,CAAC;IAC5C,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,sBAAsB,CAAC;IACrC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,KAAK,uBAAuB,GAAG;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,4BAA4B,GAAG,IAAI,CAAC;IACjD,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,wBAAwB,GAAG,IAAI,CAAC;IACzC,MAAM,EAAE,uBAAuB,CAAC;IAChC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,cAAc,EAAE,wBAAwB,CAAC;IACzC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,2BAA2B,GAAG,IAAI,CAAC;IAChD,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,oBAAoB,EAAE,8BAA8B,GAAG,IAAI,CAAC;IAC5D,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,KAAK,EAAE,sBAAsB,CAAC;IAC9B,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,YAAY,EAAE,sBAAsB,GAAG,IAAI,CAAC;IAC5C,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,sBAAsB,CAAC;IACrC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,KAAK,4BAA4B,GAAG;IAClC,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,4BAA4B,GAAG,IAAI,CAAC;IACjD,MAAM,EAAE,uBAAuB,GAAG,IAAI,CAAC;IACvC,UAAU,EAAE,oBAAoB,CAAC;IACjC,cAAc,EAAE,wBAAwB,CAAC;IACzC,MAAM,EAAE,OAAO,CAAC;IAChB,MAAM,EAAE,uBAAuB,CAAC;CACjC,CAAC;AAEF,KAAK,2BAA2B,GAAG;IACjC,WAAW,EAAE,4BAA4B,GAAG,IAAI,CAAC;IACjD,MAAM,CAAC,EAAE,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC;IACjC,MAAM,EAAE,uBAAuB,CAAC;IAChC,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,KAAK,EAAE,4BAA4B,CAAC;IACpC,IAAI,EAAE,2BAA2B,CAAC;CACnC,CAAC;AAEF,KAAK,+BAA+B,GAAG;IACrC,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,aAAa,CAAC,EAAE,0BAA0B,CAAC;IAC3C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,KAAK,wBAAwB,GAAG;IAC9B,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,KAAK,CAAC,EAAE,sBAAsB,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,wBAAwB,GAAG,iCAAiC,GAAG;IAClE,YAAY,CAAC,EAAE,2BAA2B,CAAC;IAC3C,cAAc,CAAC,EAAE,wBAAwB,CAAC;IAC1C,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,aAAa,CAAC,EAAE,0BAA0B,CAAC;IAC3C,OAAO,CAAC,EAAE,iCAAiC,CAAC;IAC5C,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,EAAE,0BAA0B,CAAC;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,wBAAwB,CAAC;CACpC,CAAC;AAEF,KAAK,wBAAwB,GAAG;IAC9B,SAAS,CAAC,OAAO,EAAE,IAAI,CAAC,wBAAwB,EAAE,QAAQ,GAAG,eAAe,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,CAAC,GAAG,OAAO,CAAC,uBAAuB,GAAG,IAAI,CAAC,CAAC;IACnK,eAAe,CAAC,OAAO,EAAE,IAAI,CAAC,wBAAwB,EAAE,YAAY,GAAG,WAAW,CAAC,GAAG,OAAO,CAAC,4BAA4B,GAAG,IAAI,CAAC,CAAC;IACnI,OAAO,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,8BAA8B,CAAC,CAAC;IACpF,KAAK,CAAC,OAAO,EAAE,wBAAwB,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAAC;IAChF,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,wBAAwB,EAAE,QAAQ,GAAG,eAAe,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,CAAC,GAAG;QAChI,MAAM,CAAC,EAAE,MAAM,CAAC,OAAO,GAAG,MAAM,CAAC;KAClC,GAAG,OAAO,CAAC,2BAA2B,GAAG,IAAI,CAAC,CAAC;CACjD,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,aAAa,CAAC,EAAE,0BAA0B,CAAC;IAC3C,IAAI,EAAE,oBAAoB,CAAC;IAC3B,KAAK,EAAE,sBAAsB,CAAC;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,sBAAsB,CAAC;IAC9B,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,6BAA6B,GAAG,8BAA8B,GAAG;IACpE,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,KAAK,uBAAuB,GAAG;IAC7B,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,MAAM,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC5B,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,KAAK,EAAE,sBAAsB,CAAC;IAC9B,UAAU,EAAE,QAAQ,GAAG,WAAW,GAAG,OAAO,GAAG,OAAO,CAAC;IACvD,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,+BAA+B,GAAG;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,aAAa,CAAC,EAAE,0BAA0B,CAAC;IAC3C,KAAK,EAAE,sBAAsB,CAAC;IAC9B,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,4BAA4B,GAAG;IAClC,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,aAAa,CAAC,EAAE,0BAA0B,CAAC;IAC3C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,EAAE,sBAAsB,CAAC;IAC9B,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,wBAAwB,GAAG;IAC9B,WAAW,EAAE,4BAA4B,CAAC;IAC1C,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,YAAY,EACV,sCAAsC,EACtC,4BAA4B,EAC5B,qCAAqC,EACrC,4BAA4B,EAC5B,mBAAmB,EACnB,6BAA6B,EAC7B,sBAAsB,EACtB,yBAAyB,EACzB,6BAA6B,EAC7B,qBAAqB,EACrB,mBAAmB,EACnB,0BAA0B,EAC1B,sBAAsB,EACtB,oBAAoB,EACpB,uBAAuB,EACvB,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,EACxB,6BAA6B,EAC7B,wBAAwB,EACxB,qBAAqB,EACrB,0BAA0B,EAC1B,yBAAyB,EACzB,4BAA4B,EAC5B,2BAA2B,EAC3B,0BAA0B,EAC1B,2BAA2B,EAC3B,qBAAqB,EACrB,uBAAuB,EACvB,0BAA0B,EAC1B,qBAAqB,EACrB,iCAAiC,EACjC,wBAAwB,EACxB,8BAA8B,EAC9B,8BAA8B,EAC9B,8BAA8B,EAC9B,2BAA2B,EAC3B,yBAAyB,EACzB,8BAA8B,EAC9B,0BAA0B,EAC1B,yBAAyB,EACzB,2BAA2B,EAC3B,sBAAsB,EACtB,8BAA8B,EAC9B,sBAAsB,EACtB,2BAA2B,EAC3B,sBAAsB,EACtB,qBAAqB,EACrB,gCAAgC,EAChC,8BAA8B,EAC9B,0BAA0B,EAC1B,4BAA4B,EAC5B,oCAAoC,EACpC,wBAAwB,EACxB,uBAAuB,EACvB,wBAAwB,EACxB,+BAA+B,EAC/B,uBAAuB,EACvB,wBAAwB,EACxB,8BAA8B,EAC9B,4BAA4B,EAC5B,sBAAsB,EACtB,uBAAuB,EACvB,2BAA2B,EAC3B,wBAAwB,EACxB,+BAA+B,EAC/B,8BAA8B,EAC9B,8BAA8B,EAC9B,6BAA6B,EAC7B,wBAAwB,EACxB,sBAAsB,EACtB,uBAAuB,EACvB,4BAA4B,EAC5B,kCAAkC,EAClC,4BAA4B,EAC5B,wBAAwB,EACxB,sBAAsB,EACtB,0CAA0C,EAC1C,iCAAiC,EACjC,sCAAsC,EACtC,8BAA8B,EAC9B,6BAA6B,EAC7B,kCAAkC,EAClC,wCAAwC,EACxC,uCAAuC,EACvC,qCAAqC,EACrC,oCAAoC,EACpC,oCAAoC,EACpC,4BAA4B,GAC7B,CAAC;AAEF,KAAK,kCAAkC,GAAG,qBAAqB,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trebired/code-server-kit",
3
- "version": "0.2.0",
4
- "description": "Framework-agnostic code-server launch kit for Node.js apps with installation resolution, launch planning, readiness checks, and process helpers.",
3
+ "version": "1.0.0",
4
+ "description": "Framework-agnostic code-server integration layer for Node.js apps with preparation, launch planning, lifecycle control, diagnostics, and Linux-first systemd support.",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "code-server",
@@ -48,6 +48,7 @@
48
48
  "typecheck": "tsc --noEmit"
49
49
  },
50
50
  "dependencies": {
51
+ "@trebired/logger-adapter": "^0.2.0",
51
52
  "code-server": "^4.117.0"
52
53
  },
53
54
  "devDependencies": {