@asgardeo/vue 0.0.2 → 0.0.4
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/cjs/index.js +6 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/auth-api.d.ts +2 -2
- package/dist/cjs/types/tests/mocks/mocks.d.ts +1 -1
- package/dist/cjs/types/types.d.ts +1 -1
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/auth-api.d.ts +2 -2
- package/dist/esm/types/tests/mocks/mocks.d.ts +1 -1
- package/dist/esm/types/types.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -221,10 +221,10 @@ declare class AuthAPI {
|
|
|
221
221
|
*
|
|
222
222
|
* @example
|
|
223
223
|
* ```
|
|
224
|
-
* client.
|
|
224
|
+
* client.signInSilently();
|
|
225
225
|
* ```
|
|
226
226
|
*/
|
|
227
|
-
|
|
227
|
+
signInSilently(additionalParams?: Record<string, string | boolean>, tokenRequestConfig?: {
|
|
228
228
|
params: Record<string, unknown>;
|
|
229
229
|
}): Promise<BasicUserInfo | boolean>;
|
|
230
230
|
}
|
|
@@ -92,7 +92,7 @@ export interface AuthContextInterface {
|
|
|
92
92
|
}) => Promise<BasicUserInfo>;
|
|
93
93
|
signOut: (callback?: (response: boolean) => void) => Promise<boolean>;
|
|
94
94
|
state: AuthStateInterface;
|
|
95
|
-
|
|
95
|
+
signInSilently: (additionalParams?: Record<string, string | boolean>, tokenRequestConfig?: {
|
|
96
96
|
params: Record<string, unknown>;
|
|
97
97
|
}) => Promise<boolean | BasicUserInfo>;
|
|
98
98
|
reInitialize(config: Partial<AuthClientConfig<Config>>): Promise<void>;
|
package/dist/index.d.ts
CHANGED
|
@@ -96,7 +96,7 @@ interface AuthContextInterface {
|
|
|
96
96
|
}) => Promise<BasicUserInfo>;
|
|
97
97
|
signOut: (callback?: (response: boolean) => void) => Promise<boolean>;
|
|
98
98
|
state: AuthStateInterface;
|
|
99
|
-
|
|
99
|
+
signInSilently: (additionalParams?: Record<string, string | boolean>, tokenRequestConfig?: {
|
|
100
100
|
params: Record<string, unknown>;
|
|
101
101
|
}) => Promise<boolean | BasicUserInfo>;
|
|
102
102
|
reInitialize(config: Partial<AuthClientConfig<Config>>): Promise<void>;
|