paperclip / ui /src /api /workspace-runtime-control.ts
cjovs's picture
Deploy Paperclip CN to Hugging Face Space
96e86e5
import type { WorkspaceRuntimeControlTarget } from "@penclipai/shared";
export function sanitizeWorkspaceRuntimeControlTarget(
target: WorkspaceRuntimeControlTarget = {},
): WorkspaceRuntimeControlTarget {
return {
workspaceCommandId: target.workspaceCommandId ?? null,
runtimeServiceId: target.runtimeServiceId ?? null,
serviceIndex: target.serviceIndex ?? null,
};
}