@dfinity/auth-client
Advanced tools
@@ -49,2 +49,7 @@ /** @module AuthClient */ | ||
/** | ||
* Origin for Identity Provider to use while generating the delegated identity. For II, the derivation origin must authorize this origin by setting a record at `<derivation-origin>/.well-known/ii-alternative-origins`. | ||
* @see https://github.com/dfinity/internet-identity/blob/main/docs/internet-identity-spec.adoc | ||
*/ | ||
derivationOrigin?: string | URL; | ||
/** | ||
* Auth Window feature config string | ||
@@ -139,2 +144,3 @@ * @example "toolbar=0,location=0,menubar=0,width=500,height=500,left=100,top=100" | ||
* @param options.maxTimeToLive Expiration of the authentication in nanoseconds | ||
* @param options.derivationOrigin Origin for Identity Provider to use while generating the delegated identity | ||
* @param options.windowOpenerFeatures Configures the opened authentication window | ||
@@ -172,2 +178,7 @@ * @param options.onSuccess Callback once login has completed | ||
*/ | ||
/** | ||
* Origin for Identity Provider to use while generating the delegated identity. For II, the derivation origin must authorize this origin by setting a record at `<derivation-origin>/.well-known/ii-alternative-origins`. | ||
* @see https://github.com/dfinity/internet-identity/blob/main/docs/internet-identity-spec.adoc | ||
*/ | ||
derivationOrigin?: string | URL; | ||
windowOpenerFeatures?: string; | ||
@@ -174,0 +185,0 @@ /** |
@@ -198,2 +198,3 @@ "use strict"; | ||
* @param options.maxTimeToLive Expiration of the authentication in nanoseconds | ||
* @param options.derivationOrigin Origin for Identity Provider to use while generating the delegated identity | ||
* @param options.windowOpenerFeatures Configures the opened authentication window | ||
@@ -257,3 +258,3 @@ * @param options.onSuccess Callback once login has completed | ||
return async (event) => { | ||
var _a, _b; | ||
var _a, _b, _c; | ||
if (event.origin !== identityProviderUrl.origin) { | ||
@@ -271,4 +272,5 @@ console.warn(`WARNING: expected origin '${identityProviderUrl.origin}', got '${event.origin}' (ignoring)`); | ||
maxTimeToLive: options === null || options === void 0 ? void 0 : options.maxTimeToLive, | ||
derivationOrigin: (_b = options === null || options === void 0 ? void 0 : options.derivationOrigin) === null || _b === void 0 ? void 0 : _b.toString(), | ||
}; | ||
(_b = this._idpWindow) === null || _b === void 0 ? void 0 : _b.postMessage(request, identityProviderUrl.origin); | ||
(_c = this._idpWindow) === null || _c === void 0 ? void 0 : _c.postMessage(request, identityProviderUrl.origin); | ||
break; | ||
@@ -275,0 +277,0 @@ } |
@@ -49,2 +49,7 @@ /** @module AuthClient */ | ||
/** | ||
* Origin for Identity Provider to use while generating the delegated identity. For II, the derivation origin must authorize this origin by setting a record at `<derivation-origin>/.well-known/ii-alternative-origins`. | ||
* @see https://github.com/dfinity/internet-identity/blob/main/docs/internet-identity-spec.adoc | ||
*/ | ||
derivationOrigin?: string | URL; | ||
/** | ||
* Auth Window feature config string | ||
@@ -139,2 +144,3 @@ * @example "toolbar=0,location=0,menubar=0,width=500,height=500,left=100,top=100" | ||
* @param options.maxTimeToLive Expiration of the authentication in nanoseconds | ||
* @param options.derivationOrigin Origin for Identity Provider to use while generating the delegated identity | ||
* @param options.windowOpenerFeatures Configures the opened authentication window | ||
@@ -172,2 +178,7 @@ * @param options.onSuccess Callback once login has completed | ||
*/ | ||
/** | ||
* Origin for Identity Provider to use while generating the delegated identity. For II, the derivation origin must authorize this origin by setting a record at `<derivation-origin>/.well-known/ii-alternative-origins`. | ||
* @see https://github.com/dfinity/internet-identity/blob/main/docs/internet-identity-spec.adoc | ||
*/ | ||
derivationOrigin?: string | URL; | ||
windowOpenerFeatures?: string; | ||
@@ -174,0 +185,0 @@ /** |
@@ -184,2 +184,3 @@ /** @module AuthClient */ | ||
* @param options.maxTimeToLive Expiration of the authentication in nanoseconds | ||
* @param options.derivationOrigin Origin for Identity Provider to use while generating the delegated identity | ||
* @param options.windowOpenerFeatures Configures the opened authentication window | ||
@@ -243,3 +244,3 @@ * @param options.onSuccess Callback once login has completed | ||
return async (event) => { | ||
var _a, _b; | ||
var _a, _b, _c; | ||
if (event.origin !== identityProviderUrl.origin) { | ||
@@ -257,4 +258,5 @@ console.warn(`WARNING: expected origin '${identityProviderUrl.origin}', got '${event.origin}' (ignoring)`); | ||
maxTimeToLive: options === null || options === void 0 ? void 0 : options.maxTimeToLive, | ||
derivationOrigin: (_b = options === null || options === void 0 ? void 0 : options.derivationOrigin) === null || _b === void 0 ? void 0 : _b.toString(), | ||
}; | ||
(_b = this._idpWindow) === null || _b === void 0 ? void 0 : _b.postMessage(request, identityProviderUrl.origin); | ||
(_c = this._idpWindow) === null || _c === void 0 ? void 0 : _c.postMessage(request, identityProviderUrl.origin); | ||
break; | ||
@@ -261,0 +263,0 @@ } |
{ | ||
"name": "@dfinity/auth-client", | ||
"version": "0.12.0", | ||
"version": "0.12.1-beta.0", | ||
"author": "DFINITY Stiftung <sdk@dfinity.org>", | ||
@@ -48,6 +48,6 @@ "license": "Apache-2.0", | ||
"peerDependencies": { | ||
"@dfinity/agent": "^0.12.0", | ||
"@dfinity/authentication": "^0.12.0", | ||
"@dfinity/identity": "^0.12.0", | ||
"@dfinity/principal": "^0.12.0" | ||
"@dfinity/agent": "^0.12.1-beta.0", | ||
"@dfinity/authentication": "^0.12.1-beta.0", | ||
"@dfinity/identity": "^0.12.1-beta.0", | ||
"@dfinity/principal": "^0.12.1-beta.0" | ||
}, | ||
@@ -54,0 +54,0 @@ "devDependencies": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
147493
1.76%1422
1.86%