eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 367 B
TypeScript
/**
* Replaces the connector UID literal in a scaffolded Connect connection
* definition (`auth: connect("…")`). Returns `{ patched: false }` when the file
* is missing or contains no `connect("…")` call to rewrite.
*/
export declare function updateConnectionConnectorUid(connectionFilePath: string, connectorUid: string): Promise<{
patched: boolean;
}>;