import { z } from "zod"; /** * Supported log source provider values derived from canonical catalog specs. */ export declare const LOG_SOURCE_PROVIDER_VALUES: readonly ["vercel", "cloudflare", "railway", "render", "fly_io", "netlify", "supabase", "digital_ocean", "inngest", "trigger_dev", "temporal", "mastra", "neon", "langchain", "daytona", "e2b", "cloudwatch", "convex", "datadog", "sentry", "sentry_platform", "openrouter", "posthog", "posthog_sdk", "gcp", "otel", "otel_metrics", "fluent_bit", "vector", "grafana_alloy", "otel_collector", "cloudflare_workers", "elastic_cloud", "porter", "respan", "plain", "prometheus", "webhook_events", "claude_code", "codex", "sazabi_browser_sdk", "oh_my_pi", "unkey"]; /** * Log source setup modes. `managed` log sources hold vendor credentials that * Sazabi uses to provision delivery; `connectionless` log sources mint a keyed * intake endpoint and the sender pushes to it directly. */ export declare const LogSourceModeEnum: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; /** * A log source's persisted, ongoing auto-provisioning selection scope * (ENG-6870, reshaped for allow-then-deny in ENG-7024; see * docs/design/app/log-source-auto-provisioning/design.md). * * `null` is manual — items the provider later reports are never provisioned * automatically. Otherwise both lists apply together: an item is provisioned * when it passes the include gate AND is not excluded. An empty `allowlist` * imposes no include restriction and an empty `denylist` excludes nothing, * so `{ allowlist: [], denylist: [] }` means everything. * * Patterns are whole-string globs: `*` matches any run of characters * (including none) and `?` matches exactly one; every other character is * literal. Deliberately not regular expressions — see * `packages/log-source-provider/src/server/auto-provision-filter.ts`. * * Each list holds at most `MAX_AUTO_PROVISION_FILTER_PATTERNS_PER_LIST` * patterns — a plain per-array bound, so this schema and the generated * OpenAPI document express exactly the same limit. */ export declare const AutoProvisionFilterSchema: z.ZodObject<{ allowlist: z.ZodArray; denylist: z.ZodArray; }, z.core.$strip>; /** * A log source provider with its supported setup modes and metadata * requirements. */ export declare const LogSourceProviderInfoSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; modes: z.ZodArray>; metadataFields: z.ZodArray; }, z.core.$strip>>; setupSkill: z.ZodNullable; }, z.core.$strip>; /** * One platform-owned endpoint card for a keyed log stream. The card's * contents are computed server-side — the single intake-URL assembler lives * in the platform — and clients render them verbatim. `url` cards carry the * complete keyed URL (the hostname authenticates); `hostPort` cards carry a * non-keyed listener plus the credential the sender must attach. */ export declare const LogSourceEndpointCardSchema: z.ZodObject<{ id: z.ZodEnum<{ endpoint: "endpoint"; listener: "listener"; logs: "logs"; metrics: "metrics"; traces: "traces"; }>; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; export type LogSourceEndpointCard = z.infer; /** * A log stream record — one provisioned event flow under a log source. */ export declare const LogStreamSchema: z.ZodObject<{ id: z.ZodString; logSourceId: z.ZodString; displayName: z.ZodNullable; config: z.ZodRecord; status: z.ZodEnum<{ active: "active"; error: "error"; pending: "pending"; provisioning: "provisioning"; }>; errorMessage: z.ZodNullable; enabled: z.ZodBoolean; provisionedVia: z.ZodEnum<{ auto: "auto"; manual: "manual"; }>; createdAt: z.ZodString; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>; /** * A log source record — the root resource of the log-source anatomy. `mode` * is `managed` (Sazabi holds vendor credentials and provisions delivery) or * `connectionless` (the sender pushes to a keyed Sazabi intake endpoint). */ export declare const LogSourceSchema: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; /** * A log source with its log streams expanded. Log streams that carry their * own delivery key include server-computed `endpointCards`. */ export declare const LogSourceDetailSchema: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; streams: z.ZodArray; config: z.ZodRecord; status: z.ZodEnum<{ active: "active"; error: "error"; pending: "pending"; provisioning: "provisioning"; }>; errorMessage: z.ZodNullable; enabled: z.ZodBoolean; provisionedVia: z.ZodEnum<{ auto: "auto"; manual: "manual"; }>; createdAt: z.ZodString; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>; export declare const ListLogSourceProvidersInputSchema: z.ZodObject<{}, z.core.$strip>; export declare const ListLogSourceProvidersOutputSchema: z.ZodObject<{ providers: z.ZodArray>; metadataFields: z.ZodArray; }, z.core.$strip>>; setupSkill: z.ZodNullable; }, z.core.$strip>>; }, z.core.$strip>; export type ListLogSourceProvidersOutput = z.infer; export declare const listLogSourceProviders: import("../orpc-contracts/index.js").OperationDefinition, z.ZodObject<{ providers: z.ZodArray>; metadataFields: z.ZodArray; }, z.core.$strip>>; setupSkill: z.ZodNullable; }, z.core.$strip>>; }, z.core.$strip>, "api">; export declare const ListLogSourcesInputSchema: z.ZodObject<{ projectId: z.ZodOptional; provider: z.ZodOptional>; }, z.core.$strip>; export declare const ListLogSourcesOutputSchema: z.ZodObject<{ logSources: z.ZodArray; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>>; }, z.core.$strip>; export type ListLogSourcesInput = z.infer; export type ListLogSourcesOutput = z.infer; export declare const listLogSources: import("../orpc-contracts/index.js").OperationDefinition; provider: z.ZodOptional>; }, z.core.$strip>, z.ZodObject<{ logSources: z.ZodArray; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>>; }, z.core.$strip>, "api">; export declare const CreateLogSourceInputSchema: z.ZodObject<{ projectId: z.ZodOptional; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodOptional>; metadata: z.ZodOptional>; }, z.core.$strict>; export declare const CreateLogSourceOutputSchema: z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; streamId: z.ZodOptional; publicKey: z.ZodOptional; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>; export type CreateLogSourceInput = z.infer; export type CreateLogSourceOutput = z.infer; export declare const createLogSource: import("../orpc-contracts/index.js").OperationDefinition; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodOptional>; metadata: z.ZodOptional>; }, z.core.$strict>, z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; streamId: z.ZodOptional; publicKey: z.ZodOptional; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>, "api">; export declare const GetLogSourceInputSchema: z.ZodObject<{ logSourceId: z.ZodString; }, z.core.$strip>; export declare const GetLogSourceOutputSchema: z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; streams: z.ZodArray; config: z.ZodRecord; status: z.ZodEnum<{ active: "active"; error: "error"; pending: "pending"; provisioning: "provisioning"; }>; errorMessage: z.ZodNullable; enabled: z.ZodBoolean; provisionedVia: z.ZodEnum<{ auto: "auto"; manual: "manual"; }>; createdAt: z.ZodString; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>; export type GetLogSourceInput = z.infer; export type GetLogSourceOutput = z.infer; export declare const getLogSource: import("../orpc-contracts/index.js").OperationDefinition, z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; streams: z.ZodArray; config: z.ZodRecord; status: z.ZodEnum<{ active: "active"; error: "error"; pending: "pending"; provisioning: "provisioning"; }>; errorMessage: z.ZodNullable; enabled: z.ZodBoolean; provisionedVia: z.ZodEnum<{ auto: "auto"; manual: "manual"; }>; createdAt: z.ZodString; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>, "api">; export declare const UpdateLogSourceInputSchema: z.ZodObject<{ credentials: z.ZodOptional>; logSourceId: z.ZodString; enabled: z.ZodOptional; streamAutoProvisionFilter: z.ZodOptional; denylist: z.ZodArray; }, z.core.$strip>>>; }, z.core.$strict>; export declare const UpdateLogSourceOutputSchema: z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>; export type UpdateLogSourceInput = z.infer; export type UpdateLogSourceOutput = z.infer; export declare const updateLogSource: import("../orpc-contracts/index.js").OperationDefinition>; logSourceId: z.ZodString; enabled: z.ZodOptional; streamAutoProvisionFilter: z.ZodOptional; denylist: z.ZodArray; }, z.core.$strip>>>; }, z.core.$strict>, z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>, "api">; export declare const DeleteLogSourceInputSchema: z.ZodObject<{ logSourceId: z.ZodString; }, z.core.$strip>; export declare const DeleteLogSourceOutputSchema: z.ZodObject<{ success: z.ZodBoolean; teardownError: z.ZodNullable; }, z.core.$strip>; export type DeleteLogSourceInput = z.infer; export type DeleteLogSourceOutput = z.infer; export declare const deleteLogSource: import("../orpc-contracts/index.js").OperationDefinition, z.ZodObject<{ success: z.ZodBoolean; teardownError: z.ZodNullable; }, z.core.$strip>, "api">; export declare const logSourcesContract: { readonly listProviders: import("@orpc/contract").ContractProcedure, z.ZodObject<{ providers: z.ZodArray>; metadataFields: z.ZodArray; }, z.core.$strip>>; setupSkill: z.ZodNullable; }, z.core.$strip>>; }, z.core.$strip>, Record, import("../orpc-contracts/index.js").OperationContractMetadata<"api">>; readonly list: import("@orpc/contract").ContractProcedure; provider: z.ZodOptional>; }, z.core.$strip>, z.ZodObject<{ logSources: z.ZodArray; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>>; }, z.core.$strip>, Record, import("../orpc-contracts/index.js").OperationContractMetadata<"api">>; readonly create: import("@orpc/contract").ContractProcedure; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodOptional>; metadata: z.ZodOptional>; }, z.core.$strict>, z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; streamId: z.ZodOptional; publicKey: z.ZodOptional; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>, Record, import("../orpc-contracts/index.js").OperationContractMetadata<"api">>; readonly get: import("@orpc/contract").ContractProcedure, z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; streams: z.ZodArray; config: z.ZodRecord; status: z.ZodEnum<{ active: "active"; error: "error"; pending: "pending"; provisioning: "provisioning"; }>; errorMessage: z.ZodNullable; enabled: z.ZodBoolean; provisionedVia: z.ZodEnum<{ auto: "auto"; manual: "manual"; }>; createdAt: z.ZodString; endpointCards: z.ZodOptional; kind: z.ZodEnum<{ hostPort: "hostPort"; url: "url"; }>; label: z.ZodOptional; url: z.ZodOptional; host: z.ZodOptional; port: z.ZodOptional; description: z.ZodOptional; extraCredential: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>, Record, import("../orpc-contracts/index.js").OperationContractMetadata<"api">>; readonly update: import("@orpc/contract").ContractProcedure>; logSourceId: z.ZodString; enabled: z.ZodOptional; streamAutoProvisionFilter: z.ZodOptional; denylist: z.ZodArray; }, z.core.$strip>>>; }, z.core.$strict>, z.ZodObject<{ logSource: z.ZodObject<{ connectionStatus: z.ZodOptional; reasonCode: z.ZodNullable>; checkedAt: z.ZodNullable; verification: z.ZodEnum<{ unverified: "unverified"; verified: "verified"; }>; }, z.core.$strip>>>; recovery: z.ZodOptional>; canCheck: z.ZodBoolean; canDisconnect: z.ZodBoolean; target: z.ZodOptional; resourceId: z.ZodString; providerId: z.ZodString; scope: z.ZodObject<{ kind: z.ZodEnum<{ organization: "organization"; project: "project"; user: "user"; }>; id: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; }, z.core.$strip>>; id: z.ZodString; provider: z.ZodEnum<{ claude_code: "claude_code"; cloudflare: "cloudflare"; cloudflare_workers: "cloudflare_workers"; cloudwatch: "cloudwatch"; codex: "codex"; convex: "convex"; datadog: "datadog"; daytona: "daytona"; digital_ocean: "digital_ocean"; e2b: "e2b"; elastic_cloud: "elastic_cloud"; fluent_bit: "fluent_bit"; fly_io: "fly_io"; gcp: "gcp"; grafana_alloy: "grafana_alloy"; inngest: "inngest"; langchain: "langchain"; mastra: "mastra"; neon: "neon"; netlify: "netlify"; oh_my_pi: "oh_my_pi"; openrouter: "openrouter"; otel: "otel"; otel_collector: "otel_collector"; otel_metrics: "otel_metrics"; plain: "plain"; porter: "porter"; posthog: "posthog"; posthog_sdk: "posthog_sdk"; prometheus: "prometheus"; railway: "railway"; render: "render"; respan: "respan"; sazabi_browser_sdk: "sazabi_browser_sdk"; sentry: "sentry"; sentry_platform: "sentry_platform"; supabase: "supabase"; temporal: "temporal"; trigger_dev: "trigger_dev"; unkey: "unkey"; vector: "vector"; vercel: "vercel"; webhook_events: "webhook_events"; }>; mode: z.ZodEnum<{ connectionless: "connectionless"; managed: "managed"; }>; name: z.ZodString; streamCount: z.ZodNumber; createdAt: z.ZodString; streamAutoProvisionFilter: z.ZodNullable; denylist: z.ZodArray; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>, Record, import("../orpc-contracts/index.js").OperationContractMetadata<"api">>; readonly delete: import("@orpc/contract").ContractProcedure, z.ZodObject<{ success: z.ZodBoolean; teardownError: z.ZodNullable; }, z.core.$strip>, Record, import("../orpc-contracts/index.js").OperationContractMetadata<"api">>; }; export declare const verifyLogSource: import("../orpc-contracts/index.js").OperationDefinition, z.ZodObject<{ outcome: z.ZodEnum<{ healthy: "healthy"; inconclusive: "inconclusive"; superseded: "superseded"; unhealthy: "unhealthy"; unsupported: "unsupported"; }>; }, z.core.$strip>, "api">;