analytica.click 0.0.116 → 0.0.117
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/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -86,7 +86,6 @@ declare module 'analytica.click/common-ui/src/types/jwt' {
|
|
86
86
|
*/
|
87
87
|
loginWithRedirect: (stateqs?: string) => void;
|
88
88
|
logout: () => void;
|
89
|
-
logoutRaw: () => void;
|
90
89
|
user: AxiosWrapper<User>;
|
91
90
|
error: Error | undefined;
|
92
91
|
refreshToken: () => Promise<User | undefined>;
|
@@ -180,6 +179,7 @@ declare module 'analytica.click/common-ui/src/types/widgets' {
|
|
180
179
|
}
|
181
180
|
export interface ICognitoAuthProviderPropsInternal extends ICognitoAuthProviderProps {
|
182
181
|
Context: React.Context<AuthedUserContext>;
|
182
|
+
noLogoutRedirect?: boolean;
|
183
183
|
}
|
184
184
|
|
185
185
|
}
|
@@ -198,6 +198,7 @@ declare module 'analytica.click/ui-npm/src/components/AnalyticaConfig/types' {
|
|
198
198
|
analyticaToken?: string;
|
199
199
|
overrideBaseUrl?: string;
|
200
200
|
devMode?: boolean;
|
201
|
+
noLogoutRedirect?: boolean;
|
201
202
|
}
|
202
203
|
|
203
204
|
}
|