// package/src/interfaces/action.interface.ts export interface Action { name: string; // unique identifier of the action execute(payload: any): Promise; // execution logic }