@codex-ultra/cxu 0.2.21 → 0.2.22
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.
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/vendor/saVmTool.d.ts +5 -1
- package/package.json +1 -1
- package/server-bundle/index.js +297 -294
- package/web-dist/assets/{main-jzq07axy.js → main-p82jakh5.js} +392 -392
- package/web-dist/index.html +2 -2
- package/web-dist/sw.js +1 -1
|
@@ -518,7 +518,11 @@ export declare function sliceAndFilterOutput(rawStdout: string, options: {
|
|
|
518
518
|
max_tokens?: number;
|
|
519
519
|
max_token?: number;
|
|
520
520
|
}): string;
|
|
521
|
-
export declare function
|
|
521
|
+
export declare function checkGitSafety(args: string[]): {
|
|
522
|
+
allowed: boolean;
|
|
523
|
+
reason?: string;
|
|
524
|
+
};
|
|
525
|
+
export declare function nativeRunHost(rawInput: SaVmRunInput, policy: SaVmPolicyConfig | undefined, cwd: string, startedAt: number): Promise<SaVmRunResult>;
|
|
522
526
|
export declare function nativeWriteStdin(rawInput: SaVmRunInput, _cwd: string, startedAt: number): SaVmRunResult;
|
|
523
527
|
export declare function nativeSessionStatus(rawInput: SaVmRunInput, _cwd: string, startedAt: number): SaVmRunResult;
|
|
524
528
|
export declare function nativeKillSession(rawInput: SaVmRunInput, _cwd: string, startedAt: number): SaVmRunResult;
|
package/package.json
CHANGED