Add plugin hook enablement config APIs

This commit is contained in:
Abhinav Vedmala
2026-04-26 14:48:00 -07:00
parent 803c16f2d3
commit 3de8182aa9
36 changed files with 1838 additions and 19 deletions

View File

@@ -0,0 +1,35 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"HookConfigSource": {
"enum": [
"plugin"
],
"type": "string"
}
},
"properties": {
"enabled": {
"type": "boolean"
},
"key": {
"type": "string"
},
"pluginId": {
"type": [
"string",
"null"
]
},
"source": {
"$ref": "#/definitions/HookConfigSource"
}
},
"required": [
"enabled",
"key",
"source"
],
"title": "HooksConfigWriteParams",
"type": "object"
}