@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.js
CHANGED
|
@@ -295,7 +295,7 @@ var import_zod4 = __toESM(require("zod"));
|
|
|
295
295
|
var zAlgValueNotNone = import_zod4.default.string().refine((alg) => alg !== "none", { message: `alg value may not be 'none'` });
|
|
296
296
|
|
|
297
297
|
// src/common/jwt/z-jwt.ts
|
|
298
|
-
var zCompactJwt = import_zod5.default.string().regex(/^([a-zA-Z0-
|
|
298
|
+
var zCompactJwt = import_zod5.default.string().regex(/^([a-zA-Z0-9-_]+)\.([a-zA-Z0-9-_]+)\.([a-zA-Z0-9-_]+)$/, {
|
|
299
299
|
message: "Not a valid compact jwt"
|
|
300
300
|
});
|
|
301
301
|
var zJwtConfirmationPayload = import_zod5.default.object({
|