mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
export interface SessionState {
|
|
sessionId: string;
|
|
metadata: {
|
|
createdAt: string;
|
|
lastAccess: string;
|
|
};
|
|
context: {
|
|
n8nApiUrl: string;
|
|
n8nApiKey: string;
|
|
instanceId?: string;
|
|
sessionId?: string;
|
|
metadata?: Record<string, any>;
|
|
};
|
|
}
|
|
//# sourceMappingURL=session-state.d.ts.map
|