import { BosConfigInput, JsonValue } from "./types.mjs"; import * as z from "zod"; //#region src/contract.d.ts declare const PhaseTimingSchema: z.ZodObject<{ name: z.ZodString; durationMs: z.ZodNumber; }, z.core.$strip>; declare const DevOptionsSchema: z.ZodObject<{ host: z.ZodDefault>; ui: z.ZodDefault>; api: z.ZodDefault>; auth: z.ZodDefault>; remotePlugins: z.ZodOptional>; proxy: z.ZodDefault; ssr: z.ZodDefault; port: z.ZodOptional; apiPort: z.ZodOptional; uiPort: z.ZodOptional; authPort: z.ZodOptional; pluginPortStart: z.ZodOptional; interactive: z.ZodOptional; }, z.core.$strip>; declare const DevResultSchema: z.ZodObject<{ status: z.ZodEnum<{ started: "started"; error: "error"; }>; description: z.ZodString; processes: z.ZodArray; timings: z.ZodOptional>>; }, z.core.$strip>; declare const StartOptionsSchema: z.ZodObject<{ port: z.ZodOptional; interactive: z.ZodOptional; account: z.ZodOptional; domain: z.ZodOptional; env: z.ZodDefault>; }, z.core.$strip>; declare const StartResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; running: "running"; }>; url: z.ZodString; error: z.ZodOptional; }, z.core.$strip>; declare const BuildOptionsSchema: z.ZodObject<{ packages: z.ZodDefault; force: z.ZodDefault; deploy: z.ZodDefault; }, z.core.$strip>; declare const BuildResultSchema: z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; built: z.ZodArray; skipped: z.ZodOptional>; deployed: z.ZodOptional; }, z.core.$strip>; declare const ConfigOptionsSchema: z.ZodObject<{ full: z.ZodDefault; }, z.core.$strip>; declare const ConfigResultSchema: z.ZodObject<{ config: z.ZodNullable>, z.ZodObject<{ account: z.ZodString; extends: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; domain: z.ZodOptional; title: z.ZodOptional; description: z.ZodOptional; testnet: z.ZodOptional; staging: z.ZodOptional>; repository: z.ZodOptional; ci: z.ZodOptional>; }, z.core.$strip>>; plugins: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; proxy: z.ZodOptional; variables: z.ZodOptional>>>; secrets: z.ZodOptional>; routes: z.ZodOptional>; shared: z.ZodOptional; singleton: z.ZodOptional; eager: z.ZodOptional; strictVersion: z.ZodOptional; shareScope: z.ZodOptional; }, z.core.$strip>>>; version: z.ZodOptional; app: z.ZodOptional>; plugins: z.ZodOptional>; }, z.core.$strip>]>>>; app: z.ZodObject<{ host: z.ZodObject<{ development: z.ZodString; production: z.ZodString; integrity: z.ZodOptional; secrets: z.ZodOptional>; }, z.core.$strip>; ui: z.ZodObject<{ name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; ssr: z.ZodOptional; ssrIntegrity: z.ZodOptional; }, z.core.$strict>; api: z.ZodObject<{ extends: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; proxy: z.ZodOptional; variables: z.ZodOptional>>>; secrets: z.ZodOptional>; routes: z.ZodOptional>; shared: z.ZodOptional; singleton: z.ZodOptional; eager: z.ZodOptional; strictVersion: z.ZodOptional; shareScope: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; auth: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; proxy: z.ZodOptional; variables: z.ZodOptional>>>; secrets: z.ZodOptional>; routes: z.ZodOptional>; shared: z.ZodOptional; singleton: z.ZodOptional; eager: z.ZodOptional; strictVersion: z.ZodOptional; shareScope: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>]>>; packages: z.ZodArray; remotes: z.ZodArray; full: z.ZodDefault; }, z.core.$strip>; declare const PluginAddOptionsSchema: z.ZodObject<{ source: z.ZodString; as: z.ZodOptional; production: z.ZodOptional; }, z.core.$strip>; declare const PluginAddResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; added: "added"; }>; key: z.ZodString; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; version: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const PluginRemoveOptionsSchema: z.ZodObject<{ key: z.ZodString; }, z.core.$strip>; declare const PluginRemoveResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; removed: "removed"; }>; key: z.ZodString; error: z.ZodOptional; }, z.core.$strip>; declare const PluginListResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; listed: "listed"; }>; plugins: z.ZodArray; production: z.ZodOptional; localPath: z.ZodOptional; source: z.ZodEnum<{ local: "local"; remote: "remote"; }>; integrity: z.ZodOptional; version: z.ZodOptional; name: z.ZodOptional; }, z.core.$strip>>; error: z.ZodOptional; }, z.core.$strip>; declare const PluginPublishOptionsSchema: z.ZodObject<{ key: z.ZodString; }, z.core.$strip>; declare const PluginPublishResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; published: "published"; }>; key: z.ZodString; path: z.ZodOptional; script: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; version: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const WorkspaceDeployResultSchema: z.ZodObject<{ key: z.ZodString; kind: z.ZodEnum<{ app: "app"; plugin: "plugin"; }>; success: z.ZodBoolean; url: z.ZodOptional; error: z.ZodOptional; warnings: z.ZodOptional>; durationMs: z.ZodOptional; retried: z.ZodOptional; }, z.core.$strip>; declare const PublishOptionsSchema: z.ZodObject<{ deploy: z.ZodDefault; dryRun: z.ZodDefault; verbose: z.ZodDefault; packages: z.ZodDefault; network: z.ZodOptional>; privateKey: z.ZodOptional; env: z.ZodDefault>; }, z.core.$strip>; declare const PublishResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; published: "published"; "dry-run": "dry-run"; }>; registryUrl: z.ZodString; txHash: z.ZodOptional; error: z.ZodOptional; built: z.ZodOptional>; skipped: z.ZodOptional>; deployResults: z.ZodOptional; success: z.ZodBoolean; url: z.ZodOptional; error: z.ZodOptional; warnings: z.ZodOptional>; durationMs: z.ZodOptional; retried: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; declare const DeployOptionsSchema: z.ZodObject<{ env: z.ZodDefault>; build: z.ZodDefault; dryRun: z.ZodDefault; verbose: z.ZodDefault; packages: z.ZodDefault; network: z.ZodOptional>; privateKey: z.ZodOptional; service: z.ZodOptional; }, z.core.$strip>; declare const DeployResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; deployed: "deployed"; published: "published"; "dry-run": "dry-run"; }>; registryUrl: z.ZodString; txHash: z.ZodOptional; built: z.ZodOptional>; skipped: z.ZodOptional>; redeployed: z.ZodBoolean; service: z.ZodOptional; error: z.ZodOptional; deployResults: z.ZodOptional; success: z.ZodBoolean; url: z.ZodOptional; error: z.ZodOptional; warnings: z.ZodOptional>; durationMs: z.ZodOptional; retried: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; declare const KeyPublishOptionsSchema: z.ZodObject<{ allowance: z.ZodDefault; }, z.core.$strip>; declare const KeyPublishResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; published: "published"; }>; account: z.ZodString; network: z.ZodEnum<{ testnet: "testnet"; mainnet: "mainnet"; }>; contract: z.ZodString; allowance: z.ZodString; functionNames: z.ZodArray; publicKey: z.ZodOptional; privateKey: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const OverrideSectionSchema: z.ZodEnum<{ host: "host"; ui: "ui"; api: "api"; plugins: "plugins"; }>; declare const RuntimeOverrideTargetBaseSchema: z.ZodEnum<{ ui: "ui"; api: "api"; plugins: "plugins"; }>; declare const RuntimeOverrideTargetSchema: z.ZodUnion, z.ZodString]>; declare const InitOptionsSchema: z.ZodObject<{ extends: z.ZodOptional; directory: z.ZodOptional; account: z.ZodOptional; domain: z.ZodOptional; source: z.ZodOptional; plugins: z.ZodOptional>; overrides: z.ZodOptional>>; noInteractive: z.ZodDefault; noInstall: z.ZodDefault; }, z.core.$strip>; declare const InitResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; initialized: "initialized"; }>; directory: z.ZodString; extendsRef: z.ZodString; account: z.ZodOptional; domain: z.ZodOptional; extends: z.ZodString; plugins: z.ZodOptional>; overrides: z.ZodOptional>>; filesCopied: z.ZodNumber; timings: z.ZodOptional>>; targetDir: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const SyncOptionsSchema: z.ZodObject<{ dryRun: z.ZodDefault; noInstall: z.ZodDefault; }, z.core.$strip>; declare const SyncResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; "dry-run": "dry-run"; synced: "synced"; }>; updated: z.ZodArray; skipped: z.ZodArray; added: z.ZodArray; error: z.ZodOptional; }, z.core.$strip>; declare const UpgradeOptionsSchema: z.ZodObject<{ dryRun: z.ZodDefault; noInstall: z.ZodDefault; noSync: z.ZodDefault; }, z.core.$strip>; declare const UpgradeResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; "dry-run": "dry-run"; upgraded: "upgraded"; }>; packages: z.ZodArray; to: z.ZodString; }, z.core.$strip>>; sync: z.ZodOptional; updated: z.ZodArray; skipped: z.ZodArray; added: z.ZodArray; error: z.ZodOptional; }, z.core.$strip>>; migrated: z.ZodOptional>; availablePlugins: z.ZodOptional>; selectedPlugins: z.ZodOptional>; timings: z.ZodOptional>>; changelogUrl: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const StatusResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; ok: "ok"; }>; extends: z.ZodOptional; account: z.ZodOptional; domain: z.ZodOptional; packages: z.ZodArray; latest: z.ZodOptional; isLinked: z.ZodOptional; specifier: z.ZodOptional; }, z.core.$strip>>; lastSync: z.ZodOptional; envFile: z.ZodEnum<{ found: "found"; missing: "missing"; "example-only": "example-only"; }>; parentReachable: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const TypesGenOptionsSchema: z.ZodObject<{ env: z.ZodOptional>; dryRun: z.ZodDefault; }, z.core.$strip>; declare const TypesGenResultSchema: z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; generated: z.ZodArray; fetched: z.ZodArray; skipped: z.ZodArray; failed: z.ZodArray; source: z.ZodOptional>; error: z.ZodOptional; }, z.core.$strip>; declare const DbStudioOptionsSchema: z.ZodObject<{ plugin: z.ZodDefault; }, z.core.$strip>; declare const DbStudioResultSchema: z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; plugin: z.ZodString; source: z.ZodEnum<{ local: "local"; remote: "remote"; }>; section: z.ZodString; databaseSecret: z.ZodOptional; databaseUrl: z.ZodOptional; workspaceDir: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const DbDoctorOptionsSchema: z.ZodObject<{ plugin: z.ZodString; }, z.core.$strip>; declare const DbDoctorResultSchema: z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; plugin: z.ZodString; slug: z.ZodString; journalTable: z.ZodString; journalSchema: z.ZodString; diagnosis: z.ZodString; localMigrationCount: z.ZodNumber; appliedHashCount: z.ZodNumber; expectedTables: z.ZodArray; missingTables: z.ZodArray; workspaceDir: z.ZodOptional; dbSecret: z.ZodOptional; dbUrl: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>; declare const DbRepairOptionsSchema: z.ZodObject<{ plugin: z.ZodString; mode: z.ZodDefault>; yes: z.ZodOptional; }, z.core.$strip>; declare const DbRepairResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; repaired: "repaired"; refused: "refused"; }>; message: z.ZodString; diagnosis: z.ZodAny; error: z.ZodOptional; }, z.core.$strip>; declare const ProcessRoleSchema: z.ZodEnum<{ standalone: "standalone"; "workspace-parent": "workspace-parent"; "workspace-child": "workspace-child"; }>; declare const PidEntrySchema: z.ZodObject<{ pid: z.ZodNumber; configDir: z.ZodString; parentPid: z.ZodOptional; role: z.ZodEnum<{ standalone: "standalone"; "workspace-parent": "workspace-parent"; "workspace-child": "workspace-child"; }>; ports: z.ZodDefault; api: z.ZodOptional; ui: z.ZodOptional; auth: z.ZodOptional; }, z.core.$strip>>; budget: z.ZodOptional>; startedAt: z.ZodNumber; description: z.ZodString; }, z.core.$strip>; declare const PsResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; ok: "ok"; }>; entries: z.ZodArray; role: z.ZodEnum<{ standalone: "standalone"; "workspace-parent": "workspace-parent"; "workspace-child": "workspace-child"; }>; ports: z.ZodDefault; api: z.ZodOptional; ui: z.ZodOptional; auth: z.ZodOptional; }, z.core.$strip>>; budget: z.ZodOptional>; startedAt: z.ZodNumber; description: z.ZodString; }, z.core.$strip>>; error: z.ZodOptional; }, z.core.$strip>; declare const KillOptionsSchema: z.ZodObject<{ configDir: z.ZodOptional; signal: z.ZodDefault>; all: z.ZodDefault; }, z.core.$strip>; declare const KillResultSchema: z.ZodObject<{ status: z.ZodEnum<{ error: "error"; killed: "killed"; }>; killed: z.ZodArray>; skipped: z.ZodArray>; error: z.ZodOptional; }, z.core.$strip>; declare const bosContract: { dev: import("@orpc/contract").ContractProcedure>; ui: z.ZodDefault>; api: z.ZodDefault>; auth: z.ZodDefault>; remotePlugins: z.ZodOptional>; proxy: z.ZodDefault; ssr: z.ZodDefault; port: z.ZodOptional; apiPort: z.ZodOptional; uiPort: z.ZodOptional; authPort: z.ZodOptional; pluginPortStart: z.ZodOptional; interactive: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ started: "started"; error: "error"; }>; description: z.ZodString; processes: z.ZodArray; timings: z.ZodOptional>>; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; start: import("@orpc/contract").ContractProcedure; interactive: z.ZodOptional; account: z.ZodOptional; domain: z.ZodOptional; env: z.ZodDefault>; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; running: "running"; }>; url: z.ZodString; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; build: import("@orpc/contract").ContractProcedure; force: z.ZodDefault; deploy: z.ZodDefault; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; built: z.ZodArray; skipped: z.ZodOptional>; deployed: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; config: import("@orpc/contract").ContractProcedure; }, z.core.$strip>, z.ZodObject<{ config: z.ZodNullable>, z.ZodObject<{ account: z.ZodString; extends: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; domain: z.ZodOptional; title: z.ZodOptional; description: z.ZodOptional; testnet: z.ZodOptional; staging: z.ZodOptional>; repository: z.ZodOptional; ci: z.ZodOptional>; }, z.core.$strip>>; plugins: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; proxy: z.ZodOptional; variables: z.ZodOptional>>>; secrets: z.ZodOptional>; routes: z.ZodOptional>; shared: z.ZodOptional; singleton: z.ZodOptional; eager: z.ZodOptional; strictVersion: z.ZodOptional; shareScope: z.ZodOptional; }, z.core.$strip>>>; version: z.ZodOptional; app: z.ZodOptional>; plugins: z.ZodOptional>; }, z.core.$strip>]>>>; app: z.ZodObject<{ host: z.ZodObject<{ development: z.ZodString; production: z.ZodString; integrity: z.ZodOptional; secrets: z.ZodOptional>; }, z.core.$strip>; ui: z.ZodObject<{ name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; ssr: z.ZodOptional; ssrIntegrity: z.ZodOptional; }, z.core.$strict>; api: z.ZodObject<{ extends: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; proxy: z.ZodOptional; variables: z.ZodOptional>>>; secrets: z.ZodOptional>; routes: z.ZodOptional>; shared: z.ZodOptional; singleton: z.ZodOptional; eager: z.ZodOptional; strictVersion: z.ZodOptional; shareScope: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>; auth: z.ZodOptional; production: z.ZodOptional; staging: z.ZodOptional; }, z.core.$strip>]>>; name: z.ZodOptional; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; proxy: z.ZodOptional; variables: z.ZodOptional>>>; secrets: z.ZodOptional>; routes: z.ZodOptional>; shared: z.ZodOptional; singleton: z.ZodOptional; eager: z.ZodOptional; strictVersion: z.ZodOptional; shareScope: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$strip>]>>; packages: z.ZodArray; remotes: z.ZodArray; full: z.ZodDefault; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; pluginAdd: import("@orpc/contract").ContractProcedure; production: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; added: "added"; }>; key: z.ZodString; development: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; version: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; pluginRemove: import("@orpc/contract").ContractProcedure, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; removed: "removed"; }>; key: z.ZodString; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; pluginList: import("@orpc/contract").ContractProcedure, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; listed: "listed"; }>; plugins: z.ZodArray; production: z.ZodOptional; localPath: z.ZodOptional; source: z.ZodEnum<{ local: "local"; remote: "remote"; }>; integrity: z.ZodOptional; version: z.ZodOptional; name: z.ZodOptional; }, z.core.$strip>>; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; pluginPublish: import("@orpc/contract").ContractProcedure, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; published: "published"; }>; key: z.ZodString; path: z.ZodOptional; script: z.ZodOptional; production: z.ZodOptional; integrity: z.ZodOptional; version: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; publish: import("@orpc/contract").ContractProcedure; dryRun: z.ZodDefault; verbose: z.ZodDefault; packages: z.ZodDefault; network: z.ZodOptional>; privateKey: z.ZodOptional; env: z.ZodDefault>; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; published: "published"; "dry-run": "dry-run"; }>; registryUrl: z.ZodString; txHash: z.ZodOptional; error: z.ZodOptional; built: z.ZodOptional>; skipped: z.ZodOptional>; deployResults: z.ZodOptional; success: z.ZodBoolean; url: z.ZodOptional; error: z.ZodOptional; warnings: z.ZodOptional>; durationMs: z.ZodOptional; retried: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; deploy: import("@orpc/contract").ContractProcedure>; build: z.ZodDefault; dryRun: z.ZodDefault; verbose: z.ZodDefault; packages: z.ZodDefault; network: z.ZodOptional>; privateKey: z.ZodOptional; service: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; deployed: "deployed"; published: "published"; "dry-run": "dry-run"; }>; registryUrl: z.ZodString; txHash: z.ZodOptional; built: z.ZodOptional>; skipped: z.ZodOptional>; redeployed: z.ZodBoolean; service: z.ZodOptional; error: z.ZodOptional; deployResults: z.ZodOptional; success: z.ZodBoolean; url: z.ZodOptional; error: z.ZodOptional; warnings: z.ZodOptional>; durationMs: z.ZodOptional; retried: z.ZodOptional; }, z.core.$strip>>>; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; keyPublish: import("@orpc/contract").ContractProcedure; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; published: "published"; }>; account: z.ZodString; network: z.ZodEnum<{ testnet: "testnet"; mainnet: "mainnet"; }>; contract: z.ZodString; allowance: z.ZodString; functionNames: z.ZodArray; publicKey: z.ZodOptional; privateKey: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; init: import("@orpc/contract").ContractProcedure; directory: z.ZodOptional; account: z.ZodOptional; domain: z.ZodOptional; source: z.ZodOptional; plugins: z.ZodOptional>; overrides: z.ZodOptional>>; noInteractive: z.ZodDefault; noInstall: z.ZodDefault; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; initialized: "initialized"; }>; directory: z.ZodString; extendsRef: z.ZodString; account: z.ZodOptional; domain: z.ZodOptional; extends: z.ZodString; plugins: z.ZodOptional>; overrides: z.ZodOptional>>; filesCopied: z.ZodNumber; timings: z.ZodOptional>>; targetDir: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; sync: import("@orpc/contract").ContractProcedure; noInstall: z.ZodDefault; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; "dry-run": "dry-run"; synced: "synced"; }>; updated: z.ZodArray; skipped: z.ZodArray; added: z.ZodArray; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; upgrade: import("@orpc/contract").ContractProcedure; noInstall: z.ZodDefault; noSync: z.ZodDefault; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; "dry-run": "dry-run"; upgraded: "upgraded"; }>; packages: z.ZodArray; to: z.ZodString; }, z.core.$strip>>; sync: z.ZodOptional; updated: z.ZodArray; skipped: z.ZodArray; added: z.ZodArray; error: z.ZodOptional; }, z.core.$strip>>; migrated: z.ZodOptional>; availablePlugins: z.ZodOptional>; selectedPlugins: z.ZodOptional>; timings: z.ZodOptional>>; changelogUrl: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; status: import("@orpc/contract").ContractProcedure, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; ok: "ok"; }>; extends: z.ZodOptional; account: z.ZodOptional; domain: z.ZodOptional; packages: z.ZodArray; latest: z.ZodOptional; isLinked: z.ZodOptional; specifier: z.ZodOptional; }, z.core.$strip>>; lastSync: z.ZodOptional; envFile: z.ZodEnum<{ found: "found"; missing: "missing"; "example-only": "example-only"; }>; parentReachable: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; typesGen: import("@orpc/contract").ContractProcedure>; dryRun: z.ZodDefault; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; generated: z.ZodArray; fetched: z.ZodArray; skipped: z.ZodArray; failed: z.ZodArray; source: z.ZodOptional>; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; dbStudio: import("@orpc/contract").ContractProcedure; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; plugin: z.ZodString; source: z.ZodEnum<{ local: "local"; remote: "remote"; }>; section: z.ZodString; databaseSecret: z.ZodOptional; databaseUrl: z.ZodOptional; workspaceDir: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; dbDoctor: import("@orpc/contract").ContractProcedure, z.ZodObject<{ status: z.ZodEnum<{ success: "success"; error: "error"; }>; plugin: z.ZodString; slug: z.ZodString; journalTable: z.ZodString; journalSchema: z.ZodString; diagnosis: z.ZodString; localMigrationCount: z.ZodNumber; appliedHashCount: z.ZodNumber; expectedTables: z.ZodArray; missingTables: z.ZodArray; workspaceDir: z.ZodOptional; dbSecret: z.ZodOptional; dbUrl: z.ZodOptional; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; dbRepair: import("@orpc/contract").ContractProcedure>; yes: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; repaired: "repaired"; refused: "refused"; }>; message: z.ZodString; diagnosis: z.ZodAny; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; ps: import("@orpc/contract").ContractProcedure, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; ok: "ok"; }>; entries: z.ZodArray; role: z.ZodEnum<{ standalone: "standalone"; "workspace-parent": "workspace-parent"; "workspace-child": "workspace-child"; }>; ports: z.ZodDefault; api: z.ZodOptional; ui: z.ZodOptional; auth: z.ZodOptional; }, z.core.$strip>>; budget: z.ZodOptional>; startedAt: z.ZodNumber; description: z.ZodString; }, z.core.$strip>>; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; kill: import("@orpc/contract").ContractProcedure; signal: z.ZodDefault>; all: z.ZodDefault; }, z.core.$strip>, z.ZodObject<{ status: z.ZodEnum<{ error: "error"; killed: "killed"; }>; killed: z.ZodArray>; skipped: z.ZodArray>; error: z.ZodOptional; }, z.core.$strip>, import("@orpc/contract").MergedErrorMap, Record>, Record>; }; type DevOptions = z.infer; type DevResult = z.infer; type StartOptions = z.infer; type StartResult = z.infer; type BuildOptions = z.infer; type BosConfigResult = z.infer; type PluginAddOptions = z.infer; type PluginAddResult = z.infer; type PluginRemoveOptions = z.infer; type PluginRemoveResult = z.infer; type PluginListResult = z.infer; type PluginPublishOptions = z.infer; type PluginPublishResult = z.infer; type WorkspaceDeployResult = z.infer; type PublishOptions = z.infer; type PublishResult = z.infer; type DeployOptions = z.infer; type DeployResult = z.infer; type KeyPublishOptions = z.infer; type KeyPublishResult = z.infer; type InitOptions = z.infer; type InitResult = z.infer; type OverrideSection = z.infer; type PhaseTiming = z.infer; type SyncOptions = z.infer; type SyncResult = z.infer; type UpgradeOptions = z.infer; type UpgradeResult = z.infer; type StatusResult = z.infer; type TypesGenOptions = z.infer; type TypesGenResult = z.infer; type DbStudioOptions = z.infer; type DbStudioResult = z.infer; type DbDoctorOptions = z.infer; type DbDoctorResult = z.infer; type DbRepairOptions = z.infer; type DbRepairResult = z.infer; type RuntimeOverrideTarget = z.infer; type ProcessRole = z.infer; type PidEntry = z.infer; type PsResult = z.infer; type KillOptions = z.infer; type KillResult = z.infer; //#endregion export { BosConfigResult, BuildOptions, BuildOptionsSchema, BuildResultSchema, ConfigOptionsSchema, ConfigResultSchema, DbDoctorOptions, DbDoctorOptionsSchema, DbDoctorResult, DbDoctorResultSchema, DbRepairOptions, DbRepairOptionsSchema, DbRepairResult, DbRepairResultSchema, DbStudioOptions, DbStudioOptionsSchema, DbStudioResult, DbStudioResultSchema, DeployOptions, DeployOptionsSchema, DeployResult, DeployResultSchema, DevOptions, DevOptionsSchema, DevResult, DevResultSchema, InitOptions, InitOptionsSchema, InitResult, InitResultSchema, KeyPublishOptions, KeyPublishOptionsSchema, KeyPublishResult, KeyPublishResultSchema, KillOptions, KillOptionsSchema, KillResult, KillResultSchema, OverrideSection, OverrideSectionSchema, PhaseTiming, PhaseTimingSchema, PidEntry, PidEntrySchema, PluginAddOptions, PluginAddOptionsSchema, PluginAddResult, PluginAddResultSchema, PluginListResult, PluginListResultSchema, PluginPublishOptions, PluginPublishOptionsSchema, PluginPublishResult, PluginPublishResultSchema, PluginRemoveOptions, PluginRemoveOptionsSchema, PluginRemoveResult, PluginRemoveResultSchema, ProcessRole, ProcessRoleSchema, PsResult, PsResultSchema, PublishOptions, PublishOptionsSchema, PublishResult, PublishResultSchema, RuntimeOverrideTarget, RuntimeOverrideTargetBaseSchema, RuntimeOverrideTargetSchema, StartOptions, StartOptionsSchema, StartResult, StartResultSchema, StatusResult, StatusResultSchema, SyncOptions, SyncOptionsSchema, SyncResult, SyncResultSchema, TypesGenOptions, TypesGenOptionsSchema, TypesGenResult, TypesGenResultSchema, UpgradeOptions, UpgradeOptionsSchema, UpgradeResult, UpgradeResultSchema, WorkspaceDeployResult, WorkspaceDeployResultSchema, bosContract }; //# sourceMappingURL=contract.d.mts.map