Skip to content

Commit

Permalink
Align Browser TS version with neo4j-arc's min version
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Nov 24, 2023
1 parent f79fb5a commit 0be1d2c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.10.0
16.17.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
"style-loader": "^0.23.1",
"ts-jest": "^25.0.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.5",
"typescript": "4.6.2",
"typescript-plugin-styled-components": "^1.5.0",
"url-loader": "^1.1.2",
"wait-on": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/neo4j-arc/common/utils/objectUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ export function mapObjectValues<A, B>(
}

export function keys<T>(object: T): Array<keyof T> {
return Object.keys(object) as Array<keyof T>
return Object.keys(object as any) as Array<keyof T>
}
2 changes: 1 addition & 1 deletion src/shared/services/bolt/driverFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const createDriverOrFailFn = (
try {
const res = neo4j.driver(url, auth, spreadOpts)
return res
} catch (e) {
} catch (e: any) {
failFn(e)
return null
}
Expand Down
2 changes: 1 addition & 1 deletion src/shared/services/bolt/globalDrivers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const buildGlobalDriversObject = async (
)
routed && (await routed.verifyConnectivity())
routingSupported = true
} catch (e) {
} catch (e: any) {
if (e && isNonSupportedRoutingSchemeError(e)) {
routingSupported = false
failFn(e)
Expand Down
2 changes: 1 addition & 1 deletion src/shared/services/commandInterpreterHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ const availableCommands = [
put(updateQueryResult(action.requestId, null, 'success'))
}
return true
} catch (error) {
} catch (error: any) {
if (!action.parentId) {
put(
frames.add({
Expand Down
7 changes: 6 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13900,7 +13900,12 @@ typescript-plugin-styled-components@^1.5.0:
resolved "https://registry.npmjs.org/typescript-plugin-styled-components/-/typescript-plugin-styled-components-1.6.0.tgz"
integrity sha512-cUCbOuY0iNr1JjPYC5MqCiABrfv2ouLift+7gi4vS0gBPQySUT006wHCjwzynMfU5LGMQaZqpssAgzRRjt30Ng==

typescript@^3.2.1, typescript@^3.9.3, typescript@^3.9.5:
typescript@4.6.2:
version "4.6.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.2.tgz#fe12d2727b708f4eef40f51598b3398baa9611d4"
integrity sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==

typescript@^3.2.1, typescript@^3.9.3:
version "3.9.10"
resolved "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz"
integrity "sha1-cPORCselHta+952ngAaQsZv3eLg= sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q=="
Expand Down

0 comments on commit 0be1d2c

Please sign in to comment.