podverse-helpers 5.1.4-alpha.3 → 5.1.4-alpha.4
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/dist/lib/auth.d.ts +2 -2
- package/dist/lib/auth.d.ts.map +1 -1
- package/dist/lib/auth.js +1 -1
- package/package.json +1 -1
package/dist/lib/auth.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const AuthCookieNameProduction = "
|
|
1
|
+
export declare const AuthCookieNameProduction = "__Secure-jwt";
|
|
2
2
|
export declare const AuthCookieNameDevelopment = "jwt";
|
|
3
|
-
export declare const getAuthCookieName: (isProduction: boolean) => "
|
|
3
|
+
export declare const getAuthCookieName: (isProduction: boolean) => "__Secure-jwt" | "jwt";
|
|
4
4
|
//# sourceMappingURL=auth.d.ts.map
|
package/dist/lib/auth.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../src/lib/auth.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,wBAAwB,
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../src/lib/auth.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,wBAAwB,iBAAiB,CAAC;AACvD,eAAO,MAAM,yBAAyB,QAAQ,CAAC;AAE/C,eAAO,MAAM,iBAAiB,GAAI,cAAc,OAAO,2BAEtD,CAAC"}
|
package/dist/lib/auth.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getAuthCookieName = exports.AuthCookieNameDevelopment = exports.AuthCookieNameProduction = void 0;
|
|
4
|
-
exports.AuthCookieNameProduction = '
|
|
4
|
+
exports.AuthCookieNameProduction = '__Secure-jwt';
|
|
5
5
|
exports.AuthCookieNameDevelopment = 'jwt';
|
|
6
6
|
const getAuthCookieName = (isProduction) => {
|
|
7
7
|
return isProduction ? exports.AuthCookieNameProduction : exports.AuthCookieNameDevelopment;
|