@capgo/capacitor-social-login 0.0.40 → 0.0.41

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -212,7 +212,9 @@ Directly call the `initialize` method with the `google` provider
212
212
  ```typescript
213
213
  await SocialLogin.initialize({
214
214
  google: {
215
- clientId: 'your-client-id', // the web client id
215
+ webClientId: 'your-client-id', // the web client id for Android and Web
216
+ iOSClientId: 'your-client-id', // the iOS client id
217
+ iOSServerClientId: 'your-server-client-id', // the iOS server client id (optional)
216
218
  },
217
219
  });
218
220
  const res = await SocialLogin.login({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-social-login",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "description": "All social logins in one plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",