import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type ListObservabilityDestinationsGlobals = { /** * The app identifier should be your app's URL and is used as the primary identifier for rankings. * * @remarks * This is used to track API usage per application. */ httpReferer?: string | undefined; /** * The app display name allows you to customize how your app appears in OpenRouter's dashboard. * * @remarks */ appTitle?: string | undefined; /** * Comma-separated list of app categories (e.g. "cli-agent,cloud-agent"). Used for marketplace rankings. * * @remarks */ appCategories?: string | undefined; }; export type ListObservabilityDestinationsRequest = { /** * The app identifier should be your app's URL and is used as the primary identifier for rankings. * * @remarks * This is used to track API usage per application. */ httpReferer?: string | undefined; /** * The app display name allows you to customize how your app appears in OpenRouter's dashboard. * * @remarks */ appTitle?: string | undefined; /** * Comma-separated list of app categories (e.g. "cli-agent,cloud-agent"). Used for marketplace rankings. * * @remarks */ appCategories?: string | undefined; /** * Number of records to skip for pagination */ offset?: number | null | undefined; /** * Maximum number of records to return (max 100) */ limit?: number | undefined; /** * Optional workspace ID to filter by. Defaults to the authenticated entity's default workspace. */ workspaceId?: string | undefined; }; export type ListObservabilityDestinationsResponse = { result: models.ListObservabilityDestinationsResponse; }; /** @internal */ export type ListObservabilityDestinationsRequest$Outbound = { "HTTP-Referer"?: string | undefined; appTitle?: string | undefined; appCategories?: string | undefined; offset?: number | null | undefined; limit?: number | undefined; workspace_id?: string | undefined; }; /** @internal */ export declare const ListObservabilityDestinationsRequest$outboundSchema: z.ZodType; export declare function listObservabilityDestinationsRequestToJSON(listObservabilityDestinationsRequest: ListObservabilityDestinationsRequest): string; /** @internal */ export declare const ListObservabilityDestinationsResponse$inboundSchema: z.ZodType; export declare function listObservabilityDestinationsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listobservabilitydestinations.d.ts.map