import type { MeticulousClient } from "../types/client.types"; import type { AcquireAgenticRepoLeaseParams, AcquireAgenticRepoLeaseResponse, AgenticRepoLeaseStatusResponse, GetAgenticRepoFileParams, GetAgenticRepoFileResponse, GetAgenticRepoLeaseStatusParams, HeartbeatAgenticRepoLeaseParams, HeartbeatAgenticRepoLeaseResponse, ListAgenticRepoTreeParams, ListAgenticRepoTreeResponse, ReleaseAgenticRepoLeaseParams, ReleaseAgenticRepoLeaseResponse, SearchAgenticRepoCodeParams, SearchAgenticRepoCodeResponse } from "./agentic-session-generation.api"; /** * Repo-server source access for the weekly session-mutation * catalog-maintenance job. Same request/response shapes as the agentic * session-generation repo surface (the backend delegates to the same * service) but served under `session-transform-discovery/*`, which is gated * on the `autoMaintainSessionMutationCatalog` project setting instead of * the agentic feature flag. */ export declare const getDiscoveryRepoFile: ({ client, projectId, ...body }: GetAgenticRepoFileParams & { client: MeticulousClient; }) => Promise; export declare const searchDiscoveryRepoCode: ({ client, projectId, ...body }: SearchAgenticRepoCodeParams & { client: MeticulousClient; }) => Promise; export declare const listDiscoveryRepoTree: ({ client, projectId, ...body }: ListAgenticRepoTreeParams & { client: MeticulousClient; }) => Promise; export declare const acquireDiscoveryRepoLease: ({ client, projectId, ...body }: AcquireAgenticRepoLeaseParams & { client: MeticulousClient; }) => Promise; export declare const getDiscoveryRepoLeaseStatus: ({ client, projectId, podInstanceId, }: GetAgenticRepoLeaseStatusParams & { client: MeticulousClient; }) => Promise; export declare const heartbeatDiscoveryRepoLease: ({ client, projectId, ...body }: HeartbeatAgenticRepoLeaseParams & { client: MeticulousClient; }) => Promise; export declare const releaseDiscoveryRepoLease: ({ client, projectId, ...body }: ReleaseAgenticRepoLeaseParams & { client: MeticulousClient; }) => Promise; //# sourceMappingURL=session-transform-discovery.api.d.ts.map