@logto/connector-google 1.8.1 → 1.8.3
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/README.md +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ Scopes define the permissions your app requests from users and control which dat
|
|
|
70
70
|
|
|
71
71
|
### Configure scopes in Google Cloud Console
|
|
72
72
|
|
|
73
|
-
1. Navigate to **APIs & Services > OAuth consent screen >
|
|
73
|
+
1. Navigate to **APIs & Services > OAuth consent screen > Data Access**.
|
|
74
74
|
2. Click **Add or Remove Scopes** and select only the scopes your app requires:
|
|
75
75
|
- **Authentication (Required)**:
|
|
76
76
|
- `https://www.googleapis.com/auth/userinfo.email`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@logto/connector-google",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
4
4
|
"description": "Google web connector implementation.",
|
|
5
5
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
6
6
|
"dependencies": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"jose": "^5.6.3",
|
|
10
10
|
"snakecase-keys": "^8.0.1",
|
|
11
11
|
"zod": "3.24.3",
|
|
12
|
-
"@logto/connector-kit": "^
|
|
12
|
+
"@logto/connector-kit": "^5.0.0"
|
|
13
13
|
},
|
|
14
14
|
"main": "./lib/index.js",
|
|
15
15
|
"module": "./lib/index.js",
|
|
@@ -63,7 +63,8 @@
|
|
|
63
63
|
"dev": "tsup --watch",
|
|
64
64
|
"lint": "eslint --ext .ts src",
|
|
65
65
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
|
66
|
-
"test": "vitest src",
|
|
66
|
+
"test": "vitest run src",
|
|
67
|
+
"test:watch": "vitest src --watch",
|
|
67
68
|
"test:ci": "pnpm run test --silent --coverage"
|
|
68
69
|
}
|
|
69
70
|
}
|