@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 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, type JwtVcDecodingFailure, type JwtVcDecodingResult, type JwtVcValidationResult, type JwtVcVerificationFailure, type JwtVcVerificationResult, JwtVcVerifier, type SchemaIssue, SchemaValidationError, type UndecodedJwtVc, type UndecodedVc, type UnverifiedJwtVc, type UnverifiedVc, VcDecodeFailed, type VcDecodingFailure, type VcDecodingResult, VcValidateFailed, type VcValidationFailure, type VcValidationResult, VcValidator, type VcVerificationFailure, type VcVerificationResult, VcVerifyFailed, type VerifiedJwtVc, type VerifiedVc, signJwtVc, toUnverifiedJwtVc, toVerifiedJwtVc };
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, type JwtVcDecodingFailure, type JwtVcDecodingResult, type JwtVcValidationResult, type JwtVcVerificationFailure, type JwtVcVerificationResult, JwtVcVerifier, type SchemaIssue, SchemaValidationError, type UndecodedJwtVc, type UndecodedVc, type UnverifiedJwtVc, type UnverifiedVc, VcDecodeFailed, type VcDecodingFailure, type VcDecodingResult, VcValidateFailed, type VcValidationFailure, type VcValidationResult, VcValidator, type VcVerificationFailure, type VcVerificationResult, VcVerifyFailed, type VerifiedJwtVc, type VerifiedVc, signJwtVc, toUnverifiedJwtVc, toVerifiedJwtVc };
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-beta.3",
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.0.10",
32
+ "jose": "^6.2.2",
33
33
  "zod": "^4.3.6",
34
- "@originator-profile/cryptography": "0.5.0-beta.3",
35
- "@originator-profile/model": "0.5.0-beta.3"
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": "^9.25.1",
40
- "pkgroll": "^2.12.2",
41
- "typescript": "^5.8.3",
42
- "vitest": "^4.0.0",
43
- "@originator-profile/tsconfig": "0.5.0-beta.3",
44
- "eslint-config-originator-profile": "0.5.0-beta.3"
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",