> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter-d02e98a0-mintlify-5b6e02fd.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# OutputComputerCallItem - TypeScript SDK

> OutputComputerCallItem type definition

<Warning>
  The TypeScript SDK and docs are currently in beta.
  Report issues on [GitHub](https://github.com/OpenRouterTeam/typescript-sdk/issues).
</Warning>

## Example Usage

```typescript lines theme={null}
import { OutputComputerCallItem } from "@openrouter/sdk/models";

let value: OutputComputerCallItem = {
  callId: "call-abc123",
  pendingSafetyChecks: [],
  status: "completed",
  type: "computer_call",
};
```

## Fields

| Field                 | Type                                                                                                             | Required             | Description |
| --------------------- | ---------------------------------------------------------------------------------------------------------------- | -------------------- | ----------- |
| `action`              | *any*                                                                                                            | :heavy\_minus\_sign: | N/A         |
| `callId`              | *string*                                                                                                         | :heavy\_check\_mark: | N/A         |
| `id`                  | *string*                                                                                                         | :heavy\_minus\_sign: | N/A         |
| `pendingSafetyChecks` | [models.PendingSafetyCheck](/client-sdks/typescript/api-reference/models/pendingsafetycheck)\[]                  | :heavy\_check\_mark: | N/A         |
| `status`              | [models.OutputComputerCallItemStatus](/client-sdks/typescript/api-reference/models/outputcomputercallitemstatus) | :heavy\_check\_mark: | N/A         |
| `type`                | [models.OutputComputerCallItemType](/client-sdks/typescript/api-reference/models/outputcomputercallitemtype)     | :heavy\_check\_mark: | N/A         |
