chore: regenerate SDK

This commit is contained in:
Imanol Maiztegui
2026-04-27 19:00:21 +02:00
parent d4e44b6128
commit 85eb4fa69b
24 changed files with 69197 additions and 1122 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ export const GenerateCommand = {
}
}
const raw = JSON.stringify(specs, null, 2)
// kilocode_change start - replace upstream product name in all descriptions
// kilocode_change start - replace upstream product name in all descriptions
.replaceAll("OpenCode", "Kilo")
.replaceAll("opencode.local", "kilo.local")
.replaceAll("opencode serve", "kilo serve")
@@ -21,11 +21,12 @@ export function DialogSessionRename(props: DialogSessionRenameProps) {
title="Rename Session"
value={session()?.title ?? props.title} // kilocode_change
onConfirm={(value) => {
void sdk.client.session.update({
sessionID: props.session,
title: value,
})
.then(() => props.onConfirm?.()) // kilocode_change
void sdk.client.session
.update({
sessionID: props.session,
title: value,
})
.then(() => props.onConfirm?.()) // kilocode_change
dialog.clear()
}}
onCancel={() => dialog.clear()}