mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 18:00:54 +00:00
refactor: trim command shape exports
This commit is contained in:
@@ -24,7 +24,7 @@ type GatewayInstallTokenOptions = {
|
|||||||
persistGeneratedToken?: boolean;
|
persistGeneratedToken?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GatewayInstallTokenResolution = {
|
type GatewayInstallTokenResolution = {
|
||||||
token?: string;
|
token?: string;
|
||||||
tokenRefConfigured: boolean;
|
tokenRefConfigured: boolean;
|
||||||
unavailableReason?: string;
|
unavailableReason?: string;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { readStringValue } from "../shared/string-coerce.js";
|
import { readStringValue } from "../shared/string-coerce.js";
|
||||||
|
|
||||||
export type GatewaySelfPresence = {
|
type GatewaySelfPresence = {
|
||||||
host?: string;
|
host?: string;
|
||||||
ip?: string;
|
ip?: string;
|
||||||
version?: string;
|
version?: string;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import {
|
|||||||
import type { DaemonInstallWarnFn } from "./daemon-install-runtime-warning.js";
|
import type { DaemonInstallWarnFn } from "./daemon-install-runtime-warning.js";
|
||||||
import type { NodeDaemonRuntime } from "./node-daemon-runtime.js";
|
import type { NodeDaemonRuntime } from "./node-daemon-runtime.js";
|
||||||
|
|
||||||
export type NodeInstallPlan = {
|
type NodeInstallPlan = {
|
||||||
programArguments: string[];
|
programArguments: string[];
|
||||||
workingDirectory?: string;
|
workingDirectory?: string;
|
||||||
environment: Record<string, string | undefined>;
|
environment: Record<string, string | undefined>;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js";
|
import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js";
|
||||||
import { resolveStatusJsonOutput } from "./status-json-runtime.ts";
|
import { resolveStatusJsonOutput } from "./status-json-runtime.ts";
|
||||||
|
|
||||||
export type StatusJsonCommandOptions = {
|
type StatusJsonCommandOptions = {
|
||||||
deep?: boolean;
|
deep?: boolean;
|
||||||
usage?: boolean;
|
usage?: boolean;
|
||||||
timeoutMs?: number;
|
timeoutMs?: number;
|
||||||
|
|||||||
Reference in New Issue
Block a user