Fix: Script.is_pinned AttributeError breaking all cached execution (#5285)

This commit is contained in:
pedrohsdb 2026-03-29 08:56:01 -07:00 committed by GitHub
parent 112b90f8d1
commit bb6d636861
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 77 additions and 72 deletions

View file

@ -2444,24 +2444,6 @@
},
"description": "Number of items per page"
},
{
"name": "vault_type",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"$ref": "#/components/schemas/CredentialVaultType"
},
{
"type": "null"
}
],
"description": "Filter credentials by vault type (e.g. 'custom', 'bitwarden', 'azure_vault')",
"title": "Vault Type"
},
"description": "Filter credentials by vault type (e.g. 'custom', 'bitwarden', 'azure_vault')"
},
{
"name": "x-api-key",
"in": "header",
@ -13769,7 +13751,7 @@
}
],
"title": "Run With",
"description": "Whether to run the task with agent or code. Null means use the default.",
"description": "Whether to run the task with agent or code.",
"examples": [
"agent",
"code"
@ -16094,9 +16076,15 @@
"title": "Extra Http Headers"
},
"run_with": {
"type": "string",
"title": "Run With",
"default": "agent"
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Run With"
},
"ai_fallback": {
"type": "boolean",
@ -16339,9 +16327,15 @@
"default": "published"
},
"run_with": {
"type": "string",
"title": "Run With",
"default": "agent"
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Run With"
},
"ai_fallback": {
"type": "boolean",
@ -17139,21 +17133,6 @@
],
"title": "Failure Reason"
},
"failure_category": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Failure Category"
},
"parent_workflow_run_id": {
"anyOf": [
{
@ -17985,7 +17964,7 @@
}
],
"title": "Run With",
"description": "Whether to run the workflow with agent or code. Null inherits from the workflow setting.",
"description": "Whether to run the workflow with agent or code.",
"examples": [
"agent",
"code"
@ -18259,10 +18238,16 @@
"description": "Type of run - always workflow_run for workflow runs"
},
"run_with": {
"type": "string",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Run With",
"description": "Whether the workflow run was executed with agent or code",
"default": "agent",
"examples": [
"agent",
"code"