@originator-profile/securing-mechanism 0.5.0-beta.3 → 0.5.0
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.d.cts +2 -1
- package/dist/index.d.mts +2 -1
- package/package.json +10 -10
package/dist/index.d.cts
CHANGED
|
@@ -147,4 +147,5 @@ type VcValidator<V extends UnverifiedVc> = ReturnType<typeof VcValidator<V>>;
|
|
|
147
147
|
declare function JwtVcVerifier<T extends OpVc>(keys: Keys, issuer: string | string[], validator?: VcValidator<VerifiedJwtVc<T>>): (jwt: string) => Promise<JwtVcVerificationResult<T>>;
|
|
148
148
|
type JwtVcVerifier<T extends OpVc> = ReturnType<typeof JwtVcVerifier<T>>;
|
|
149
149
|
|
|
150
|
-
export { JwtVcDecoder,
|
|
150
|
+
export { JwtVcDecoder, JwtVcVerifier, SchemaValidationError, VcDecodeFailed, VcValidateFailed, VcValidator, VcVerifyFailed, signJwtVc, toUnverifiedJwtVc, toVerifiedJwtVc };
|
|
151
|
+
export type { JwtVcDecodingFailure, JwtVcDecodingResult, JwtVcValidationResult, JwtVcVerificationFailure, JwtVcVerificationResult, SchemaIssue, UndecodedJwtVc, UndecodedVc, UnverifiedJwtVc, UnverifiedVc, VcDecodingFailure, VcDecodingResult, VcValidationFailure, VcValidationResult, VcVerificationFailure, VcVerificationResult, VerifiedJwtVc, VerifiedVc };
|
package/dist/index.d.mts
CHANGED
|
@@ -147,4 +147,5 @@ type VcValidator<V extends UnverifiedVc> = ReturnType<typeof VcValidator<V>>;
|
|
|
147
147
|
declare function JwtVcVerifier<T extends OpVc>(keys: Keys, issuer: string | string[], validator?: VcValidator<VerifiedJwtVc<T>>): (jwt: string) => Promise<JwtVcVerificationResult<T>>;
|
|
148
148
|
type JwtVcVerifier<T extends OpVc> = ReturnType<typeof JwtVcVerifier<T>>;
|
|
149
149
|
|
|
150
|
-
export { JwtVcDecoder,
|
|
150
|
+
export { JwtVcDecoder, JwtVcVerifier, SchemaValidationError, VcDecodeFailed, VcValidateFailed, VcValidator, VcVerifyFailed, signJwtVc, toUnverifiedJwtVc, toVerifiedJwtVc };
|
|
151
|
+
export type { JwtVcDecodingFailure, JwtVcDecodingResult, JwtVcValidationResult, JwtVcVerificationFailure, JwtVcVerificationResult, SchemaIssue, UndecodedJwtVc, UndecodedVc, UnverifiedJwtVc, UnverifiedVc, VcDecodingFailure, VcDecodingResult, VcValidationFailure, VcValidationResult, VcVerificationFailure, VcVerificationResult, VerifiedJwtVc, VerifiedVc };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@originator-profile/securing-mechanism",
|
|
3
|
-
"version": "0.5.0
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://docs.originator-profile.org",
|
|
6
6
|
"repository": {
|
|
@@ -29,19 +29,19 @@
|
|
|
29
29
|
"NOTICE"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"jose": "^6.
|
|
32
|
+
"jose": "^6.2.2",
|
|
33
33
|
"zod": "^4.3.6",
|
|
34
|
-
"@originator-profile/
|
|
35
|
-
"@originator-profile/
|
|
34
|
+
"@originator-profile/model": "0.5.0",
|
|
35
|
+
"@originator-profile/cryptography": "0.5.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"date-fns": "^4.1.0",
|
|
39
|
-
"eslint": "^
|
|
40
|
-
"pkgroll": "^2.
|
|
41
|
-
"typescript": "^
|
|
42
|
-
"vitest": "^4.
|
|
43
|
-
"@originator-profile/tsconfig": "0.5.0
|
|
44
|
-
"eslint-config-originator-profile": "0.5.0
|
|
39
|
+
"eslint": "^10.1.0",
|
|
40
|
+
"pkgroll": "^2.27.0",
|
|
41
|
+
"typescript": "^6.0.2",
|
|
42
|
+
"vitest": "^4.1.2",
|
|
43
|
+
"@originator-profile/tsconfig": "0.5.0",
|
|
44
|
+
"eslint-config-originator-profile": "0.5.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "pkgroll --clean-dist --target=node20",
|