mirror of https://github.com/openclaw/openclaw.git
Plugin SDK: clarify ACPX public seam
This commit is contained in:
parent
5eea523f39
commit
bd444435c9
|
|
@ -1,5 +1,5 @@
|
|||
// Narrow plugin-sdk surface for the bundled acpx plugin.
|
||||
// Keep this list additive and scoped to symbols used under extensions/acpx.
|
||||
// Public ACPX runtime backend helpers.
|
||||
// Keep this surface narrow and limited to the ACP runtime/backend contract.
|
||||
|
||||
export type { AcpRuntimeErrorCode } from "../acp/runtime/errors.js";
|
||||
export { AcpRuntimeError } from "../acp/runtime/errors.js";
|
||||
|
|
|
|||
|
|
@ -315,7 +315,7 @@ describe("plugin-sdk subpath exports", () => {
|
|||
expect(typeof tlonSdk.tlonSetupAdapter).toBe("object");
|
||||
});
|
||||
|
||||
it("exports acpx helpers", async () => {
|
||||
it("exports ACPX runtime backend helpers", async () => {
|
||||
expect(typeof acpxSdk.listKnownProviderAuthEnvVarNames).toBe("function");
|
||||
expect(typeof acpxSdk.omitEnvKeysCaseInsensitive).toBe("function");
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue