@frontegg/nextjs 6.7.9-alpha.3787447063 → 6.7.9-alpha.3788849703
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/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/withFronteggApp.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### NextJS Wrapper 6.7.9:
|
|
7
|
+
- FR-10132 - update withFronteggApp type
|
|
8
|
+
- FR-10132 - update withFronteggApp type
|
|
7
9
|
- FR-10166 - update code owners
|
|
8
10
|
- FR-10132 - split cookie and type fixes
|
|
9
11
|
- FR-10106-FR-10103- Make package output both cjs and esm and support useAuthUser for SSR
|
package/package.json
CHANGED
package/withFronteggApp.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { FronteggNextJSSession } from './common';
|
|
|
5
5
|
type FronteggCustomApp = NextComponentType<AppContextType & {
|
|
6
6
|
session: FronteggNextJSSession | null;
|
|
7
7
|
}, AppInitialProps, AppPropsType>;
|
|
8
|
-
export declare const withFronteggApp: (app: ((props:
|
|
8
|
+
export declare const withFronteggApp: (app: ((props: AppPropsType<any>) => JSX.Element) & {
|
|
9
9
|
getInitialProps?: FronteggCustomApp['getInitialProps'];
|
|
10
10
|
}, options?: Omit<FronteggAppOptions, 'contextOptions'> & {
|
|
11
11
|
contextOptions?: FronteggAppOptions['contextOptions'];
|