Socket
Socket
Sign inDemoInstall

neo4j-driver

Package Overview
Dependencies
Maintainers
0
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

neo4j-driver - npm Package Compare versions

Comparing version 5.21.0 to 5.22.0

8

lib/index.js

@@ -42,4 +42,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.Path = exports.UnboundRelationship = exports.Relationship = exports.Node = exports.Record = exports.ServerInfo = exports.Notification = exports.QueryStatistics = exports.ProfiledPlan = exports.Plan = exports.ResultSummary = exports.RxResult = exports.RxManagedTransaction = exports.RxTransaction = exports.RxSession = exports.EagerResult = exports.Result = exports.ManagedTransaction = exports.Transaction = exports.Session = exports.Driver = exports.temporal = exports.spatial = exports.graph = exports.error = exports.routing = exports.session = exports.types = exports.logging = exports.auth = exports.isRetryableError = exports.Neo4jError = exports.integer = exports.isUnboundRelationship = exports.isRelationship = exports.isPathSegment = exports.isPath = exports.isNode = exports.isDateTime = exports.isLocalDateTime = exports.isDate = exports.isTime = exports.isLocalTime = exports.isDuration = exports.isPoint = exports.isInt = exports.int = exports.hasReachableServer = exports.driver = exports.authTokenManagers = void 0;
exports.clientCertificateProviders = exports.notificationFilterMinimumSeverityLevel = exports.notificationFilterDisabledCategory = exports.notificationSeverityLevel = exports.notificationCategory = exports.resultTransformers = exports.bookmarkManager = exports.DateTime = exports.LocalDateTime = exports.Date = exports.Time = exports.LocalTime = exports.Duration = exports.Integer = exports.Point = exports.PathSegment = void 0;
exports.UnboundRelationship = exports.Relationship = exports.Node = exports.Record = exports.ServerInfo = exports.GqlStatusObject = exports.Notification = exports.QueryStatistics = exports.ProfiledPlan = exports.Plan = exports.ResultSummary = exports.RxResult = exports.RxManagedTransaction = exports.RxTransaction = exports.RxSession = exports.EagerResult = exports.Result = exports.ManagedTransaction = exports.Transaction = exports.Session = exports.Driver = exports.temporal = exports.spatial = exports.graph = exports.error = exports.routing = exports.session = exports.types = exports.logging = exports.auth = exports.isRetryableError = exports.Neo4jError = exports.integer = exports.isUnboundRelationship = exports.isRelationship = exports.isPathSegment = exports.isPath = exports.isNode = exports.isDateTime = exports.isLocalDateTime = exports.isDate = exports.isTime = exports.isLocalTime = exports.isDuration = exports.isPoint = exports.isInt = exports.int = exports.hasReachableServer = exports.driver = exports.authTokenManagers = void 0;
exports.clientCertificateProviders = exports.notificationFilterMinimumSeverityLevel = exports.notificationFilterDisabledClassification = exports.notificationFilterDisabledCategory = exports.notificationSeverityLevel = exports.notificationClassification = exports.notificationCategory = exports.resultTransformers = exports.bookmarkManager = exports.DateTime = exports.LocalDateTime = exports.Date = exports.Time = exports.LocalTime = exports.Duration = exports.Integer = exports.Point = exports.PathSegment = exports.Path = void 0;
/**

@@ -102,2 +102,3 @@ * Copyright (c) "Neo4j"

Object.defineProperty(exports, "Notification", { enumerable: true, get: function () { return neo4j_driver_core_1.Notification; } });
Object.defineProperty(exports, "GqlStatusObject", { enumerable: true, get: function () { return neo4j_driver_core_1.GqlStatusObject; } });
Object.defineProperty(exports, "ServerInfo", { enumerable: true, get: function () { return neo4j_driver_core_1.ServerInfo; } });

@@ -114,4 +115,6 @@ Object.defineProperty(exports, "Result", { enumerable: true, get: function () { return neo4j_driver_core_1.Result; } });

Object.defineProperty(exports, "notificationCategory", { enumerable: true, get: function () { return neo4j_driver_core_1.notificationCategory; } });
Object.defineProperty(exports, "notificationClassification", { enumerable: true, get: function () { return neo4j_driver_core_1.notificationClassification; } });
Object.defineProperty(exports, "notificationSeverityLevel", { enumerable: true, get: function () { return neo4j_driver_core_1.notificationSeverityLevel; } });
Object.defineProperty(exports, "notificationFilterDisabledCategory", { enumerable: true, get: function () { return neo4j_driver_core_1.notificationFilterDisabledCategory; } });
Object.defineProperty(exports, "notificationFilterDisabledClassification", { enumerable: true, get: function () { return neo4j_driver_core_1.notificationFilterDisabledClassification; } });
Object.defineProperty(exports, "notificationFilterMinimumSeverityLevel", { enumerable: true, get: function () { return neo4j_driver_core_1.notificationFilterMinimumSeverityLevel; } });

@@ -416,2 +419,3 @@ Object.defineProperty(exports, "clientCertificateProviders", { enumerable: true, get: function () { return neo4j_driver_core_1.clientCertificateProviders; } });

Notification: neo4j_driver_core_1.Notification,
GqlStatusObject: neo4j_driver_core_1.GqlStatusObject,
ServerInfo: neo4j_driver_core_1.ServerInfo,

@@ -418,0 +422,0 @@ Record: neo4j_driver_core_1.Record,

@@ -27,2 +27,2 @@ "use strict";

// system to control version names at packaging time.
exports.default = '5.21.0';
exports.default = '5.22.0';
{
"name": "neo4j-driver",
"version": "5.21.0",
"version": "5.22.0",
"description": "The official Neo4j driver for Javascript",

@@ -83,7 +83,7 @@ "author": "Neo4j",

"dependencies": {
"neo4j-driver-bolt-connection": "5.21.0",
"neo4j-driver-core": "5.21.0",
"neo4j-driver-bolt-connection": "5.22.0",
"neo4j-driver-core": "5.22.0",
"rxjs": "^7.8.1"
},
"gitHead": "13c707a3e78151c4f55db2dcbde9bfbea16ccb14"
"gitHead": "17d429d270be85c928b054956fa72a9dde4a6a4d"
}

@@ -58,2 +58,3 @@ /**

Notification,
GqlStatusObject,
NotificationPosition,

@@ -81,9 +82,13 @@ Plan,

notificationCategory,
notificationClassification,
notificationSeverityLevel,
NotificationCategory,
NotificationClassification,
NotificationSeverityLevel,
NotificationFilter,
NotificationFilterDisabledCategory,
NotificationFilterDisabledClassification,
NotificationFilterMinimumSeverityLevel,
notificationFilterDisabledCategory,
notificationFilterDisabledClassification,
notificationFilterMinimumSeverityLevel,

@@ -258,2 +263,3 @@ AuthTokenManager,

Notification: typeof Notification
GqlStatusObject: typeof GqlStatusObject
ServerInfo: typeof ServerInfo

@@ -290,4 +296,6 @@ NotificationPosition: NotificationPosition

notificationCategory: typeof notificationCategory
notificationClassification: typeof notificationClassification
notificationSeverityLevel: typeof notificationSeverityLevel
notificationFilterDisabledCategory: typeof notificationFilterDisabledCategory
notificationFilterDisabledClassification: typeof notificationFilterDisabledClassification
notificationFilterMinimumSeverityLevel: typeof notificationFilterMinimumSeverityLevel

@@ -337,2 +345,3 @@ logging: typeof logging

Notification,
GqlStatusObject,
ServerInfo,

@@ -369,4 +378,6 @@ NotificationPosition,

notificationCategory,
notificationClassification,
notificationSeverityLevel,
notificationFilterDisabledCategory,
notificationFilterDisabledClassification,
notificationFilterMinimumSeverityLevel,

@@ -387,5 +398,7 @@ logging,

NotificationCategory,
NotificationClassification,
NotificationSeverityLevel,
NotificationFilter,
NotificationFilterDisabledCategory,
NotificationFilterDisabledClassification,
NotificationFilterMinimumSeverityLevel,

@@ -392,0 +405,0 @@ AuthTokenManager,

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc