@asgardeo/vue 0.1.0 → 0.2.0
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/__temp__/api.d.ts +2 -2
- package/dist/cjs/index.js.map +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
package/dist/__temp__/api.d.ts
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* specific language governing permissions and limitations
|
|
16
16
|
* under the License.
|
|
17
17
|
*/
|
|
18
|
-
import { AsgardeoSPAClient, AuthClientConfig, User, LegacyConfig as Config, IdToken, Hooks,
|
|
18
|
+
import { AsgardeoSPAClient, AuthClientConfig, User, LegacyConfig as Config, IdToken, Hooks, HttpClient, HttpRequestConfig, HttpResponse, OIDCEndpoints, SignInConfig, SPACustomGrantConfig } from '@asgardeo/browser';
|
|
19
19
|
import { AuthStateInterface } from './models';
|
|
20
20
|
declare class AuthAPI {
|
|
21
21
|
static DEFAULT_STATE: AuthStateInterface;
|
|
@@ -43,7 +43,7 @@ declare class AuthAPI {
|
|
|
43
43
|
httpRequestAll(configs: HttpRequestConfig[]): Promise<HttpResponse<any>[]>;
|
|
44
44
|
exchangeToken(config: SPACustomGrantConfig, callback: (response: User | Response) => void): Promise<User | Response>;
|
|
45
45
|
getOpenIDProviderEndpoints(): Promise<OIDCEndpoints>;
|
|
46
|
-
getHttpClient(): Promise<
|
|
46
|
+
getHttpClient(): Promise<HttpClient>;
|
|
47
47
|
decodeJwtToken<T = Record<string, unknown>>(token: string): Promise<T>;
|
|
48
48
|
getDecodedIdToken(sessionId?: string): Promise<IdToken>;
|
|
49
49
|
getIdToken(): Promise<string>;
|