mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-05 22:32:12 +00:00
19 lines
495 B
TypeScript
19 lines
495 B
TypeScript
export type InstallRecordBase = {
|
|
source: "npm" | "archive" | "path" | "clawhub";
|
|
spec?: string;
|
|
sourcePath?: string;
|
|
installPath?: string;
|
|
version?: string;
|
|
resolvedName?: string;
|
|
resolvedVersion?: string;
|
|
resolvedSpec?: string;
|
|
integrity?: string;
|
|
shasum?: string;
|
|
resolvedAt?: string;
|
|
installedAt?: string;
|
|
clawhubUrl?: string;
|
|
clawhubPackage?: string;
|
|
clawhubFamily?: "code-plugin" | "bundle-plugin";
|
|
clawhubChannel?: "official" | "community" | "private";
|
|
};
|