Skip to content

Commit 35564cf

Browse files
author
DylanBulmer
committed
update imports
1 parent cacb04d commit 35564cf

14 files changed

Lines changed: 19 additions & 14 deletions

File tree

deno.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,10 @@
1212
"publish": {
1313
"include": ["LICENSE", "README.md", "src/**/*.ts"],
1414
"exclude": [".github", "*.test.ts", ".gitignore"]
15+
},
16+
"imports": {
17+
"@std/assert": "jsr:@std/assert@^1.0.0",
18+
"bson": "npm:bson@^6.8.0",
19+
"jsonwebtoken": "npm:jsonwebtoken@^9.0.2"
1520
}
1621
}

src/models/Annotation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import { Base, type IBase } from "./Base.ts";
33
import type { AtLeast } from "../types/mod.ts";
44

src/models/Audit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import type { IBase } from "./Base.ts";
33
import type { ActionCode, ResourceCode } from "../types/mod.ts";
44

src/models/Authorization.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import { Base, type IBase } from "./Base.ts";
33
import type { ActionCode, AtLeast, ResourceCode } from "../types/mod.ts";
44

src/models/Base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ObjectId } from "npm:bson";
1+
import { ObjectId } from "bson";
22
import type { AtLeast } from "../types/mod.ts";
33

44
export interface IBase<Kind extends string> {

src/models/Dataset.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import type { AtLeast, Flags } from "../types/mod.ts";
33
import { Base, type IBase } from "./Base.ts";
44

src/models/Group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import { Base, type IBase } from "./Base.ts";
33
import type { AtLeast, Flags } from "../types/mod.ts";
44

src/models/Message.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import type { AtLeast, MessageType } from "../types/mod.ts";
33
import { Base, type IBase } from "./Base.ts";
44

src/models/Profile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import { Base, type IBase } from "./Base.ts";
33
import type { User } from "./User.ts";
44
import type { AtLeast } from "../types/mod.ts";

src/models/Project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ObjectId } from "npm:bson";
1+
import type { ObjectId } from "bson";
22
import type { AtLeast, Flags, TaskType } from "../types/mod.ts";
33
import { Base, type IBase } from "./Base.ts";
44

0 commit comments

Comments
 (0)