Skip to content

Commit

Permalink
add required array to typescript and regen
Browse files Browse the repository at this point in the history
  • Loading branch information
strowk committed Dec 1, 2024
1 parent baba62d commit d110191
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1984,15 +1984,15 @@
},
"type": "object"
},
"type": {
"const": "object",
"type": "string"
},
"required": {
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"const": "object",
"type": "string"
}
},
"required": [
Expand Down
1 change: 1 addition & 0 deletions schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,7 @@ export interface Tool {
inputSchema: {
type: "object";
properties?: { [key: string]: object };
required?: string[];
};
}

Expand Down

0 comments on commit d110191

Please sign in to comment.