@proappstore/sdk 1.16.19 → 1.16.20

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 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -72,14 +72,15 @@ interface MigrateResult {
72
72
 
73
73
  ### Auth
74
74
 
75
- GitHub OAuth — shared identity across all ProAppStore apps.
75
+ PAS-owned auth across all ProAppStore apps. GitHub is the default OAuth
76
+ provider; Google OAuth and email magic links are also supported.
76
77
 
77
78
  ```ts
78
79
  await app.auth.init()
79
80
  app.auth.onChange((user) => console.log(user))
80
81
  app.auth.signIn() // GitHub (default)
81
82
  app.auth.signIn('google') // Google
82
- app.auth.signIn('apple') // Apple
83
+ app.auth.signInWithEmail('alice@example.com')
83
84
  app.auth.signOut()
84
85
  ```
85
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proappstore/sdk",
3
- "version": "1.16.19",
3
+ "version": "1.16.20",
4
4
  "description": "Browser SDK for paid apps on proappstore.online — subscriptions, license keys, premium modules.",
5
5
  "license": "MIT",
6
6
  "type": "module",