OperatorName - TypeScript SDK

OperatorName type definition

The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Operator identifier used in filter definitions

Example Usage

1import { OperatorName } from "@openrouter/sdk/models/operations";
2
3let value: OperatorName = "eq";
4
5// Open enum: unrecognized values are captured as Unrecognized<string>

Values

1"eq" | "neq" | "in" | "not_in" | "gt" | "gte" | "lt" | "lte" | Unrecognized<string>