@capgo/capacitor-social-login 8.3.22 → 8.3.24

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
@@ -51,6 +51,20 @@ https://capgo.app/docs/plugins/social-login/getting-started/
51
51
 
52
52
  ## Install
53
53
 
54
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
55
+
56
+ ```bash
57
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
58
+ ```
59
+
60
+ Then use the following prompt:
61
+
62
+ ```text
63
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-social-login` plugin in my project.
64
+ ```
65
+
66
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
67
+
54
68
  ```bash
55
69
  npm install @capgo/capacitor-social-login
56
70
  npx cap sync
@@ -24,7 +24,7 @@ import org.json.JSONObject;
24
24
  @CapacitorPlugin(name = "SocialLogin")
25
25
  public class SocialLoginPlugin extends Plugin {
26
26
 
27
- private final String pluginVersion = "8.3.22";
27
+ private final String pluginVersion = "8.3.24";
28
28
 
29
29
  public static String LOG_TAG = "CapgoSocialLogin";
30
30
  public HashMap<String, SocialProvider> socialProviderHashMap = new HashMap<>();
@@ -16,7 +16,7 @@ import GoogleSignIn
16
16
  */
17
17
  @objc(SocialLoginPlugin)
18
18
  public class SocialLoginPlugin: CAPPlugin, CAPBridgedPlugin {
19
- private let pluginVersion: String = "8.3.22"
19
+ private let pluginVersion: String = "8.3.24"
20
20
  public let identifier = "SocialLoginPlugin"
21
21
  public let jsName = "SocialLogin"
22
22
  private static let userCancelledCode = "USER_CANCELLED"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-social-login",
3
- "version": "8.3.22",
3
+ "version": "8.3.24",
4
4
  "description": "All social logins in one plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -59,7 +59,10 @@
59
59
  "clean": "rimraf ./dist",
60
60
  "watch": "tsc --watch",
61
61
  "prepublishOnly": "bun run build",
62
- "check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
62
+ "check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs",
63
+ "example:install": "cd example-app && bun install --frozen-lockfile",
64
+ "example:build": "bun run build && cd example-app && bun install --frozen-lockfile && bun run build",
65
+ "example:capgo:deploy": "bun run example:build && bun scripts/deploy-example-capgo.mjs"
63
66
  },
64
67
  "devDependencies": {
65
68
  "@capacitor/android": "^8.0.0",