mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 13:26:04 +00:00
* ci(deadcode): restore export ratchet * chore(deadcode): refresh export baseline * refactor(sessions): remove obsolete patch writer * refactor(deadcode): classify current export residue * fix(deadcode): preserve exported signature types * chore(deadcode): sync export baseline after rebase * chore(deadcode): classify pairing test exports * fix(ci): refresh plugin SDK declaration budget
15 lines
432 B
TypeScript
15 lines
432 B
TypeScript
export function isPrivateQaPluginSdkBuild(env: unknown): boolean;
|
|
export function evaluatePluginSdkDeclarationBudget({
|
|
declarationBytes,
|
|
buildPrivateQa,
|
|
}: {
|
|
declarationBytes: unknown;
|
|
buildPrivateQa: unknown;
|
|
}): {
|
|
budgetBytes: number;
|
|
budgetKind: string;
|
|
shouldFail: boolean;
|
|
};
|
|
export const MAX_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES: 5200000;
|
|
export const MAX_PRIVATE_QA_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES: 5225000;
|