Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nklomp committed Jul 16, 2024
1 parent 1cf760e commit 130721b
Show file tree
Hide file tree
Showing 26 changed files with 206 additions and 198 deletions.
4 changes: 2 additions & 2 deletions packages/contact-manager-rest-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
},
"dependencies": {
"@sphereon/ssi-express-support": "workspace:*",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.contact-manager": "workspace:*",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/data-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"dependencies": {
"@sphereon/pex": "^3.3.3",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-types": "workspace:*",
"@veramo/core": "4.2.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/ebsi-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"@sphereon/did-auth-siop": "0.6.4",
"@sphereon/pex": "^3.3.3",
"@sphereon/pex-models": "^2.2.4",
"@sphereon/ssi-sdk-ext.did-resolver-ebsi": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-ebsi": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.contact-manager": "workspace:*",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.oid4vci-holder": "workspace:*",
Expand All @@ -44,8 +44,8 @@
"@sphereon/oid4vci-client": "0.14.0",
"@sphereon/oid4vci-common": "0.14.0",
"@sphereon/ssi-express-support": "workspace:*",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-sdk.public-key-hosting": "workspace:*",
Expand Down
5 changes: 4 additions & 1 deletion packages/ebsi-support/src/functions/Attestation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ export const ebsiCreateAttestationAuthRequestURL = async (
}
// This only works if the DID is actually registered, otherwise use our internal KMS;
// that is why the offline argument is passed in when type is Verifiable Auth to Onboard, as no DID is present at that point yet
const authKey = await getAuthenticationKey(identifier, context, credentialType === 'VerifiableAuthorisationToOnboard', true)
const authKey = await getAuthenticationKey(
{ identifier, offlineWhenNoDIDRegistered: credentialType === 'VerifiableAuthorisationToOnboard', noVerificationMethodFallback: true },
context,
)
const kid = authKey.meta?.jwkThumbprint ?? calculateJwkThumbprintForKey({ key: authKey })
const clientId = clientIdArg ?? identifier.did

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {decodeUriAsJson} from "@sphereon/did-auth-siop";
import { decodeUriAsJson } from '@sphereon/did-auth-siop'
import { getIssuerName } from '@sphereon/oid4vci-common'
import {
ConnectionType,
Expand Down Expand Up @@ -204,11 +204,11 @@ export const authorizationCodeUrlCallback = (
}
const openidUri = response.headers.get('location')
if (!openidUri || !openidUri.startsWith('openid://')) {
let error: string | undefined = undefined
let error: string | undefined = undefined
if (openidUri) {
if (openidUri.includes('error')) {
error = 'Authorization server error: '
const decoded = decodeUriAsJson(openidUri)
const decoded = decodeUriAsJson(openidUri)
if ('error' in decoded && decoded.error) {
error += decoded.error + ', '
}
Expand All @@ -217,7 +217,9 @@ export const authorizationCodeUrlCallback = (
}
}
}
throw Error(error ?? `Expected a openid:// URI to be returned from EBSI in headless mode. Returned: ${openidUri}, ${JSON.stringify(await response.text())}`,
throw Error(
error ??
`Expected a openid:// URI to be returned from EBSI in headless mode. Returned: ${openidUri}, ${JSON.stringify(await response.text())}`,
)
}

Expand Down
4 changes: 2 additions & 2 deletions packages/oid4vci-holder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@sphereon/oid4vci-client": "0.14.0",
"@sphereon/oid4vci-common": "0.14.0",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.contact-manager": "workspace:*",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
Expand All @@ -32,7 +32,7 @@
"xstate": "^4.38.3"
},
"devDependencies": {
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.7",
"@types/i18n-js": "^3.8.4",
"@types/lodash.memoize": "^4.1.7",
"@types/uuid": "^9.0.8",
Expand Down
5 changes: 4 additions & 1 deletion packages/oid4vci-holder/src/agent/OID4VCIHolderService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,10 @@ export const getIdentifierOpts = async (args: GetIdentifierArgs): Promise<Identi
await agentContext.agent.emit(OID4VCIHolderEvent.IDENTIFIER_CREATED, { identifier })
}
}
const key: _ExtendedIKey = await getAuthenticationKey(identifier, context, identifier.did.startsWith('did:ebsi'), true)
const key: _ExtendedIKey = await getAuthenticationKey(
{ identifier, offlineWhenNoDIDRegistered: identifier.did.startsWith('did:ebsi'), noVerificationMethodFallback: true },
context,
)
let kid: string = key.meta.verificationMethod?.id ?? key.kid
if (identifier.did.startsWith('did:ebsi:')) {
kid = key.meta?.jwkThumbprint
Expand Down
8 changes: 4 additions & 4 deletions packages/oid4vci-issuer-rest-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
"@sphereon/did-uni-client": "^0.6.3",
"@sphereon/pex": "3.3.3",
"@sphereon/pex-models": "^2.2.4",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.7",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*",
"@types/body-parser": "^1.19.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/oid4vci-issuer-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"dependencies": {
"@sphereon/oid4vci-common": "0.14.0",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.kv-store-temp": "workspace:*",
"@veramo/core": "4.2.0",
"@veramo/credential-w3c": "4.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/oid4vci-issuer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@sphereon/oid4vci-common": "0.14.0",
"@sphereon/oid4vci-issuer": "0.14.0",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.kv-store-temp": "workspace:*",
"@sphereon/ssi-sdk.oid4vci-issuer-store": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/oid4vci-issuer/src/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ export async function getAccessTokenKeyRef(
keyRef = key?.kid
}
if (!key) {
key = await getFirstKeyWithRelation(identifier, context, 'assertionMethod', false)
key = await getFirstKeyWithRelation({ identifier, vmRelationship: 'assertionMethod', errorOnNotFound: false }, context)
if (!key) {
key = await getFirstKeyWithRelation(identifier, context, 'verificationMethod', true)
key = await getFirstKeyWithRelation({ identifier, vmRelationship: 'verificationMethod', errorOnNotFound: true }, context)
}
keyRef = key?.kid
}
Expand Down
2 changes: 1 addition & 1 deletion packages/presentation-exchange/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@sphereon/pex": "^3.3.3",
"@sphereon/pex-models": "^2.2.4",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-types": "workspace:*",
"@veramo/core": "4.2.0"
Expand Down
10 changes: 5 additions & 5 deletions packages/public-key-hosting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"dependencies": {
"@sphereon/ssi-express-support": "workspace:*",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.7",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-types": "workspace:*",
"@veramo/core": "4.2.0",
Expand All @@ -32,8 +32,8 @@
"uuid": "^9.0.1"
},
"devDependencies": {
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
Expand Down
10 changes: 5 additions & 5 deletions packages/sd-jwt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
"dependencies": {
"@sd-jwt/core": "^0.6.1",
"@sd-jwt/sd-jwt-vc": "^0.6.1",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@veramo/utils": "4.2.0",
"debug": "^4.3.5"
},
"devDependencies": {
"@sd-jwt/decode": "^0.6.1",
"@sd-jwt/types": "^0.6.1",
"@sd-jwt/utils": "^0.6.1",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.7",
"@types/node": "18.15.3",
"@veramo/core": "4.2.0",
"@veramo/data-store": "4.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/siopv2-oid4vp-op-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@sphereon/did-auth-siop": "0.6.4",
"@sphereon/pex": "^3.3.3",
"@sphereon/pex-models": "2.2.4",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.contact-manager": "workspace:*",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
Expand All @@ -38,7 +38,7 @@
},
"devDependencies": {
"@sphereon/did-uni-client": "^0.6.3",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@types/i18n-js": "^3.8.0",
"@types/lodash.memoize": "^4.1.7",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { KeyUse } from '@sphereon/ssi-sdk-ext.did-resolver-jwk'
import { _ExtendedIKey } from '@veramo/utils'
import { DidAgents, GetIdentifierArgs, IdentifierWithKey } from '../types/identifier'
import { DidAgents, GetIdentifierArgs, IdentifierWithKey } from '../types'
import { getAuthenticationKey, getOrCreatePrimaryIdentifier } from '@sphereon/ssi-sdk-ext.did-utils'

export const getIdentifierWithKey = async (args: GetIdentifierArgs): Promise<IdentifierWithKey> => {
Expand All @@ -13,7 +13,7 @@ export const getIdentifierWithKey = async (args: GetIdentifierArgs): Promise<Ide
method: keyOpts.didMethod,
createOpts: { options: { type: keyOpts.keyType, use: KeyUse.Signature, codecName: keyOpts.codecName } },
}))
const key: _ExtendedIKey = await getAuthenticationKey(identifier, agentContext)
const key: _ExtendedIKey = await getAuthenticationKey({ identifier, keyType: keyOpts.keyType }, agentContext)
const kid: string = key.meta.verificationMethod.id

return { identifier, key, kid }
Expand Down
2 changes: 1 addition & 1 deletion packages/siopv2-oid4vp-rp-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@sphereon/did-auth-siop": "0.6.4",
"@sphereon/pex": "^3.3.3",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.kv-store-temp": "workspace:*",
"@sphereon/ssi-sdk.pd-manager": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/siopv2-oid4vp-rp-rest-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@sphereon/did-uni-client": "^0.6.3",
"@sphereon/pex": "^3.3.3",
"@sphereon/pex-models": "^2.2.4",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*",
"@types/body-parser": "^1.19.2",
Expand Down
10 changes: 5 additions & 5 deletions packages/uni-resolver-registrar-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"dependencies": {
"@sphereon/ssi-express-support": "workspace:*",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-types": "workspace:*",
"@veramo/core": "4.2.0",
Expand All @@ -31,8 +31,8 @@
},
"devDependencies": {
"@sphereon/did-uni-client": "^0.6.3",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*",
"@types/body-parser": "^1.19.2",
Expand Down
12 changes: 6 additions & 6 deletions packages/vc-handler-ld-local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"@digitalcredentials/x25519-key-agreement-2020-context": "^1.0.0",
"@noble/hashes": "^1.2.0",
"@sphereon/isomorphic-webcrypto": "^2.4.1-unstable.0",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
Expand Down Expand Up @@ -57,10 +57,10 @@
},
"devDependencies": {
"@sphereon/did-uni-client": "^0.6.3",
"@sphereon/ssi-sdk-ext.did-provider-key": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-lto": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-key": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.did-provider-lto": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@transmute/lds-ecdsa-secp256k1-recovery2020": "^0.0.7",
"@types/nock": "^11.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/vc-status-list-issuer-drivers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@sphereon/ssi-express-support": "workspace:*",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
Expand Down
6 changes: 3 additions & 3 deletions packages/vc-status-list-issuer-rest-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@sphereon/ssi-express-support": "workspace:*",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-sdk.core": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-sdk.vc-status-list": "workspace:*",
Expand All @@ -30,8 +30,8 @@
},
"devDependencies": {
"@sphereon/did-uni-client": "^0.6.3",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/vc-status-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build:clean": "tsc --build --clean && tsc --build"
},
"dependencies": {
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-utils": "0.22.1-next.7",
"@sphereon/ssi-types": "workspace:*",
"@sphereon/vc-status-list": "7.0.0-next.0",
"@veramo/core": "4.2.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/w3c-vc-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
},
"devDependencies": {
"@sphereon/did-uni-client": "^0.6.3",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.did-provider-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.7",
"@sphereon/ssi-sdk.agent-config": "workspace:*",
"@sphereon/ssi-sdk.data-store": "workspace:*",
"@sphereon/ssi-sdk.vc-handler-ld-local": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/web3-provider-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"web3-validator": "^2.0.0"
},
"devDependencies": {
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.6",
"@sphereon/ssi-sdk-ext.key-manager": "0.22.1-next.7",
"@sphereon/ssi-sdk-ext.kms-local": "0.22.1-next.7",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/dotenv-flow": "^3.2.0",
Expand Down
Loading

0 comments on commit 130721b

Please sign in to comment.