supertokens-website
Advanced tools
Comparing version 4.0.11 to 4.0.12
@@ -9,2 +9,10 @@ # Changelog | ||
## [4.0.12] - 2020-03-09 | ||
### Changed | ||
- Relaxes constraint for checking if session is alive | ||
## [4.0.0] | ||
### Changed | ||
- Handles id refresh token via frontend cookies so that non sub domain cross domain requests can be made. | ||
## [3.2.0] - 2019-07-22 | ||
@@ -11,0 +19,0 @@ ### Added |
@@ -1,2 +0,2 @@ | ||
import { AxiosPromise, AxiosRequestConfig, AxiosResponse } from 'axios'; | ||
import { AxiosPromise, AxiosRequestConfig, AxiosResponse } from "axios"; | ||
export declare function interceptorFunctionRequestFulfilled(config: AxiosRequestConfig): Promise<AxiosRequestConfig>; | ||
@@ -3,0 +3,0 @@ export declare function responseInterceptor(response: AxiosResponse): Promise<AxiosResponse<any>>; |
@@ -278,3 +278,3 @@ "use strict"; | ||
var parts = value.split("; " + ID_COOKIE_NAME + "="); | ||
if (parts.length === 2) { | ||
if (parts.length >= 2) { | ||
var last = parts.pop(); | ||
@@ -281,0 +281,0 @@ if (last !== undefined) { |
@@ -1,1 +0,1 @@ | ||
export declare const package_version = "4.0.11"; | ||
export declare const package_version = "4.0.12"; |
@@ -17,2 +17,2 @@ "use strict"; | ||
*/ | ||
exports.package_version = "4.0.11"; | ||
exports.package_version = "4.0.12"; |
{ | ||
"name": "supertokens-website", | ||
"version": "4.0.11", | ||
"version": "4.0.12", | ||
"description": "frontend sdk for website to be used for auth solution.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
103601