mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-07 03:42:52 +00:00
* refactor: extract gateway client package * chore: drop generated gateway package artifacts * refactor: move gateway protocol package * refactor: remove old gateway protocol tree * test: keep auth compat split in run mode * test: expose gateway wrapper options for internals * fix: watch moved gateway package sources * test: normalize slash command import guard * chore: teach knip gateway package entries * ci: route gateway client package checks * fix: reuse ipaddr for gateway client hosts * fix: sync gateway protocol usage schema
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
import type { ErrorShape } from "../../packages/gateway-protocol/src/index.js";
|
|
|
|
export type DedupeEntry = {
|
|
ts: number;
|
|
ok: boolean;
|
|
payload?: unknown;
|
|
error?: ErrorShape;
|
|
};
|