mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 15:30:39 +00:00
29 lines
498 B
TypeScript
29 lines
498 B
TypeScript
export type GatewayAgentIdentity = {
|
|
name?: string;
|
|
theme?: string;
|
|
emoji?: string;
|
|
avatar?: string;
|
|
avatarUrl?: string;
|
|
};
|
|
|
|
export type GatewayAgentRow = {
|
|
id: string;
|
|
name?: string;
|
|
identity?: GatewayAgentIdentity;
|
|
};
|
|
|
|
export type SessionsListResultBase<TDefaults, TRow> = {
|
|
ts: number;
|
|
path: string;
|
|
count: number;
|
|
defaults: TDefaults;
|
|
sessions: TRow[];
|
|
};
|
|
|
|
export type SessionsPatchResultBase<TEntry> = {
|
|
ok: true;
|
|
path: string;
|
|
key: string;
|
|
entry: TEntry;
|
|
};
|