@polka-codes/cli 0.10.24 → 0.10.26
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/agent/error-handling.d.ts +1 -1
- package/dist/bin.cjs +143964 -0
- package/dist/bin.d.ts +2 -0
- package/dist/bin.d.ts.map +1 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/config-validation.d.ts +22 -0
- package/dist/config-validation.d.ts.map +1 -0
- package/dist/config-validation.test.d.ts +2 -0
- package/dist/config-validation.test.d.ts.map +1 -0
- package/dist/errors.d.ts +8 -0
- package/dist/errors.d.ts.map +1 -1
- package/dist/getModel.d.ts.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9412 -9250
- package/dist/options.d.ts.map +1 -1
- package/dist/program.d.ts +3 -0
- package/dist/program.d.ts.map +1 -0
- package/dist/runWorkflow.d.ts.map +1 -1
- package/dist/utils/command.d.ts +0 -35
- package/dist/utils/command.d.ts.map +1 -1
- package/dist/workflows/review.workflow.d.ts.map +1 -1
- package/dist/workflows/workflow.utils.d.ts.map +1 -1
- package/package.json +6 -7
- package/cli.mjs +0 -2
|
@@ -30,7 +30,7 @@ export declare function logAndSuppress(logger: Logger, error: unknown, contextMe
|
|
|
30
30
|
* @param operation - Operation being performed (read, write, delete, etc.)
|
|
31
31
|
* @param cause - Optional underlying error
|
|
32
32
|
*/
|
|
33
|
-
export declare const FileSystemAccessError: new (...args: [string, string
|
|
33
|
+
export declare const FileSystemAccessError: new (...args: [string, string, (Error | undefined)?] | [string, string]) => import("@polka-codes/core").BaseError;
|
|
34
34
|
/**
|
|
35
35
|
* Error thrown when a command execution fails
|
|
36
36
|
*
|