Socket
Socket
Sign inDemoInstall

neo4j-driver-core

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

neo4j-driver-core - npm Package Compare versions

Comparing version 5.23.0 to 5.24.0

lib/internal/pool/index.js

4

lib/internal/index.js

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

Object.defineProperty(exports, "__esModule", { value: true });
exports.boltAgent = exports.objectUtil = exports.resolver = exports.serverAddress = exports.urlUtil = exports.logger = exports.transactionExecutor = exports.txConfig = exports.connectionHolder = exports.constants = exports.bookmarks = exports.observer = exports.temporalUtil = exports.util = void 0;
exports.pool = exports.boltAgent = exports.objectUtil = exports.resolver = exports.serverAddress = exports.urlUtil = exports.logger = exports.transactionExecutor = exports.txConfig = exports.connectionHolder = exports.constants = exports.bookmarks = exports.observer = exports.temporalUtil = exports.util = void 0;
var util = __importStar(require("./util"));

@@ -72,1 +72,3 @@ exports.util = util;

exports.boltAgent = boltAgent;
var pool = __importStar(require("./pool"));
exports.pool = pool;

@@ -18,3 +18,3 @@ "use strict";

/**
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC'} NotificationFilterDisabledCategory
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'SCHEMA'} NotificationFilterDisabledCategory
*/

@@ -32,3 +32,4 @@ /**

DEPRECATION: 'DEPRECATION',
GENERIC: 'GENERIC'
GENERIC: 'GENERIC',
SCHEMA: 'SCHEMA'
};

@@ -35,0 +36,0 @@ exports.notificationFilterDisabledCategory = notificationFilterDisabledCategory;

@@ -114,3 +114,3 @@ "use strict";

/**
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'UNKNOWN' } NotificationCategory
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'SCHEMA' | 'UNKNOWN' } NotificationCategory
*/

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

GENERIC: 'GENERIC',
SCHEMA: 'SCHEMA',
UNKNOWN: 'UNKNOWN'

@@ -131,0 +132,0 @@ };

{
"name": "neo4j-driver-core",
"version": "5.23.0",
"version": "5.24.0",
"description": "Internals of neo4j-driver",

@@ -48,3 +48,3 @@ "main": "lib/index.js",

},
"gitHead": "7feed54e045a5e68c0bee7a18ab6a7dcac538554"
"gitHead": "4e3806426449c49fbd4306f22552a941ad570fd0"
}

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

GENERIC: "GENERIC";
SCHEMA: "SCHEMA";
};

@@ -199,2 +200,3 @@ notificationClassification: {

GENERIC: "GENERIC";
SCHEMA: "SCHEMA";
};

@@ -215,2 +217,3 @@ notificationSeverityLevel: {

GENERIC: "GENERIC";
SCHEMA: "SCHEMA";
};

@@ -226,2 +229,3 @@ notificationFilterDisabledClassification: {

GENERIC: "GENERIC";
SCHEMA: "SCHEMA";
};

@@ -228,0 +232,0 @@ notificationFilterMinimumSeverityLevel: {

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

import * as boltAgent from './bolt-agent/index';
export { util, temporalUtil, observer, bookmarks, constants, connectionHolder, txConfig, transactionExecutor, logger, urlUtil, serverAddress, resolver, objectUtil, boltAgent };
import * as pool from './pool';
export { util, temporalUtil, observer, bookmarks, constants, connectionHolder, txConfig, transactionExecutor, logger, urlUtil, serverAddress, resolver, objectUtil, boltAgent, pool };

@@ -33,3 +33,3 @@ /**

/**
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC'} NotificationFilterDisabledCategory
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'SCHEMA'} NotificationFilterDisabledCategory
*/

@@ -36,0 +36,0 @@ /**

@@ -17,5 +17,5 @@ import { NumberOrInteger } from './graph-types';

};
type NotificationCategory = 'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' | 'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'UNKNOWN';
type NotificationCategory = 'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' | 'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'SCHEMA' | 'UNKNOWN';
/**
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'UNKNOWN' } NotificationCategory
* @typedef {'HINT' | 'UNRECOGNIZED' | 'UNSUPPORTED' |'PERFORMANCE' | 'TOPOLOGY' | 'SECURITY' | 'DEPRECATION' | 'GENERIC' | 'SCHEMA' | 'UNKNOWN' } NotificationCategory
*/

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

GENERIC: "GENERIC";
SCHEMA: "SCHEMA";
};

@@ -50,0 +51,0 @@ /**

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