Type Alias: NativeSupervisorLaunchRequest
Makaio Framework / contracts / NativeSupervisorLaunchRequest
Type Alias: NativeSupervisorLaunchRequest
Section titled “Type Alias: NativeSupervisorLaunchRequest”NativeSupervisorLaunchRequest =
z.infer<typeofNativeSupervisorLaunchSchema.request>
Defined in: ../../../packages/contracts/src/native-session-supervisor/schemas.ts:92
Type Composition
Section titled “Type Composition”NativeSupervisorLaunchRequestz.infer<typeof NativeSupervisorLaunchSchema.request>typeof NativeSupervisorLaunchSchema.request
Resolved Shape
Section titled “Resolved Shape”type NativeSupervisorLaunchRequest = { clientId: string; cwd: string; command: string; args: Array<string>; env?: Record<string, string> | undefined; sessionId?: string | undefined; adapterSessionId?: string | undefined; metadata?: Record<string, unknown> | undefined;};