Skip to content

Commit b59bc58

Browse files
authored
chore(sdk): update dependencies in package.json files (#3403)
* chore(sdk): update dependencies in package.json files - Add ajv version 8.17.1 to workflows-service - Include @stylistic/eslint-plugin-ts in both sdk and workflows-service - Reintroduce @cspell/cspell-types in workflow-browser-sdk * chore(merge): merged with dev
1 parent 9254cf9 commit b59bc58

File tree

4 files changed

+116
-10
lines changed

4 files changed

+116
-10
lines changed

pnpm-lock.yaml

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

sdks/workflow-browser-sdk/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,15 @@
4242
"@babel/preset-env": "7.16.11",
4343
"@babel/preset-typescript": "7.16.7",
4444
"@ballerine/config": "^1.1.44",
45-
"@cspell/cspell-types": "^6.31.1",
4645
"@ballerine/eslint-config": "^1.1.44",
46+
"@cspell/cspell-types": "^6.31.1",
4747
"@rollup/plugin-babel": "5.3.1",
4848
"@rollup/plugin-commonjs": "^24.0.1",
4949
"@rollup/plugin-json": "^6.0.0",
5050
"@rollup/plugin-node-resolve": "13.2.1",
5151
"@rollup/plugin-replace": "4.0.0",
5252
"@rollup/plugin-terser": "^0.4.0",
53+
"@stylistic/eslint-plugin-ts": "^1.6.2",
5354
"@types/babel__core": "^7.20.0",
5455
"@types/fs-extra": "^11.0.1",
5556
"@types/node": "^18.14.0",

services/workflows-service/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"@sentry/node": "^7.52.1",
7373
"@sinclair/typebox": "0.32.15",
7474
"@t3-oss/env-core": "^0.6.1",
75-
"ajv": "^8.12.0",
75+
"ajv": "^8.17.1",
7676
"ajv-formats": "^2.1.1",
7777
"ajv-keywords": "^5.1.0",
7878
"aws-cloudfront-sign": "3.0.2",
@@ -120,6 +120,7 @@
120120
"@cspell/cspell-types": "^6.31.1",
121121
"@nestjs/cli": "9.3.0",
122122
"@nestjs/swagger": "7.4.0",
123+
"@stylistic/eslint-plugin-ts": "^1.6.2",
123124
"@total-typescript/ts-reset": "^0.5.1",
124125
"@types/base64-stream": "^1.0.5",
125126
"@types/bcrypt": "5.0.0",
@@ -152,6 +153,7 @@
152153
"eslint-import-resolver-typescript": "^3.6.1",
153154
"eslint-plugin-ballerine": "file:./plugins/verify-repository-project-scoped",
154155
"eslint-plugin-import": "^2.27.5",
156+
"eslint-plugin-unused-imports": "^3.0.0",
155157
"jest": "29.7.0",
156158
"jest-html-reporter": "^3.10.2",
157159
"jest-mock-extended": "^2.0.4",

services/workflows-service/src/workflow/workflow.service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ const getAvatarUrl = (website: string | undefined | null) =>
141141

142142
const handlePromiseAll = async <T>(promises: Record<string, Promise<T>>) => {
143143
const record: Record<string, T> = {};
144-
const errors: { key: string; error: unknown }[] = [];
144+
const errors: Array<{ key: string; error: unknown }> = [];
145145
const promisesEntries = Object.entries(promises);
146146
const results = await Promise.all(
147147
promisesEntries.map(([key, promise]) =>
@@ -371,6 +371,7 @@ export class WorkflowService {
371371

372372
nextEvents = service.getSnapshot().nextEvents;
373373
}
374+
374375
let individualVerificationsChecks:
375376
| Awaited<ReturnType<typeof this.getIndividualVerificationsChecksWithFallback>>
376377
| undefined;

0 commit comments

Comments
 (0)