Skip to content

Commit 3faa555

Browse files
authored
chore: update dependencies and lockfiles (#866)
1 parent 8d46574 commit 3faa555

File tree

83 files changed

+19966
-11764
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+19966
-11764
lines changed

astro-blog-starter-template/package-lock.json

Lines changed: 330 additions & 291 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

astro-blog-starter-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"typescript": "5.9.3"
2121
},
2222
"devDependencies": {
23-
"wrangler": "4.51.0"
23+
"wrangler": "4.55.0"
2424
},
2525
"private": true,
2626
"scripts": {

astro-blog-starter-template/worker-configuration.d.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable */
22
// Generated by Wrangler by running `wrangler types` (hash: 9d50a76cdc759facba0bb43994cbf977)
3-
// Runtime types generated with workerd@1.20251125.0 2025-10-08 nodejs_compat
3+
// Runtime types generated with workerd@1.20251213.0 2025-10-08 nodejs_compat
44
declare namespace Cloudflare {
55
interface GlobalProps {
66
mainModule: typeof import("./dist/_worker.js/index");
@@ -3278,7 +3278,7 @@ interface WorkerStubEntrypointOptions {
32783278
props?: any;
32793279
}
32803280
interface WorkerLoader {
3281-
get(name: string, getCode: () => WorkerLoaderWorkerCode | Promise<WorkerLoaderWorkerCode>): WorkerStub;
3281+
get(name: string | null, getCode: () => WorkerLoaderWorkerCode | Promise<WorkerLoaderWorkerCode>): WorkerStub;
32823282
}
32833283
interface WorkerLoaderModule {
32843284
js?: string;
@@ -8460,7 +8460,7 @@ type AiOptions = {
84608460
* Maximum 5 tags are allowed each request.
84618461
* Duplicate tags will removed.
84628462
*/
8463-
tags: string[];
8463+
tags?: string[];
84648464
gateway?: GatewayOptions;
84658465
returnRawResponse?: boolean;
84668466
prefix?: string;
@@ -10805,8 +10805,11 @@ type InstanceStatus = {
1080510805
| 'complete' | 'waiting' // instance is hibernating and waiting for sleep or event to finish
1080610806
| 'waitingForPause' // instance is finishing the current work to pause
1080710807
| 'unknown';
10808-
error?: string;
10809-
output?: object;
10808+
error?: {
10809+
name: string;
10810+
message: string;
10811+
};
10812+
output?: unknown;
1081010813
};
1081110814
interface WorkflowError {
1081210815
code?: number;

0 commit comments

Comments
 (0)