@uipath/codedagent-tool 1.1.0 → 1.196.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,14 @@
1
+ import type { CommandPreflight, CommandRule } from "@uipath/uipath-python-bridge";
2
+ /**
3
+ * Whitelisted coded-agent commands forwarded to the Python `uipath` CLI.
4
+ * Anything outside this list is rejected by Commander before exec.
5
+ */
6
+ export declare const WHITELISTED_COMMANDS: {
7
+ name: string;
8
+ description: string;
9
+ }[];
10
+ /**
11
+ * Tool-specific command rules for codedagents.
12
+ */
13
+ export declare const COMMAND_RULES: CommandRule[];
14
+ export declare const codedAgentCommandPreflight: CommandPreflight;
package/dist/init.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Public `@uipath/codedagent-tool/init` entry: programmatic core of
3
+ * `uip codedagent init` for SDK consumers (e.g. the VS Code extension's
4
+ * coded-agent uploader). Returns a tagged `CodedagentInitResult` instead of
5
+ * formatting + exiting. Mirrors `@uipath/solution-tool/{init,publish,deploy}`.
6
+ */
7
+ export type { CodedagentInitFailure, CodedagentInitFailureReason, CodedagentInitOptions, CodedagentInitResult, CodedagentInitSuccess, } from "./services/codedagent-init-service";
8
+ export { codedagentInitAsync } from "./services/codedagent-init-service";