Skip to content

Commit 290b043

Browse files
committed
chore: update deps
1 parent ad794b8 commit 290b043

4 files changed

Lines changed: 86 additions & 37 deletions

File tree

packages/issuer-rest/lib/__tests__/ClientIssuerIT.spec.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,9 @@ describe('VcIssuer', () => {
398398
const stateManager = new MemoryStates<CredentialOfferSession>()
399399
testVcIssuer = new VcIssuerBuilder()
400400
.withAuthorizationMetadata(authorizationServerMetadata)
401-
.withCredentialEndpoint('http://localhost:4000/credential-endpoint')
402-
.withDefaultCredentialOfferBaseUri('http://localhost:4000')
403-
.withCredentialIssuer('http://localhost:4000')
401+
.withCredentialEndpoint('http://localhost:4321/credential-endpoint')
402+
.withDefaultCredentialOfferBaseUri('http://localhost:4321')
403+
.withCredentialIssuer('http://localhost:4321')
404404
.withIssuerDisplay({ name: 'test issuer', locale: 'en-US' })
405405
.withCredentialConfigurationsSupported({})
406406
.withCredentialOfferStateManager(stateManager)
@@ -436,7 +436,7 @@ describe('VcIssuer', () => {
436436
)
437437
.build()
438438

439-
testExpressSupport = ExpressBuilder.fromServerOpts({ startListening: false, port: 4000, hostname: 'localhost' }).build({
439+
testExpressSupport = ExpressBuilder.fromServerOpts({ startListening: false, port: 4321, hostname: 'localhost' }).build({
440440
startListening: false,
441441
})
442442

@@ -445,16 +445,16 @@ describe('VcIssuer', () => {
445445
}
446446

447447
const endpointOpts = {
448-
getIssuePayloadOpts: { enabled: true, baseUrl: 'http://localhost:4000' },
449-
createCredentialOfferOpts: { enabled: true, baseUrl: 'http://localhost:4000' },
448+
getIssuePayloadOpts: { enabled: true, baseUrl: 'http://localhost:4321' },
449+
createCredentialOfferOpts: { enabled: true, baseUrl: 'http://localhost:4321' },
450450
tokenEndpointOpts: {
451451
accessTokenSignerCallback: dummyAccessTokenSignerCallback,
452452
},
453453
}
454454

455455
testServer = new OID4VCIServer(testExpressSupport, {
456456
issuer: testVcIssuer,
457-
baseUrl: 'http://localhost:4000',
457+
baseUrl: 'http://localhost:4321',
458458
endpointOpts,
459459
})
460460
testExpressSupport.start()

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export type JWTVerifyCallback = (args: { jwt: string; kid?: string }) => Promise
175175
export interface JwtVerifyResult {
176176
jwt: Jwt;
177177
kid?: string;
178-
alg: string;
178+
alg?: string;
179179
did?: string;
180180
didDocument?: Record<string, unknown>;
181181
x5c?: string[];

packages/siop-oid4vp/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
"@digitalcredentials/ed25519-signature-2020": "^3.0.2",
4545
"@digitalcredentials/jsonld-signatures": "^9.3.2",
4646
"@digitalcredentials/vc": "^6.0.0",
47-
"@sd-jwt/crypto-nodejs": "0.7.2",
48-
"@sd-jwt/sd-jwt-vc": "0.7.2",
49-
"@sd-jwt/types": "0.7.2",
47+
"@sd-jwt/crypto-nodejs": "^0.9.2",
48+
"@sd-jwt/sd-jwt-vc": "^0.9.2",
49+
"@sd-jwt/types": "^0.9.2",
5050
"@sphereon/wellknown-dids-client": "^0.1.3",
5151
"@sphereon/did-uni-client": "^0.6.2",
5252
"@transmute/did-key-ed25519": "^0.3.0-unstable.10",

pnpm-lock.yaml

Lines changed: 75 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)