@capgo/capacitor-social-login 8.1.0 → 8.1.1

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 CHANGED
@@ -417,6 +417,15 @@ await SocialLogin.login({
417
417
 
418
418
  **Note**: Other apps like Listonic work with Family Link accounts because they use similar configurations. The default settings may be too restrictive for supervised accounts.
419
419
 
420
+ ## Where to store access tokens?
421
+
422
+ You can use the [@capgo/capacitor-persistent-account](https://github.com/Cap-go/capacitor-persistent-account) plugin for this.
423
+
424
+ This plugin stores data in secure locations for native devices.
425
+
426
+ For Android, it will store data in Android's Account Manager, which provides system-level account management.
427
+ For iOS, it will store data in the Keychain, which is Apple's secure credential storage.
428
+
420
429
  ## API
421
430
 
422
431
  <docgen-index>
@@ -19,7 +19,7 @@ import org.json.JSONObject;
19
19
  @CapacitorPlugin(name = "SocialLogin")
20
20
  public class SocialLoginPlugin extends Plugin {
21
21
 
22
- private final String pluginVersion = "8.1.0";
22
+ private final String pluginVersion = "8.1.1";
23
23
 
24
24
  public static String LOG_TAG = "CapgoSocialLogin";
25
25
 
@@ -15,7 +15,7 @@ import GoogleSignIn
15
15
  */
16
16
  @objc(SocialLoginPlugin)
17
17
  public class SocialLoginPlugin: CAPPlugin, CAPBridgedPlugin {
18
- private let pluginVersion: String = "8.1.0"
18
+ private let pluginVersion: String = "8.1.1"
19
19
  public let identifier = "SocialLoginPlugin"
20
20
  public let jsName = "SocialLogin"
21
21
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-social-login",
3
- "version": "8.1.0",
3
+ "version": "8.1.1",
4
4
  "description": "All social logins in one plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",