getStepSpecs
client.persistentMemory.getStepSpecs(): Promise<PersistentMemoryStepSpec[]>
Retrieves all available processing step specifications.
Returns the catalog of step types that can be used when building persistent memory pipelines. Each spec describes a step's inputs, outputs, and configurable parameters.
Parameters
No parameters.
Returns
Promise<PersistentMemoryStepSpec[]> — A promise that resolves to an array of step specifications
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.persistentMemory.getStepSpecs();
console.log(result);