Package v0.2.12→v0.2.124: manifest, actions, version graph

This commit is contained in:
Keysat
2026-06-13 13:36:30 -05:00
parent 318c6c4b81
commit 1243f4414c
126 changed files with 2052 additions and 441 deletions
+24 -10
View File
@@ -1,17 +1,31 @@
import { sdk } from '../sdk'
import { setGeminiKey } from './setGeminiKey'
import { setKeysatBaseUrl } from './setKeysatBaseUrl'
import { setParakeetUrl } from './setParakeetUrl'
import { setGemmaUrl } from './setGemmaUrl'
import { setAdminPassword } from './setAdminPassword'
import { adjustTierQuotas } from './adjustTierQuotas'
import { setBackendRouting } from './setBackendRouting'
import { setTierPrices } from './setTierPrices'
// setBackendRouting removed in v0.2.50 — backend routing + Gemini
// model selection now live in the relay dashboard's Settings tab.
//
// Five more actions removed in v0.2.82 for the same reason:
// setGeminiKey, setKeysatBaseUrl, setSparkControlUrl,
// setParakeetUrl, setGemmaUrl
// All five fields are now inline-editable in the dashboard's Settings
// tab under "Endpoints & credentials". Same backing store
// (relay-config.json); the actions added a parallel surface for the
// same writes which created confusion about which path won. Single
// source of truth: the dashboard. The config keys themselves stay in
// relay-config.json — no migration needed.
//
// setAdminPassword stays here because it's the bootstrap mechanism:
// you can't sign into the dashboard until the password is set, so
// that one HAS to live in StartOS Actions.
import { setBtcpayConnection } from './setBtcpayConnection'
import { setZapriteConnection } from './setZapriteConnection'
import { setCreditPackages } from './setCreditPackages'
export const actions = sdk.Actions.of()
.addAction(setGeminiKey)
.addAction(setKeysatBaseUrl)
.addAction(setParakeetUrl)
.addAction(setGemmaUrl)
.addAction(setBackendRouting)
.addAction(setAdminPassword)
.addAction(adjustTierQuotas)
.addAction(setTierPrices)
.addAction(setBtcpayConnection)
.addAction(setZapriteConnection)
.addAction(setCreditPackages)