@authgear/web
Advanced tools
Comparing version 2.3.2 to 2.4.0
@@ -28,2 +28,5 @@ /** | ||
/** | ||
* ColorScheme represents the color scheme supported by Authgear. | ||
* A colorscheme is either light or dark. Authgear supports both by default. | ||
* | ||
* @public | ||
@@ -37,2 +40,4 @@ */ | ||
/** | ||
* Options for the constructor of a Container. | ||
* | ||
* @public | ||
@@ -176,2 +181,6 @@ */ | ||
/** | ||
* TokenStorage is an interface controlling when refresh tokens are stored. | ||
* Normally you do not need to implement this interface. | ||
* You can use one of those implementations provided by the SDK. | ||
* | ||
* @public | ||
@@ -186,2 +195,9 @@ */ | ||
/** | ||
* TransientTokenStorage stores the refresh token in memory. | ||
* The refresh token is forgotten as soon as the user quits the app, or | ||
* the app was killed by the system. | ||
* When the app launches again next time, no refresh token is found. | ||
* The user is considered unauthenticated. | ||
* This implies the user needs to authenticate over again on every app launch. | ||
* | ||
* @public | ||
@@ -199,2 +215,6 @@ */ | ||
/** | ||
* UserInfo is the result of fetchUserInfo. | ||
* It contains `sub` which is the User ID, | ||
* as well OIDC standard claims like `email`. | ||
* | ||
* @public | ||
@@ -448,4 +468,10 @@ */ | ||
/** | ||
* Web Container | ||
* WebContainer is the entrypoint of the SDK. | ||
* An instance of a container allows the user to authenticate, reauthenticate, etc. | ||
* | ||
* Every container has a name. | ||
* The default name of a container is `default`. | ||
* If your app supports multi login sessions, you can use multiple containers with different names. | ||
* You are responsible for managing the list of names in this case. | ||
* | ||
* @public | ||
@@ -452,0 +478,0 @@ */ |
{ | ||
"name": "@authgear/web", | ||
"version": "2.3.2", | ||
"version": "2.4.0", | ||
"license": "Apache-2.0", | ||
@@ -14,5 +14,5 @@ "main": "dist/authgear-web.cjs.js", | ||
"devDependencies": { | ||
"@authgear/core": "2.3.2", | ||
"@authgear/core": "2.4.0", | ||
"core-js-pure": "3.22.7" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
847134
586
22597