@lucern/contracts 1.0.32 → 1.0.34
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/CHANGELOG.md +11 -0
- package/dist/generated/convexSchemas.d.ts +240 -210
- package/dist/generated/convexSchemas.js +7 -7
- package/dist/generated/convexSchemas.js.map +1 -1
- package/dist/generated/schema-manifest.json +14 -0
- package/dist/index.js +27 -15
- package/dist/index.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/schemas/index.js +27 -15
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/manifest.d.ts +115 -105
- package/dist/schemas/manifest.js +27 -15
- package/dist/schemas/manifest.js.map +1 -1
- package/dist/schemas/tables/kernel/decision.d.ts +3 -3
- package/dist/schemas/tables/kernel/decision.js +3 -3
- package/dist/schemas/tables/kernel/decision.js.map +1 -1
- package/dist/schemas/tables/kernel/epistemic.d.ts +2 -1
- package/dist/schemas/tables/kernel/epistemic.js +3 -1
- package/dist/schemas/tables/kernel/epistemic.js.map +1 -1
- package/dist/schemas/tables/kernel/spine.d.ts +2 -2
- package/dist/schemas/tables/kernel/spine.js +9 -1
- package/dist/schemas/tables/kernel/spine.js.map +1 -1
- package/dist/schemas/tables/kernel/task.d.ts +10 -9
- package/dist/schemas/tables/kernel/task.js +7 -16
- package/dist/schemas/tables/kernel/task.js.map +1 -1
- package/dist/schemas/tables/kernel/worktree.d.ts +6 -6
- package/dist/schemas/tables/kernel/worktree.js +5 -16
- package/dist/schemas/tables/kernel/worktree.js.map +1 -1
- package/dist/schemas.values.js +27 -15
- package/dist/schemas.values.js.map +1 -1
- package/package.json +1 -1
|
@@ -243,15 +243,15 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
243
243
|
question: import("zod").ZodString;
|
|
244
244
|
status: import("zod").ZodEnum<["running", "completed", "failed"]>;
|
|
245
245
|
modelSlots: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
246
|
-
linkedBeliefNodeId: import("zod").ZodOptional<import("
|
|
246
|
+
linkedBeliefNodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
247
247
|
replayBaselineAt: import("zod").ZodNumber;
|
|
248
248
|
replayHeadAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
249
249
|
replayBaseline: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
250
250
|
replayDelta: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
251
251
|
contextBrief: import("zod").ZodOptional<import("zod").ZodString>;
|
|
252
252
|
contextSnapshot: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
253
|
-
contradictionIds: import("zod").ZodArray<import("
|
|
254
|
-
escalationQuestionIds: import("zod").ZodArray<import("
|
|
253
|
+
contradictionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
254
|
+
escalationQuestionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
255
255
|
uncertaintyZones: import("zod").ZodArray<import("zod").ZodObject<{
|
|
256
256
|
label: import("zod").ZodString;
|
|
257
257
|
explanation: import("zod").ZodString;
|
|
@@ -323,7 +323,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
323
323
|
triggeringEvidenceIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
324
324
|
triggeringQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
325
325
|
triggeringAnswerId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
326
|
-
triggeringContradictionId: import("zod").ZodOptional<import("
|
|
326
|
+
triggeringContradictionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
327
327
|
triggeringWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
328
328
|
triggeringAgentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
329
329
|
isAgentAssessment: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -419,6 +419,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
419
419
|
modulationRationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
420
420
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
421
421
|
}>, import("../dsl.js").TableContract<{
|
|
422
|
+
globalId: import("zod").ZodString;
|
|
422
423
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
423
424
|
beliefId: import("zod").ZodString;
|
|
424
425
|
supportingInsightIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
@@ -1724,9 +1725,9 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
1724
1725
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1725
1726
|
}>, import("../dsl.js").TableContract<{
|
|
1726
1727
|
mappingId: import("zod").ZodString;
|
|
1727
|
-
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees"]>;
|
|
1728
|
+
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees", "tasks", "contradictions"]>;
|
|
1728
1729
|
legacyId: import("zod").ZodString;
|
|
1729
|
-
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
1730
|
+
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "taskId", "contradictionId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
1730
1731
|
canonicalUuid: import("zod").ZodString;
|
|
1731
1732
|
canonicalField: import("zod").ZodEnum<["globalId"]>;
|
|
1732
1733
|
status: import("zod").ZodEnum<["pending", "backfilled", "verified", "orphaned", "superseded"]>;
|
|
@@ -1952,6 +1953,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
1952
1953
|
syncStatus: import("zod").ZodOptional<import("zod").ZodEnum<["synced", "pending_edges", "edge_creation_failed"]>>;
|
|
1953
1954
|
syncError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1954
1955
|
}>, import("../dsl.js").TableContract<{
|
|
1956
|
+
globalId: import("zod").ZodString;
|
|
1955
1957
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1956
1958
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1957
1959
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1960,14 +1962,14 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
1960
1962
|
status: import("zod").ZodEnum<["todo", "in_progress", "blocked", "done"]>;
|
|
1961
1963
|
priority: import("zod").ZodEnum<["urgent", "high", "medium", "low"]>;
|
|
1962
1964
|
dueDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1963
|
-
linkedWorktreeId: import("zod").ZodOptional<import("
|
|
1965
|
+
linkedWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1964
1966
|
linkedBeliefId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1965
1967
|
linkedQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1966
1968
|
taskType: import("zod").ZodOptional<import("zod").ZodEnum<["general", "find_evidence", "verify_claim", "research", "review", "interview", "analysis", "track_metrics"]>>;
|
|
1967
1969
|
assigneeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1968
1970
|
blockedReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1969
|
-
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
1970
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
1971
|
+
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
1972
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
1971
1973
|
sortOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1972
1974
|
executionOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1973
1975
|
subtasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -2037,13 +2039,13 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2037
2039
|
answerExcerpt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2038
2040
|
answerTimestamp: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2039
2041
|
capturedAsInsight: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2040
|
-
insightId: import("zod").ZodOptional<import("
|
|
2042
|
+
insightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2041
2043
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2042
2044
|
id: string;
|
|
2043
2045
|
questionText: string;
|
|
2044
2046
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
2045
2047
|
answered?: boolean | undefined;
|
|
2046
|
-
insightId?:
|
|
2048
|
+
insightId?: string | undefined;
|
|
2047
2049
|
linkedBeliefId?: string | undefined;
|
|
2048
2050
|
linkedQuestionId?: string | undefined;
|
|
2049
2051
|
category?: string | undefined;
|
|
@@ -2195,7 +2197,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2195
2197
|
questionText: string;
|
|
2196
2198
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
2197
2199
|
answered?: boolean | undefined;
|
|
2198
|
-
insightId?:
|
|
2200
|
+
insightId?: string | undefined;
|
|
2199
2201
|
linkedBeliefId?: string | undefined;
|
|
2200
2202
|
linkedQuestionId?: string | undefined;
|
|
2201
2203
|
category?: string | undefined;
|
|
@@ -2347,7 +2349,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2347
2349
|
} | undefined;
|
|
2348
2350
|
}>>;
|
|
2349
2351
|
capturedAsEvidence: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2350
|
-
capturedInsightId: import("zod").ZodOptional<import("
|
|
2352
|
+
capturedInsightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2351
2353
|
capturedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2352
2354
|
createdBy: import("zod").ZodString;
|
|
2353
2355
|
createdAt: import("zod").ZodNumber;
|
|
@@ -2376,7 +2378,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2376
2378
|
questionText: string;
|
|
2377
2379
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
2378
2380
|
answered?: boolean | undefined;
|
|
2379
|
-
insightId?:
|
|
2381
|
+
insightId?: string | undefined;
|
|
2380
2382
|
linkedBeliefId?: string | undefined;
|
|
2381
2383
|
linkedQuestionId?: string | undefined;
|
|
2382
2384
|
category?: string | undefined;
|
|
@@ -2444,7 +2446,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2444
2446
|
} | undefined;
|
|
2445
2447
|
} | undefined;
|
|
2446
2448
|
capturedAsEvidence?: boolean | undefined;
|
|
2447
|
-
capturedInsightId?:
|
|
2449
|
+
capturedInsightId?: string | undefined;
|
|
2448
2450
|
capturedAt?: number | undefined;
|
|
2449
2451
|
}, {
|
|
2450
2452
|
type: "file" | "transcript" | "note" | "call_script" | "email_template" | "research_plan" | "framework" | "checklist";
|
|
@@ -2614,7 +2616,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2614
2616
|
createdAt: import("zod").ZodNumber;
|
|
2615
2617
|
updatedAt: import("zod").ZodNumber;
|
|
2616
2618
|
}>, import("../dsl.js").TableContract<{
|
|
2617
|
-
worktreeId: import("
|
|
2619
|
+
worktreeId: import("zod").ZodString;
|
|
2618
2620
|
beliefId: import("zod").ZodString;
|
|
2619
2621
|
relationType: import("zod").ZodEnum<["primary", "counterfactual", "dependency", "cascade", "conditional", "supporting", "contradicting", "alternative", "prerequisite"]>;
|
|
2620
2622
|
relationDescription: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2634,7 +2636,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2634
2636
|
addedAt: import("zod").ZodNumber;
|
|
2635
2637
|
updatedAt: import("zod").ZodNumber;
|
|
2636
2638
|
}>, import("../dsl.js").TableContract<{
|
|
2637
|
-
globalId: import("zod").
|
|
2639
|
+
globalId: import("zod").ZodString;
|
|
2638
2640
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2639
2641
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2640
2642
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2647,8 +2649,8 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2647
2649
|
rationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2648
2650
|
confidenceImpact: import("zod").ZodOptional<import("zod").ZodEnum<["high", "medium", "low"]>>;
|
|
2649
2651
|
hypothesis: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2650
|
-
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
2651
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
2652
|
+
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
2653
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
2652
2654
|
gate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2653
2655
|
campaign: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2654
2656
|
lane: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2852,7 +2854,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
2852
2854
|
epistemicChain: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2853
2855
|
capturedAt: import("zod").ZodNumber;
|
|
2854
2856
|
capturedBy: import("zod").ZodString;
|
|
2855
|
-
worktreeId: import("
|
|
2857
|
+
worktreeId: import("zod").ZodString;
|
|
2856
2858
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2857
2859
|
primaryBelief: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2858
2860
|
id: import("zod").ZodString;
|
|
@@ -3036,7 +3038,7 @@ export declare const KERNEL_TABLE_CONTRACTS: readonly [import("../dsl.js").Table
|
|
|
3036
3038
|
verificationStatus?: string | undefined;
|
|
3037
3039
|
createdAt?: number | undefined;
|
|
3038
3040
|
}[];
|
|
3039
|
-
worktreeId: string
|
|
3041
|
+
worktreeId: string;
|
|
3040
3042
|
outcome: {
|
|
3041
3043
|
summary: string;
|
|
3042
3044
|
verdict: string;
|
|
@@ -5686,15 +5688,15 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
5686
5688
|
question: import("zod").ZodString;
|
|
5687
5689
|
status: import("zod").ZodEnum<["running", "completed", "failed"]>;
|
|
5688
5690
|
modelSlots: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
5689
|
-
linkedBeliefNodeId: import("zod").ZodOptional<import("
|
|
5691
|
+
linkedBeliefNodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5690
5692
|
replayBaselineAt: import("zod").ZodNumber;
|
|
5691
5693
|
replayHeadAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5692
5694
|
replayBaseline: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
5693
5695
|
replayDelta: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
5694
5696
|
contextBrief: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5695
5697
|
contextSnapshot: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
5696
|
-
contradictionIds: import("zod").ZodArray<import("
|
|
5697
|
-
escalationQuestionIds: import("zod").ZodArray<import("
|
|
5698
|
+
contradictionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
5699
|
+
escalationQuestionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
5698
5700
|
uncertaintyZones: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5699
5701
|
label: import("zod").ZodString;
|
|
5700
5702
|
explanation: import("zod").ZodString;
|
|
@@ -5766,7 +5768,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
5766
5768
|
triggeringEvidenceIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
5767
5769
|
triggeringQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5768
5770
|
triggeringAnswerId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5769
|
-
triggeringContradictionId: import("zod").ZodOptional<import("
|
|
5771
|
+
triggeringContradictionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5770
5772
|
triggeringWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5771
5773
|
triggeringAgentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5772
5774
|
isAgentAssessment: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -5862,6 +5864,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
5862
5864
|
modulationRationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5863
5865
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5864
5866
|
}>, import("../dsl.js").TableContract<{
|
|
5867
|
+
globalId: import("zod").ZodString;
|
|
5865
5868
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5866
5869
|
beliefId: import("zod").ZodString;
|
|
5867
5870
|
supportingInsightIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
@@ -7167,9 +7170,9 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7167
7170
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7168
7171
|
}>, import("../dsl.js").TableContract<{
|
|
7169
7172
|
mappingId: import("zod").ZodString;
|
|
7170
|
-
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees"]>;
|
|
7173
|
+
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees", "tasks", "contradictions"]>;
|
|
7171
7174
|
legacyId: import("zod").ZodString;
|
|
7172
|
-
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
7175
|
+
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "taskId", "contradictionId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
7173
7176
|
canonicalUuid: import("zod").ZodString;
|
|
7174
7177
|
canonicalField: import("zod").ZodEnum<["globalId"]>;
|
|
7175
7178
|
status: import("zod").ZodEnum<["pending", "backfilled", "verified", "orphaned", "superseded"]>;
|
|
@@ -7395,6 +7398,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7395
7398
|
syncStatus: import("zod").ZodOptional<import("zod").ZodEnum<["synced", "pending_edges", "edge_creation_failed"]>>;
|
|
7396
7399
|
syncError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7397
7400
|
}>, import("../dsl.js").TableContract<{
|
|
7401
|
+
globalId: import("zod").ZodString;
|
|
7398
7402
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7399
7403
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7400
7404
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -7403,14 +7407,14 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7403
7407
|
status: import("zod").ZodEnum<["todo", "in_progress", "blocked", "done"]>;
|
|
7404
7408
|
priority: import("zod").ZodEnum<["urgent", "high", "medium", "low"]>;
|
|
7405
7409
|
dueDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7406
|
-
linkedWorktreeId: import("zod").ZodOptional<import("
|
|
7410
|
+
linkedWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7407
7411
|
linkedBeliefId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7408
7412
|
linkedQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7409
7413
|
taskType: import("zod").ZodOptional<import("zod").ZodEnum<["general", "find_evidence", "verify_claim", "research", "review", "interview", "analysis", "track_metrics"]>>;
|
|
7410
7414
|
assigneeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7411
7415
|
blockedReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7412
|
-
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
7413
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
7416
|
+
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
7417
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
7414
7418
|
sortOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7415
7419
|
executionOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7416
7420
|
subtasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7480,13 +7484,13 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7480
7484
|
answerExcerpt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7481
7485
|
answerTimestamp: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7482
7486
|
capturedAsInsight: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
7483
|
-
insightId: import("zod").ZodOptional<import("
|
|
7487
|
+
insightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7484
7488
|
}, "strip", import("zod").ZodTypeAny, {
|
|
7485
7489
|
id: string;
|
|
7486
7490
|
questionText: string;
|
|
7487
7491
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
7488
7492
|
answered?: boolean | undefined;
|
|
7489
|
-
insightId?:
|
|
7493
|
+
insightId?: string | undefined;
|
|
7490
7494
|
linkedBeliefId?: string | undefined;
|
|
7491
7495
|
linkedQuestionId?: string | undefined;
|
|
7492
7496
|
category?: string | undefined;
|
|
@@ -7638,7 +7642,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7638
7642
|
questionText: string;
|
|
7639
7643
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
7640
7644
|
answered?: boolean | undefined;
|
|
7641
|
-
insightId?:
|
|
7645
|
+
insightId?: string | undefined;
|
|
7642
7646
|
linkedBeliefId?: string | undefined;
|
|
7643
7647
|
linkedQuestionId?: string | undefined;
|
|
7644
7648
|
category?: string | undefined;
|
|
@@ -7790,7 +7794,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7790
7794
|
} | undefined;
|
|
7791
7795
|
}>>;
|
|
7792
7796
|
capturedAsEvidence: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
7793
|
-
capturedInsightId: import("zod").ZodOptional<import("
|
|
7797
|
+
capturedInsightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7794
7798
|
capturedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7795
7799
|
createdBy: import("zod").ZodString;
|
|
7796
7800
|
createdAt: import("zod").ZodNumber;
|
|
@@ -7819,7 +7823,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7819
7823
|
questionText: string;
|
|
7820
7824
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
7821
7825
|
answered?: boolean | undefined;
|
|
7822
|
-
insightId?:
|
|
7826
|
+
insightId?: string | undefined;
|
|
7823
7827
|
linkedBeliefId?: string | undefined;
|
|
7824
7828
|
linkedQuestionId?: string | undefined;
|
|
7825
7829
|
category?: string | undefined;
|
|
@@ -7887,7 +7891,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
7887
7891
|
} | undefined;
|
|
7888
7892
|
} | undefined;
|
|
7889
7893
|
capturedAsEvidence?: boolean | undefined;
|
|
7890
|
-
capturedInsightId?:
|
|
7894
|
+
capturedInsightId?: string | undefined;
|
|
7891
7895
|
capturedAt?: number | undefined;
|
|
7892
7896
|
}, {
|
|
7893
7897
|
type: "file" | "transcript" | "note" | "call_script" | "email_template" | "research_plan" | "framework" | "checklist";
|
|
@@ -8057,7 +8061,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
8057
8061
|
createdAt: import("zod").ZodNumber;
|
|
8058
8062
|
updatedAt: import("zod").ZodNumber;
|
|
8059
8063
|
}>, import("../dsl.js").TableContract<{
|
|
8060
|
-
worktreeId: import("
|
|
8064
|
+
worktreeId: import("zod").ZodString;
|
|
8061
8065
|
beliefId: import("zod").ZodString;
|
|
8062
8066
|
relationType: import("zod").ZodEnum<["primary", "counterfactual", "dependency", "cascade", "conditional", "supporting", "contradicting", "alternative", "prerequisite"]>;
|
|
8063
8067
|
relationDescription: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -8077,7 +8081,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
8077
8081
|
addedAt: import("zod").ZodNumber;
|
|
8078
8082
|
updatedAt: import("zod").ZodNumber;
|
|
8079
8083
|
}>, import("../dsl.js").TableContract<{
|
|
8080
|
-
globalId: import("zod").
|
|
8084
|
+
globalId: import("zod").ZodString;
|
|
8081
8085
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8082
8086
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8083
8087
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -8090,8 +8094,8 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
8090
8094
|
rationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8091
8095
|
confidenceImpact: import("zod").ZodOptional<import("zod").ZodEnum<["high", "medium", "low"]>>;
|
|
8092
8096
|
hypothesis: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8093
|
-
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
8094
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
8097
|
+
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
8098
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
8095
8099
|
gate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8096
8100
|
campaign: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8097
8101
|
lane: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -8295,7 +8299,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
8295
8299
|
epistemicChain: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
8296
8300
|
capturedAt: import("zod").ZodNumber;
|
|
8297
8301
|
capturedBy: import("zod").ZodString;
|
|
8298
|
-
worktreeId: import("
|
|
8302
|
+
worktreeId: import("zod").ZodString;
|
|
8299
8303
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8300
8304
|
primaryBelief: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
8301
8305
|
id: import("zod").ZodString;
|
|
@@ -8479,7 +8483,7 @@ export declare const TABLE_CONTRACTS_BY_COMPONENT: {
|
|
|
8479
8483
|
verificationStatus?: string | undefined;
|
|
8480
8484
|
createdAt?: number | undefined;
|
|
8481
8485
|
}[];
|
|
8482
|
-
worktreeId: string
|
|
8486
|
+
worktreeId: string;
|
|
8483
8487
|
outcome: {
|
|
8484
8488
|
summary: string;
|
|
8485
8489
|
verdict: string;
|
|
@@ -11130,15 +11134,15 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
11130
11134
|
question: import("zod").ZodString;
|
|
11131
11135
|
status: import("zod").ZodEnum<["running", "completed", "failed"]>;
|
|
11132
11136
|
modelSlots: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
11133
|
-
linkedBeliefNodeId: import("zod").ZodOptional<import("
|
|
11137
|
+
linkedBeliefNodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11134
11138
|
replayBaselineAt: import("zod").ZodNumber;
|
|
11135
11139
|
replayHeadAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11136
11140
|
replayBaseline: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
11137
11141
|
replayDelta: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
11138
11142
|
contextBrief: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11139
11143
|
contextSnapshot: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
11140
|
-
contradictionIds: import("zod").ZodArray<import("
|
|
11141
|
-
escalationQuestionIds: import("zod").ZodArray<import("
|
|
11144
|
+
contradictionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
11145
|
+
escalationQuestionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
11142
11146
|
uncertaintyZones: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11143
11147
|
label: import("zod").ZodString;
|
|
11144
11148
|
explanation: import("zod").ZodString;
|
|
@@ -11210,7 +11214,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
11210
11214
|
triggeringEvidenceIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
11211
11215
|
triggeringQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11212
11216
|
triggeringAnswerId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11213
|
-
triggeringContradictionId: import("zod").ZodOptional<import("
|
|
11217
|
+
triggeringContradictionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11214
11218
|
triggeringWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11215
11219
|
triggeringAgentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11216
11220
|
isAgentAssessment: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -11306,6 +11310,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
11306
11310
|
modulationRationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11307
11311
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11308
11312
|
}>, import("../dsl.js").TableContract<{
|
|
11313
|
+
globalId: import("zod").ZodString;
|
|
11309
11314
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11310
11315
|
beliefId: import("zod").ZodString;
|
|
11311
11316
|
supportingInsightIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
@@ -12611,9 +12616,9 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
12611
12616
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12612
12617
|
}>, import("../dsl.js").TableContract<{
|
|
12613
12618
|
mappingId: import("zod").ZodString;
|
|
12614
|
-
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees"]>;
|
|
12619
|
+
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees", "tasks", "contradictions"]>;
|
|
12615
12620
|
legacyId: import("zod").ZodString;
|
|
12616
|
-
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
12621
|
+
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "taskId", "contradictionId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
12617
12622
|
canonicalUuid: import("zod").ZodString;
|
|
12618
12623
|
canonicalField: import("zod").ZodEnum<["globalId"]>;
|
|
12619
12624
|
status: import("zod").ZodEnum<["pending", "backfilled", "verified", "orphaned", "superseded"]>;
|
|
@@ -12839,6 +12844,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
12839
12844
|
syncStatus: import("zod").ZodOptional<import("zod").ZodEnum<["synced", "pending_edges", "edge_creation_failed"]>>;
|
|
12840
12845
|
syncError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12841
12846
|
}>, import("../dsl.js").TableContract<{
|
|
12847
|
+
globalId: import("zod").ZodString;
|
|
12842
12848
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12843
12849
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12844
12850
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -12847,14 +12853,14 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
12847
12853
|
status: import("zod").ZodEnum<["todo", "in_progress", "blocked", "done"]>;
|
|
12848
12854
|
priority: import("zod").ZodEnum<["urgent", "high", "medium", "low"]>;
|
|
12849
12855
|
dueDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12850
|
-
linkedWorktreeId: import("zod").ZodOptional<import("
|
|
12856
|
+
linkedWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12851
12857
|
linkedBeliefId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12852
12858
|
linkedQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12853
12859
|
taskType: import("zod").ZodOptional<import("zod").ZodEnum<["general", "find_evidence", "verify_claim", "research", "review", "interview", "analysis", "track_metrics"]>>;
|
|
12854
12860
|
assigneeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12855
12861
|
blockedReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12856
|
-
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
12857
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
12862
|
+
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
12863
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
12858
12864
|
sortOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12859
12865
|
executionOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12860
12866
|
subtasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -12924,13 +12930,13 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
12924
12930
|
answerExcerpt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12925
12931
|
answerTimestamp: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12926
12932
|
capturedAsInsight: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12927
|
-
insightId: import("zod").ZodOptional<import("
|
|
12933
|
+
insightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12928
12934
|
}, "strip", import("zod").ZodTypeAny, {
|
|
12929
12935
|
id: string;
|
|
12930
12936
|
questionText: string;
|
|
12931
12937
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
12932
12938
|
answered?: boolean | undefined;
|
|
12933
|
-
insightId?:
|
|
12939
|
+
insightId?: string | undefined;
|
|
12934
12940
|
linkedBeliefId?: string | undefined;
|
|
12935
12941
|
linkedQuestionId?: string | undefined;
|
|
12936
12942
|
category?: string | undefined;
|
|
@@ -13082,7 +13088,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13082
13088
|
questionText: string;
|
|
13083
13089
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
13084
13090
|
answered?: boolean | undefined;
|
|
13085
|
-
insightId?:
|
|
13091
|
+
insightId?: string | undefined;
|
|
13086
13092
|
linkedBeliefId?: string | undefined;
|
|
13087
13093
|
linkedQuestionId?: string | undefined;
|
|
13088
13094
|
category?: string | undefined;
|
|
@@ -13234,7 +13240,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13234
13240
|
} | undefined;
|
|
13235
13241
|
}>>;
|
|
13236
13242
|
capturedAsEvidence: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
13237
|
-
capturedInsightId: import("zod").ZodOptional<import("
|
|
13243
|
+
capturedInsightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13238
13244
|
capturedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
13239
13245
|
createdBy: import("zod").ZodString;
|
|
13240
13246
|
createdAt: import("zod").ZodNumber;
|
|
@@ -13263,7 +13269,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13263
13269
|
questionText: string;
|
|
13264
13270
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
13265
13271
|
answered?: boolean | undefined;
|
|
13266
|
-
insightId?:
|
|
13272
|
+
insightId?: string | undefined;
|
|
13267
13273
|
linkedBeliefId?: string | undefined;
|
|
13268
13274
|
linkedQuestionId?: string | undefined;
|
|
13269
13275
|
category?: string | undefined;
|
|
@@ -13331,7 +13337,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13331
13337
|
} | undefined;
|
|
13332
13338
|
} | undefined;
|
|
13333
13339
|
capturedAsEvidence?: boolean | undefined;
|
|
13334
|
-
capturedInsightId?:
|
|
13340
|
+
capturedInsightId?: string | undefined;
|
|
13335
13341
|
capturedAt?: number | undefined;
|
|
13336
13342
|
}, {
|
|
13337
13343
|
type: "file" | "transcript" | "note" | "call_script" | "email_template" | "research_plan" | "framework" | "checklist";
|
|
@@ -13501,7 +13507,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13501
13507
|
createdAt: import("zod").ZodNumber;
|
|
13502
13508
|
updatedAt: import("zod").ZodNumber;
|
|
13503
13509
|
}>, import("../dsl.js").TableContract<{
|
|
13504
|
-
worktreeId: import("
|
|
13510
|
+
worktreeId: import("zod").ZodString;
|
|
13505
13511
|
beliefId: import("zod").ZodString;
|
|
13506
13512
|
relationType: import("zod").ZodEnum<["primary", "counterfactual", "dependency", "cascade", "conditional", "supporting", "contradicting", "alternative", "prerequisite"]>;
|
|
13507
13513
|
relationDescription: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -13521,7 +13527,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13521
13527
|
addedAt: import("zod").ZodNumber;
|
|
13522
13528
|
updatedAt: import("zod").ZodNumber;
|
|
13523
13529
|
}>, import("../dsl.js").TableContract<{
|
|
13524
|
-
globalId: import("zod").
|
|
13530
|
+
globalId: import("zod").ZodString;
|
|
13525
13531
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13526
13532
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13527
13533
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -13534,8 +13540,8 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13534
13540
|
rationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13535
13541
|
confidenceImpact: import("zod").ZodOptional<import("zod").ZodEnum<["high", "medium", "low"]>>;
|
|
13536
13542
|
hypothesis: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13537
|
-
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
13538
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
13543
|
+
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
13544
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
13539
13545
|
gate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13540
13546
|
campaign: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
13541
13547
|
lane: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -13739,7 +13745,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13739
13745
|
epistemicChain: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
13740
13746
|
capturedAt: import("zod").ZodNumber;
|
|
13741
13747
|
capturedBy: import("zod").ZodString;
|
|
13742
|
-
worktreeId: import("
|
|
13748
|
+
worktreeId: import("zod").ZodString;
|
|
13743
13749
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13744
13750
|
primaryBelief: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
13745
13751
|
id: import("zod").ZodString;
|
|
@@ -13923,7 +13929,7 @@ export declare const ALL_TABLE_CONTRACTS: readonly [import("../dsl.js").TableCon
|
|
|
13923
13929
|
verificationStatus?: string | undefined;
|
|
13924
13930
|
createdAt?: number | undefined;
|
|
13925
13931
|
}[];
|
|
13926
|
-
worktreeId: string
|
|
13932
|
+
worktreeId: string;
|
|
13927
13933
|
outcome: {
|
|
13928
13934
|
summary: string;
|
|
13929
13935
|
verdict: string;
|
|
@@ -17293,15 +17299,15 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
17293
17299
|
question: import("zod").ZodString;
|
|
17294
17300
|
status: import("zod").ZodEnum<["running", "completed", "failed"]>;
|
|
17295
17301
|
modelSlots: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
17296
|
-
linkedBeliefNodeId: import("zod").ZodOptional<import("
|
|
17302
|
+
linkedBeliefNodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17297
17303
|
replayBaselineAt: import("zod").ZodNumber;
|
|
17298
17304
|
replayHeadAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
17299
17305
|
replayBaseline: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
17300
17306
|
replayDelta: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
17301
17307
|
contextBrief: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17302
17308
|
contextSnapshot: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
17303
|
-
contradictionIds: import("zod").ZodArray<import("
|
|
17304
|
-
escalationQuestionIds: import("zod").ZodArray<import("
|
|
17309
|
+
contradictionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
17310
|
+
escalationQuestionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
17305
17311
|
uncertaintyZones: import("zod").ZodArray<import("zod").ZodObject<{
|
|
17306
17312
|
label: import("zod").ZodString;
|
|
17307
17313
|
explanation: import("zod").ZodString;
|
|
@@ -17373,7 +17379,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
17373
17379
|
triggeringEvidenceIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
17374
17380
|
triggeringQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17375
17381
|
triggeringAnswerId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17376
|
-
triggeringContradictionId: import("zod").ZodOptional<import("
|
|
17382
|
+
triggeringContradictionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17377
17383
|
triggeringWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17378
17384
|
triggeringAgentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17379
17385
|
isAgentAssessment: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -17469,6 +17475,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
17469
17475
|
modulationRationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17470
17476
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17471
17477
|
}> | import("../dsl.js").TableContract<{
|
|
17478
|
+
globalId: import("zod").ZodString;
|
|
17472
17479
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
17473
17480
|
beliefId: import("zod").ZodString;
|
|
17474
17481
|
supportingInsightIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
@@ -18789,9 +18796,9 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
18789
18796
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
18790
18797
|
}> | import("../dsl.js").TableContract<{
|
|
18791
18798
|
mappingId: import("zod").ZodString;
|
|
18792
|
-
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees"]>;
|
|
18799
|
+
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees", "tasks", "contradictions"]>;
|
|
18793
18800
|
legacyId: import("zod").ZodString;
|
|
18794
|
-
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
18801
|
+
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "taskId", "contradictionId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
18795
18802
|
canonicalUuid: import("zod").ZodString;
|
|
18796
18803
|
canonicalField: import("zod").ZodEnum<["globalId"]>;
|
|
18797
18804
|
status: import("zod").ZodEnum<["pending", "backfilled", "verified", "orphaned", "superseded"]>;
|
|
@@ -19017,6 +19024,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19017
19024
|
syncStatus: import("zod").ZodOptional<import("zod").ZodEnum<["synced", "pending_edges", "edge_creation_failed"]>>;
|
|
19018
19025
|
syncError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19019
19026
|
}> | import("../dsl.js").TableContract<{
|
|
19027
|
+
globalId: import("zod").ZodString;
|
|
19020
19028
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19021
19029
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19022
19030
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -19025,14 +19033,14 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19025
19033
|
status: import("zod").ZodEnum<["todo", "in_progress", "blocked", "done"]>;
|
|
19026
19034
|
priority: import("zod").ZodEnum<["urgent", "high", "medium", "low"]>;
|
|
19027
19035
|
dueDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
19028
|
-
linkedWorktreeId: import("zod").ZodOptional<import("
|
|
19036
|
+
linkedWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19029
19037
|
linkedBeliefId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19030
19038
|
linkedQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19031
19039
|
taskType: import("zod").ZodOptional<import("zod").ZodEnum<["general", "find_evidence", "verify_claim", "research", "review", "interview", "analysis", "track_metrics"]>>;
|
|
19032
19040
|
assigneeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19033
19041
|
blockedReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19034
|
-
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
19035
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
19042
|
+
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
19043
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
19036
19044
|
sortOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
19037
19045
|
executionOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
19038
19046
|
subtasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -19102,13 +19110,13 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19102
19110
|
answerExcerpt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19103
19111
|
answerTimestamp: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19104
19112
|
capturedAsInsight: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
19105
|
-
insightId: import("zod").ZodOptional<import("
|
|
19113
|
+
insightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19106
19114
|
}, "strip", import("zod").ZodTypeAny, {
|
|
19107
19115
|
id: string;
|
|
19108
19116
|
questionText: string;
|
|
19109
19117
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
19110
19118
|
answered?: boolean | undefined;
|
|
19111
|
-
insightId?:
|
|
19119
|
+
insightId?: string | undefined;
|
|
19112
19120
|
linkedBeliefId?: string | undefined;
|
|
19113
19121
|
linkedQuestionId?: string | undefined;
|
|
19114
19122
|
category?: string | undefined;
|
|
@@ -19260,7 +19268,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19260
19268
|
questionText: string;
|
|
19261
19269
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
19262
19270
|
answered?: boolean | undefined;
|
|
19263
|
-
insightId?:
|
|
19271
|
+
insightId?: string | undefined;
|
|
19264
19272
|
linkedBeliefId?: string | undefined;
|
|
19265
19273
|
linkedQuestionId?: string | undefined;
|
|
19266
19274
|
category?: string | undefined;
|
|
@@ -19412,7 +19420,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19412
19420
|
} | undefined;
|
|
19413
19421
|
}>>;
|
|
19414
19422
|
capturedAsEvidence: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
19415
|
-
capturedInsightId: import("zod").ZodOptional<import("
|
|
19423
|
+
capturedInsightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19416
19424
|
capturedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
19417
19425
|
createdBy: import("zod").ZodString;
|
|
19418
19426
|
createdAt: import("zod").ZodNumber;
|
|
@@ -19441,7 +19449,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19441
19449
|
questionText: string;
|
|
19442
19450
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
19443
19451
|
answered?: boolean | undefined;
|
|
19444
|
-
insightId?:
|
|
19452
|
+
insightId?: string | undefined;
|
|
19445
19453
|
linkedBeliefId?: string | undefined;
|
|
19446
19454
|
linkedQuestionId?: string | undefined;
|
|
19447
19455
|
category?: string | undefined;
|
|
@@ -19509,7 +19517,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19509
19517
|
} | undefined;
|
|
19510
19518
|
} | undefined;
|
|
19511
19519
|
capturedAsEvidence?: boolean | undefined;
|
|
19512
|
-
capturedInsightId?:
|
|
19520
|
+
capturedInsightId?: string | undefined;
|
|
19513
19521
|
capturedAt?: number | undefined;
|
|
19514
19522
|
}, {
|
|
19515
19523
|
type: "file" | "transcript" | "note" | "call_script" | "email_template" | "research_plan" | "framework" | "checklist";
|
|
@@ -19679,7 +19687,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19679
19687
|
createdAt: import("zod").ZodNumber;
|
|
19680
19688
|
updatedAt: import("zod").ZodNumber;
|
|
19681
19689
|
}> | import("../dsl.js").TableContract<{
|
|
19682
|
-
worktreeId: import("
|
|
19690
|
+
worktreeId: import("zod").ZodString;
|
|
19683
19691
|
beliefId: import("zod").ZodString;
|
|
19684
19692
|
relationType: import("zod").ZodEnum<["primary", "counterfactual", "dependency", "cascade", "conditional", "supporting", "contradicting", "alternative", "prerequisite"]>;
|
|
19685
19693
|
relationDescription: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -19699,7 +19707,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19699
19707
|
addedAt: import("zod").ZodNumber;
|
|
19700
19708
|
updatedAt: import("zod").ZodNumber;
|
|
19701
19709
|
}> | import("../dsl.js").TableContract<{
|
|
19702
|
-
globalId: import("zod").
|
|
19710
|
+
globalId: import("zod").ZodString;
|
|
19703
19711
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19704
19712
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19705
19713
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -19712,8 +19720,8 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19712
19720
|
rationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19713
19721
|
confidenceImpact: import("zod").ZodOptional<import("zod").ZodEnum<["high", "medium", "low"]>>;
|
|
19714
19722
|
hypothesis: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19715
|
-
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
19716
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
19723
|
+
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
19724
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
19717
19725
|
gate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19718
19726
|
campaign: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
19719
19727
|
lane: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -19917,7 +19925,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
19917
19925
|
epistemicChain: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
19918
19926
|
capturedAt: import("zod").ZodNumber;
|
|
19919
19927
|
capturedBy: import("zod").ZodString;
|
|
19920
|
-
worktreeId: import("
|
|
19928
|
+
worktreeId: import("zod").ZodString;
|
|
19921
19929
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
19922
19930
|
primaryBelief: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
19923
19931
|
id: import("zod").ZodString;
|
|
@@ -20101,7 +20109,7 @@ export declare function listTableContractsByName(name: string): (import("../dsl.
|
|
|
20101
20109
|
verificationStatus?: string | undefined;
|
|
20102
20110
|
createdAt?: number | undefined;
|
|
20103
20111
|
}[];
|
|
20104
|
-
worktreeId: string
|
|
20112
|
+
worktreeId: string;
|
|
20105
20113
|
outcome: {
|
|
20106
20114
|
summary: string;
|
|
20107
20115
|
verdict: string;
|
|
@@ -22733,15 +22741,15 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
22733
22741
|
question: import("zod").ZodString;
|
|
22734
22742
|
status: import("zod").ZodEnum<["running", "completed", "failed"]>;
|
|
22735
22743
|
modelSlots: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
22736
|
-
linkedBeliefNodeId: import("zod").ZodOptional<import("
|
|
22744
|
+
linkedBeliefNodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22737
22745
|
replayBaselineAt: import("zod").ZodNumber;
|
|
22738
22746
|
replayHeadAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
22739
22747
|
replayBaseline: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
22740
22748
|
replayDelta: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
22741
22749
|
contextBrief: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22742
22750
|
contextSnapshot: import("zod").ZodOptional<import("zod").ZodAny>;
|
|
22743
|
-
contradictionIds: import("zod").ZodArray<import("
|
|
22744
|
-
escalationQuestionIds: import("zod").ZodArray<import("
|
|
22751
|
+
contradictionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
22752
|
+
escalationQuestionIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
22745
22753
|
uncertaintyZones: import("zod").ZodArray<import("zod").ZodObject<{
|
|
22746
22754
|
label: import("zod").ZodString;
|
|
22747
22755
|
explanation: import("zod").ZodString;
|
|
@@ -22813,7 +22821,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
22813
22821
|
triggeringEvidenceIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
22814
22822
|
triggeringQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22815
22823
|
triggeringAnswerId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22816
|
-
triggeringContradictionId: import("zod").ZodOptional<import("
|
|
22824
|
+
triggeringContradictionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22817
22825
|
triggeringWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22818
22826
|
triggeringAgentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22819
22827
|
isAgentAssessment: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -22909,6 +22917,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
22909
22917
|
modulationRationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22910
22918
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22911
22919
|
}> | import("../dsl.js").TableContract<{
|
|
22920
|
+
globalId: import("zod").ZodString;
|
|
22912
22921
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
22913
22922
|
beliefId: import("zod").ZodString;
|
|
22914
22923
|
supportingInsightIds: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
@@ -24229,9 +24238,9 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24229
24238
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
24230
24239
|
}> | import("../dsl.js").TableContract<{
|
|
24231
24240
|
mappingId: import("zod").ZodString;
|
|
24232
|
-
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees"]>;
|
|
24241
|
+
entityTable: import("zod").ZodEnum<["epistemicNodes", "epistemicEdges", "worktrees", "tasks", "contradictions"]>;
|
|
24233
24242
|
legacyId: import("zod").ZodString;
|
|
24234
|
-
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
24243
|
+
legacyField: import("zod").ZodEnum<["_id", "nodeId", "edgeId", "beliefId", "evidenceId", "insightId", "questionId", "topicId", "worktreeId", "taskId", "contradictionId", "globalId", "fromNodeId", "toNodeId", "targetBeliefIds", "targetQuestionIds"]>;
|
|
24235
24244
|
canonicalUuid: import("zod").ZodString;
|
|
24236
24245
|
canonicalField: import("zod").ZodEnum<["globalId"]>;
|
|
24237
24246
|
status: import("zod").ZodEnum<["pending", "backfilled", "verified", "orphaned", "superseded"]>;
|
|
@@ -24457,6 +24466,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24457
24466
|
syncStatus: import("zod").ZodOptional<import("zod").ZodEnum<["synced", "pending_edges", "edge_creation_failed"]>>;
|
|
24458
24467
|
syncError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24459
24468
|
}> | import("../dsl.js").TableContract<{
|
|
24469
|
+
globalId: import("zod").ZodString;
|
|
24460
24470
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24461
24471
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24462
24472
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -24465,14 +24475,14 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24465
24475
|
status: import("zod").ZodEnum<["todo", "in_progress", "blocked", "done"]>;
|
|
24466
24476
|
priority: import("zod").ZodEnum<["urgent", "high", "medium", "low"]>;
|
|
24467
24477
|
dueDate: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
24468
|
-
linkedWorktreeId: import("zod").ZodOptional<import("
|
|
24478
|
+
linkedWorktreeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24469
24479
|
linkedBeliefId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24470
24480
|
linkedQuestionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24471
24481
|
taskType: import("zod").ZodOptional<import("zod").ZodEnum<["general", "find_evidence", "verify_claim", "research", "review", "interview", "analysis", "track_metrics"]>>;
|
|
24472
24482
|
assigneeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24473
24483
|
blockedReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24474
|
-
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
24475
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
24484
|
+
blockedBy: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
24485
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
24476
24486
|
sortOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
24477
24487
|
executionOrder: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
24478
24488
|
subtasks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -24542,13 +24552,13 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24542
24552
|
answerExcerpt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24543
24553
|
answerTimestamp: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24544
24554
|
capturedAsInsight: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
24545
|
-
insightId: import("zod").ZodOptional<import("
|
|
24555
|
+
insightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24546
24556
|
}, "strip", import("zod").ZodTypeAny, {
|
|
24547
24557
|
id: string;
|
|
24548
24558
|
questionText: string;
|
|
24549
24559
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
24550
24560
|
answered?: boolean | undefined;
|
|
24551
|
-
insightId?:
|
|
24561
|
+
insightId?: string | undefined;
|
|
24552
24562
|
linkedBeliefId?: string | undefined;
|
|
24553
24563
|
linkedQuestionId?: string | undefined;
|
|
24554
24564
|
category?: string | undefined;
|
|
@@ -24700,7 +24710,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24700
24710
|
questionText: string;
|
|
24701
24711
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
24702
24712
|
answered?: boolean | undefined;
|
|
24703
|
-
insightId?:
|
|
24713
|
+
insightId?: string | undefined;
|
|
24704
24714
|
linkedBeliefId?: string | undefined;
|
|
24705
24715
|
linkedQuestionId?: string | undefined;
|
|
24706
24716
|
category?: string | undefined;
|
|
@@ -24852,7 +24862,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24852
24862
|
} | undefined;
|
|
24853
24863
|
}>>;
|
|
24854
24864
|
capturedAsEvidence: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
24855
|
-
capturedInsightId: import("zod").ZodOptional<import("
|
|
24865
|
+
capturedInsightId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
24856
24866
|
capturedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
24857
24867
|
createdBy: import("zod").ZodString;
|
|
24858
24868
|
createdAt: import("zod").ZodNumber;
|
|
@@ -24881,7 +24891,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24881
24891
|
questionText: string;
|
|
24882
24892
|
priority?: "must_ask" | "nice_to_have" | undefined;
|
|
24883
24893
|
answered?: boolean | undefined;
|
|
24884
|
-
insightId?:
|
|
24894
|
+
insightId?: string | undefined;
|
|
24885
24895
|
linkedBeliefId?: string | undefined;
|
|
24886
24896
|
linkedQuestionId?: string | undefined;
|
|
24887
24897
|
category?: string | undefined;
|
|
@@ -24949,7 +24959,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
24949
24959
|
} | undefined;
|
|
24950
24960
|
} | undefined;
|
|
24951
24961
|
capturedAsEvidence?: boolean | undefined;
|
|
24952
|
-
capturedInsightId?:
|
|
24962
|
+
capturedInsightId?: string | undefined;
|
|
24953
24963
|
capturedAt?: number | undefined;
|
|
24954
24964
|
}, {
|
|
24955
24965
|
type: "file" | "transcript" | "note" | "call_script" | "email_template" | "research_plan" | "framework" | "checklist";
|
|
@@ -25119,7 +25129,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
25119
25129
|
createdAt: import("zod").ZodNumber;
|
|
25120
25130
|
updatedAt: import("zod").ZodNumber;
|
|
25121
25131
|
}> | import("../dsl.js").TableContract<{
|
|
25122
|
-
worktreeId: import("
|
|
25132
|
+
worktreeId: import("zod").ZodString;
|
|
25123
25133
|
beliefId: import("zod").ZodString;
|
|
25124
25134
|
relationType: import("zod").ZodEnum<["primary", "counterfactual", "dependency", "cascade", "conditional", "supporting", "contradicting", "alternative", "prerequisite"]>;
|
|
25125
25135
|
relationDescription: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -25139,7 +25149,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
25139
25149
|
addedAt: import("zod").ZodNumber;
|
|
25140
25150
|
updatedAt: import("zod").ZodNumber;
|
|
25141
25151
|
}> | import("../dsl.js").TableContract<{
|
|
25142
|
-
globalId: import("zod").
|
|
25152
|
+
globalId: import("zod").ZodString;
|
|
25143
25153
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
25144
25154
|
tenantId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
25145
25155
|
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -25152,8 +25162,8 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
25152
25162
|
rationale: import("zod").ZodOptional<import("zod").ZodString>;
|
|
25153
25163
|
confidenceImpact: import("zod").ZodOptional<import("zod").ZodEnum<["high", "medium", "low"]>>;
|
|
25154
25164
|
hypothesis: import("zod").ZodOptional<import("zod").ZodString>;
|
|
25155
|
-
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
25156
|
-
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("
|
|
25165
|
+
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
25166
|
+
blocks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
25157
25167
|
gate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
25158
25168
|
campaign: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
25159
25169
|
lane: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -25357,7 +25367,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
25357
25367
|
epistemicChain: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
25358
25368
|
capturedAt: import("zod").ZodNumber;
|
|
25359
25369
|
capturedBy: import("zod").ZodString;
|
|
25360
|
-
worktreeId: import("
|
|
25370
|
+
worktreeId: import("zod").ZodString;
|
|
25361
25371
|
topicId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
25362
25372
|
primaryBelief: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
25363
25373
|
id: import("zod").ZodString;
|
|
@@ -25541,7 +25551,7 @@ export declare function getTableContract(name: string, component?: string): impo
|
|
|
25541
25551
|
verificationStatus?: string | undefined;
|
|
25542
25552
|
createdAt?: number | undefined;
|
|
25543
25553
|
}[];
|
|
25544
|
-
worktreeId: string
|
|
25554
|
+
worktreeId: string;
|
|
25545
25555
|
outcome: {
|
|
25546
25556
|
summary: string;
|
|
25547
25557
|
verdict: string;
|