import { RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse, RunQuickLaunchSweepRequest, RunQuickLaunchSweepResponse } from "./worker_service_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; /** * launches.v1.WorkerService re-declares the launch-scoped worker RPCs served * today by data.v1.WorkerService (LP endpoint migration, phase 1). Cron/S2S * invoked — not meant for a public gateway route. Messages are copied from * data/v1/workerService.proto (all empty today); keep in sync until the * data.v1 declarations are deleted. * * @generated from service launches.v1.WorkerService */ export declare const WorkerService: { readonly typeName: "launches.v1.WorkerService"; readonly methods: { /** * @generated from rpc launches.v1.WorkerService.RunLaunchpadOrphanCleanup */ readonly runLaunchpadOrphanCleanup: { readonly name: "RunLaunchpadOrphanCleanup"; readonly I: typeof RunLaunchpadOrphanCleanupRequest; readonly O: typeof RunLaunchpadOrphanCleanupResponse; readonly kind: MethodKind.Unary; }; /** * @generated from rpc launches.v1.WorkerService.RunQuickLaunchSweep */ readonly runQuickLaunchSweep: { readonly name: "RunQuickLaunchSweep"; readonly I: typeof RunQuickLaunchSweepRequest; readonly O: typeof RunQuickLaunchSweepResponse; readonly kind: MethodKind.Unary; }; }; };