@adhdev/daemon-core 0.8.40 → 0.8.42
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/dist/shared-types.d.ts
CHANGED
|
@@ -273,6 +273,7 @@ export interface CompactSessionEntry {
|
|
|
273
273
|
currentPlan?: string;
|
|
274
274
|
currentAutoApprove?: string;
|
|
275
275
|
}
|
|
276
|
+
export type VersionUpdateReason = 'force_update_below' | 'major_minor_mismatch' | 'patch_mismatch' | 'daemon_ahead';
|
|
276
277
|
/** Available provider information */
|
|
277
278
|
export interface AvailableProviderInfo {
|
|
278
279
|
type: string;
|
|
@@ -386,6 +387,8 @@ export interface CompactDaemonEntry {
|
|
|
386
387
|
version?: string;
|
|
387
388
|
serverVersion?: string;
|
|
388
389
|
versionMismatch?: boolean;
|
|
390
|
+
versionUpdateRequired?: boolean;
|
|
391
|
+
versionUpdateReason?: VersionUpdateReason;
|
|
389
392
|
terminalBackend?: TerminalBackendStatus;
|
|
390
393
|
detectedIdes?: DetectedIdeInfo[];
|
|
391
394
|
availableProviders?: AvailableProviderInfo[];
|
|
@@ -405,6 +408,8 @@ export interface CloudDaemonSummaryEntry {
|
|
|
405
408
|
version?: string;
|
|
406
409
|
serverVersion?: string;
|
|
407
410
|
versionMismatch?: boolean;
|
|
411
|
+
versionUpdateRequired?: boolean;
|
|
412
|
+
versionUpdateReason?: VersionUpdateReason;
|
|
408
413
|
terminalBackend?: TerminalBackendStatus;
|
|
409
414
|
}
|
|
410
415
|
/** Minimal daemon bootstrap payload used by dashboard WS to initiate P2P. */
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
package/src/shared-types.ts
CHANGED
|
@@ -339,6 +339,12 @@ export interface CompactSessionEntry {
|
|
|
339
339
|
currentAutoApprove?: string;
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
+
export type VersionUpdateReason =
|
|
343
|
+
| 'force_update_below'
|
|
344
|
+
| 'major_minor_mismatch'
|
|
345
|
+
| 'patch_mismatch'
|
|
346
|
+
| 'daemon_ahead';
|
|
347
|
+
|
|
342
348
|
/** Available provider information */
|
|
343
349
|
export interface AvailableProviderInfo {
|
|
344
350
|
type: string;
|
|
@@ -455,6 +461,8 @@ export interface CompactDaemonEntry {
|
|
|
455
461
|
version?: string;
|
|
456
462
|
serverVersion?: string;
|
|
457
463
|
versionMismatch?: boolean;
|
|
464
|
+
versionUpdateRequired?: boolean;
|
|
465
|
+
versionUpdateReason?: VersionUpdateReason;
|
|
458
466
|
terminalBackend?: TerminalBackendStatus;
|
|
459
467
|
detectedIdes?: DetectedIdeInfo[];
|
|
460
468
|
availableProviders?: AvailableProviderInfo[];
|
|
@@ -475,6 +483,8 @@ export interface CloudDaemonSummaryEntry {
|
|
|
475
483
|
version?: string;
|
|
476
484
|
serverVersion?: string;
|
|
477
485
|
versionMismatch?: boolean;
|
|
486
|
+
versionUpdateRequired?: boolean;
|
|
487
|
+
versionUpdateReason?: VersionUpdateReason;
|
|
478
488
|
terminalBackend?: TerminalBackendStatus;
|
|
479
489
|
}
|
|
480
490
|
|