oidc-spa 10.2.6 → 10.2.7
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/esm/core/createOidc.mjs +1 -1
- package/esm/tanstack-start/react/createOidcSpaUtils.mjs +1 -1
- package/esm/tanstack-start/react/createOidcSpaUtils.mjs.map +1 -1
- package/esm/vendor/build-runtime/babel.mjs +4604 -6150
- package/esm/vendor/build-runtime/magic-string.mjs +1 -1
- package/package.json +2 -2
- package/src/tanstack-start/react/createOidcSpaUtils.ts +1 -1
- package/vendor/frontend/webcrypto-liner-shim.js +1 -1
- package/vendor/server/evt.js +1 -1
- package/vendor/server/jose.js +1 -1
- package/vendor/server/tsafe.js +1 -1
- package/vendor/server/zod.js +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// node_modules
|
|
1
|
+
// node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs
|
|
2
2
|
var comma = ",".charCodeAt(0);
|
|
3
3
|
var semicolon = ";".charCodeAt(0);
|
|
4
4
|
var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oidc-spa",
|
|
3
|
-
"version": "10.2.
|
|
3
|
+
"version": "10.2.7",
|
|
4
4
|
"description": "OpenID Connect / OAuth2 solution for client-first Web Applications",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@angular/router": "*",
|
|
28
28
|
"@nuxt/kit": "*",
|
|
29
29
|
"@tanstack/react-router": "*",
|
|
30
|
-
"@tanstack/react-start": "
|
|
30
|
+
"@tanstack/react-start": ">=1.168.25",
|
|
31
31
|
"@types/react": "*",
|
|
32
32
|
"react": "*",
|
|
33
33
|
"rxjs": "*"
|
|
@@ -1022,7 +1022,7 @@ export function createOidcSpaUtils<
|
|
|
1022
1022
|
}
|
|
1023
1023
|
|
|
1024
1024
|
const fetchServerEnvVariableValues = createServerFn({ method: "GET" })
|
|
1025
|
-
.
|
|
1025
|
+
.validator((data: { envVarNames: string[] }) => {
|
|
1026
1026
|
if (typeof data !== "object" || data === null) {
|
|
1027
1027
|
throw new Error("Expected an object");
|
|
1028
1028
|
}
|