···99import { type HandlerAuth, HandlerPipeThrough } from "@atproto/xrpc-server";
1010import type * as IoPocketenvServiceDefs from "./defs";
11111212-export type QueryParams = {};
1212+export interface QueryParams {
1313+ /** The ID of the sandbox to which the service belongs. */
1414+ sandboxId: string;
1515+}
13161417export interface InputSchema {
1518 service: IoPocketenvServiceDefs.Service;
+2
apps/api/src/schema/index.ts
···1212import tailscaleAuthKeys from "./tailscale-auth-keys";
1313import sshKeys from "./ssh-keys";
1414import sandboxPorts from "./sandbox-ports";
1515+import services from "./services";
15161617export default {
1718 sandboxes,
···2829 tailscaleAuthKeys,
2930 sshKeys,
3031 sandboxPorts,
3232+ services,
3133};