chore: regenerate SDK
This commit is contained in:
@@ -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()}
|
||||
|
||||
Reference in New Issue
Block a user