diff --git a/package-lock.json b/package-lock.json index d47c297..5bda9b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@workos-inc/authkit-js", - "version": "0.7.2", + "version": "0.8.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@workos-inc/authkit-js", - "version": "0.7.2", + "version": "0.8.0", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.14", diff --git a/package.json b/package.json index b1a6373..7bb0f34 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@workos-inc/authkit-js", - "version": "0.7.3", + "version": "0.8.0", "description": "AuthKit SDK", "main": "./dist/index.js", "module": "./dist/index.mjs", diff --git a/src/index.ts b/src/index.ts index a893c39..36ccb65 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ export { createClient } from "./create-client"; export { getClaims } from "./utils/session-data"; -export { User, AuthenticationResponse } from "./interfaces"; +export { User, AuthenticationResponse, OnRefreshResponse } from "./interfaces"; export { AuthKitError, LoginRequiredError } from "./errors";