mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
15 lines
475 B
TypeScript
15 lines
475 B
TypeScript
export interface InstanceContext {
|
|
n8nApiUrl?: string;
|
|
n8nApiKey?: string;
|
|
n8nApiTimeout?: number;
|
|
n8nApiMaxRetries?: number;
|
|
instanceId?: string;
|
|
sessionId?: string;
|
|
metadata?: Record<string, any>;
|
|
}
|
|
export declare function isInstanceContext(obj: any): obj is InstanceContext;
|
|
export declare function validateInstanceContext(context: InstanceContext): {
|
|
valid: boolean;
|
|
errors?: string[];
|
|
};
|
|
//# sourceMappingURL=instance-context.d.ts.map
|