Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Clear all cached values for a project
| Field | Value |
|---|
| Name | clear_cache |
| Group | Cache |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"confirm": {
"type": "boolean",
"description": "Must be true to confirm clearing all cache"
}
},
"required": [
"project_reference",
"confirm"
],
"additionalProperties": false,
"description": "Input schema for the clear_cache tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"deleted_count": {
"type": "number",
"description": "The deleted count associated with this tool result."
}
},
"required": [
"deleted_count"
],
"additionalProperties": false,
"description": "Structured result returned by the clear_cache tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}