@multiplatform.one/keycloak 0.7.2 → 0.7.3
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/lib/@types/coreJsPure.d.d.mts +2 -0
- package/lib/@types/expoKeycloakAuth.d.d.mts +28 -0
- package/lib/Authenticated.d.mts +36 -0
- package/lib/Authenticated.js +6 -6
- package/lib/Authenticated.mjs +4 -4
- package/lib/authConfig.d.mts +37 -0
- package/lib/authConfig.js +1 -1
- package/lib/authConfig.mjs +1 -1
- package/lib/{chunk-JYEIPNPN.mjs → chunk-AOKVCTMY.mjs} +1 -1
- package/lib/{chunk-73FF4BX7.js → chunk-BJ2OPIMW.js} +4 -4
- package/lib/{chunk-QFP2JWHZ.js → chunk-BTCP7NB3.js} +3 -3
- package/lib/{chunk-DJW5IKQS.mjs → chunk-DKRUDENY.mjs} +1 -1
- package/lib/{chunk-S3M2DZ6G.js → chunk-E2X33LSD.js} +2 -2
- package/lib/{chunk-RTZ3CZKS.js → chunk-FXGWERIA.js} +2 -2
- package/lib/{chunk-NRD376XV.js → chunk-HDNHCVXT.js} +2 -2
- package/lib/{chunk-BTHRDOLL.mjs → chunk-NU2SJ3ST.mjs} +1 -1
- package/lib/{chunk-K2MQYDVB.mjs → chunk-SK4YK6KE.mjs} +1 -1
- package/lib/{chunk-JLIMB5OD.js → chunk-UBCNCE73.js} +2 -2
- package/lib/{chunk-6QZDLO3M.mjs → chunk-VLUTEDDM.mjs} +1 -1
- package/lib/{chunk-CLO6HIJN.mjs → chunk-ZVG3OFME.mjs} +2 -2
- package/lib/hooks/index.d.mts +9 -0
- package/lib/hooks/index.js +6 -6
- package/lib/hooks/index.mjs +3 -3
- package/lib/hooks/useAuthConfig.d.mts +29 -0
- package/lib/hooks/useAuthConfig.js +1 -1
- package/lib/hooks/useAuthConfig.mjs +1 -1
- package/lib/hooks/useCurrentRouteName/index.d.mts +26 -0
- package/lib/hooks/useCurrentRouteName/index.js +1 -1
- package/lib/hooks/useCurrentRouteName/index.mjs +1 -1
- package/lib/hooks/useCurrentRouteName/index.native.d.mts +26 -0
- package/lib/hooks/useCurrentRouteName/index.native.js +1 -1
- package/lib/hooks/useCurrentRouteName/index.native.mjs +1 -1
- package/lib/hooks/useKeycloak/index.d.mts +70 -0
- package/lib/hooks/useKeycloak/index.js +4 -4
- package/lib/hooks/useKeycloak/index.mjs +2 -2
- package/lib/hooks/useKeycloak/useKeycloak.d.mts +2 -0
- package/lib/hooks/useKeycloak/useKeycloak.js +4 -4
- package/lib/hooks/useKeycloak/useKeycloak.mjs +2 -2
- package/lib/hooks/useKeycloak/useKeycloak.native.d.mts +44 -0
- package/lib/hooks/useKeycloak/useKeycloak.native.js +8 -8
- package/lib/hooks/useKeycloak/useKeycloak.native.mjs +1 -1
- package/lib/hooks/useLogin.d.mts +26 -0
- package/lib/hooks/useLogin.js +4 -4
- package/lib/hooks/useLogin.mjs +3 -3
- package/lib/hooks/useTokensFromQuery/index.d.mts +26 -0
- package/lib/hooks/useTokensFromQuery/index.js +1 -1
- package/lib/hooks/useTokensFromQuery/index.mjs +1 -1
- package/lib/hooks/useTokensFromQuery/index.native.d.mts +26 -0
- package/lib/hooks/useTokensFromQuery/index.native.js +1 -1
- package/lib/hooks/useTokensFromQuery/index.native.mjs +1 -1
- package/lib/hooks/useTokensFromState.d.mts +26 -0
- package/lib/hooks/useTokensFromState.js +1 -1
- package/lib/hooks/useTokensFromState.mjs +1 -1
- package/lib/index.d.mts +13 -0
- package/lib/index.js +15 -15
- package/lib/index.mjs +7 -7
- package/lib/provider/afterAuth.d.mts +32 -0
- package/lib/provider/afterAuth.js +5 -5
- package/lib/provider/afterAuth.mjs +4 -4
- package/lib/provider/index.d.mts +42 -0
- package/lib/provider/index.js +9 -9
- package/lib/provider/index.mjs +6 -6
- package/lib/provider/keycloakProvider.d.mts +45 -0
- package/lib/provider/keycloakProvider.js +7 -7
- package/lib/provider/keycloakProvider.mjs +5 -5
- package/lib/provider/keycloakProvider.native.d.mts +32 -0
- package/lib/provider/keycloakProvider.native.js +5 -5
- package/lib/provider/keycloakProvider.native.mjs +4 -4
- package/lib/state/index.d.mts +34 -0
- package/lib/state/index.js +1 -1
- package/lib/state/index.mjs +1 -1
- package/lib/types.d.mts +40 -0
- package/lib/types.js +1 -1
- package/lib/types.mjs +1 -1
- package/lib/util.d.mts +27 -0
- package/lib/util.js +1 -1
- package/lib/util.mjs +1 -1
- package/package.json +27 -27
- /package/lib/{chunk-XXPGZHWZ.js → chunk-KMAXXKJT.js} +0 -0
- /package/lib/{chunk-NHABU752.mjs → chunk-S237YNYQ.mjs} +0 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React__default, { ReactNode, ComponentType } from 'react';
|
|
2
|
+
import { AuthClientEvent, AuthClientError, AuthClientTokens } from '@bitspur/react-keycloak-core';
|
|
3
|
+
import { KeycloakConfig, KeycloakInitOptions } from '@bitspur/keycloak-js';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* File: /auth/provider/keycloakProvider.tsx
|
|
7
|
+
* Project: app
|
|
8
|
+
* File Created: 08-11-2022 03:12:43
|
|
9
|
+
* Author: Clay Risser
|
|
10
|
+
* -----
|
|
11
|
+
* Last Modified: 22-11-2022 18:07:46
|
|
12
|
+
* Modified By: Clay Risser
|
|
13
|
+
* -----
|
|
14
|
+
* Risser Labs LLC (c) Copyright 2021 - 2022
|
|
15
|
+
*
|
|
16
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
17
|
+
* you may not use this file except in compliance with the License.
|
|
18
|
+
* You may obtain a copy of the License at
|
|
19
|
+
*
|
|
20
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
21
|
+
*
|
|
22
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
23
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
24
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
25
|
+
* See the License for the specific language governing permissions and
|
|
26
|
+
* limitations under the License.
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
interface KeycloakProviderProps {
|
|
30
|
+
children: ReactNode;
|
|
31
|
+
cookies?: unknown;
|
|
32
|
+
keycloakConfig: KeycloakConfig;
|
|
33
|
+
keycloakInitOptions?: KeycloakInitOptions;
|
|
34
|
+
loadingComponent?: ComponentType;
|
|
35
|
+
onEvent?: (eventType: AuthClientEvent, error?: AuthClientError) => void;
|
|
36
|
+
onTokens?: (tokens: AuthClientTokens) => void;
|
|
37
|
+
}
|
|
38
|
+
declare function KeycloakProvider({ children, cookies, keycloakConfig, keycloakInitOptions, loadingComponent, onEvent, onTokens, }: KeycloakProviderProps): React__default.JSX.Element;
|
|
39
|
+
declare const defaultKeycloakInitOptions: KeycloakInitOptions;
|
|
40
|
+
interface MessageSchema {
|
|
41
|
+
type: string;
|
|
42
|
+
payload?: string;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export { KeycloakProvider, KeycloakProviderProps, MessageSchema, defaultKeycloakInitOptions };
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
var
|
|
6
|
-
require("../chunk-
|
|
5
|
+
var _chunkBTCP7NB3js = require("../chunk-BTCP7NB3.js");
|
|
6
|
+
require("../chunk-UBCNCE73.js");
|
|
7
7
|
require("../chunk-UBVYEZI3.js");
|
|
8
8
|
require("../chunk-6NDWOV55.js");
|
|
9
9
|
require("../chunk-KLLABHIC.js");
|
|
10
|
-
require("../chunk-
|
|
10
|
+
require("../chunk-HDNHCVXT.js");
|
|
11
11
|
require("../chunk-OYWAYMFN.js");
|
|
12
|
-
require("../chunk-
|
|
12
|
+
require("../chunk-E2X33LSD.js");
|
|
13
13
|
require("../chunk-3ZPHNEJL.js");
|
|
14
14
|
require("../chunk-YGNNHTFE.js");
|
|
15
15
|
require("../chunk-C2FNSVJO.js");
|
|
16
16
|
require("../chunk-A7UBOIAL.js");
|
|
17
17
|
require("../chunk-NWRANDZ6.js");
|
|
18
|
-
require("../chunk-
|
|
19
|
-
exports.KeycloakProvider =
|
|
20
|
-
exports.defaultKeycloakInitOptions =
|
|
18
|
+
require("../chunk-KMAXXKJT.js");
|
|
19
|
+
exports.KeycloakProvider = _chunkBTCP7NB3js.KeycloakProvider;
|
|
20
|
+
exports.defaultKeycloakInitOptions = _chunkBTCP7NB3js.defaultKeycloakInitOptions;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import {
|
|
2
2
|
KeycloakProvider,
|
|
3
3
|
defaultKeycloakInitOptions
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-DKRUDENY.mjs";
|
|
5
|
+
import "../chunk-SK4YK6KE.mjs";
|
|
6
6
|
import "../chunk-AYKQVWMR.mjs";
|
|
7
7
|
import "../chunk-2GUOEPFY.mjs";
|
|
8
8
|
import "../chunk-NXTVYIBR.mjs";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-VLUTEDDM.mjs";
|
|
10
10
|
import "../chunk-L5HMOY4M.mjs";
|
|
11
|
-
import "../chunk-
|
|
11
|
+
import "../chunk-NU2SJ3ST.mjs";
|
|
12
12
|
import "../chunk-Y4XMF3R6.mjs";
|
|
13
13
|
import "../chunk-UOKDJT5L.mjs";
|
|
14
14
|
import "../chunk-AD6VPMID.mjs";
|
|
15
15
|
import "../chunk-64PPU7Q3.mjs";
|
|
16
16
|
import "../chunk-7MTPH6XK.mjs";
|
|
17
|
-
import "../chunk-
|
|
17
|
+
import "../chunk-S237YNYQ.mjs";
|
|
18
18
|
export {
|
|
19
19
|
KeycloakProvider,
|
|
20
20
|
defaultKeycloakInitOptions
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { KeycloakProviderProps } from './keycloakProvider.mjs';
|
|
3
|
+
import '@bitspur/react-keycloak-core';
|
|
4
|
+
import '@bitspur/keycloak-js';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* File: /auth/provider/keycloakProvider.native.tsx
|
|
8
|
+
* Project: app
|
|
9
|
+
* File Created: 08-11-2022 03:12:37
|
|
10
|
+
* Author: Clay Risser
|
|
11
|
+
* -----
|
|
12
|
+
* Last Modified: 22-11-2022 17:52:31
|
|
13
|
+
* Modified By: Clay Risser
|
|
14
|
+
* -----
|
|
15
|
+
* Risser Labs LLC (c) Copyright 2021 - 2022
|
|
16
|
+
*
|
|
17
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
18
|
+
* you may not use this file except in compliance with the License.
|
|
19
|
+
* You may obtain a copy of the License at
|
|
20
|
+
*
|
|
21
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
22
|
+
*
|
|
23
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
24
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
25
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
26
|
+
* See the License for the specific language governing permissions and
|
|
27
|
+
* limitations under the License.
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
declare const KeycloakProvider: FC<KeycloakProviderProps>;
|
|
31
|
+
|
|
32
|
+
export { KeycloakProvider };
|
|
@@ -59,19 +59,19 @@ function _interopRequireDefault(obj) {
|
|
|
59
59
|
default: obj
|
|
60
60
|
};
|
|
61
61
|
}
|
|
62
|
-
var
|
|
62
|
+
var _chunkUBCNCE73js = require("../chunk-UBCNCE73.js");
|
|
63
63
|
require("../chunk-UBVYEZI3.js");
|
|
64
64
|
require("../chunk-6NDWOV55.js");
|
|
65
65
|
require("../chunk-KLLABHIC.js");
|
|
66
|
-
require("../chunk-
|
|
66
|
+
require("../chunk-HDNHCVXT.js");
|
|
67
67
|
require("../chunk-OYWAYMFN.js");
|
|
68
|
-
require("../chunk-
|
|
68
|
+
require("../chunk-E2X33LSD.js");
|
|
69
69
|
require("../chunk-3ZPHNEJL.js");
|
|
70
70
|
require("../chunk-YGNNHTFE.js");
|
|
71
71
|
require("../chunk-C2FNSVJO.js");
|
|
72
72
|
require("../chunk-A7UBOIAL.js");
|
|
73
73
|
require("../chunk-NWRANDZ6.js");
|
|
74
|
-
require("../chunk-
|
|
74
|
+
require("../chunk-KMAXXKJT.js");
|
|
75
75
|
// src/provider/keycloakProvider.native.tsx
|
|
76
76
|
var _react = require("react");
|
|
77
77
|
var _react2 = _interopRequireDefault(_react);
|
|
@@ -82,6 +82,6 @@ var KeycloakProvider = function(param) {
|
|
|
82
82
|
url: keycloakConfig.url
|
|
83
83
|
});
|
|
84
84
|
delete keycloakConfig.baseUrl;
|
|
85
|
-
return /* @__PURE__ */ _react2.default.createElement(_expokeycloakauth.KeycloakProvider, _object_spread({}, clonedKeycloakConfig), /* @__PURE__ */ _react2.default.createElement(
|
|
85
|
+
return /* @__PURE__ */ _react2.default.createElement(_expokeycloakauth.KeycloakProvider, _object_spread({}, clonedKeycloakConfig), /* @__PURE__ */ _react2.default.createElement(_chunkUBCNCE73js.AfterAuth, null, children));
|
|
86
86
|
};
|
|
87
87
|
exports.KeycloakProvider = KeycloakProvider;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AfterAuth
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-SK4YK6KE.mjs";
|
|
4
4
|
import "../chunk-AYKQVWMR.mjs";
|
|
5
5
|
import "../chunk-2GUOEPFY.mjs";
|
|
6
6
|
import "../chunk-NXTVYIBR.mjs";
|
|
7
|
-
import "../chunk-
|
|
7
|
+
import "../chunk-VLUTEDDM.mjs";
|
|
8
8
|
import "../chunk-L5HMOY4M.mjs";
|
|
9
|
-
import "../chunk-
|
|
9
|
+
import "../chunk-NU2SJ3ST.mjs";
|
|
10
10
|
import "../chunk-Y4XMF3R6.mjs";
|
|
11
11
|
import "../chunk-UOKDJT5L.mjs";
|
|
12
12
|
import "../chunk-AD6VPMID.mjs";
|
|
13
13
|
import "../chunk-64PPU7Q3.mjs";
|
|
14
14
|
import "../chunk-7MTPH6XK.mjs";
|
|
15
|
-
import "../chunk-
|
|
15
|
+
import "../chunk-S237YNYQ.mjs";
|
|
16
16
|
|
|
17
17
|
// src/provider/keycloakProvider.native.tsx
|
|
18
18
|
import React from "react";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File: /src/state/index.ts
|
|
3
|
+
* Project: app
|
|
4
|
+
* File Created: 22-11-2022 17:40:53
|
|
5
|
+
* Author: Clay Risser
|
|
6
|
+
* -----
|
|
7
|
+
* Last Modified: 26-05-2023 07:31:04
|
|
8
|
+
* Modified By: Clay Risser
|
|
9
|
+
* -----
|
|
10
|
+
* Risser Labs LLC (c) Copyright 2021 - 2022
|
|
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
|
+
declare function useAuthState(): {
|
|
25
|
+
idToken: string;
|
|
26
|
+
refreshToken: string;
|
|
27
|
+
token: string;
|
|
28
|
+
} & {
|
|
29
|
+
setIdToken: (value: string) => void;
|
|
30
|
+
setRefreshToken: (value: string) => void;
|
|
31
|
+
setToken: (value: string) => void;
|
|
32
|
+
} & Record<string, Function>;
|
|
33
|
+
|
|
34
|
+
export { useAuthState };
|
package/lib/state/index.js
CHANGED
package/lib/state/index.mjs
CHANGED
package/lib/types.d.mts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File: /src/types.ts
|
|
3
|
+
* Project: @multiplatform.one/keycloak
|
|
4
|
+
* File Created: 25-11-2022 10:27:53
|
|
5
|
+
* Author: Clay Risser
|
|
6
|
+
* -----
|
|
7
|
+
* Last Modified: 25-11-2022 10:28:25
|
|
8
|
+
* Modified By: Clay Risser
|
|
9
|
+
* -----
|
|
10
|
+
* Risser Labs LLC (c) Copyright 2022
|
|
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
|
+
declare global {
|
|
25
|
+
interface Window {
|
|
26
|
+
ReactNativeWebView: {
|
|
27
|
+
postMessage: (body: string) => unknown;
|
|
28
|
+
};
|
|
29
|
+
webkit: {
|
|
30
|
+
messageHandlers: {
|
|
31
|
+
[key: string]: {
|
|
32
|
+
postMessage: (body: string) => unknown;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
declare const _default: null;
|
|
39
|
+
|
|
40
|
+
export { _default as default };
|
package/lib/types.js
CHANGED
package/lib/types.mjs
CHANGED
package/lib/util.d.mts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File: /src/util.ts
|
|
3
|
+
* Project: @multiplatform.one/keycloak
|
|
4
|
+
* File Created: 16-05-2023 06:29:32
|
|
5
|
+
* Author: Clay Risser
|
|
6
|
+
* -----
|
|
7
|
+
* Last Modified: 16-05-2023 06:33:36
|
|
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
|
+
declare function validToken(token: string | boolean, refreshToken?: string | boolean): string | boolean;
|
|
25
|
+
declare function isTokenValid(token: string): boolean;
|
|
26
|
+
|
|
27
|
+
export { isTokenValid, validToken };
|
package/lib/util.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
5
|
var _chunkNWRANDZ6js = require("./chunk-NWRANDZ6.js");
|
|
6
|
-
require("./chunk-
|
|
6
|
+
require("./chunk-KMAXXKJT.js");
|
|
7
7
|
exports.isTokenValid = _chunkNWRANDZ6js.isTokenValid;
|
|
8
8
|
exports.validToken = _chunkNWRANDZ6js.validToken;
|
package/lib/util.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multiplatform.one/keycloak",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"description": "keycloak client for multiplatform.one ecosystem",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.mjs",
|
|
@@ -39,43 +39,43 @@
|
|
|
39
39
|
"@react-native-async-storage/async-storage": "^1.17.11",
|
|
40
40
|
"@react-navigation/native": "^6.0.14",
|
|
41
41
|
"expo-keycloak-auth": "1.0.14",
|
|
42
|
-
"multiplatform.one": "^0.7.
|
|
42
|
+
"multiplatform.one": "^0.7.4",
|
|
43
43
|
"next": "^13.0.5",
|
|
44
44
|
"react": "^18.2.0",
|
|
45
45
|
"react-native": "~0.68.5"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@babel/preset-env": "^7.22.
|
|
49
|
-
"@babel/preset-flow": "^7.22.
|
|
50
|
-
"@babel/preset-react": "^7.22.
|
|
51
|
-
"@babel/preset-typescript": "^7.22.
|
|
52
|
-
"@react-native-async-storage/async-storage": "^1.
|
|
48
|
+
"@babel/preset-env": "^7.22.20",
|
|
49
|
+
"@babel/preset-flow": "^7.22.15",
|
|
50
|
+
"@babel/preset-react": "^7.22.15",
|
|
51
|
+
"@babel/preset-typescript": "^7.22.15",
|
|
52
|
+
"@react-native-async-storage/async-storage": "^1.19.1",
|
|
53
53
|
"@react-navigation/native": "^6.1.7",
|
|
54
|
-
"@types/eslint": "^8.
|
|
55
|
-
"@types/jest": "^29.5.
|
|
54
|
+
"@types/eslint": "^8.44.2",
|
|
55
|
+
"@types/jest": "^29.5.5",
|
|
56
56
|
"@types/lodash.camelcase": "^4.3.7",
|
|
57
57
|
"@types/lodash.startcase": "^4.4.7",
|
|
58
|
-
"@types/react": "^18.2.
|
|
58
|
+
"@types/react": "^18.2.21",
|
|
59
59
|
"@types/react-native": "^0.72.2",
|
|
60
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
61
|
-
"@typescript-eslint/parser": "^
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
61
|
+
"@typescript-eslint/parser": "^6.7.0",
|
|
62
62
|
"babel-plugin-fully-specified": "^1.3.0",
|
|
63
|
-
"cspell": "^
|
|
64
|
-
"esbuild": "^0.
|
|
63
|
+
"cspell": "^7.3.6",
|
|
64
|
+
"esbuild": "^0.19.3",
|
|
65
65
|
"esbuild-plugin-babel": "^0.2.3",
|
|
66
|
-
"eslint": "^8.
|
|
67
|
-
"eslint-config-alloy": "^5.
|
|
68
|
-
"eslint-plugin-react": "^7.
|
|
66
|
+
"eslint": "^8.49.0",
|
|
67
|
+
"eslint-config-alloy": "^5.1.2",
|
|
68
|
+
"eslint-plugin-react": "^7.33.2",
|
|
69
69
|
"eslint-plugin-spellcheck": "^0.0.20",
|
|
70
70
|
"expo-keycloak-auth": "1.0.14",
|
|
71
|
-
"jest": "^29.
|
|
71
|
+
"jest": "^29.6.2",
|
|
72
72
|
"jest-sonar-reporter": "^2.0.0",
|
|
73
|
-
"lockfile-lint": "^4.
|
|
74
|
-
"multiplatform.one": "^0.7.
|
|
75
|
-
"next": "^13.4.
|
|
76
|
-
"prettier": "^
|
|
73
|
+
"lockfile-lint": "^4.12.0",
|
|
74
|
+
"multiplatform.one": "^0.7.4",
|
|
75
|
+
"next": "^13.4.13",
|
|
76
|
+
"prettier": "^3.0.1",
|
|
77
77
|
"react": "^18.2.0",
|
|
78
|
-
"react-native": "~0.
|
|
78
|
+
"react-native": "~0.72.3",
|
|
79
79
|
"ts-node": "^10.9.1",
|
|
80
80
|
"typescript": "^4.9.5"
|
|
81
81
|
},
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
]
|
|
101
101
|
},
|
|
102
102
|
"jestSonar": {
|
|
103
|
-
"reportPath": "
|
|
103
|
+
"reportPath": "node_modules",
|
|
104
104
|
"reportFile": "test-report.xml",
|
|
105
105
|
"indent": 4
|
|
106
106
|
},
|
|
@@ -108,8 +108,8 @@
|
|
|
108
108
|
"@bitspur/keycloak-js": "^21.1.2",
|
|
109
109
|
"@bitspur/react-keycloak-ssr": "^4.0.14",
|
|
110
110
|
"@bitspur/react-keycloak-web": "^4.0.14",
|
|
111
|
-
"core-js-pure": "^3.
|
|
112
|
-
"expo-auth-session": "^
|
|
113
|
-
"solito": "^
|
|
111
|
+
"core-js-pure": "^3.32.2",
|
|
112
|
+
"expo-auth-session": "^5.1.1",
|
|
113
|
+
"solito": "^4.0.1"
|
|
114
114
|
}
|
|
115
115
|
}
|
|
File without changes
|
|
File without changes
|