Skip to content

Commit 41e0485

Browse files
committed
chore: update deps
1 parent 3df52a4 commit 41e0485

7 files changed

Lines changed: 35 additions & 36 deletions

File tree

packages/client/lib/OpenID4VCIClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ export class OpenID4VCIClient {
321321
);
322322
}
323323
this._state.accessTokenResponse = response.successBody;
324-
this._state.accessToken = response.successBody.access_token
324+
this._state.accessToken = response.successBody.access_token;
325325
}
326326

327327
return this.accessTokenResponse;
@@ -482,7 +482,7 @@ export class OpenID4VCIClient {
482482
request: NotificationRequest,
483483
accessToken?: string,
484484
): Promise<NotificationResult> {
485-
return sendNotification(credentialRequestOpts, request, accessToken ?? this._state.accessToken ?? this._state.accessTokenResponse?.access_token);
485+
return sendNotification(credentialRequestOpts, request, accessToken ?? this._state.accessToken ?? this._state.accessTokenResponse?.access_token);
486486
}
487487

488488
getCredentialOfferTypes(): string[][] {

packages/client/lib/functions/notifications.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function sendNotification(
1414
}
1515
const token = accessToken ?? credentialRequestOpts.token;
1616
const response = await post<NotificationErrorResponse>(credentialRequestOpts.notificationEndpoint, JSON.stringify(request), {
17-
...(token && {bearerToken: token}),
17+
...(token && { bearerToken: token }),
1818
});
1919
const error = response.errorBody?.error !== undefined;
2020
const result = {

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"dependencies": {
1818
"@sphereon/oid4vci-common": "workspace:*",
19-
"@sphereon/ssi-types": "0.24.1-unstable.116",
19+
"@sphereon/ssi-types": "0.25.0",
2020
"cross-fetch": "^3.1.8",
2121
"debug": "^4.3.4"
2222
},

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"build:clean": "tsc --build --clean && tsc --build"
1111
},
1212
"dependencies": {
13-
"@sphereon/ssi-types": "0.24.1-unstable.116",
13+
"@sphereon/ssi-types": "0.25.0",
1414
"cross-fetch": "^3.1.8",
1515
"jwt-decode": "^3.1.2",
1616
"sha.js": "^2.4.11",

packages/issuer-rest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"dependencies": {
1414
"@sphereon/oid4vci-common": "workspace:*",
1515
"@sphereon/oid4vci-issuer": "workspace:*",
16-
"@sphereon/ssi-express-support": "0.24.1-unstable.116",
17-
"@sphereon/ssi-types": "0.24.1-unstable.116",
16+
"@sphereon/ssi-express-support": "0.25.0",
17+
"@sphereon/ssi-types": "0.25.0",
1818
"body-parser": "^1.20.2",
1919
"cookie-parser": "^1.4.6",
2020
"cors": "^2.8.5",

packages/issuer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@sphereon/oid4vci-common": "workspace:*",
14-
"@sphereon/ssi-types": "0.24.1-unstable.116",
14+
"@sphereon/ssi-types": "0.25.0",
1515
"uuid": "^9.0.0"
1616
},
1717
"peerDependencies": {

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)