@deephaven/js-plugin-auth-keycloak 0.2.1-docs-snapshots.25 → 0.2.1-test-package-publish.515
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/index.js +2 -2
- package/package.json +7 -6
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const require$$1 = require("react");
|
|
4
4
|
const authPlugins = require("@deephaven/auth-plugins");
|
|
5
5
|
const jsapiComponents = require("@deephaven/jsapi-components");
|
|
6
|
-
const
|
|
6
|
+
const Log = require("@deephaven/log");
|
|
7
7
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
8
8
|
var jsxRuntimeExports = {};
|
|
9
9
|
var jsxRuntime = {
|
|
@@ -2155,7 +2155,7 @@ function Keycloak(config) {
|
|
|
2155
2155
|
};
|
|
2156
2156
|
}
|
|
2157
2157
|
}
|
|
2158
|
-
const log =
|
|
2158
|
+
const log = Log.module("@deephaven/js-plugin-auth-keycloak.AuthPluginKeycloak");
|
|
2159
2159
|
const OIDC_AUTH_TYPE = "io.deephaven.authentication.oidc.OidcAuthenticationHandler";
|
|
2160
2160
|
const BASE_URL_PROPERTY = "authentication.oidc.keycloak.url";
|
|
2161
2161
|
const REALM_PROPERTY = "authentication.oidc.keycloak.realm";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/js-plugin-auth-keycloak",
|
|
3
|
-
"version": "0.2.1-
|
|
3
|
+
"version": "0.2.1-test-package-publish.515+e05db9b",
|
|
4
4
|
"description": "Deephaven Keycloak authentication plugin",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Deephaven",
|
|
@@ -15,15 +15,16 @@
|
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/deephaven/deephaven-
|
|
18
|
+
"url": "git+https://github.com/deephaven/deephaven-plugins"
|
|
19
19
|
},
|
|
20
20
|
"bugs": {
|
|
21
|
-
"url": "https://github.com/deephaven/deephaven-
|
|
21
|
+
"url": "https://github.com/deephaven/deephaven-plugins/issues"
|
|
22
22
|
},
|
|
23
|
-
"homepage": "https://github.com/deephaven/deephaven-
|
|
23
|
+
"homepage": "https://github.com/deephaven/deephaven-plugins",
|
|
24
24
|
"scripts": {
|
|
25
25
|
"start": "vite build --watch",
|
|
26
|
-
"build": "vite build"
|
|
26
|
+
"build": "vite build",
|
|
27
|
+
"update-dh-packages": "node ../../../../tools/update-dh-packages.mjs"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
30
|
"@types/plotly.js": "^2.12.18",
|
|
@@ -52,5 +53,5 @@
|
|
|
52
53
|
"files": [
|
|
53
54
|
"dist"
|
|
54
55
|
],
|
|
55
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "e05db9b2ac49be11a28a66439055db84877b2b7e"
|
|
56
57
|
}
|