feat(acp): replace raw config and secret methods (#9000)

Signed-off-by: Kalvin Chau <kalvin@block.xyz>
This commit is contained in:
Kalvin C
2026-05-04 18:24:28 -07:00
committed by GitHub
parent e82c4fdcb7
commit 2fe4c3d0bb
39 changed files with 1481 additions and 855 deletions
+20 -20
View File
@@ -121,34 +121,24 @@
"responseType": "ProviderConfigChangeResponse"
},
{
"method": "_goose/config/read",
"requestType": "ReadConfigRequest",
"responseType": "ReadConfigResponse"
"method": "_goose/preferences/read",
"requestType": "PreferencesReadRequest",
"responseType": "PreferencesReadResponse"
},
{
"method": "_goose/config/upsert",
"requestType": "UpsertConfigRequest",
"method": "_goose/preferences/save",
"requestType": "PreferencesSaveRequest",
"responseType": "EmptyResponse"
},
{
"method": "_goose/config/remove",
"requestType": "RemoveConfigRequest",
"method": "_goose/preferences/remove",
"requestType": "PreferencesRemoveRequest",
"responseType": "EmptyResponse"
},
{
"method": "_goose/secret/check",
"requestType": "CheckSecretRequest",
"responseType": "CheckSecretResponse"
},
{
"method": "_goose/secret/upsert",
"requestType": "UpsertSecretRequest",
"responseType": "EmptyResponse"
},
{
"method": "_goose/secret/remove",
"requestType": "RemoveSecretRequest",
"responseType": "EmptyResponse"
"method": "_goose/defaults/read",
"requestType": "DefaultsReadRequest",
"responseType": "DefaultsReadResponse"
},
{
"method": "_goose/session/export",
@@ -220,6 +210,16 @@
"requestType": "DictationConfigRequest",
"responseType": "DictationConfigResponse"
},
{
"method": "_goose/dictation/secret/save",
"requestType": "DictationSecretSaveRequest",
"responseType": "EmptyResponse"
},
{
"method": "_goose/dictation/secret/delete",
"requestType": "DictationSecretDeleteRequest",
"responseType": "EmptyResponse"
},
{
"method": "_goose/dictation/models/list",
"requestType": "DictationModelsListRequest",