@multiplatform.one/keycloak 0.3.13 → 0.3.15
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/esm/provider/index.mjs +2 -2
- package/dist/esm/provider/index.mjs.map +2 -2
- package/dist/jsx/provider/index.mjs +2 -2
- package/dist/jsx/provider/index.mjs.map +2 -2
- package/dist/lib/provider/index.d.ts +1 -1
- package/dist/lib/provider/index.js +2 -2
- package/dist/lib/provider/index.js.map +2 -2
- package/dist/lib/state/index.d.ts +1 -9
- package/dist/lib/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +10 -10
- package/src/provider/index.tsx +3 -3
- package/dist/esm/hooks/useIsPassedInToken/index.mjs +0 -12
- package/dist/esm/hooks/useIsPassedInToken/index.mjs.map +0 -7
- package/dist/esm/hooks/useIsPassedInToken/index.native.mjs +0 -7
- package/dist/esm/hooks/useIsPassedInToken/index.native.mjs.map +0 -7
- package/dist/jsx/hooks/useIsPassedInToken/index.mjs +0 -10
- package/dist/jsx/hooks/useIsPassedInToken/index.mjs.map +0 -7
- package/dist/jsx/hooks/useIsPassedInToken/index.native.mjs +0 -5
- package/dist/jsx/hooks/useIsPassedInToken/index.native.mjs.map +0 -7
- package/dist/lib/hooks/useIsPassedInToken/index.d.ts +0 -24
- package/dist/lib/hooks/useIsPassedInToken/index.js +0 -34
- package/dist/lib/hooks/useIsPassedInToken/index.js.map +0 -7
- package/dist/lib/hooks/useIsPassedInToken/index.native.d.ts +0 -24
- package/dist/lib/hooks/useIsPassedInToken/index.native.js +0 -29
- package/dist/lib/hooks/useIsPassedInToken/index.native.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multiplatform.one/keycloak",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.15",
|
|
4
4
|
"description": "keycloak client for multiplatform.one ecosystem",
|
|
5
5
|
"main": "dist/lib",
|
|
6
6
|
"module": "dist/esm",
|
|
@@ -62,28 +62,28 @@
|
|
|
62
62
|
"@babel/preset-typescript": "^7.21.5",
|
|
63
63
|
"@react-native-async-storage/async-storage": "^1.18.1",
|
|
64
64
|
"@react-navigation/native": "^6.1.6",
|
|
65
|
-
"@types/eslint": "^8.
|
|
65
|
+
"@types/eslint": "^8.40.0",
|
|
66
66
|
"@types/jest": "^29.5.1",
|
|
67
67
|
"@types/lodash.camelcase": "^4.3.7",
|
|
68
68
|
"@types/lodash.startcase": "^4.4.7",
|
|
69
|
-
"@types/react": "18.2.6",
|
|
70
|
-
"@types/react-native": "0.72.
|
|
71
|
-
"@typescript-eslint/eslint-plugin": "^5.59.
|
|
72
|
-
"@typescript-eslint/parser": "^5.59.
|
|
69
|
+
"@types/react": "^18.2.6",
|
|
70
|
+
"@types/react-native": "^0.72.1",
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^5.59.7",
|
|
72
|
+
"@typescript-eslint/parser": "^5.59.7",
|
|
73
73
|
"babel-plugin-fully-specified": "^1.3.0",
|
|
74
74
|
"cspell": "^6.31.1",
|
|
75
75
|
"esbuild": "^0.17.19",
|
|
76
76
|
"esbuild-plugin-babel": "^0.2.3",
|
|
77
|
-
"eslint": "^8.
|
|
77
|
+
"eslint": "^8.41.0",
|
|
78
78
|
"eslint-config-alloy": "^5.0.0",
|
|
79
79
|
"eslint-plugin-react": "^7.32.2",
|
|
80
80
|
"eslint-plugin-spellcheck": "^0.0.20",
|
|
81
81
|
"expo-keycloak-auth": "1.0.14",
|
|
82
82
|
"jest": "^29.5.0",
|
|
83
83
|
"jest-sonar-reporter": "^2.0.0",
|
|
84
|
-
"lockfile-lint": "^4.10.
|
|
85
|
-
"multiplatform.one": "^0.5.
|
|
86
|
-
"next": "^13.4.
|
|
84
|
+
"lockfile-lint": "^4.10.4",
|
|
85
|
+
"multiplatform.one": "^0.5.40",
|
|
86
|
+
"next": "^13.4.3",
|
|
87
87
|
"prettier": "^2.8.8",
|
|
88
88
|
"react": "^18.2.0",
|
|
89
89
|
"react-native": "~0.71.8",
|
package/src/provider/index.tsx
CHANGED
|
@@ -35,7 +35,7 @@ import { config } from 'app/config';
|
|
|
35
35
|
|
|
36
36
|
export interface AuthProviderProps
|
|
37
37
|
extends Partial<Omit<AuthConfig, 'persist'>>,
|
|
38
|
-
Omit<KeycloakConfig, 'url'
|
|
38
|
+
Partial<Omit<KeycloakConfig, 'url'>>,
|
|
39
39
|
KeycloakInitOptions {
|
|
40
40
|
children: ReactNode;
|
|
41
41
|
cookies?: unknown;
|
|
@@ -92,8 +92,8 @@ export const AuthProvider: FC<AuthProviderProps> = ({
|
|
|
92
92
|
<KeycloakProvider
|
|
93
93
|
cookies={cookies}
|
|
94
94
|
keycloakConfig={{
|
|
95
|
-
realm,
|
|
96
|
-
clientId,
|
|
95
|
+
realm: realm || 'main',
|
|
96
|
+
clientId: clientId || 'app',
|
|
97
97
|
url: baseUrl,
|
|
98
98
|
}}
|
|
99
99
|
keycloakInitOptions={keycloakInitOptions}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { MultiPlatform } from "multiplatform.one";
|
|
2
|
-
import { useRouter } from "next/router";
|
|
3
|
-
function useIsPassedInToken() {
|
|
4
|
-
var _ref = MultiPlatform.isNext ? useRouter() : {
|
|
5
|
-
query: {}
|
|
6
|
-
}, query = _ref.query;
|
|
7
|
-
return "idToken" in query || "token" in query || "refreshToken" in query;
|
|
8
|
-
}
|
|
9
|
-
export {
|
|
10
|
-
useIsPassedInToken
|
|
11
|
-
};
|
|
12
|
-
//# sourceMappingURL=index.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../../src/hooks/useIsPassedInToken/index.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * File: /src/hooks/useIsPassedInToken/index.ts\n * Project: @multiplatform.one/keycloak\n * File Created: 15-05-2023 01:54:44\n * Author: Clay Risser\n * -----\n * Last Modified: 15-05-2023 01:56:30\n * Modified By: Clay Risser\n * -----\n * Risser Labs LLC (c) Copyright 2022 - 2023\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { MultiPlatform } from 'multiplatform.one';\nimport { useRouter } from 'next/router';\nexport function useIsPassedInToken() {\n var _ref = MultiPlatform.isNext ? useRouter() : {\n query: {}\n },\n query = _ref.query;\n return 'idToken' in query || 'token' in query || 'refreshToken' in query;\n}"],
|
|
5
|
-
"mappings": "AAwBA,SAAS,qBAAqB;AAC9B,SAAS,iBAAiB;AACnB,SAAS,qBAAqB;AACnC,MAAI,OAAO,cAAc,SAAS,UAAU,IAAI;AAAA,IAC5C,OAAO,CAAC;AAAA,EACV,GACA,QAAQ,KAAK;AACf,SAAO,aAAa,SAAS,WAAW,SAAS,kBAAkB;AACrE;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../../src/hooks/useIsPassedInToken/index.native.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * File: /src/hooks/useIsPassedInToken/index.native.ts\n * Project: @multiplatform.one/keycloak\n * File Created: 15-05-2023 01:54:48\n * Author: Clay Risser\n * -----\n * Last Modified: 15-05-2023 01:55:27\n * Modified By: Clay Risser\n * -----\n * Risser Labs LLC (c) Copyright 2022 - 2023\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport var useIsPassedInToken = function useIsPassedInToken() {\n return false;\n};"],
|
|
5
|
-
"mappings": "AAwBO,IAAI,qBAAqB,SAASA,sBAAqB;AAC5D,SAAO;AACT;",
|
|
6
|
-
"names": ["useIsPassedInToken"]
|
|
7
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { MultiPlatform } from "multiplatform.one";
|
|
2
|
-
import { useRouter } from "next/router";
|
|
3
|
-
function useIsPassedInToken() {
|
|
4
|
-
const { query } = MultiPlatform.isNext ? useRouter() : { query: {} };
|
|
5
|
-
return "idToken" in query || "token" in query || "refreshToken" in query;
|
|
6
|
-
}
|
|
7
|
-
export {
|
|
8
|
-
useIsPassedInToken
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=index.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../../src/hooks/useIsPassedInToken/index.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * File: /src/hooks/useIsPassedInToken/index.ts\n * Project: @multiplatform.one/keycloak\n * File Created: 15-05-2023 01:54:44\n * Author: Clay Risser\n * -----\n * Last Modified: 15-05-2023 01:56:30\n * Modified By: Clay Risser\n * -----\n * Risser Labs LLC (c) Copyright 2022 - 2023\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { MultiPlatform } from 'multiplatform.one';\nimport { useRouter } from 'next/router';\n\nexport function useIsPassedInToken() {\n const { query } = MultiPlatform.isNext ? useRouter() : { query: {} };\n return 'idToken' in query || 'token' in query || 'refreshToken' in query;\n}\n"],
|
|
5
|
-
"mappings": "AAwBA,SAAS,qBAAqB;AAC9B,SAAS,iBAAiB;AAEnB,SAAS,qBAAqB;AACnC,QAAM,EAAE,MAAM,IAAI,cAAc,SAAS,UAAU,IAAI,EAAE,OAAO,CAAC,EAAE;AACnE,SAAO,aAAa,SAAS,WAAW,SAAS,kBAAkB;AACrE;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../../src/hooks/useIsPassedInToken/index.native.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * File: /src/hooks/useIsPassedInToken/index.native.ts\n * Project: @multiplatform.one/keycloak\n * File Created: 15-05-2023 01:54:48\n * Author: Clay Risser\n * -----\n * Last Modified: 15-05-2023 01:55:27\n * Modified By: Clay Risser\n * -----\n * Risser Labs LLC (c) Copyright 2022 - 2023\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const useIsPassedInToken = () => false;\n"],
|
|
5
|
-
"mappings": "AAwBO,MAAM,qBAAqB,MAAM;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* File: /src/hooks/useIsPassedInToken/index.ts
|
|
3
|
-
* Project: @multiplatform.one/keycloak
|
|
4
|
-
* File Created: 15-05-2023 01:54:44
|
|
5
|
-
* Author: Clay Risser
|
|
6
|
-
* -----
|
|
7
|
-
* Last Modified: 15-05-2023 01:56:30
|
|
8
|
-
* Modified By: Clay Risser
|
|
9
|
-
* -----
|
|
10
|
-
* Risser Labs LLC (c) Copyright 2022 - 2023
|
|
11
|
-
*
|
|
12
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
13
|
-
* you may not use this file except in compliance with the License.
|
|
14
|
-
* You may obtain a copy of the License at
|
|
15
|
-
*
|
|
16
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
17
|
-
*
|
|
18
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
19
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
20
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
21
|
-
* See the License for the specific language governing permissions and
|
|
22
|
-
* limitations under the License.
|
|
23
|
-
*/
|
|
24
|
-
export declare function useIsPassedInToken(): boolean;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var useIsPassedInToken_exports = {};
|
|
20
|
-
__export(useIsPassedInToken_exports, {
|
|
21
|
-
useIsPassedInToken: () => useIsPassedInToken
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(useIsPassedInToken_exports);
|
|
24
|
-
var import_multiplatform = require("multiplatform.one");
|
|
25
|
-
var import_router = require("next/router");
|
|
26
|
-
function useIsPassedInToken() {
|
|
27
|
-
const { query } = import_multiplatform.MultiPlatform.isNext ? (0, import_router.useRouter)() : { query: {} };
|
|
28
|
-
return "idToken" in query || "token" in query || "refreshToken" in query;
|
|
29
|
-
}
|
|
30
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
-
0 && (module.exports = {
|
|
32
|
-
useIsPassedInToken
|
|
33
|
-
});
|
|
34
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../../src/hooks/useIsPassedInToken/index.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * File: /src/hooks/useIsPassedInToken/index.ts\n * Project: @multiplatform.one/keycloak\n * File Created: 15-05-2023 01:54:44\n * Author: Clay Risser\n * -----\n * Last Modified: 15-05-2023 01:56:30\n * Modified By: Clay Risser\n * -----\n * Risser Labs LLC (c) Copyright 2022 - 2023\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { MultiPlatform } from 'multiplatform.one';\nimport { useRouter } from 'next/router';\n\nexport function useIsPassedInToken() {\n const { query } = MultiPlatform.isNext ? useRouter() : { query: {} };\n return 'idToken' in query || 'token' in query || 'refreshToken' in query;\n}\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAwBA,2BAA8B;AAC9B,oBAA0B;AAEnB,SAAS,qBAAqB;AACnC,QAAM,EAAE,MAAM,IAAI,mCAAc,aAAS,yBAAU,IAAI,EAAE,OAAO,CAAC,EAAE;AACnE,SAAO,aAAa,SAAS,WAAW,SAAS,kBAAkB;AACrE;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* File: /src/hooks/useIsPassedInToken/index.native.ts
|
|
3
|
-
* Project: @multiplatform.one/keycloak
|
|
4
|
-
* File Created: 15-05-2023 01:54:48
|
|
5
|
-
* Author: Clay Risser
|
|
6
|
-
* -----
|
|
7
|
-
* Last Modified: 15-05-2023 01:55:27
|
|
8
|
-
* Modified By: Clay Risser
|
|
9
|
-
* -----
|
|
10
|
-
* Risser Labs LLC (c) Copyright 2022 - 2023
|
|
11
|
-
*
|
|
12
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
13
|
-
* you may not use this file except in compliance with the License.
|
|
14
|
-
* You may obtain a copy of the License at
|
|
15
|
-
*
|
|
16
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
17
|
-
*
|
|
18
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
19
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
20
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
21
|
-
* See the License for the specific language governing permissions and
|
|
22
|
-
* limitations under the License.
|
|
23
|
-
*/
|
|
24
|
-
export declare const useIsPassedInToken: () => boolean;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var index_native_exports = {};
|
|
20
|
-
__export(index_native_exports, {
|
|
21
|
-
useIsPassedInToken: () => useIsPassedInToken
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(index_native_exports);
|
|
24
|
-
const useIsPassedInToken = () => false;
|
|
25
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
26
|
-
0 && (module.exports = {
|
|
27
|
-
useIsPassedInToken
|
|
28
|
-
});
|
|
29
|
-
//# sourceMappingURL=index.native.js.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../../src/hooks/useIsPassedInToken/index.native.ts"],
|
|
4
|
-
"sourcesContent": ["/**\n * File: /src/hooks/useIsPassedInToken/index.native.ts\n * Project: @multiplatform.one/keycloak\n * File Created: 15-05-2023 01:54:48\n * Author: Clay Risser\n * -----\n * Last Modified: 15-05-2023 01:55:27\n * Modified By: Clay Risser\n * -----\n * Risser Labs LLC (c) Copyright 2022 - 2023\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const useIsPassedInToken = () => false;\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAwBO,MAAM,qBAAqB,MAAM;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|