Skip to content

Commit 44d7679

Browse files
feat: export getCookieOptions and related types from utils
1 parent a29507f commit 44d7679

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

lib/main.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ export {
2424
sessionManagerActivityProxy,
2525
isClient,
2626
isServer,
27+
getCookieOptions,
2728
} from "./utils";
29+
export type { CookieEnv, CookieOptions, CookieOptionValue } from "./utils";
2830

2931
export {
3032
getClaim,

lib/utils/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ export {
99
frameworkSettings,
1010
generateKindeSDKHeader,
1111
} from "./exchangeAuthCode";
12+
export {
13+
getCookieOptions,
14+
} from "./getCookieOptions";
15+
export type {
16+
CookieEnv,
17+
CookieOptions,
18+
CookieOptionValue,
19+
} from "./getCookieOptions";
1220
export { checkAuth } from "./checkAuth";
1321
export { isCustomDomain } from "./isCustomDomain";
1422
export { setRefreshTimer, clearRefreshTimer } from "./refreshTimer";

0 commit comments

Comments
 (0)