diff --git a/package-lock.json b/package-lock.json index 332b458..8c9d2ce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "3.0.1", "license": "MIT", "dependencies": { - "@frontify/frontify-authenticator": "^2.0.0" + "@frontify/frontify-authenticator": "^2.0.2-beta.3" }, "devDependencies": { "@frontify/eslint-config-basic": "^1.0.11", @@ -962,9 +962,9 @@ } }, "node_modules/@frontify/frontify-authenticator": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@frontify/frontify-authenticator/-/frontify-authenticator-2.0.1.tgz", - "integrity": "sha512-ExOeGYrFuaCiqneqnWHNNqJvJx9CzKI4fkUK6ynV2UweWBzV/PGIF4MBMjuq6Nsr2a0JbOr03Yg/D5n+1J8L6w==", + "version": "2.0.2-beta.3", + "resolved": "https://registry.npmjs.org/@frontify/frontify-authenticator/-/frontify-authenticator-2.0.2-beta.3.tgz", + "integrity": "sha512-azRhAdGyyrApLFwpctTPqBGbqgE2oC+dKLRsaii456CdjY36TeNEo6YOgu5REvqMAGBLZPNPAgdQRaHqbApmqw==", "license": "MIT" }, "node_modules/@humanfs/core": { diff --git a/package.json b/package.json index 73cc057..3492f26 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,6 @@ "typescript": "^6.0.0" }, "dependencies": { - "@frontify/frontify-authenticator": "^2.0.0" + "@frontify/frontify-authenticator": "^2.0.2-beta.3" } } diff --git a/src/Finder.ts b/src/Finder.ts index f3cd2de..9d73136 100644 --- a/src/Finder.ts +++ b/src/Finder.ts @@ -202,7 +202,7 @@ function createFinderElement(domain: string): HTMLIFrameElement { iFrame.style.height = '100%'; iFrame.style.display = 'block'; iFrame.className = 'frontify-finder-iframe'; - iFrame.src = `https://${domain}/external-asset-chooser`; + iFrame.src = `https://${domain}/embedded-asset-chooser`; iFrame.name = 'Frontify Finder'; iFrame.sandbox.add('allow-same-origin');