astro-tokenkit 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/client/tk-client.js +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/dist/middleware.cjs.map +1 -1
- package/dist/middleware.js.map +1 -1
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -210,6 +210,8 @@ interface IdleConfig {
|
|
|
210
210
|
onIdle?: () => void;
|
|
211
211
|
/** Whether to automatically logout on idle (default: true) */
|
|
212
212
|
autoLogout?: boolean;
|
|
213
|
+
/** Whether to reload the page after automatic logout (default: true) */
|
|
214
|
+
reload?: boolean;
|
|
213
215
|
/** Whether to monitor activity only on the active tab (default: true) */
|
|
214
216
|
activeTabOnly?: boolean;
|
|
215
217
|
/**
|