@granular-software/sdk 0.4.47 → 0.4.49
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/README.md +36 -12
- package/dist/agent-evals.d.mts +2 -2
- package/dist/agent-evals.d.ts +2 -2
- package/dist/agent-evals.js +498 -208
- package/dist/agent-evals.js.map +1 -1
- package/dist/agent-evals.mjs +498 -208
- package/dist/agent-evals.mjs.map +1 -1
- package/dist/agent-harness.d.mts +1 -1
- package/dist/agent-harness.d.ts +1 -1
- package/dist/agent-harness.js +204 -142
- package/dist/agent-harness.js.map +1 -1
- package/dist/agent-harness.mjs +204 -142
- package/dist/agent-harness.mjs.map +1 -1
- package/dist/cli/index.js +547 -182
- package/dist/{client-C1UqPDwe.d.mts → client-B-MPVvDr.d.mts} +24 -3
- package/dist/{client-ButG6ePW.d.ts → client-zihxkDDs.d.ts} +24 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +452 -194
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +452 -194
- package/dist/index.mjs.map +1 -1
- package/dist/{spend-D2Vy3N1D.d.mts → spend-CStuOBXb.d.mts} +83 -3
- package/dist/{spend-D2Vy3N1D.d.ts → spend-CStuOBXb.d.ts} +83 -3
- package/dist/spend.d.mts +1 -1
- package/dist/spend.d.ts +1 -1
- package/package.json +1 -1
package/dist/agent-harness.d.mts
CHANGED
|
@@ -151,7 +151,7 @@ interface HarnessTemplateSelectionOptions {
|
|
|
151
151
|
strict?: boolean;
|
|
152
152
|
}
|
|
153
153
|
interface GeneratedJobCodeIssue {
|
|
154
|
-
code: "commonjs_require" | "process_exit" | "dynamic_import_in_job" | "syntax_error_in_job" | "nested_template_literal_in_job" | "undefined_template_identifier" | "object_spread_in_job" | "runtime_import_contract" | "runtime_api_contract" | "missing_runtime_import" | "missing_loop_import" | "bare_loop_helper_import" | "loop_helper_contract" | "stdout_json_reply" | "return_chat_payload";
|
|
154
|
+
code: "commonjs_require" | "process_exit" | "dynamic_import_in_job" | "syntax_error_in_job" | "nested_template_literal_in_job" | "undefined_template_identifier" | "object_spread_in_job" | "deprecated_runtime_import" | "deprecated_runtime_helper" | "runtime_import_contract" | "runtime_api_contract" | "missing_runtime_import" | "missing_loop_import" | "bare_loop_helper_import" | "loop_helper_contract" | "stdout_json_reply" | "return_chat_payload";
|
|
155
155
|
severity: "error";
|
|
156
156
|
message: string;
|
|
157
157
|
}
|
package/dist/agent-harness.d.ts
CHANGED
|
@@ -151,7 +151,7 @@ interface HarnessTemplateSelectionOptions {
|
|
|
151
151
|
strict?: boolean;
|
|
152
152
|
}
|
|
153
153
|
interface GeneratedJobCodeIssue {
|
|
154
|
-
code: "commonjs_require" | "process_exit" | "dynamic_import_in_job" | "syntax_error_in_job" | "nested_template_literal_in_job" | "undefined_template_identifier" | "object_spread_in_job" | "runtime_import_contract" | "runtime_api_contract" | "missing_runtime_import" | "missing_loop_import" | "bare_loop_helper_import" | "loop_helper_contract" | "stdout_json_reply" | "return_chat_payload";
|
|
154
|
+
code: "commonjs_require" | "process_exit" | "dynamic_import_in_job" | "syntax_error_in_job" | "nested_template_literal_in_job" | "undefined_template_identifier" | "object_spread_in_job" | "deprecated_runtime_import" | "deprecated_runtime_helper" | "runtime_import_contract" | "runtime_api_contract" | "missing_runtime_import" | "missing_loop_import" | "bare_loop_helper_import" | "loop_helper_contract" | "stdout_json_reply" | "return_chat_payload";
|
|
155
155
|
severity: "error";
|
|
156
156
|
message: string;
|
|
157
157
|
}
|