From 72dcc20050ae3cf5c32a0f44709638eb38374271 Mon Sep 17 00:00:00 2001 From: Tanner <88640606+Codetrauma@users.noreply.github.com> Date: Wed, 27 Aug 2025 07:43:50 -0400 Subject: [PATCH] feat: adding inputs step to StepConfig docs (#25) --- docs/extension/plugins.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/extension/plugins.md b/docs/extension/plugins.md index 3e2b191..de56eb1 100644 --- a/docs/extension/plugins.md +++ b/docs/extension/plugins.md @@ -59,6 +59,7 @@ type StepConfig = { title: string; // Text for the step's title description?: string; // OPTIONAL: Text for the step's description cta: string; // Text for the step's call-to-action button + inputs?: InputFieldConfig[]; // Input fields for user data collection (optional) action: string; // The function name that this step will execute prover?: boolean; // Boolean indicating if this step outputs a notarization }