update the api reports

Signed-off-by: Brian Fletcher <brian@roadie.io>
This commit is contained in:
Brian Fletcher
2023-07-28 11:17:53 +01:00
parent 0b1d775be0
commit caea612266
+7 -4
View File
@@ -109,10 +109,7 @@ export type TemplateActionOptions<
> = {
id: string;
description?: string;
examples?: {
description: string;
example: string;
}[];
examples?: TemplateExample[];
supportsDryRun?: boolean;
schema?: {
input?: TInputSchema;
@@ -120,4 +117,10 @@ export type TemplateActionOptions<
};
handler: (ctx: ActionContext<TActionInput, TActionOutput>) => Promise<void>;
};
// @public (undocumented)
export type TemplateExample = {
description: string;
example: string;
};
```