File tree Expand file tree Collapse file tree 4 files changed +116
-10
lines changed
sdks/workflow-browser-sdk
services/workflows-service Expand file tree Collapse file tree 4 files changed +116
-10
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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" ,
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" ,
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" ,
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ const getAvatarUrl = (website: string | undefined | null) =>
141141
142142const 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 ;
You can’t perform that action at this time.
0 commit comments