refactor: prune unused extension exports

This commit is contained in:
Peter Steinberger
2026-05-01 10:24:35 +01:00
parent 8abf2977f4
commit 5c0388c253
7 changed files with 2 additions and 53 deletions

View File

@@ -1,18 +1,11 @@
import type { BaseProbeResult } from "openclaw/plugin-sdk/core";
import type {
FeishuConfigSchema,
FeishuGroupSchema,
FeishuAccountConfigSchema,
z,
} from "./config-schema.js";
import type { FeishuConfigSchema, FeishuAccountConfigSchema, z } from "./config-schema.js";
import type { MentionTarget } from "./mention-target.types.js";
export type FeishuConfig = z.infer<typeof FeishuConfigSchema>;
export type FeishuGroupConfig = z.infer<typeof FeishuGroupSchema>;
export type FeishuAccountConfig = z.infer<typeof FeishuAccountConfigSchema>;
export type FeishuDomain = "feishu" | "lark" | (string & {});
export type FeishuConnectionMode = "websocket" | "webhook";
export type FeishuDefaultAccountSelectionSource =
| "explicit-default"