@sd-jwt/sd-jwt-vc 0.11.1-next.1 → 0.12.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.12.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.11.0...v0.12.0) (2025-06-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * expose types ([#290](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/290)) ([1b656ac](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/1b656ac21796b715096feae439de6b48442244a9))
12
+
13
+
14
+ ### Features
15
+
16
+ * add missing types ([#286](https://github.com/openwallet-foundation-labs/sd-jwt-js/issues/286)) ([506b876](https://github.com/openwallet-foundation-labs/sd-jwt-js/commit/506b8769ac8e0082ad30544338eace2d0df34294))
17
+
18
+
19
+
20
+
21
+
6
22
  # [0.11.0](https://github.com/openwallet-foundation-labs/sd-jwt-js/compare/v0.10.0...v0.11.0) (2025-06-17)
7
23
 
8
24
 
package/dist/index.d.mts CHANGED
@@ -260,4 +260,4 @@ declare class SDJwtVcInstance extends SDJwtInstance<SdJwtVcPayload> {
260
260
  private verifyStatus;
261
261
  }
262
262
 
263
- export { type SDJWTVCConfig, type SDJWTVCStatusReference, SDJwtVcInstance, type SdJwtVcPayload, type StatusListFetcher, type StatusValidator };
263
+ export { type Claim, type ClaimDisplay, type ClaimPath, type ClaimSelectiveDisclosure, type Display, type Logo, type Rendering, type SDJWTVCConfig, type SDJWTVCStatusReference, SDJwtVcInstance, type SdJwtVcPayload, type SimpleRendering, type StatusListFetcher, type StatusValidator, type SvgTemplateProperties, type SvgTemplateRendering, type TypeMetadataFormat, type VcTFetcher, type VerificationResult };
package/dist/index.d.ts CHANGED
@@ -260,4 +260,4 @@ declare class SDJwtVcInstance extends SDJwtInstance<SdJwtVcPayload> {
260
260
  private verifyStatus;
261
261
  }
262
262
 
263
- export { type SDJWTVCConfig, type SDJWTVCStatusReference, SDJwtVcInstance, type SdJwtVcPayload, type StatusListFetcher, type StatusValidator };
263
+ export { type Claim, type ClaimDisplay, type ClaimPath, type ClaimSelectiveDisclosure, type Display, type Logo, type Rendering, type SDJWTVCConfig, type SDJWTVCStatusReference, SDJwtVcInstance, type SdJwtVcPayload, type SimpleRendering, type StatusListFetcher, type StatusValidator, type SvgTemplateProperties, type SvgTemplateRendering, type TypeMetadataFormat, type VcTFetcher, type VerificationResult };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-jwt/sd-jwt-vc",
3
- "version": "0.11.1-next.1+506b876",
3
+ "version": "0.12.0",
4
4
  "description": "sd-jwt draft 7 implementation in typescript",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -39,15 +39,15 @@
39
39
  },
40
40
  "license": "Apache-2.0",
41
41
  "dependencies": {
42
- "@sd-jwt/core": "0.11.1-next.1+506b876",
43
- "@sd-jwt/jwt-status-list": "0.11.1-next.1+506b876",
44
- "@sd-jwt/utils": "0.11.1-next.1+506b876",
42
+ "@sd-jwt/core": "0.12.0",
43
+ "@sd-jwt/jwt-status-list": "0.12.0",
44
+ "@sd-jwt/utils": "0.12.0",
45
45
  "ajv": "^8.17.1",
46
46
  "ajv-formats": "^3.0.1"
47
47
  },
48
48
  "devDependencies": {
49
- "@sd-jwt/crypto-nodejs": "0.11.1-next.1+506b876",
50
- "@sd-jwt/types": "0.11.1-next.1+506b876",
49
+ "@sd-jwt/crypto-nodejs": "0.12.0",
50
+ "@sd-jwt/types": "0.12.0",
51
51
  "jose": "^5.2.2",
52
52
  "msw": "^2.3.5"
53
53
  },
@@ -67,5 +67,5 @@
67
67
  "esm"
68
68
  ]
69
69
  },
70
- "gitHead": "506b8769ac8e0082ad30544338eace2d0df34294"
70
+ "gitHead": "36e0b22eb619f3ca9ae8522a26617e50c3680526"
71
71
  }
package/src/index.ts CHANGED
@@ -2,3 +2,6 @@ export * from './sd-jwt-vc-config';
2
2
  export * from './sd-jwt-vc-instance';
3
3
  export * from './sd-jwt-vc-payload';
4
4
  export * from './sd-jwt-vc-status-reference';
5
+ export * from './sd-jwt-vc-type-metadata-format';
6
+ export * from './sd-jwt-vc-vct';
7
+ export * from './verification-result';