diff --git a/package.json b/package.json index a6ae4c4..b97417a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,8 @@ { "name": "@teamreflex/typed-action", - "version": "1.0.0", + "version": "1.0.1", "description": "Zod validated React server actions", + "repository": "https://github.com/teamreflex/typed-action", "publishConfig": { "access": "public" }, diff --git a/src/types.ts b/src/types.ts index 9646ffb..3eb6956 100644 --- a/src/types.ts +++ b/src/types.ts @@ -22,7 +22,7 @@ export type TypedActionResult = export type ValidForm = FormData | Record -interface BaseAction { +export interface BaseAction { /** Input data */ form: ValidForm