1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages

Bind generated clients to product version

This commit is contained in:
Andraxion 2026-07-29 15:47:08 -04:00
parent 47ac329947
commit dc9500e50e
5 changed files with 40 additions and 0 deletions

View file

@ -173,6 +173,7 @@
"required": [
"status",
"schema_version",
"docforge_version",
"operation",
"action",
"client",
@ -194,6 +195,11 @@
"properties": {
"status": { "const": "ok" },
"schema_version": { "const": 1 },
"docforge_version": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"operation": { "const": "adapter_client.configure" },
"action": { "enum": ["preview", "write"] },
"client": { "enum": ["codex", "claude", "openclaw"] },

View file

@ -215,6 +215,7 @@
"required": [
"status",
"schema_version",
"docforge_version",
"operation",
"action",
"client",
@ -232,6 +233,11 @@
"properties": {
"status": { "const": "ok" },
"schema_version": { "const": 1 },
"docforge_version": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"operation": { "const": "client.configure" },
"action": { "enum": ["preview", "write"] },
"client": { "enum": ["codex", "claude", "openclaw"] },