From 43d8b148c2372a556d962c9fb614707071b4f884 Mon Sep 17 00:00:00 2001 From: Conor Watson Date: Mon, 9 Oct 2023 16:56:55 +0100 Subject: [PATCH 1/2] Added Topology and Security messaged --- packages/core/src/notification-filter.ts | 4 +++- packages/core/src/result-summary.ts | 6 ++++-- packages/core/test/notification-filter.test.ts | 2 ++ packages/core/test/result-summary.test.ts | 2 ++ packages/neo4j-driver/test/types/index.test.ts | 4 ++++ 5 files changed, 15 insertions(+), 3 deletions(-) diff --git a/packages/core/src/notification-filter.ts b/packages/core/src/notification-filter.ts index cd5e21b9e..8fdedb76b 100644 --- a/packages/core/src/notification-filter.ts +++ b/packages/core/src/notification-filter.ts @@ -41,7 +41,7 @@ Object.freeze(notificationFilterMinimumSeverityLevel) type NotificationFilterDisabledCategory = ExcludeUnknown /** - * @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'DEPRECATION' | 'GENERIC' } NotificationFilterDisabledCategory + * @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC'} NotificationFilterDisabledCategory */ /** * Constants that represents the disabled categories in the {@link NotificationFilter} @@ -51,6 +51,8 @@ const notificationFilterDisabledCategory: EnumRecord Date: Tue, 10 Oct 2023 08:08:33 +0100 Subject: [PATCH 2/2] deno build --- packages/neo4j-driver-deno/lib/core/notification-filter.ts | 4 +++- packages/neo4j-driver-deno/lib/core/result-summary.ts | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/packages/neo4j-driver-deno/lib/core/notification-filter.ts b/packages/neo4j-driver-deno/lib/core/notification-filter.ts index 6f02d926c..a2a273aa4 100644 --- a/packages/neo4j-driver-deno/lib/core/notification-filter.ts +++ b/packages/neo4j-driver-deno/lib/core/notification-filter.ts @@ -41,7 +41,7 @@ Object.freeze(notificationFilterMinimumSeverityLevel) type NotificationFilterDisabledCategory = ExcludeUnknown /** - * @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'DEPRECATION' | 'GENERIC' } NotificationFilterDisabledCategory + * @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC'} NotificationFilterDisabledCategory */ /** * Constants that represents the disabled categories in the {@link NotificationFilter} @@ -51,6 +51,8 @@ const notificationFilterDisabledCategory: EnumRecord