@cline/shared 0.0.67-nightly.1785554076 → 0.0.68

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.
@@ -13,4 +13,13 @@ export type ShellKind = "powershell" | "cmd" | "wsl" | "posix";
13
13
  * told to use always matches the syntax the executor actually accepts.
14
14
  */
15
15
  export declare function getShellKind(shell: string): ShellKind;
16
+ export interface ShellInvocation {
17
+ args: string[];
18
+ input?: string;
19
+ }
20
+ export declare function getShellInvocation(shell: string, command: string): ShellInvocation;
21
+ /**
22
+ * @deprecated Use getShellInvocation() when executing commands so PowerShell
23
+ * source can travel through Unicode-safe stdin.
24
+ */
16
25
  export declare function getShellArgs(shell: string, command: string): string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cline/shared",
3
- "version": "0.0.67-nightly.1785554076",
3
+ "version": "0.0.68",
4
4
  "description": "Shared utilities, types, and schemas for Cline packages",
5
5
  "repository": {
6
6
  "type": "git",