Compare commits
2 Commits
6d2779ba83
...
5a08baab5e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a08baab5e | ||
|
|
c850815e97 |
@@ -7,7 +7,7 @@
|
|||||||
},
|
},
|
||||||
"imports": {
|
"imports": {
|
||||||
"@std/assert": "jsr:@std/assert@1",
|
"@std/assert": "jsr:@std/assert@1",
|
||||||
"zod": "npm:zod@^3.24.1"
|
"zod": "npm:zod@^3.24.2"
|
||||||
},
|
},
|
||||||
"fmt": {
|
"fmt": {
|
||||||
"indentWidth": 4
|
"indentWidth": 4
|
||||||
|
|||||||
8
deno/deno.lock
generated
8
deno/deno.lock
generated
@@ -7,7 +7,7 @@
|
|||||||
"jsr:@std/bytes@^1.0.2-rc.3": "1.0.5",
|
"jsr:@std/bytes@^1.0.2-rc.3": "1.0.5",
|
||||||
"jsr:@std/internal@^1.0.5": "1.0.5",
|
"jsr:@std/internal@^1.0.5": "1.0.5",
|
||||||
"jsr:@std/io@0.224.5": "0.224.5",
|
"jsr:@std/io@0.224.5": "0.224.5",
|
||||||
"npm:zod@^3.24.1": "3.24.1"
|
"npm:zod@^3.24.2": "3.24.2"
|
||||||
},
|
},
|
||||||
"jsr": {
|
"jsr": {
|
||||||
"@std/assert@1.0.11": {
|
"@std/assert@1.0.11": {
|
||||||
@@ -33,8 +33,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"npm": {
|
"npm": {
|
||||||
"zod@3.24.1": {
|
"zod@3.24.2": {
|
||||||
"integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A=="
|
"integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ=="
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"redirects": {
|
"redirects": {
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
"workspace": {
|
"workspace": {
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"jsr:@std/assert@1",
|
"jsr:@std/assert@1",
|
||||||
"npm:zod@^3.24.1"
|
"npm:zod@^3.24.2"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ type MessageSource = "logging" | "diagnostic" | "user";
|
|||||||
|
|
||||||
type Message = {
|
type Message = {
|
||||||
// FIXME: number probably isn't what we want here
|
// FIXME: number probably isn't what we want here
|
||||||
timestamp: number;
|
timestamp?: number;
|
||||||
source: MessageSource;
|
source: MessageSource;
|
||||||
|
|
||||||
text: AtLeastOne<string>;
|
text: AtLeastOne<string>;
|
||||||
|
|||||||
Reference in New Issue
Block a user