UNPKG

openraas

Version:

Open Robot-as-a-Service Protocol - A comprehensive TypeScript library for building and consuming RaaS applications with X402 payment support on Solana

8 lines (7 loc) 270 B
import { Robot } from '../core/types'; export interface RegistryAdapter { register(robot: Robot): Promise<void>; unregister(robotId: string): Promise<void>; find(criteria: Partial<Robot>): Promise<Robot[]>; get(robotId: string): Promise<Robot | null>; }