Operator - TypeScript SDK

Operator type definition

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

Example Usage

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

Values

1"equals" | "not_equals" | "contains" | "not_contains" | "regex" | "starts_with" | "ends_with" | "gt" | "lt" | "gte" | "lte" | "exists" | "not_exists" | Unrecognized<string>