New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mongodb-cross-cursor

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-cross-cursor - npm Package Compare versions

Comparing version

to
1.0.7

4

dist/index.d.ts

@@ -1,2 +0,2 @@

import { Document, FindCursor, WithId, MongoClient } from "mongodb";
import { Document, FindCursor, MongoClient } from "mongodb";
declare type SharedCursor = {

@@ -13,3 +13,3 @@ cursorId: string;

constructor(sharedCursor: SharedCursor, client: MongoClient, namespace: string, collection: string, batchSize?: number);
static initiate(find: FindCursor<WithId<Document>>): Promise<MongoCrossCursor>;
static initiate(find: FindCursor<Document>): Promise<MongoCrossCursor>;
next(): Promise<unknown[]>;

@@ -16,0 +16,0 @@ iterate(): AsyncGenerator<unknown, void, unknown>;

@@ -44,2 +44,5 @@ "use strict";

}
if (builtOptions.projection) {
_commandOptions.projection = builtOptions.projection;
}
const cmd = yield db.command(_commandOptions, {

@@ -62,3 +65,3 @@ session: (0, utils_1.fakeSessionBuilder)(sessionId)

collection: this.collection,
batchSize: this.batchSize
batchSize: this.batchSize,
}, {

@@ -65,0 +68,0 @@ session: (0, utils_1.fakeSessionBuilder)(this.sharedCursor.sessionId)

{
"name": "mongodb-cross-cursor",
"version": "1.0.6",
"version": "1.0.7",
"author": "Baptiste Jamin <baptiste@crisp.chat> (https://crisp.chat)",

@@ -5,0 +5,0 @@ "description": "A mongodb driver extension allowing to consume MongoDB cursors accross multiple instances",

Sorry, the diff of this file is not supported yet