@openid4vc/oauth2 0.3.0-alpha-20250416121152 → 0.3.0-alpha-20250504132432
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -219,7 +219,7 @@ import z4 from "zod";
|
|
|
219
219
|
var zAlgValueNotNone = z4.string().refine((alg) => alg !== "none", { message: `alg value may not be 'none'` });
|
|
220
220
|
|
|
221
221
|
// src/common/jwt/z-jwt.ts
|
|
222
|
-
var zCompactJwt = z5.string().regex(/^([a-zA-Z0-
|
|
222
|
+
var zCompactJwt = z5.string().regex(/^([a-zA-Z0-9-_]+)\.([a-zA-Z0-9-_]+)\.([a-zA-Z0-9-_]+)$/, {
|
|
223
223
|
message: "Not a valid compact jwt"
|
|
224
224
|
});
|
|
225
225
|
var zJwtConfirmationPayload = z5.object({
|