UNPKG

@mondaydotcomorg/atp-runtime

Version:

Runtime SDK injected into sandbox for Agent Tool Protocol

16 lines 428 B
import { GENERATED_METADATA } from './metadata/generated.js'; /** * Get all registered runtime APIs metadata * * This is generated at BUILD TIME by ts-morph, not at runtime */ export function getAllAPIs() { return GENERATED_METADATA; } /** * Get metadata for a specific API by name */ export function getAPI(name) { return GENERATED_METADATA.find((api) => api.name === name); } //# sourceMappingURL=registry.js.map