mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-21 00:34:47 +00:00
15 lines
839 B
TypeScript
15 lines
839 B
TypeScript
/**
|
|
* @deprecated Compatibility subpath. Import command secret helpers from
|
|
* `openclaw/plugin-sdk/runtime` and lower-level secret helpers from
|
|
* `openclaw/plugin-sdk/secret-ref-runtime` instead.
|
|
*/
|
|
|
|
/** @deprecated Import from `openclaw/plugin-sdk/runtime` instead. */
|
|
export { resolveCommandSecretRefsViaGateway } from "../cli/command-secret-gateway.js";
|
|
/** @deprecated Import from `openclaw/plugin-sdk/runtime` instead. */
|
|
export { getChannelsCommandSecretTargetIds } from "../cli/command-secret-targets.js";
|
|
/** @deprecated Import from `openclaw/plugin-sdk/secret-ref-runtime` instead. */
|
|
export { resolveSecretRefValues } from "../secrets/resolve.js";
|
|
/** @deprecated Import from `openclaw/plugin-sdk/secret-ref-runtime` instead. */
|
|
export { applyResolvedAssignments, createResolverContext } from "../secrets/runtime-shared.js";
|