Skip to content

Commit 5a451f0

Browse files
authored
Merge pull request #199 from Sphereon-Opensource/feature/SSISDK-57_uni-client
feature/SSISDK-57_uni-client
2 parents 240c2fa + 02e1e4e commit 5a451f0

20 files changed

Lines changed: 282 additions & 61 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"pnpm": ">=10"
2727
},
2828
"resolutions": {
29-
"@sphereon/ssi-types": "0.34.1-fix.145",
29+
"@sphereon/ssi-types": "0.34.1-feature.DIIPv4.164",
3030
"dcql": "1.0.1",
3131
"node-fetch": "2.6.12",
3232
"typescript": "5.8.3"

packages/callback-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@sphereon/oid4vci-client": "workspace:^",
3131
"@sphereon/oid4vci-common": "workspace:^",
3232
"@sphereon/oid4vci-issuer": "workspace:^",
33-
"@sphereon/ssi-types": "0.34.1-fix.145",
33+
"@sphereon/ssi-types": "0.34.1-feature.DIIPv4.164",
3434
"jose": "^4.10.0"
3535
},
3636
"devDependencies": {

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"@sphereon/oid4vc-common": "workspace:^",
3131
"@sphereon/oid4vci-common": "workspace:^",
32-
"@sphereon/ssi-types": "0.34.1-fix.145",
32+
"@sphereon/ssi-types": "0.34.1-feature.DIIPv4.164",
3333
"cross-fetch": "^4.1.0",
3434
"debug": "^4.4.0"
3535
},

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"test": "vitest run --config ../../vitest.config.ts --coverage"
2323
},
2424
"dependencies": {
25-
"@sphereon/ssi-types": "0.34.1-fix.145",
25+
"@sphereon/ssi-types": "0.34.1-feature.DIIPv4.164",
2626
"jwt-decode": "^4.0.0",
2727
"uint8arrays": "^3.1.1",
2828
"uuid": "^9.0.0"

packages/issuer-rest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@sphereon/oid4vci-common": "workspace:^",
2727
"@sphereon/oid4vci-issuer": "workspace:^",
2828
"@sphereon/ssi-express-support": "0.34.1-next.3",
29-
"@sphereon/ssi-types": "0.34.1-fix.145",
29+
"@sphereon/ssi-types": "0.34.1-feature.DIIPv4.164",
3030
"body-parser": "^1.20.2",
3131
"cookie-parser": "^1.4.6",
3232
"cors": "^2.8.5",

packages/issuer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@sphereon/oid4vc-common": "workspace:^",
2525
"@sphereon/oid4vci-common": "workspace:^",
2626
"@sphereon/ssi-express-support": "0.34.1-next.3",
27-
"@sphereon/ssi-types": "0.34.1-fix.145",
27+
"@sphereon/ssi-types": "0.34.1-feature.DIIPv4.164",
2828
"short-uuid": "^4.2.2",
2929
"uuid": "^9.0.0"
3030
},

packages/oid4vci-common/lib/types/Generic.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface ImageInfo {
2929
[key: string]: unknown
3030
}
3131

32-
export type OID4VCICredentialFormat = 'jwt_vc_json' | 'jwt_vc_json-ld' | 'ldp_vc' | 'dc+sd-jwt'| 'vc+sd-jwt' | 'jwt_vc' | 'mso_mdoc' // jwt_vc & vc+sd-jwt are added for backwards compat TODO SSISDK-36
32+
export type OID4VCICredentialFormat = 'jwt_vc_json' | 'jwt_vc_json-ld' | 'ldp_vc' | 'dc+sd-jwt'| /*'vc+sd-jwt' |*/ 'jwt_vc' | 'mso_mdoc' // jwt_vc & vc+sd-jwt are added for backwards compat TODO SSISDK-36
3333

3434
export const supportedOID4VCICredentialFormat: readonly (OID4VCICredentialFormat | string)[] = [
3535
'jwt_vc_json',

packages/oid4vci-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"dependencies": {
2424
"@sphereon/oid4vc-common": "workspace:^",
25-
"@sphereon/ssi-types": "0.34.1-fix.145",
25+
"@sphereon/ssi-types": "0.34.1-feature.DIIPv4.164",
2626
"cross-fetch": "^4.1.0",
2727
"debug": "^4.4.0",
2828
"jwt-decode": "^4.0.0",

packages/siop-oid4vp/lib/authorization-response/types.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ export type PresentationVerificationCallback = (
6969

7070
export type PresentationSignCallback = (args: PresentationSignCallBackParams) => Promise<W3CVerifiablePresentation | CompactSdJwtVc>
7171

72+
export type DcqlQueryLookupCallback = (
73+
queryId: string,
74+
version?: string,
75+
tenantId?: string
76+
) => Promise<DcqlQuery>
77+
78+
7279
export interface VerifyAuthorizationResponseOpts {
7380
correlationId: string
7481
verification: Verification

packages/siop-oid4vp/lib/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ export * from './rp'
88
export * from './op'
99
export * from './schemas/universal-oid4vp'
1010

11+

0 commit comments

Comments
 (0)