@kynver-app/runtime 0.1.76 → 0.1.77
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 +94 -17
- package/dist/cli.js.map +3 -3
- package/dist/completion-replay.d.ts +10 -0
- package/dist/index.js +94 -17
- package/dist/index.js.map +3 -3
- package/dist/pipeline-dispatch.d.ts +1 -0
- package/dist/pipeline-exact-targets.d.ts +2 -0
- package/dist/status.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare function countDispatchStarts(result: unknown): number;
|
|
1
2
|
/** Drop CLI max-starts so pipeline ticks always use the resource-gate slot budget. */
|
|
2
3
|
export declare function stripCliMaxStarts(args: Record<string, string | boolean>): Record<string, string | boolean>;
|
|
3
4
|
/**
|
package/dist/status.d.ts
CHANGED
|
@@ -154,6 +154,9 @@ export interface RawHarnessWorkerStatus {
|
|
|
154
154
|
disposableArtifactsRemoved?: string[];
|
|
155
155
|
/** Fencing token from claim — echoed on completion when set. */
|
|
156
156
|
leaseToken?: string;
|
|
157
|
+
/** Lane A policy fields echoed on completion status for mirror recovery. */
|
|
158
|
+
instructionPolicyFingerprint?: string | null;
|
|
159
|
+
instructionPolicyEvidence?: InstructionPolicyEvidenceSnapshot | null;
|
|
157
160
|
}
|
|
158
161
|
export interface WorkerStatusOptions {
|
|
159
162
|
/** Branch ref for ancestry when baseCommit is not set. */
|