Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
206 changes: 103 additions & 103 deletions examples/vue-app/package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions examples/vue-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
},
"dependencies": {
"@toruslabs/broadcast-channel": "13.3.0",
"@toruslabs/constants": "^16.1.0",
"@toruslabs/constants": "^16.1.1",
"@toruslabs/customauth": "file:../../",
"@toruslabs/fnd-base": "^16.1.0",
"@toruslabs/torus.js": "^17.2.0",
"@toruslabs/fnd-base": "^16.1.1",
"@toruslabs/torus.js": "^17.2.2",
"@toruslabs/vue-components": "^9.0.1",
"@toruslabs/vue-icons": "^9.0.0",
"core-js": "^3.49.0",
"daisyui": "^5.5.19",
"enc-utils": "^3.0.0",
"viem": "^2.47.5",
"viem": "^2.47.6",
"vue": "^3.5.30",
"vue-i18n": "^11.3.0",
"vue-router": "^5.0.4"
Expand All @@ -38,7 +38,7 @@
"source-map-loader": "^5.0.0",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"vite": "^8.0.1"
"vite": "^8.0.2"
},
"browserslist": [
"supports bigint",
Expand Down
280 changes: 140 additions & 140 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
"dependencies": {
"@chaitanyapotti/register-service-worker": "^1.7.4",
"@toruslabs/broadcast-channel": "^13.3.0",
"@toruslabs/constants": "^16.1.0",
"@toruslabs/constants": "^16.1.1",
"@toruslabs/eccrypto": "^7.0.0",
"@toruslabs/fetch-node-details": "^16.1.0",
"@toruslabs/fetch-node-details": "^16.1.1",
"@toruslabs/http-helpers": "^9.0.0",
"@toruslabs/metadata-helpers": "^8.2.0",
"@toruslabs/session-manager": "^5.6.0",
"@toruslabs/torus.js": "^17.2.0",
"@toruslabs/torus.js": "^17.2.2",
"bowser": "^2.14.1",
"deepmerge": "^4.3.1",
"events": "^3.3.0",
Expand All @@ -58,7 +58,7 @@
"rimraf": "^6.1.3",
"typed-emitter": "^2.1.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
"vitest": "^4.1.1"
},
"author": "Torus Labs",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/FacebookHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default class FacebookHandler extends AbstractLoginHandler {
}

setFinalUrl(): void {
const finalUrl = new URL("https://www.facebook.com/v20.0/dialog/oauth");
const finalUrl = new URL("https://www.facebook.com/v25.0/dialog/oauth");
const clonedParams = JSON.parse(JSON.stringify(this.params.jwtParams || {}));
const finalJwtParams = deepmerge(
{
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/Web3AuthPasswordlessHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class Web3AuthPasswordlessHandler extends AbstractLoginHandler {

setFinalUrl(): void {
const { domain } = this.params.jwtParams || {};
const finalUrl = validateAndConstructUrl(domain || "https://passwordless.web3auth.io/v7");
const finalUrl = validateAndConstructUrl(domain || "https://passwordless.web3auth.io/v8");
finalUrl.pathname += finalUrl.pathname.endsWith("/") ? "authorize" : "/authorize";
const clonedParams = JSON.parse(JSON.stringify(this.params.jwtParams || {}));
delete clonedParams.domain;
Expand Down
Loading