Skip to content
220 changes: 188 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/consumption/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
]
},
"dependencies": {
"@credo-ts/core": "^0.6.1",
"@credo-ts/openid4vc": "^0.6.1",
"@credo-ts/core": "^0.7.0",
"@credo-ts/openid4vc": "^0.7.0",
"@js-soft/docdb-querytranslator": "^1.1.7",
"@js-soft/ts-serval": "2.0.17",
"@js-soft/ts-utils": "2.3.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class BaseAgent<AgentModules extends ModulesMap> {
) {
const config = {
allowInsecureHttpUrls: true,
logger: new ConsoleLogger(LogLevel.off)
logger: new ConsoleLogger(LogLevel.Off)
} satisfies InitConfig;

this.config = config;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export class EnmeshedHolderKeyManagementService implements Kms.KeyManagementServ
const signature = SodiumWrapper.sodium.crypto_sign_detached(options.data, fullPrivateKeyBytes);

return {
signature: signature as Uint8Array<ArrayBuffer>
signature: signature
};
}

Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"ts-simple-nameof": "^1.3.3"
},
"devDependencies": {
"@eudiplo/sdk-core": "^4.1.0",
"@eudiplo/sdk-core": "^5.0.0",
"@js-soft/docdb-access-loki": "1.4.1",
"@js-soft/docdb-access-mongo": "1.4.1",
"@js-soft/node-logger": "1.2.5",
Expand Down
Loading