Type Alias: ClientRuntimeStarted
Makaio Framework / contracts / ClientRuntimeStarted
Type Alias: ClientRuntimeStarted
Section titled “Type Alias: ClientRuntimeStarted”ClientRuntimeStarted =
z.infer<typeofClientRuntimeStartedSchema>
Defined in: ../../../packages/contracts/src/client/runtime-observation.ts:153
Type Composition
Section titled “Type Composition”ClientRuntimeStartedz.infer<typeof ClientRuntimeStartedSchema>typeof ClientRuntimeStartedSchema
Resolved Shape
Section titled “Resolved Shape”type ClientRuntimeStarted = { clientRuntimeId: string; clientId: string; status: 'started' | 'observed'; source: { layer: 'supervisor' | 'adapter' | 'client-hook' | 'statusline' | 'cli-wrapper'; producer: string; }; observedAt: number; supervisorSessionId?: string | undefined; pid?: number | undefined; parentPid?: number | undefined; adapterSessionId?: string | undefined; sessionId?: string | undefined; cwd?: string | undefined; argv?: Array<string> | undefined; metadata?: Record<string, unknown> | undefined;};