SdkStatus
SdkStatus =
"starting"|"ready"|"error"
Defined in: console-sdk/src/runtime/Runtime.ts:53
Lifecycle of a provider’s runtime, surfaced by useConsoleSdk().status
(SDK_PLAN.md §3.7 row 1):
'starting'— storage hydration is in flight. Hooks are already safe: every hook returns its documented zero state (§3.9.1).'ready'— hydration finished; the SDK is fully operational.'error'— hydration failed;useConsoleSdk().errorcarries the failure andrestart()becomes legal (the keyed-remount recovery path).