oidc-spa 6.12.1 → 6.12.2
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/core/createOidc.js +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/core/createOidc.js
CHANGED
|
@@ -125,7 +125,7 @@ var isNewBrowserSession_1 = require("./isNewBrowserSession");
|
|
|
125
125
|
var initialFetch_1 = require("./initialFetch");
|
|
126
126
|
(0, handleOidcCallback_1.handleOidcCallback)();
|
|
127
127
|
// NOTE: Replaced at build time
|
|
128
|
-
var VERSION = "6.12.
|
|
128
|
+
var VERSION = "6.12.2";
|
|
129
129
|
var globalContext = {
|
|
130
130
|
prOidcByConfigId: new Map(),
|
|
131
131
|
hasLogoutBeenCalled: (0, tsafe_1.id)(false),
|
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { type Oidc, OidcInitializationError, type ParamsOfCreateOidc, createOidc } from "./core";
|
|
1
|
+
export { type Oidc, OidcInitializationError, type ParamsOfCreateOidc, createOidc, fetch } from "./core";
|
package/index.js
CHANGED
|
@@ -4,4 +4,5 @@ exports.createOidc = exports.OidcInitializationError = void 0;
|
|
|
4
4
|
var core_1 = require("./core");
|
|
5
5
|
Object.defineProperty(exports, "OidcInitializationError", { enumerable: true, get: function () { return core_1.OidcInitializationError; } });
|
|
6
6
|
Object.defineProperty(exports, "createOidc", { enumerable: true, get: function () { return core_1.createOidc; } });
|
|
7
|
+
Object.defineProperty(exports, "fetch", { enumerable: true, get: function () { return core_1.fetch; } });
|
|
7
8
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":";;;AAAA,+
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":";;;AAAA,+BAAwG;AAApF,+GAAA,uBAAuB,OAAA;AAA2B,kGAAA,UAAU,OAAA;AAAE,6FAAA,KAAK,OAAA"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { type Oidc, OidcInitializationError, type ParamsOfCreateOidc, createOidc } from "./core";
|
|
1
|
+
export { type Oidc, OidcInitializationError, type ParamsOfCreateOidc, createOidc, fetch } from "./core";
|