add patch for .d.ts

This commit is contained in:
Aiden Cline 2026-04-25 14:29:33 -04:00
parent 7d60e47e19
commit b00a8500ed

View file

@ -48,6 +48,34 @@ diff --git a/dist/index.mjs b/dist/index.mjs
...(anthropicOptions == null ? void 0 : anthropicOptions.effort) && {
effort: anthropicOptions.effort
},
diff --git a/dist/index.d.ts b/dist/index.d.ts
--- a/dist/index.d.ts
+++ b/dist/index.d.ts
@@ -178,9 +178,10 @@ declare const anthropicLanguageModelOptions: z.ZodObject<{
high: "high";
xhigh: "xhigh";
max: "max";
}>>;
+ output_config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
taskBudget: z.ZodOptional<z.ZodObject<{
type: z.ZodLiteral<"tokens">;
total: z.ZodNumber;
remaining: z.ZodOptional<z.ZodNumber>;
}, z.core.$strip>>;
diff --git a/dist/index.d.mts b/dist/index.d.mts
--- a/dist/index.d.mts
+++ b/dist/index.d.mts
@@ -178,9 +178,10 @@ declare const anthropicLanguageModelOptions: z.ZodObject<{
high: "high";
xhigh: "xhigh";
max: "max";
}>>;
+ output_config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
taskBudget: z.ZodOptional<z.ZodObject<{
type: z.ZodLiteral<"tokens">;
total: z.ZodNumber;
remaining: z.ZodOptional<z.ZodNumber>;
}, z.core.$strip>>;
diff --git a/dist/internal/index.js b/dist/internal/index.js
--- a/dist/internal/index.js
+++ b/dist/internal/index.js