@vibecontrols/vibe-plugin-session-tmux 2026.428.4 → 2026.505.1
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.
Potentially problematic release.
This version of @vibecontrols/vibe-plugin-session-tmux might be problematic. Click here for more details.
- package/dist/index.d.ts +11 -1
- package/dist/index.js +7 -1254
- package/package.json +9 -6
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ interface SessionConfig {
|
|
|
19
19
|
rows: number;
|
|
20
20
|
};
|
|
21
21
|
projectId?: string;
|
|
22
|
+
/** Optional provider-native session name. See manager docs. */
|
|
23
|
+
externalName?: string;
|
|
22
24
|
}
|
|
23
25
|
interface SessionInfo {
|
|
24
26
|
id: string;
|
|
@@ -108,6 +110,15 @@ interface SessionProvider {
|
|
|
108
110
|
line: number;
|
|
109
111
|
content: string;
|
|
110
112
|
}>>;
|
|
113
|
+
discoverOrphans?(): Promise<OrphanSessionInfo[]>;
|
|
114
|
+
adopt?(externalName: string, displayName?: string): Promise<SessionInfo>;
|
|
115
|
+
}
|
|
116
|
+
interface OrphanSessionInfo {
|
|
117
|
+
externalName: string;
|
|
118
|
+
provider: string;
|
|
119
|
+
windows: number;
|
|
120
|
+
attached: boolean;
|
|
121
|
+
createdAt?: string;
|
|
111
122
|
}
|
|
112
123
|
interface SessionProviderCapabilities {
|
|
113
124
|
provider: string;
|
|
@@ -164,4 +175,3 @@ interface VibePlugin {
|
|
|
164
175
|
declare const vibePlugin: VibePlugin;
|
|
165
176
|
export { vibePlugin };
|
|
166
177
|
export type { SessionProvider, SessionProviderCapabilities, SessionConfig, SessionInfo, SessionStatus, TerminalInfo, HealthCheckResult, SystemSessionInfo, SystemTerminalInfo, VibePlugin, HostServices, };
|
|
167
|
-
//# sourceMappingURL=index.d.ts.map
|