github-actions
released this
19 Sep 15:17
·
27 commits
to main
since this release
Patch Changes
-
05537b2: [Fix/Docs]:
- Update Type
AstroTurnstileOptions
to reflect the correct default values by switching fromz.infer
to atypeof Schema._input
which properly shows the type as it would be used by the enduser
// Previously type AstroTurnstileOptions = { endpointPath: string; disableClientScript: boolean; disableDevToolbar: boolean; verbose: boolean; }; // Now type AstroTurnstileOptions = | { endpointPath?: string | undefined; disableClientScript?: boolean | undefined; disableDevToolbar?: boolean | undefined; verbose?: boolean | undefined; } | undefined;
- Update readme to include instructions and more information about what is available to users from the integration
- Update Type