release: prepare v0.1.134

This commit is contained in:
kone
2026-05-16 15:31:08 +08:00
parent 89080b4c5a
commit 4a06371bba
22 changed files with 793 additions and 16 deletions
+4 -2
View File
@@ -141,14 +141,16 @@ export function useKiroOAuth() {
const importToken = async (
tokenJSON: string,
deviceRegistrationJSON?: string
deviceRegistrationJSON?: string,
proxyId?: number | null
): Promise<KiroTokenInfo | null> => {
loading.value = true
error.value = ''
try {
return await adminAPI.kiro.importToken({
token_json: tokenJSON,
device_registration_json: deviceRegistrationJSON
device_registration_json: deviceRegistrationJSON,
proxy_id: proxyId || undefined
})
} catch (err: any) {
error.value = err.response?.data?.detail || t('admin.accounts.oauth.authFailed')