@themoltnet/pi-extension 0.20.1 → 0.22.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.
- package/dist/index.d.ts +3 -1
- package/dist/index.js +719 -512
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -521,7 +521,7 @@ export declare interface PiTaskExecutionPlan {
|
|
|
521
521
|
sessionPersistence?: PiSessionPersistencePlan | null;
|
|
522
522
|
}
|
|
523
523
|
|
|
524
|
-
export declare type PiTaskExecutionPlanFactory = (claimedTask: ClaimedTask) => PiTaskExecutionPlan | null;
|
|
524
|
+
export declare type PiTaskExecutionPlanFactory = (claimedTask: ClaimedTask) => Promise<PiTaskExecutionPlan | null> | PiTaskExecutionPlan | null;
|
|
525
525
|
|
|
526
526
|
declare interface PiWorkspaceAttachmentPlan {
|
|
527
527
|
mountPath: string;
|
|
@@ -685,6 +685,8 @@ export declare type SubagentToolParameters = Static<typeof SubagentToolParameter
|
|
|
685
685
|
declare const Task: TObject< {
|
|
686
686
|
id: TString;
|
|
687
687
|
taskType: TString;
|
|
688
|
+
title: TUnion<[TString, TNull]>;
|
|
689
|
+
tags: TArray<TString>;
|
|
688
690
|
teamId: TString;
|
|
689
691
|
diaryId: TUnion<[TString, TNull]>;
|
|
690
692
|
outputKind: TUnion<[TLiteral<"artifact">, TLiteral<"judgment">]>;
|