Skip to content
Prev Previous commit
Next Next commit
chore: ClientBulkWriteResultAccumulation
  • Loading branch information
nbbeeken committed Oct 16, 2024
commit 3714c111d37e4b329168e24b888b25b1ec76b799
4 changes: 2 additions & 2 deletions src/operations/client_bulk_write/results_merger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const UNACKNOWLEDGED = {
deleteResults: undefined
};

interface InternalResult {
interface ClientBulkWriteResultAccumulation {
/**
* Whether the bulk write was acknowledged.
*/
Expand Down Expand Up @@ -70,7 +70,7 @@ interface InternalResult {
* @internal
*/
export class ClientBulkWriteResultsMerger {
private result: InternalResult;
private result: ClientBulkWriteResultAccumulation;
private options: ClientBulkWriteOptions;
private currentBatchOffset: number;
writeConcernErrors: Document[];
Expand Down