Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit a3b5ad8

Browse files
committed
fix: Fixes type on return of insertOne
1 parent 75b8a5c commit a3b5ad8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { type OutgoingHttpHeaders } from "node:http";
2-
import { EJSON } from "bson";
2+
import { EJSON, type ObjectId } from "bson";
33
import type {
44
Sort,
55
Filter,
@@ -275,7 +275,7 @@ export class Collection<TSchema = Document> {
275275
*/
276276
async insertOne(
277277
document: OptionalUnlessRequiredId<TSchema>
278-
): Promise<DataAPIResponse<{ insertedId: string }>> {
278+
): Promise<DataAPIResponse<{ insertedId: ObjectId }>> {
279279
return this.callApi("insertOne", {
280280
document,
281281
});

0 commit comments

Comments
 (0)