@c4a/context 0.6.18 → 0.7.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.
Files changed (130) hide show
  1. package/README.md +5 -5
  2. package/README.zh-CN.md +5 -5
  3. package/codeIndexPlan.d.ts +84 -0
  4. package/contracts.d.ts +2 -1
  5. package/docs/README.md +7 -0
  6. package/docs/README.zh-CN.md +5 -0
  7. package/docs/getting-started.md +12 -12
  8. package/docs/guides/agent-guide.md +18 -9
  9. package/docs/guides/code-indexer-skill-authoring.md +124 -0
  10. package/docs/guides/indexer-provider-and-customization.md +140 -0
  11. package/docs/guides/lark-resources.md +7 -0
  12. package/docs/guides/markdown-indexer-skill-authoring.md +118 -0
  13. package/docs/guides/package-outputs.md +3 -3
  14. package/docs/reference/code-extractors.md +7 -6
  15. package/docs/reference/indexer-provider-protocol.md +819 -0
  16. package/docs/reference/package-templates.md +18 -10
  17. package/docs/reference/project-api.md +49 -24
  18. package/index.d.ts +48 -2
  19. package/index.js +28239 -3948
  20. package/indexerAgentStepProtocol.d.ts +9391 -0
  21. package/indexerArtifactDependencies.d.ts +689 -0
  22. package/indexerArtifactPolicy.d.ts +335 -0
  23. package/indexerArtifactResult.d.ts +2010 -0
  24. package/indexerAuditFacts.d.ts +66 -0
  25. package/indexerAuditOverrideReadiness.d.ts +27 -0
  26. package/indexerAuditProtocol.d.ts +238 -0
  27. package/indexerAuditRevision.d.ts +726 -0
  28. package/indexerAuditRevisionActions.d.ts +236 -0
  29. package/indexerAuthoringFixture.d.ts +152 -0
  30. package/indexerBaseQuestionAmendment.d.ts +2403 -0
  31. package/indexerBenchmark.d.ts +1062 -0
  32. package/indexerCandidateCompile.d.ts +801 -0
  33. package/indexerCapabilityGroupEvidence.d.ts +129 -0
  34. package/indexerCatalogFallback.d.ts +1262 -0
  35. package/indexerCollectionMapping.d.ts +75 -0
  36. package/indexerContentLayers.d.ts +137 -0
  37. package/indexerControlledInvocation.d.ts +512 -0
  38. package/indexerControlledProgram.d.ts +12535 -0
  39. package/indexerCoreExports.d.ts +21 -0
  40. package/indexerCustomizationDraft.d.ts +13800 -0
  41. package/indexerCustomizationLadder.d.ts +103 -0
  42. package/indexerDependencyView.d.ts +1610 -0
  43. package/indexerEvidenceAdapterResult.d.ts +504 -0
  44. package/indexerExampleDecision.d.ts +1606 -0
  45. package/indexerExampleIdentity.d.ts +132 -0
  46. package/indexerExampleIdentityAudit.d.ts +70 -0
  47. package/indexerExampleLinkageAudit.d.ts +80 -0
  48. package/indexerGeneratedAuthoringAudit.d.ts +208 -0
  49. package/indexerIncrementalImpact.d.ts +221 -0
  50. package/indexerInventoryDisposition.d.ts +443 -0
  51. package/indexerLayerComposition.d.ts +1652 -0
  52. package/indexerLayoutChange.d.ts +329 -0
  53. package/indexerLayoutProposalSet.d.ts +447 -0
  54. package/indexerLayoutResolver.d.ts +342 -0
  55. package/indexerLayoutTransition.d.ts +247 -0
  56. package/indexerLifecycle.d.ts +53 -0
  57. package/indexerMainLifecycle.d.ts +258 -0
  58. package/indexerMainRunLedger.d.ts +888 -0
  59. package/indexerMainRunProtocol.d.ts +6471 -0
  60. package/indexerMainWorkset.d.ts +2141 -0
  61. package/indexerMaterialAnswer.d.ts +738 -0
  62. package/indexerMaterialAnswerActualization.d.ts +91 -0
  63. package/indexerMaterialAnswerExecutionPlan.d.ts +2887 -0
  64. package/indexerMaterialAnswerFlow.d.ts +63 -0
  65. package/indexerMaterialAnswerLayout.d.ts +76 -0
  66. package/indexerMaterialAnswerReview.d.ts +217 -0
  67. package/indexerMaterialAnswerReviewRoute.d.ts +6145 -0
  68. package/indexerMaterialAnswerRunLedger.d.ts +918 -0
  69. package/indexerMaterialAnswerRunProtocol.d.ts +1253 -0
  70. package/indexerMaterialGapLedger.d.ts +3111 -0
  71. package/indexerMaterialQuestionExclusion.d.ts +129 -0
  72. package/indexerMaterialQuestionWorkset.d.ts +508 -0
  73. package/indexerNavigationArtifactGraph.d.ts +5 -0
  74. package/indexerNavigationArtifactPlan.d.ts +39 -0
  75. package/indexerOverlayQuestionAmendment.d.ts +2551 -0
  76. package/indexerOverlayQuestionApplyProposal.d.ts +4697 -0
  77. package/indexerOverlayTrust.d.ts +1425 -0
  78. package/indexerParserCoordinate.d.ts +222 -0
  79. package/indexerParserFactView.d.ts +503 -0
  80. package/indexerPartitionConvergence.d.ts +496 -0
  81. package/indexerPartitionPlan.d.ts +919 -0
  82. package/indexerPartitionStrategyResolution.d.ts +594 -0
  83. package/indexerPhysicalArtifactAudit.d.ts +247 -0
  84. package/indexerPhysicalArtifactManifest.d.ts +449 -0
  85. package/indexerPlannedMaterialAnswer.d.ts +116 -0
  86. package/indexerPostAuthorComposition.d.ts +2000 -0
  87. package/indexerPostAuthorRunLedger.d.ts +1972 -0
  88. package/indexerPrimaryProjection.d.ts +262 -0
  89. package/indexerProfileContract.d.ts +3034 -0
  90. package/indexerProfileMetricAudit.d.ts +218 -0
  91. package/indexerProgramExecutionAuthorization.d.ts +227 -0
  92. package/indexerProgramRunProtocol.d.ts +7642 -0
  93. package/indexerProjectProposal.d.ts +2807 -0
  94. package/indexerProjectedArtifactFanOutAudit.d.ts +159 -0
  95. package/indexerProjectedArtifactPlan.d.ts +217 -0
  96. package/indexerProtocolCommon.d.ts +29 -0
  97. package/indexerProvider.d.ts +2573 -0
  98. package/indexerProviderComposition.d.ts +1357 -0
  99. package/indexerProviderContractReferences.d.ts +13 -0
  100. package/indexerProviderProfileResolution.d.ts +20 -0
  101. package/indexerProviderResolution.d.ts +752 -0
  102. package/indexerProviderResolutionAction.d.ts +678 -0
  103. package/indexerProviderRouting.d.ts +3909 -0
  104. package/indexerProviderSelectionProposal.d.ts +3311 -0
  105. package/indexerQuestionAuthority.d.ts +419 -0
  106. package/indexerReaderTargetInventory.d.ts +161 -0
  107. package/indexerReferenceOnlyAudit.d.ts +90 -0
  108. package/indexerRegistry.d.ts +3019 -0
  109. package/indexerRequirementComparison.d.ts +44 -0
  110. package/indexerRequirementConfirmation.d.ts +1193 -0
  111. package/indexerRequirementLifecycle.d.ts +3314 -0
  112. package/indexerRestrictedSelector.d.ts +63 -0
  113. package/indexerResultReconciliation.d.ts +6844 -0
  114. package/indexerResultReconciliationRun.d.ts +15 -0
  115. package/indexerRunEnvelope.d.ts +384 -0
  116. package/indexerRunProtocolCommon.d.ts +21 -0
  117. package/indexerSharedArtifactFingerprint.d.ts +33 -0
  118. package/indexerStructuredDeclaration.d.ts +513 -0
  119. package/indexerSubjectCatalog.d.ts +230 -0
  120. package/indexerSubjectIdentity.d.ts +19 -0
  121. package/indexerSubjectKeyAuthority.d.ts +785 -0
  122. package/indexerTemplateRendering.d.ts +485 -0
  123. package/indexerToolSnapshot.d.ts +431 -0
  124. package/indexerWorksetRead.d.ts +287 -0
  125. package/package.json +1 -1
  126. package/phases.d.ts +11 -9
  127. package/templates/package-templates/kb/AGENTS.md +1 -1
  128. package/templates/package-templates/kb/skills/knowledge-query/SKILL.md +1 -1
  129. package/templates/package-templates.zh-CN/kb/AGENTS.md +1 -1
  130. package/templates/package-templates.zh-CN/kb/skills/knowledge-query/SKILL.md +1 -1
@@ -0,0 +1,2551 @@
1
+ import { z } from "zod";
2
+ import { type RequirementContractionComparison } from "./indexerRequirementComparison.js";
3
+ import { type IndexerRegistry } from "./indexerRegistry.js";
4
+ import { validateIndexerContractOverlay, type IndexerOverlayTrustReceipt } from "./indexerOverlayTrust.js";
5
+ import type { IndexerOperatorContract, IndexerProfileContract } from "./indexerProfileContract.js";
6
+ import { type IndexerResolvedMaterialQuestion } from "./indexerQuestionAuthority.js";
7
+ export declare const indexerOverlayQuestionAmendmentSchema: z.ZodObject<{
8
+ protocol: z.ZodLiteral<"context.indexer.overlay-question-amendment/v1">;
9
+ project_ref: z.ZodString;
10
+ requirement_id: z.ZodEffects<z.ZodString, string, string>;
11
+ base_requirement_digest: z.ZodString;
12
+ target_requirement: z.ZodEffects<z.ZodObject<{
13
+ id: z.ZodEffects<z.ZodString, string, string>;
14
+ reader_goals: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
15
+ coverage_domains: z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodEnum<["required", "optional", "out-of-scope"]>>;
16
+ questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
17
+ ref: z.ZodString;
18
+ authority: z.ZodObject<{
19
+ kind: z.ZodEnum<["cli-base-contract", "verified-contract-overlay"]>;
20
+ ref: z.ZodString;
21
+ digest: z.ZodString;
22
+ }, "strict", z.ZodTypeAny, {
23
+ kind: "cli-base-contract" | "verified-contract-overlay";
24
+ ref: string;
25
+ digest: string;
26
+ }, {
27
+ kind: "cli-base-contract" | "verified-contract-overlay";
28
+ ref: string;
29
+ digest: string;
30
+ }>;
31
+ contract_version: z.ZodNumber;
32
+ contract_digest: z.ZodString;
33
+ }, "strict", z.ZodTypeAny, {
34
+ ref: string;
35
+ authority: {
36
+ kind: "cli-base-contract" | "verified-contract-overlay";
37
+ ref: string;
38
+ digest: string;
39
+ };
40
+ contract_version: number;
41
+ contract_digest: string;
42
+ }, {
43
+ ref: string;
44
+ authority: {
45
+ kind: "cli-base-contract" | "verified-contract-overlay";
46
+ ref: string;
47
+ digest: string;
48
+ };
49
+ contract_version: number;
50
+ contract_digest: string;
51
+ }>, "many">>;
52
+ target_scope: z.ZodEffects<z.ZodObject<{
53
+ targets: z.ZodArray<z.ZodEffects<z.ZodObject<{
54
+ source_ref: z.ZodString;
55
+ module_refs: z.ZodArray<z.ZodString, "many">;
56
+ }, "strict", z.ZodTypeAny, {
57
+ source_ref: string;
58
+ module_refs: string[];
59
+ }, {
60
+ source_ref: string;
61
+ module_refs: string[];
62
+ }>, {
63
+ source_ref: string;
64
+ module_refs: string[];
65
+ }, {
66
+ source_ref: string;
67
+ module_refs: string[];
68
+ }>, "many">;
69
+ }, "strict", z.ZodTypeAny, {
70
+ targets: {
71
+ source_ref: string;
72
+ module_refs: string[];
73
+ }[];
74
+ }, {
75
+ targets: {
76
+ source_ref: string;
77
+ module_refs: string[];
78
+ }[];
79
+ }>, {
80
+ targets: {
81
+ source_ref: string;
82
+ module_refs: string[];
83
+ }[];
84
+ }, {
85
+ targets: {
86
+ source_ref: string;
87
+ module_refs: string[];
88
+ }[];
89
+ }>;
90
+ evidence_source_scope: z.ZodEffects<z.ZodObject<{
91
+ targets: z.ZodArray<z.ZodEffects<z.ZodObject<{
92
+ source_ref: z.ZodString;
93
+ module_refs: z.ZodArray<z.ZodString, "many">;
94
+ }, "strict", z.ZodTypeAny, {
95
+ source_ref: string;
96
+ module_refs: string[];
97
+ }, {
98
+ source_ref: string;
99
+ module_refs: string[];
100
+ }>, {
101
+ source_ref: string;
102
+ module_refs: string[];
103
+ }, {
104
+ source_ref: string;
105
+ module_refs: string[];
106
+ }>, "many">;
107
+ }, "strict", z.ZodTypeAny, {
108
+ targets: {
109
+ source_ref: string;
110
+ module_refs: string[];
111
+ }[];
112
+ }, {
113
+ targets: {
114
+ source_ref: string;
115
+ module_refs: string[];
116
+ }[];
117
+ }>, {
118
+ targets: {
119
+ source_ref: string;
120
+ module_refs: string[];
121
+ }[];
122
+ }, {
123
+ targets: {
124
+ source_ref: string;
125
+ module_refs: string[];
126
+ }[];
127
+ }>;
128
+ exclusions: z.ZodOptional<z.ZodArray<z.ZodObject<{
129
+ id: z.ZodEffects<z.ZodString, string, string>;
130
+ scope: z.ZodEffects<z.ZodObject<{
131
+ targets: z.ZodArray<z.ZodEffects<z.ZodObject<{
132
+ source_ref: z.ZodString;
133
+ module_refs: z.ZodArray<z.ZodString, "many">;
134
+ }, "strict", z.ZodTypeAny, {
135
+ source_ref: string;
136
+ module_refs: string[];
137
+ }, {
138
+ source_ref: string;
139
+ module_refs: string[];
140
+ }>, {
141
+ source_ref: string;
142
+ module_refs: string[];
143
+ }, {
144
+ source_ref: string;
145
+ module_refs: string[];
146
+ }>, "many">;
147
+ }, "strict", z.ZodTypeAny, {
148
+ targets: {
149
+ source_ref: string;
150
+ module_refs: string[];
151
+ }[];
152
+ }, {
153
+ targets: {
154
+ source_ref: string;
155
+ module_refs: string[];
156
+ }[];
157
+ }>, {
158
+ targets: {
159
+ source_ref: string;
160
+ module_refs: string[];
161
+ }[];
162
+ }, {
163
+ targets: {
164
+ source_ref: string;
165
+ module_refs: string[];
166
+ }[];
167
+ }>;
168
+ reason: z.ZodString;
169
+ }, "strict", z.ZodTypeAny, {
170
+ id: string;
171
+ scope: {
172
+ targets: {
173
+ source_ref: string;
174
+ module_refs: string[];
175
+ }[];
176
+ };
177
+ reason: string;
178
+ }, {
179
+ id: string;
180
+ scope: {
181
+ targets: {
182
+ source_ref: string;
183
+ module_refs: string[];
184
+ }[];
185
+ };
186
+ reason: string;
187
+ }>, "many">>;
188
+ }, "strict", z.ZodTypeAny, {
189
+ id: string;
190
+ reader_goals: string[];
191
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
192
+ target_scope: {
193
+ targets: {
194
+ source_ref: string;
195
+ module_refs: string[];
196
+ }[];
197
+ };
198
+ evidence_source_scope: {
199
+ targets: {
200
+ source_ref: string;
201
+ module_refs: string[];
202
+ }[];
203
+ };
204
+ questions?: {
205
+ ref: string;
206
+ authority: {
207
+ kind: "cli-base-contract" | "verified-contract-overlay";
208
+ ref: string;
209
+ digest: string;
210
+ };
211
+ contract_version: number;
212
+ contract_digest: string;
213
+ }[] | undefined;
214
+ exclusions?: {
215
+ id: string;
216
+ scope: {
217
+ targets: {
218
+ source_ref: string;
219
+ module_refs: string[];
220
+ }[];
221
+ };
222
+ reason: string;
223
+ }[] | undefined;
224
+ }, {
225
+ id: string;
226
+ reader_goals: string[];
227
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
228
+ target_scope: {
229
+ targets: {
230
+ source_ref: string;
231
+ module_refs: string[];
232
+ }[];
233
+ };
234
+ evidence_source_scope: {
235
+ targets: {
236
+ source_ref: string;
237
+ module_refs: string[];
238
+ }[];
239
+ };
240
+ questions?: {
241
+ ref: string;
242
+ authority: {
243
+ kind: "cli-base-contract" | "verified-contract-overlay";
244
+ ref: string;
245
+ digest: string;
246
+ };
247
+ contract_version: number;
248
+ contract_digest: string;
249
+ }[] | undefined;
250
+ exclusions?: {
251
+ id: string;
252
+ scope: {
253
+ targets: {
254
+ source_ref: string;
255
+ module_refs: string[];
256
+ }[];
257
+ };
258
+ reason: string;
259
+ }[] | undefined;
260
+ }>, {
261
+ id: string;
262
+ reader_goals: string[];
263
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
264
+ target_scope: {
265
+ targets: {
266
+ source_ref: string;
267
+ module_refs: string[];
268
+ }[];
269
+ };
270
+ evidence_source_scope: {
271
+ targets: {
272
+ source_ref: string;
273
+ module_refs: string[];
274
+ }[];
275
+ };
276
+ questions?: {
277
+ ref: string;
278
+ authority: {
279
+ kind: "cli-base-contract" | "verified-contract-overlay";
280
+ ref: string;
281
+ digest: string;
282
+ };
283
+ contract_version: number;
284
+ contract_digest: string;
285
+ }[] | undefined;
286
+ exclusions?: {
287
+ id: string;
288
+ scope: {
289
+ targets: {
290
+ source_ref: string;
291
+ module_refs: string[];
292
+ }[];
293
+ };
294
+ reason: string;
295
+ }[] | undefined;
296
+ }, {
297
+ id: string;
298
+ reader_goals: string[];
299
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
300
+ target_scope: {
301
+ targets: {
302
+ source_ref: string;
303
+ module_refs: string[];
304
+ }[];
305
+ };
306
+ evidence_source_scope: {
307
+ targets: {
308
+ source_ref: string;
309
+ module_refs: string[];
310
+ }[];
311
+ };
312
+ questions?: {
313
+ ref: string;
314
+ authority: {
315
+ kind: "cli-base-contract" | "verified-contract-overlay";
316
+ ref: string;
317
+ digest: string;
318
+ };
319
+ contract_version: number;
320
+ contract_digest: string;
321
+ }[] | undefined;
322
+ exclusions?: {
323
+ id: string;
324
+ scope: {
325
+ targets: {
326
+ source_ref: string;
327
+ module_refs: string[];
328
+ }[];
329
+ };
330
+ reason: string;
331
+ }[] | undefined;
332
+ }>;
333
+ target_requirement_digest: z.ZodString;
334
+ base_requirement_set_digest: z.ZodString;
335
+ target_requirement_set_digest: z.ZodString;
336
+ target_registry: z.ZodEffects<z.ZodObject<{
337
+ protocol: z.ZodLiteral<"context.indexer.registry/v1">;
338
+ requirements: z.ZodArray<z.ZodEffects<z.ZodObject<{
339
+ id: z.ZodEffects<z.ZodString, string, string>;
340
+ reader_goals: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
341
+ coverage_domains: z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodEnum<["required", "optional", "out-of-scope"]>>;
342
+ questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
343
+ ref: z.ZodString;
344
+ authority: z.ZodObject<{
345
+ kind: z.ZodEnum<["cli-base-contract", "verified-contract-overlay"]>;
346
+ ref: z.ZodString;
347
+ digest: z.ZodString;
348
+ }, "strict", z.ZodTypeAny, {
349
+ kind: "cli-base-contract" | "verified-contract-overlay";
350
+ ref: string;
351
+ digest: string;
352
+ }, {
353
+ kind: "cli-base-contract" | "verified-contract-overlay";
354
+ ref: string;
355
+ digest: string;
356
+ }>;
357
+ contract_version: z.ZodNumber;
358
+ contract_digest: z.ZodString;
359
+ }, "strict", z.ZodTypeAny, {
360
+ ref: string;
361
+ authority: {
362
+ kind: "cli-base-contract" | "verified-contract-overlay";
363
+ ref: string;
364
+ digest: string;
365
+ };
366
+ contract_version: number;
367
+ contract_digest: string;
368
+ }, {
369
+ ref: string;
370
+ authority: {
371
+ kind: "cli-base-contract" | "verified-contract-overlay";
372
+ ref: string;
373
+ digest: string;
374
+ };
375
+ contract_version: number;
376
+ contract_digest: string;
377
+ }>, "many">>;
378
+ target_scope: z.ZodEffects<z.ZodObject<{
379
+ targets: z.ZodArray<z.ZodEffects<z.ZodObject<{
380
+ source_ref: z.ZodString;
381
+ module_refs: z.ZodArray<z.ZodString, "many">;
382
+ }, "strict", z.ZodTypeAny, {
383
+ source_ref: string;
384
+ module_refs: string[];
385
+ }, {
386
+ source_ref: string;
387
+ module_refs: string[];
388
+ }>, {
389
+ source_ref: string;
390
+ module_refs: string[];
391
+ }, {
392
+ source_ref: string;
393
+ module_refs: string[];
394
+ }>, "many">;
395
+ }, "strict", z.ZodTypeAny, {
396
+ targets: {
397
+ source_ref: string;
398
+ module_refs: string[];
399
+ }[];
400
+ }, {
401
+ targets: {
402
+ source_ref: string;
403
+ module_refs: string[];
404
+ }[];
405
+ }>, {
406
+ targets: {
407
+ source_ref: string;
408
+ module_refs: string[];
409
+ }[];
410
+ }, {
411
+ targets: {
412
+ source_ref: string;
413
+ module_refs: string[];
414
+ }[];
415
+ }>;
416
+ evidence_source_scope: z.ZodEffects<z.ZodObject<{
417
+ targets: z.ZodArray<z.ZodEffects<z.ZodObject<{
418
+ source_ref: z.ZodString;
419
+ module_refs: z.ZodArray<z.ZodString, "many">;
420
+ }, "strict", z.ZodTypeAny, {
421
+ source_ref: string;
422
+ module_refs: string[];
423
+ }, {
424
+ source_ref: string;
425
+ module_refs: string[];
426
+ }>, {
427
+ source_ref: string;
428
+ module_refs: string[];
429
+ }, {
430
+ source_ref: string;
431
+ module_refs: string[];
432
+ }>, "many">;
433
+ }, "strict", z.ZodTypeAny, {
434
+ targets: {
435
+ source_ref: string;
436
+ module_refs: string[];
437
+ }[];
438
+ }, {
439
+ targets: {
440
+ source_ref: string;
441
+ module_refs: string[];
442
+ }[];
443
+ }>, {
444
+ targets: {
445
+ source_ref: string;
446
+ module_refs: string[];
447
+ }[];
448
+ }, {
449
+ targets: {
450
+ source_ref: string;
451
+ module_refs: string[];
452
+ }[];
453
+ }>;
454
+ exclusions: z.ZodOptional<z.ZodArray<z.ZodObject<{
455
+ id: z.ZodEffects<z.ZodString, string, string>;
456
+ scope: z.ZodEffects<z.ZodObject<{
457
+ targets: z.ZodArray<z.ZodEffects<z.ZodObject<{
458
+ source_ref: z.ZodString;
459
+ module_refs: z.ZodArray<z.ZodString, "many">;
460
+ }, "strict", z.ZodTypeAny, {
461
+ source_ref: string;
462
+ module_refs: string[];
463
+ }, {
464
+ source_ref: string;
465
+ module_refs: string[];
466
+ }>, {
467
+ source_ref: string;
468
+ module_refs: string[];
469
+ }, {
470
+ source_ref: string;
471
+ module_refs: string[];
472
+ }>, "many">;
473
+ }, "strict", z.ZodTypeAny, {
474
+ targets: {
475
+ source_ref: string;
476
+ module_refs: string[];
477
+ }[];
478
+ }, {
479
+ targets: {
480
+ source_ref: string;
481
+ module_refs: string[];
482
+ }[];
483
+ }>, {
484
+ targets: {
485
+ source_ref: string;
486
+ module_refs: string[];
487
+ }[];
488
+ }, {
489
+ targets: {
490
+ source_ref: string;
491
+ module_refs: string[];
492
+ }[];
493
+ }>;
494
+ reason: z.ZodString;
495
+ }, "strict", z.ZodTypeAny, {
496
+ id: string;
497
+ scope: {
498
+ targets: {
499
+ source_ref: string;
500
+ module_refs: string[];
501
+ }[];
502
+ };
503
+ reason: string;
504
+ }, {
505
+ id: string;
506
+ scope: {
507
+ targets: {
508
+ source_ref: string;
509
+ module_refs: string[];
510
+ }[];
511
+ };
512
+ reason: string;
513
+ }>, "many">>;
514
+ }, "strict", z.ZodTypeAny, {
515
+ id: string;
516
+ reader_goals: string[];
517
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
518
+ target_scope: {
519
+ targets: {
520
+ source_ref: string;
521
+ module_refs: string[];
522
+ }[];
523
+ };
524
+ evidence_source_scope: {
525
+ targets: {
526
+ source_ref: string;
527
+ module_refs: string[];
528
+ }[];
529
+ };
530
+ questions?: {
531
+ ref: string;
532
+ authority: {
533
+ kind: "cli-base-contract" | "verified-contract-overlay";
534
+ ref: string;
535
+ digest: string;
536
+ };
537
+ contract_version: number;
538
+ contract_digest: string;
539
+ }[] | undefined;
540
+ exclusions?: {
541
+ id: string;
542
+ scope: {
543
+ targets: {
544
+ source_ref: string;
545
+ module_refs: string[];
546
+ }[];
547
+ };
548
+ reason: string;
549
+ }[] | undefined;
550
+ }, {
551
+ id: string;
552
+ reader_goals: string[];
553
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
554
+ target_scope: {
555
+ targets: {
556
+ source_ref: string;
557
+ module_refs: string[];
558
+ }[];
559
+ };
560
+ evidence_source_scope: {
561
+ targets: {
562
+ source_ref: string;
563
+ module_refs: string[];
564
+ }[];
565
+ };
566
+ questions?: {
567
+ ref: string;
568
+ authority: {
569
+ kind: "cli-base-contract" | "verified-contract-overlay";
570
+ ref: string;
571
+ digest: string;
572
+ };
573
+ contract_version: number;
574
+ contract_digest: string;
575
+ }[] | undefined;
576
+ exclusions?: {
577
+ id: string;
578
+ scope: {
579
+ targets: {
580
+ source_ref: string;
581
+ module_refs: string[];
582
+ }[];
583
+ };
584
+ reason: string;
585
+ }[] | undefined;
586
+ }>, {
587
+ id: string;
588
+ reader_goals: string[];
589
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
590
+ target_scope: {
591
+ targets: {
592
+ source_ref: string;
593
+ module_refs: string[];
594
+ }[];
595
+ };
596
+ evidence_source_scope: {
597
+ targets: {
598
+ source_ref: string;
599
+ module_refs: string[];
600
+ }[];
601
+ };
602
+ questions?: {
603
+ ref: string;
604
+ authority: {
605
+ kind: "cli-base-contract" | "verified-contract-overlay";
606
+ ref: string;
607
+ digest: string;
608
+ };
609
+ contract_version: number;
610
+ contract_digest: string;
611
+ }[] | undefined;
612
+ exclusions?: {
613
+ id: string;
614
+ scope: {
615
+ targets: {
616
+ source_ref: string;
617
+ module_refs: string[];
618
+ }[];
619
+ };
620
+ reason: string;
621
+ }[] | undefined;
622
+ }, {
623
+ id: string;
624
+ reader_goals: string[];
625
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
626
+ target_scope: {
627
+ targets: {
628
+ source_ref: string;
629
+ module_refs: string[];
630
+ }[];
631
+ };
632
+ evidence_source_scope: {
633
+ targets: {
634
+ source_ref: string;
635
+ module_refs: string[];
636
+ }[];
637
+ };
638
+ questions?: {
639
+ ref: string;
640
+ authority: {
641
+ kind: "cli-base-contract" | "verified-contract-overlay";
642
+ ref: string;
643
+ digest: string;
644
+ };
645
+ contract_version: number;
646
+ contract_digest: string;
647
+ }[] | undefined;
648
+ exclusions?: {
649
+ id: string;
650
+ scope: {
651
+ targets: {
652
+ source_ref: string;
653
+ module_refs: string[];
654
+ }[];
655
+ };
656
+ reason: string;
657
+ }[] | undefined;
658
+ }>, "many">;
659
+ indexers: z.ZodArray<z.ZodEffects<z.ZodObject<{
660
+ id: z.ZodEffects<z.ZodString, string, string>;
661
+ operations: z.ZodArray<z.ZodEnum<["main-index", "material-answer"]>, "many">;
662
+ requirement_bindings: z.ZodArray<z.ZodEffects<z.ZodObject<{
663
+ requirement_ref: z.ZodEffects<z.ZodString, string, string>;
664
+ coverage_domains: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
665
+ owned_scope: z.ZodUnion<[z.ZodObject<{
666
+ ref: z.ZodString;
667
+ }, "strict", z.ZodTypeAny, {
668
+ ref: string;
669
+ }, {
670
+ ref: string;
671
+ }>, z.ZodEffects<z.ZodObject<{
672
+ targets: z.ZodArray<z.ZodEffects<z.ZodObject<{
673
+ source_ref: z.ZodString;
674
+ module_refs: z.ZodArray<z.ZodString, "many">;
675
+ }, "strict", z.ZodTypeAny, {
676
+ source_ref: string;
677
+ module_refs: string[];
678
+ }, {
679
+ source_ref: string;
680
+ module_refs: string[];
681
+ }>, {
682
+ source_ref: string;
683
+ module_refs: string[];
684
+ }, {
685
+ source_ref: string;
686
+ module_refs: string[];
687
+ }>, "many">;
688
+ }, "strict", z.ZodTypeAny, {
689
+ targets: {
690
+ source_ref: string;
691
+ module_refs: string[];
692
+ }[];
693
+ }, {
694
+ targets: {
695
+ source_ref: string;
696
+ module_refs: string[];
697
+ }[];
698
+ }>, {
699
+ targets: {
700
+ source_ref: string;
701
+ module_refs: string[];
702
+ }[];
703
+ }, {
704
+ targets: {
705
+ source_ref: string;
706
+ module_refs: string[];
707
+ }[];
708
+ }>]>;
709
+ role: z.ZodEnum<["primary", "enricher"]>;
710
+ }, "strict", z.ZodTypeAny, {
711
+ coverage_domains: string[];
712
+ requirement_ref: string;
713
+ owned_scope: {
714
+ targets: {
715
+ source_ref: string;
716
+ module_refs: string[];
717
+ }[];
718
+ } | {
719
+ ref: string;
720
+ };
721
+ role: "primary" | "enricher";
722
+ }, {
723
+ coverage_domains: string[];
724
+ requirement_ref: string;
725
+ owned_scope: {
726
+ targets: {
727
+ source_ref: string;
728
+ module_refs: string[];
729
+ }[];
730
+ } | {
731
+ ref: string;
732
+ };
733
+ role: "primary" | "enricher";
734
+ }>, {
735
+ coverage_domains: string[];
736
+ requirement_ref: string;
737
+ owned_scope: {
738
+ targets: {
739
+ source_ref: string;
740
+ module_refs: string[];
741
+ }[];
742
+ } | {
743
+ ref: string;
744
+ };
745
+ role: "primary" | "enricher";
746
+ }, {
747
+ coverage_domains: string[];
748
+ requirement_ref: string;
749
+ owned_scope: {
750
+ targets: {
751
+ source_ref: string;
752
+ module_refs: string[];
753
+ }[];
754
+ } | {
755
+ ref: string;
756
+ };
757
+ role: "primary" | "enricher";
758
+ }>, "many">;
759
+ read_scope: z.ZodEffects<z.ZodObject<{
760
+ refs: z.ZodArray<z.ZodString, "many">;
761
+ extra_targets: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
762
+ source_ref: z.ZodString;
763
+ module_refs: z.ZodArray<z.ZodString, "many">;
764
+ }, "strict", z.ZodTypeAny, {
765
+ source_ref: string;
766
+ module_refs: string[];
767
+ }, {
768
+ source_ref: string;
769
+ module_refs: string[];
770
+ }>, {
771
+ source_ref: string;
772
+ module_refs: string[];
773
+ }, {
774
+ source_ref: string;
775
+ module_refs: string[];
776
+ }>, "many">>;
777
+ }, "strict", z.ZodTypeAny, {
778
+ refs: string[];
779
+ extra_targets?: {
780
+ source_ref: string;
781
+ module_refs: string[];
782
+ }[] | undefined;
783
+ }, {
784
+ refs: string[];
785
+ extra_targets?: {
786
+ source_ref: string;
787
+ module_refs: string[];
788
+ }[] | undefined;
789
+ }>, {
790
+ refs: string[];
791
+ extra_targets?: {
792
+ source_ref: string;
793
+ module_refs: string[];
794
+ }[] | undefined;
795
+ }, {
796
+ refs: string[];
797
+ extra_targets?: {
798
+ source_ref: string;
799
+ module_refs: string[];
800
+ }[] | undefined;
801
+ }>;
802
+ profile: z.ZodObject<{
803
+ primary: z.ZodObject<{
804
+ id: z.ZodEffects<z.ZodString, string, string>;
805
+ provider: z.ZodEffects<z.ZodString, string, string>;
806
+ variants: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodString, string, string>>>;
807
+ }, "strict", z.ZodTypeAny, {
808
+ id: string;
809
+ provider: string;
810
+ variants?: Record<string, string> | undefined;
811
+ }, {
812
+ id: string;
813
+ provider: string;
814
+ variants?: Record<string, string> | undefined;
815
+ }>;
816
+ additional: z.ZodOptional<z.ZodArray<z.ZodObject<{
817
+ id: z.ZodEffects<z.ZodString, string, string>;
818
+ provider: z.ZodEffects<z.ZodString, string, string>;
819
+ variants: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodString, string, string>>>;
820
+ } & {
821
+ kind: z.ZodEnum<["supporting", "extension"]>;
822
+ }, "strict", z.ZodTypeAny, {
823
+ id: string;
824
+ kind: "supporting" | "extension";
825
+ provider: string;
826
+ variants?: Record<string, string> | undefined;
827
+ }, {
828
+ id: string;
829
+ kind: "supporting" | "extension";
830
+ provider: string;
831
+ variants?: Record<string, string> | undefined;
832
+ }>, "many">>;
833
+ composers: z.ZodOptional<z.ZodArray<z.ZodObject<{
834
+ id: z.ZodEffects<z.ZodString, string, string>;
835
+ provider: z.ZodEffects<z.ZodString, string, string>;
836
+ }, "strict", z.ZodTypeAny, {
837
+ id: string;
838
+ provider: string;
839
+ }, {
840
+ id: string;
841
+ provider: string;
842
+ }>, "many">>;
843
+ }, "strict", z.ZodTypeAny, {
844
+ primary: {
845
+ id: string;
846
+ provider: string;
847
+ variants?: Record<string, string> | undefined;
848
+ };
849
+ additional?: {
850
+ id: string;
851
+ kind: "supporting" | "extension";
852
+ provider: string;
853
+ variants?: Record<string, string> | undefined;
854
+ }[] | undefined;
855
+ composers?: {
856
+ id: string;
857
+ provider: string;
858
+ }[] | undefined;
859
+ }, {
860
+ primary: {
861
+ id: string;
862
+ provider: string;
863
+ variants?: Record<string, string> | undefined;
864
+ };
865
+ additional?: {
866
+ id: string;
867
+ kind: "supporting" | "extension";
868
+ provider: string;
869
+ variants?: Record<string, string> | undefined;
870
+ }[] | undefined;
871
+ composers?: {
872
+ id: string;
873
+ provider: string;
874
+ }[] | undefined;
875
+ }>;
876
+ providers: z.ZodArray<z.ZodEffects<z.ZodObject<{
877
+ id: z.ZodEffects<z.ZodString, string, string>;
878
+ role: z.ZodEnum<["primary", "extension"]>;
879
+ skill: z.ZodEffects<z.ZodString, string, string>;
880
+ version: z.ZodString;
881
+ integrity: z.ZodString;
882
+ distribution: z.ZodEffects<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
883
+ kind: z.ZodLiteral<"cli-bundled">;
884
+ locator: z.ZodString;
885
+ }, "strict", z.ZodTypeAny, {
886
+ kind: "cli-bundled";
887
+ locator: string;
888
+ }, {
889
+ kind: "cli-bundled";
890
+ locator: string;
891
+ }>, z.ZodObject<{
892
+ kind: z.ZodLiteral<"bundled">;
893
+ locator: z.ZodString;
894
+ }, "strict", z.ZodTypeAny, {
895
+ kind: "bundled";
896
+ locator: string;
897
+ }, {
898
+ kind: "bundled";
899
+ locator: string;
900
+ }>, z.ZodObject<{
901
+ kind: z.ZodLiteral<"workspace">;
902
+ locator: z.ZodString;
903
+ }, "strict", z.ZodTypeAny, {
904
+ kind: "workspace";
905
+ locator: string;
906
+ }, {
907
+ kind: "workspace";
908
+ locator: string;
909
+ }>, z.ZodObject<{
910
+ kind: z.ZodLiteral<"package">;
911
+ locator: z.ZodString;
912
+ }, "strict", z.ZodTypeAny, {
913
+ kind: "package";
914
+ locator: string;
915
+ }, {
916
+ kind: "package";
917
+ locator: string;
918
+ }>, z.ZodObject<{
919
+ kind: z.ZodLiteral<"marketplace">;
920
+ locator: z.ZodString;
921
+ }, "strict", z.ZodTypeAny, {
922
+ kind: "marketplace";
923
+ locator: string;
924
+ }, {
925
+ kind: "marketplace";
926
+ locator: string;
927
+ }>]>, {
928
+ kind: "cli-bundled";
929
+ locator: string;
930
+ } | {
931
+ kind: "bundled";
932
+ locator: string;
933
+ } | {
934
+ kind: "workspace";
935
+ locator: string;
936
+ } | {
937
+ kind: "package";
938
+ locator: string;
939
+ } | {
940
+ kind: "marketplace";
941
+ locator: string;
942
+ }, {
943
+ kind: "cli-bundled";
944
+ locator: string;
945
+ } | {
946
+ kind: "bundled";
947
+ locator: string;
948
+ } | {
949
+ kind: "workspace";
950
+ locator: string;
951
+ } | {
952
+ kind: "package";
953
+ locator: string;
954
+ } | {
955
+ kind: "marketplace";
956
+ locator: string;
957
+ }>;
958
+ config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("./indexerRegistry.js").IndexerJson, z.ZodTypeDef, import("./indexerRegistry.js").IndexerJson>>>;
959
+ }, "strict", z.ZodTypeAny, {
960
+ id: string;
961
+ role: "primary" | "extension";
962
+ skill: string;
963
+ version: string;
964
+ integrity: string;
965
+ distribution: {
966
+ kind: "cli-bundled";
967
+ locator: string;
968
+ } | {
969
+ kind: "bundled";
970
+ locator: string;
971
+ } | {
972
+ kind: "workspace";
973
+ locator: string;
974
+ } | {
975
+ kind: "package";
976
+ locator: string;
977
+ } | {
978
+ kind: "marketplace";
979
+ locator: string;
980
+ };
981
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
982
+ }, {
983
+ id: string;
984
+ role: "primary" | "extension";
985
+ skill: string;
986
+ version: string;
987
+ integrity: string;
988
+ distribution: {
989
+ kind: "cli-bundled";
990
+ locator: string;
991
+ } | {
992
+ kind: "bundled";
993
+ locator: string;
994
+ } | {
995
+ kind: "workspace";
996
+ locator: string;
997
+ } | {
998
+ kind: "package";
999
+ locator: string;
1000
+ } | {
1001
+ kind: "marketplace";
1002
+ locator: string;
1003
+ };
1004
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1005
+ }>, {
1006
+ id: string;
1007
+ role: "primary" | "extension";
1008
+ skill: string;
1009
+ version: string;
1010
+ integrity: string;
1011
+ distribution: {
1012
+ kind: "cli-bundled";
1013
+ locator: string;
1014
+ } | {
1015
+ kind: "bundled";
1016
+ locator: string;
1017
+ } | {
1018
+ kind: "workspace";
1019
+ locator: string;
1020
+ } | {
1021
+ kind: "package";
1022
+ locator: string;
1023
+ } | {
1024
+ kind: "marketplace";
1025
+ locator: string;
1026
+ };
1027
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1028
+ }, {
1029
+ id: string;
1030
+ role: "primary" | "extension";
1031
+ skill: string;
1032
+ version: string;
1033
+ integrity: string;
1034
+ distribution: {
1035
+ kind: "cli-bundled";
1036
+ locator: string;
1037
+ } | {
1038
+ kind: "bundled";
1039
+ locator: string;
1040
+ } | {
1041
+ kind: "workspace";
1042
+ locator: string;
1043
+ } | {
1044
+ kind: "package";
1045
+ locator: string;
1046
+ } | {
1047
+ kind: "marketplace";
1048
+ locator: string;
1049
+ };
1050
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1051
+ }>, "many">;
1052
+ customization: z.ZodOptional<z.ZodObject<{
1053
+ mode: z.ZodEnum<["extend", "replace"]>;
1054
+ }, "strict", z.ZodTypeAny, {
1055
+ mode: "replace" | "extend";
1056
+ }, {
1057
+ mode: "replace" | "extend";
1058
+ }>>;
1059
+ }, "strict", z.ZodTypeAny, {
1060
+ id: string;
1061
+ operations: ("main-index" | "material-answer")[];
1062
+ requirement_bindings: {
1063
+ coverage_domains: string[];
1064
+ requirement_ref: string;
1065
+ owned_scope: {
1066
+ targets: {
1067
+ source_ref: string;
1068
+ module_refs: string[];
1069
+ }[];
1070
+ } | {
1071
+ ref: string;
1072
+ };
1073
+ role: "primary" | "enricher";
1074
+ }[];
1075
+ read_scope: {
1076
+ refs: string[];
1077
+ extra_targets?: {
1078
+ source_ref: string;
1079
+ module_refs: string[];
1080
+ }[] | undefined;
1081
+ };
1082
+ profile: {
1083
+ primary: {
1084
+ id: string;
1085
+ provider: string;
1086
+ variants?: Record<string, string> | undefined;
1087
+ };
1088
+ additional?: {
1089
+ id: string;
1090
+ kind: "supporting" | "extension";
1091
+ provider: string;
1092
+ variants?: Record<string, string> | undefined;
1093
+ }[] | undefined;
1094
+ composers?: {
1095
+ id: string;
1096
+ provider: string;
1097
+ }[] | undefined;
1098
+ };
1099
+ providers: {
1100
+ id: string;
1101
+ role: "primary" | "extension";
1102
+ skill: string;
1103
+ version: string;
1104
+ integrity: string;
1105
+ distribution: {
1106
+ kind: "cli-bundled";
1107
+ locator: string;
1108
+ } | {
1109
+ kind: "bundled";
1110
+ locator: string;
1111
+ } | {
1112
+ kind: "workspace";
1113
+ locator: string;
1114
+ } | {
1115
+ kind: "package";
1116
+ locator: string;
1117
+ } | {
1118
+ kind: "marketplace";
1119
+ locator: string;
1120
+ };
1121
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1122
+ }[];
1123
+ customization?: {
1124
+ mode: "replace" | "extend";
1125
+ } | undefined;
1126
+ }, {
1127
+ id: string;
1128
+ operations: ("main-index" | "material-answer")[];
1129
+ requirement_bindings: {
1130
+ coverage_domains: string[];
1131
+ requirement_ref: string;
1132
+ owned_scope: {
1133
+ targets: {
1134
+ source_ref: string;
1135
+ module_refs: string[];
1136
+ }[];
1137
+ } | {
1138
+ ref: string;
1139
+ };
1140
+ role: "primary" | "enricher";
1141
+ }[];
1142
+ read_scope: {
1143
+ refs: string[];
1144
+ extra_targets?: {
1145
+ source_ref: string;
1146
+ module_refs: string[];
1147
+ }[] | undefined;
1148
+ };
1149
+ profile: {
1150
+ primary: {
1151
+ id: string;
1152
+ provider: string;
1153
+ variants?: Record<string, string> | undefined;
1154
+ };
1155
+ additional?: {
1156
+ id: string;
1157
+ kind: "supporting" | "extension";
1158
+ provider: string;
1159
+ variants?: Record<string, string> | undefined;
1160
+ }[] | undefined;
1161
+ composers?: {
1162
+ id: string;
1163
+ provider: string;
1164
+ }[] | undefined;
1165
+ };
1166
+ providers: {
1167
+ id: string;
1168
+ role: "primary" | "extension";
1169
+ skill: string;
1170
+ version: string;
1171
+ integrity: string;
1172
+ distribution: {
1173
+ kind: "cli-bundled";
1174
+ locator: string;
1175
+ } | {
1176
+ kind: "bundled";
1177
+ locator: string;
1178
+ } | {
1179
+ kind: "workspace";
1180
+ locator: string;
1181
+ } | {
1182
+ kind: "package";
1183
+ locator: string;
1184
+ } | {
1185
+ kind: "marketplace";
1186
+ locator: string;
1187
+ };
1188
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1189
+ }[];
1190
+ customization?: {
1191
+ mode: "replace" | "extend";
1192
+ } | undefined;
1193
+ }>, {
1194
+ id: string;
1195
+ operations: ("main-index" | "material-answer")[];
1196
+ requirement_bindings: {
1197
+ coverage_domains: string[];
1198
+ requirement_ref: string;
1199
+ owned_scope: {
1200
+ targets: {
1201
+ source_ref: string;
1202
+ module_refs: string[];
1203
+ }[];
1204
+ } | {
1205
+ ref: string;
1206
+ };
1207
+ role: "primary" | "enricher";
1208
+ }[];
1209
+ read_scope: {
1210
+ refs: string[];
1211
+ extra_targets?: {
1212
+ source_ref: string;
1213
+ module_refs: string[];
1214
+ }[] | undefined;
1215
+ };
1216
+ profile: {
1217
+ primary: {
1218
+ id: string;
1219
+ provider: string;
1220
+ variants?: Record<string, string> | undefined;
1221
+ };
1222
+ additional?: {
1223
+ id: string;
1224
+ kind: "supporting" | "extension";
1225
+ provider: string;
1226
+ variants?: Record<string, string> | undefined;
1227
+ }[] | undefined;
1228
+ composers?: {
1229
+ id: string;
1230
+ provider: string;
1231
+ }[] | undefined;
1232
+ };
1233
+ providers: {
1234
+ id: string;
1235
+ role: "primary" | "extension";
1236
+ skill: string;
1237
+ version: string;
1238
+ integrity: string;
1239
+ distribution: {
1240
+ kind: "cli-bundled";
1241
+ locator: string;
1242
+ } | {
1243
+ kind: "bundled";
1244
+ locator: string;
1245
+ } | {
1246
+ kind: "workspace";
1247
+ locator: string;
1248
+ } | {
1249
+ kind: "package";
1250
+ locator: string;
1251
+ } | {
1252
+ kind: "marketplace";
1253
+ locator: string;
1254
+ };
1255
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1256
+ }[];
1257
+ customization?: {
1258
+ mode: "replace" | "extend";
1259
+ } | undefined;
1260
+ }, {
1261
+ id: string;
1262
+ operations: ("main-index" | "material-answer")[];
1263
+ requirement_bindings: {
1264
+ coverage_domains: string[];
1265
+ requirement_ref: string;
1266
+ owned_scope: {
1267
+ targets: {
1268
+ source_ref: string;
1269
+ module_refs: string[];
1270
+ }[];
1271
+ } | {
1272
+ ref: string;
1273
+ };
1274
+ role: "primary" | "enricher";
1275
+ }[];
1276
+ read_scope: {
1277
+ refs: string[];
1278
+ extra_targets?: {
1279
+ source_ref: string;
1280
+ module_refs: string[];
1281
+ }[] | undefined;
1282
+ };
1283
+ profile: {
1284
+ primary: {
1285
+ id: string;
1286
+ provider: string;
1287
+ variants?: Record<string, string> | undefined;
1288
+ };
1289
+ additional?: {
1290
+ id: string;
1291
+ kind: "supporting" | "extension";
1292
+ provider: string;
1293
+ variants?: Record<string, string> | undefined;
1294
+ }[] | undefined;
1295
+ composers?: {
1296
+ id: string;
1297
+ provider: string;
1298
+ }[] | undefined;
1299
+ };
1300
+ providers: {
1301
+ id: string;
1302
+ role: "primary" | "extension";
1303
+ skill: string;
1304
+ version: string;
1305
+ integrity: string;
1306
+ distribution: {
1307
+ kind: "cli-bundled";
1308
+ locator: string;
1309
+ } | {
1310
+ kind: "bundled";
1311
+ locator: string;
1312
+ } | {
1313
+ kind: "workspace";
1314
+ locator: string;
1315
+ } | {
1316
+ kind: "package";
1317
+ locator: string;
1318
+ } | {
1319
+ kind: "marketplace";
1320
+ locator: string;
1321
+ };
1322
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1323
+ }[];
1324
+ customization?: {
1325
+ mode: "replace" | "extend";
1326
+ } | undefined;
1327
+ }>, "many">;
1328
+ }, "strict", z.ZodTypeAny, {
1329
+ protocol: "context.indexer.registry/v1";
1330
+ requirements: {
1331
+ id: string;
1332
+ reader_goals: string[];
1333
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
1334
+ target_scope: {
1335
+ targets: {
1336
+ source_ref: string;
1337
+ module_refs: string[];
1338
+ }[];
1339
+ };
1340
+ evidence_source_scope: {
1341
+ targets: {
1342
+ source_ref: string;
1343
+ module_refs: string[];
1344
+ }[];
1345
+ };
1346
+ questions?: {
1347
+ ref: string;
1348
+ authority: {
1349
+ kind: "cli-base-contract" | "verified-contract-overlay";
1350
+ ref: string;
1351
+ digest: string;
1352
+ };
1353
+ contract_version: number;
1354
+ contract_digest: string;
1355
+ }[] | undefined;
1356
+ exclusions?: {
1357
+ id: string;
1358
+ scope: {
1359
+ targets: {
1360
+ source_ref: string;
1361
+ module_refs: string[];
1362
+ }[];
1363
+ };
1364
+ reason: string;
1365
+ }[] | undefined;
1366
+ }[];
1367
+ indexers: {
1368
+ id: string;
1369
+ operations: ("main-index" | "material-answer")[];
1370
+ requirement_bindings: {
1371
+ coverage_domains: string[];
1372
+ requirement_ref: string;
1373
+ owned_scope: {
1374
+ targets: {
1375
+ source_ref: string;
1376
+ module_refs: string[];
1377
+ }[];
1378
+ } | {
1379
+ ref: string;
1380
+ };
1381
+ role: "primary" | "enricher";
1382
+ }[];
1383
+ read_scope: {
1384
+ refs: string[];
1385
+ extra_targets?: {
1386
+ source_ref: string;
1387
+ module_refs: string[];
1388
+ }[] | undefined;
1389
+ };
1390
+ profile: {
1391
+ primary: {
1392
+ id: string;
1393
+ provider: string;
1394
+ variants?: Record<string, string> | undefined;
1395
+ };
1396
+ additional?: {
1397
+ id: string;
1398
+ kind: "supporting" | "extension";
1399
+ provider: string;
1400
+ variants?: Record<string, string> | undefined;
1401
+ }[] | undefined;
1402
+ composers?: {
1403
+ id: string;
1404
+ provider: string;
1405
+ }[] | undefined;
1406
+ };
1407
+ providers: {
1408
+ id: string;
1409
+ role: "primary" | "extension";
1410
+ skill: string;
1411
+ version: string;
1412
+ integrity: string;
1413
+ distribution: {
1414
+ kind: "cli-bundled";
1415
+ locator: string;
1416
+ } | {
1417
+ kind: "bundled";
1418
+ locator: string;
1419
+ } | {
1420
+ kind: "workspace";
1421
+ locator: string;
1422
+ } | {
1423
+ kind: "package";
1424
+ locator: string;
1425
+ } | {
1426
+ kind: "marketplace";
1427
+ locator: string;
1428
+ };
1429
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1430
+ }[];
1431
+ customization?: {
1432
+ mode: "replace" | "extend";
1433
+ } | undefined;
1434
+ }[];
1435
+ }, {
1436
+ protocol: "context.indexer.registry/v1";
1437
+ requirements: {
1438
+ id: string;
1439
+ reader_goals: string[];
1440
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
1441
+ target_scope: {
1442
+ targets: {
1443
+ source_ref: string;
1444
+ module_refs: string[];
1445
+ }[];
1446
+ };
1447
+ evidence_source_scope: {
1448
+ targets: {
1449
+ source_ref: string;
1450
+ module_refs: string[];
1451
+ }[];
1452
+ };
1453
+ questions?: {
1454
+ ref: string;
1455
+ authority: {
1456
+ kind: "cli-base-contract" | "verified-contract-overlay";
1457
+ ref: string;
1458
+ digest: string;
1459
+ };
1460
+ contract_version: number;
1461
+ contract_digest: string;
1462
+ }[] | undefined;
1463
+ exclusions?: {
1464
+ id: string;
1465
+ scope: {
1466
+ targets: {
1467
+ source_ref: string;
1468
+ module_refs: string[];
1469
+ }[];
1470
+ };
1471
+ reason: string;
1472
+ }[] | undefined;
1473
+ }[];
1474
+ indexers: {
1475
+ id: string;
1476
+ operations: ("main-index" | "material-answer")[];
1477
+ requirement_bindings: {
1478
+ coverage_domains: string[];
1479
+ requirement_ref: string;
1480
+ owned_scope: {
1481
+ targets: {
1482
+ source_ref: string;
1483
+ module_refs: string[];
1484
+ }[];
1485
+ } | {
1486
+ ref: string;
1487
+ };
1488
+ role: "primary" | "enricher";
1489
+ }[];
1490
+ read_scope: {
1491
+ refs: string[];
1492
+ extra_targets?: {
1493
+ source_ref: string;
1494
+ module_refs: string[];
1495
+ }[] | undefined;
1496
+ };
1497
+ profile: {
1498
+ primary: {
1499
+ id: string;
1500
+ provider: string;
1501
+ variants?: Record<string, string> | undefined;
1502
+ };
1503
+ additional?: {
1504
+ id: string;
1505
+ kind: "supporting" | "extension";
1506
+ provider: string;
1507
+ variants?: Record<string, string> | undefined;
1508
+ }[] | undefined;
1509
+ composers?: {
1510
+ id: string;
1511
+ provider: string;
1512
+ }[] | undefined;
1513
+ };
1514
+ providers: {
1515
+ id: string;
1516
+ role: "primary" | "extension";
1517
+ skill: string;
1518
+ version: string;
1519
+ integrity: string;
1520
+ distribution: {
1521
+ kind: "cli-bundled";
1522
+ locator: string;
1523
+ } | {
1524
+ kind: "bundled";
1525
+ locator: string;
1526
+ } | {
1527
+ kind: "workspace";
1528
+ locator: string;
1529
+ } | {
1530
+ kind: "package";
1531
+ locator: string;
1532
+ } | {
1533
+ kind: "marketplace";
1534
+ locator: string;
1535
+ };
1536
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1537
+ }[];
1538
+ customization?: {
1539
+ mode: "replace" | "extend";
1540
+ } | undefined;
1541
+ }[];
1542
+ }>, {
1543
+ protocol: "context.indexer.registry/v1";
1544
+ requirements: {
1545
+ id: string;
1546
+ reader_goals: string[];
1547
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
1548
+ target_scope: {
1549
+ targets: {
1550
+ source_ref: string;
1551
+ module_refs: string[];
1552
+ }[];
1553
+ };
1554
+ evidence_source_scope: {
1555
+ targets: {
1556
+ source_ref: string;
1557
+ module_refs: string[];
1558
+ }[];
1559
+ };
1560
+ questions?: {
1561
+ ref: string;
1562
+ authority: {
1563
+ kind: "cli-base-contract" | "verified-contract-overlay";
1564
+ ref: string;
1565
+ digest: string;
1566
+ };
1567
+ contract_version: number;
1568
+ contract_digest: string;
1569
+ }[] | undefined;
1570
+ exclusions?: {
1571
+ id: string;
1572
+ scope: {
1573
+ targets: {
1574
+ source_ref: string;
1575
+ module_refs: string[];
1576
+ }[];
1577
+ };
1578
+ reason: string;
1579
+ }[] | undefined;
1580
+ }[];
1581
+ indexers: {
1582
+ id: string;
1583
+ operations: ("main-index" | "material-answer")[];
1584
+ requirement_bindings: {
1585
+ coverage_domains: string[];
1586
+ requirement_ref: string;
1587
+ owned_scope: {
1588
+ targets: {
1589
+ source_ref: string;
1590
+ module_refs: string[];
1591
+ }[];
1592
+ } | {
1593
+ ref: string;
1594
+ };
1595
+ role: "primary" | "enricher";
1596
+ }[];
1597
+ read_scope: {
1598
+ refs: string[];
1599
+ extra_targets?: {
1600
+ source_ref: string;
1601
+ module_refs: string[];
1602
+ }[] | undefined;
1603
+ };
1604
+ profile: {
1605
+ primary: {
1606
+ id: string;
1607
+ provider: string;
1608
+ variants?: Record<string, string> | undefined;
1609
+ };
1610
+ additional?: {
1611
+ id: string;
1612
+ kind: "supporting" | "extension";
1613
+ provider: string;
1614
+ variants?: Record<string, string> | undefined;
1615
+ }[] | undefined;
1616
+ composers?: {
1617
+ id: string;
1618
+ provider: string;
1619
+ }[] | undefined;
1620
+ };
1621
+ providers: {
1622
+ id: string;
1623
+ role: "primary" | "extension";
1624
+ skill: string;
1625
+ version: string;
1626
+ integrity: string;
1627
+ distribution: {
1628
+ kind: "cli-bundled";
1629
+ locator: string;
1630
+ } | {
1631
+ kind: "bundled";
1632
+ locator: string;
1633
+ } | {
1634
+ kind: "workspace";
1635
+ locator: string;
1636
+ } | {
1637
+ kind: "package";
1638
+ locator: string;
1639
+ } | {
1640
+ kind: "marketplace";
1641
+ locator: string;
1642
+ };
1643
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1644
+ }[];
1645
+ customization?: {
1646
+ mode: "replace" | "extend";
1647
+ } | undefined;
1648
+ }[];
1649
+ }, {
1650
+ protocol: "context.indexer.registry/v1";
1651
+ requirements: {
1652
+ id: string;
1653
+ reader_goals: string[];
1654
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
1655
+ target_scope: {
1656
+ targets: {
1657
+ source_ref: string;
1658
+ module_refs: string[];
1659
+ }[];
1660
+ };
1661
+ evidence_source_scope: {
1662
+ targets: {
1663
+ source_ref: string;
1664
+ module_refs: string[];
1665
+ }[];
1666
+ };
1667
+ questions?: {
1668
+ ref: string;
1669
+ authority: {
1670
+ kind: "cli-base-contract" | "verified-contract-overlay";
1671
+ ref: string;
1672
+ digest: string;
1673
+ };
1674
+ contract_version: number;
1675
+ contract_digest: string;
1676
+ }[] | undefined;
1677
+ exclusions?: {
1678
+ id: string;
1679
+ scope: {
1680
+ targets: {
1681
+ source_ref: string;
1682
+ module_refs: string[];
1683
+ }[];
1684
+ };
1685
+ reason: string;
1686
+ }[] | undefined;
1687
+ }[];
1688
+ indexers: {
1689
+ id: string;
1690
+ operations: ("main-index" | "material-answer")[];
1691
+ requirement_bindings: {
1692
+ coverage_domains: string[];
1693
+ requirement_ref: string;
1694
+ owned_scope: {
1695
+ targets: {
1696
+ source_ref: string;
1697
+ module_refs: string[];
1698
+ }[];
1699
+ } | {
1700
+ ref: string;
1701
+ };
1702
+ role: "primary" | "enricher";
1703
+ }[];
1704
+ read_scope: {
1705
+ refs: string[];
1706
+ extra_targets?: {
1707
+ source_ref: string;
1708
+ module_refs: string[];
1709
+ }[] | undefined;
1710
+ };
1711
+ profile: {
1712
+ primary: {
1713
+ id: string;
1714
+ provider: string;
1715
+ variants?: Record<string, string> | undefined;
1716
+ };
1717
+ additional?: {
1718
+ id: string;
1719
+ kind: "supporting" | "extension";
1720
+ provider: string;
1721
+ variants?: Record<string, string> | undefined;
1722
+ }[] | undefined;
1723
+ composers?: {
1724
+ id: string;
1725
+ provider: string;
1726
+ }[] | undefined;
1727
+ };
1728
+ providers: {
1729
+ id: string;
1730
+ role: "primary" | "extension";
1731
+ skill: string;
1732
+ version: string;
1733
+ integrity: string;
1734
+ distribution: {
1735
+ kind: "cli-bundled";
1736
+ locator: string;
1737
+ } | {
1738
+ kind: "bundled";
1739
+ locator: string;
1740
+ } | {
1741
+ kind: "workspace";
1742
+ locator: string;
1743
+ } | {
1744
+ kind: "package";
1745
+ locator: string;
1746
+ } | {
1747
+ kind: "marketplace";
1748
+ locator: string;
1749
+ };
1750
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
1751
+ }[];
1752
+ customization?: {
1753
+ mode: "replace" | "extend";
1754
+ } | undefined;
1755
+ }[];
1756
+ }>;
1757
+ target_registry_digest: z.ZodString;
1758
+ overlay_digest: z.ZodString;
1759
+ overlay_trust_receipt_digest: z.ZodString;
1760
+ conformance_report_digest: z.ZodString;
1761
+ added_target_domains: z.ZodArray<z.ZodObject<{
1762
+ id: z.ZodEffects<z.ZodString, string, string>;
1763
+ contract_digest: z.ZodString;
1764
+ }, "strict", z.ZodTypeAny, {
1765
+ id: string;
1766
+ contract_digest: string;
1767
+ }, {
1768
+ id: string;
1769
+ contract_digest: string;
1770
+ }>, "many">;
1771
+ added_questions: z.ZodArray<z.ZodObject<{
1772
+ binding: z.ZodObject<{
1773
+ ref: z.ZodString;
1774
+ authority: z.ZodObject<{
1775
+ kind: z.ZodLiteral<"verified-contract-overlay">;
1776
+ ref: z.ZodString;
1777
+ digest: z.ZodString;
1778
+ }, "strict", z.ZodTypeAny, {
1779
+ kind: "verified-contract-overlay";
1780
+ ref: string;
1781
+ digest: string;
1782
+ }, {
1783
+ kind: "verified-contract-overlay";
1784
+ ref: string;
1785
+ digest: string;
1786
+ }>;
1787
+ contract_version: z.ZodNumber;
1788
+ contract_digest: z.ZodString;
1789
+ }, "strict", z.ZodTypeAny, {
1790
+ ref: string;
1791
+ authority: {
1792
+ kind: "verified-contract-overlay";
1793
+ ref: string;
1794
+ digest: string;
1795
+ };
1796
+ contract_version: number;
1797
+ contract_digest: string;
1798
+ }, {
1799
+ ref: string;
1800
+ authority: {
1801
+ kind: "verified-contract-overlay";
1802
+ ref: string;
1803
+ digest: string;
1804
+ };
1805
+ contract_version: number;
1806
+ contract_digest: string;
1807
+ }>;
1808
+ contract: z.ZodEffects<z.ZodObject<{
1809
+ ref: z.ZodString;
1810
+ semantic: z.ZodEffects<z.ZodString, string, string>;
1811
+ version: z.ZodNumber;
1812
+ coverage_domain: z.ZodEffects<z.ZodString, string, string>;
1813
+ target_domain_ref: z.ZodEffects<z.ZodString, string, string>;
1814
+ target_selector: z.ZodObject<{
1815
+ protocol: z.ZodLiteral<"context.indexer.selector/v1">;
1816
+ expression: z.ZodType<import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression, z.ZodTypeDef, import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression>;
1817
+ }, "strict", z.ZodTypeAny, {
1818
+ protocol: "context.indexer.selector/v1";
1819
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1820
+ }, {
1821
+ protocol: "context.indexer.selector/v1";
1822
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1823
+ }>;
1824
+ evidence_contract: z.ZodObject<{
1825
+ accepted_kinds: z.ZodArray<z.ZodEnum<["code", "contract", "configuration", "documentation", "runbook", "decision-record", "test-result", "runtime-observation", "tool-snapshot"]>, "many">;
1826
+ minimum_items: z.ZodNumber;
1827
+ minimum_distinct_sources: z.ZodNumber;
1828
+ provenance_constraints: z.ZodOptional<z.ZodObject<{
1829
+ protocol: z.ZodLiteral<"context.indexer.selector/v1">;
1830
+ expression: z.ZodType<import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression, z.ZodTypeDef, import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression>;
1831
+ }, "strict", z.ZodTypeAny, {
1832
+ protocol: "context.indexer.selector/v1";
1833
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1834
+ }, {
1835
+ protocol: "context.indexer.selector/v1";
1836
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1837
+ }>>;
1838
+ }, "strict", z.ZodTypeAny, {
1839
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1840
+ minimum_items: number;
1841
+ minimum_distinct_sources: number;
1842
+ provenance_constraints?: {
1843
+ protocol: "context.indexer.selector/v1";
1844
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1845
+ } | undefined;
1846
+ }, {
1847
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1848
+ minimum_items: number;
1849
+ minimum_distinct_sources: number;
1850
+ provenance_constraints?: {
1851
+ protocol: "context.indexer.selector/v1";
1852
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1853
+ } | undefined;
1854
+ }>;
1855
+ allowed_exclusion_reason_codes: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
1856
+ }, "strict", z.ZodTypeAny, {
1857
+ ref: string;
1858
+ version: number;
1859
+ semantic: string;
1860
+ coverage_domain: string;
1861
+ target_domain_ref: string;
1862
+ target_selector: {
1863
+ protocol: "context.indexer.selector/v1";
1864
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1865
+ };
1866
+ evidence_contract: {
1867
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1868
+ minimum_items: number;
1869
+ minimum_distinct_sources: number;
1870
+ provenance_constraints?: {
1871
+ protocol: "context.indexer.selector/v1";
1872
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1873
+ } | undefined;
1874
+ };
1875
+ allowed_exclusion_reason_codes?: string[] | undefined;
1876
+ }, {
1877
+ ref: string;
1878
+ version: number;
1879
+ semantic: string;
1880
+ coverage_domain: string;
1881
+ target_domain_ref: string;
1882
+ target_selector: {
1883
+ protocol: "context.indexer.selector/v1";
1884
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1885
+ };
1886
+ evidence_contract: {
1887
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1888
+ minimum_items: number;
1889
+ minimum_distinct_sources: number;
1890
+ provenance_constraints?: {
1891
+ protocol: "context.indexer.selector/v1";
1892
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1893
+ } | undefined;
1894
+ };
1895
+ allowed_exclusion_reason_codes?: string[] | undefined;
1896
+ }>, {
1897
+ ref: string;
1898
+ version: number;
1899
+ semantic: string;
1900
+ coverage_domain: string;
1901
+ target_domain_ref: string;
1902
+ target_selector: {
1903
+ protocol: "context.indexer.selector/v1";
1904
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1905
+ };
1906
+ evidence_contract: {
1907
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1908
+ minimum_items: number;
1909
+ minimum_distinct_sources: number;
1910
+ provenance_constraints?: {
1911
+ protocol: "context.indexer.selector/v1";
1912
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1913
+ } | undefined;
1914
+ };
1915
+ allowed_exclusion_reason_codes?: string[] | undefined;
1916
+ }, {
1917
+ ref: string;
1918
+ version: number;
1919
+ semantic: string;
1920
+ coverage_domain: string;
1921
+ target_domain_ref: string;
1922
+ target_selector: {
1923
+ protocol: "context.indexer.selector/v1";
1924
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1925
+ };
1926
+ evidence_contract: {
1927
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1928
+ minimum_items: number;
1929
+ minimum_distinct_sources: number;
1930
+ provenance_constraints?: {
1931
+ protocol: "context.indexer.selector/v1";
1932
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1933
+ } | undefined;
1934
+ };
1935
+ allowed_exclusion_reason_codes?: string[] | undefined;
1936
+ }>;
1937
+ contract_digest: z.ZodString;
1938
+ }, "strict", z.ZodTypeAny, {
1939
+ contract: {
1940
+ ref: string;
1941
+ version: number;
1942
+ semantic: string;
1943
+ coverage_domain: string;
1944
+ target_domain_ref: string;
1945
+ target_selector: {
1946
+ protocol: "context.indexer.selector/v1";
1947
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1948
+ };
1949
+ evidence_contract: {
1950
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1951
+ minimum_items: number;
1952
+ minimum_distinct_sources: number;
1953
+ provenance_constraints?: {
1954
+ protocol: "context.indexer.selector/v1";
1955
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1956
+ } | undefined;
1957
+ };
1958
+ allowed_exclusion_reason_codes?: string[] | undefined;
1959
+ };
1960
+ contract_digest: string;
1961
+ binding: {
1962
+ ref: string;
1963
+ authority: {
1964
+ kind: "verified-contract-overlay";
1965
+ ref: string;
1966
+ digest: string;
1967
+ };
1968
+ contract_version: number;
1969
+ contract_digest: string;
1970
+ };
1971
+ }, {
1972
+ contract: {
1973
+ ref: string;
1974
+ version: number;
1975
+ semantic: string;
1976
+ coverage_domain: string;
1977
+ target_domain_ref: string;
1978
+ target_selector: {
1979
+ protocol: "context.indexer.selector/v1";
1980
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1981
+ };
1982
+ evidence_contract: {
1983
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
1984
+ minimum_items: number;
1985
+ minimum_distinct_sources: number;
1986
+ provenance_constraints?: {
1987
+ protocol: "context.indexer.selector/v1";
1988
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
1989
+ } | undefined;
1990
+ };
1991
+ allowed_exclusion_reason_codes?: string[] | undefined;
1992
+ };
1993
+ contract_digest: string;
1994
+ binding: {
1995
+ ref: string;
1996
+ authority: {
1997
+ kind: "verified-contract-overlay";
1998
+ ref: string;
1999
+ digest: string;
2000
+ };
2001
+ contract_version: number;
2002
+ contract_digest: string;
2003
+ };
2004
+ }>, "many">;
2005
+ comparison: z.ZodObject<{
2006
+ protocol: z.ZodLiteral<"context.indexer.requirement-contraction-comparison/v1">;
2007
+ requirementRef: z.ZodEffects<z.ZodString, string, string>;
2008
+ relation: z.ZodEnum<["equivalent", "strengthening", "contraction", "incomparable"]>;
2009
+ requiresHumanConfirmation: z.ZodBoolean;
2010
+ evidenceSourceChange: z.ZodEnum<["unchanged", "expanded", "reduced", "changed"]>;
2011
+ changes: z.ZodArray<z.ZodObject<{
2012
+ area: z.ZodEnum<["target-scope", "reader-goals", "coverage-domain", "exclusions", "question", "question-semantic", "question-selector", "question-domain", "question-evidence"]>;
2013
+ path: z.ZodString;
2014
+ relation: z.ZodEnum<["strengthening", "contraction", "incomparable"]>;
2015
+ detail: z.ZodString;
2016
+ }, "strict", z.ZodTypeAny, {
2017
+ path: string;
2018
+ area: "exclusions" | "question" | "target-scope" | "reader-goals" | "coverage-domain" | "question-semantic" | "question-selector" | "question-domain" | "question-evidence";
2019
+ relation: "strengthening" | "contraction" | "incomparable";
2020
+ detail: string;
2021
+ }, {
2022
+ path: string;
2023
+ area: "exclusions" | "question" | "target-scope" | "reader-goals" | "coverage-domain" | "question-semantic" | "question-selector" | "question-domain" | "question-evidence";
2024
+ relation: "strengthening" | "contraction" | "incomparable";
2025
+ detail: string;
2026
+ }>, "many">;
2027
+ }, "strict", z.ZodTypeAny, {
2028
+ protocol: "context.indexer.requirement-contraction-comparison/v1";
2029
+ requirementRef: string;
2030
+ evidenceSourceChange: "unchanged" | "expanded" | "reduced" | "changed";
2031
+ relation: "equivalent" | "strengthening" | "contraction" | "incomparable";
2032
+ requiresHumanConfirmation: boolean;
2033
+ changes: {
2034
+ path: string;
2035
+ area: "exclusions" | "question" | "target-scope" | "reader-goals" | "coverage-domain" | "question-semantic" | "question-selector" | "question-domain" | "question-evidence";
2036
+ relation: "strengthening" | "contraction" | "incomparable";
2037
+ detail: string;
2038
+ }[];
2039
+ }, {
2040
+ protocol: "context.indexer.requirement-contraction-comparison/v1";
2041
+ requirementRef: string;
2042
+ evidenceSourceChange: "unchanged" | "expanded" | "reduced" | "changed";
2043
+ relation: "equivalent" | "strengthening" | "contraction" | "incomparable";
2044
+ requiresHumanConfirmation: boolean;
2045
+ changes: {
2046
+ path: string;
2047
+ area: "exclusions" | "question" | "target-scope" | "reader-goals" | "coverage-domain" | "question-semantic" | "question-selector" | "question-domain" | "question-evidence";
2048
+ relation: "strengthening" | "contraction" | "incomparable";
2049
+ detail: string;
2050
+ }[];
2051
+ }>;
2052
+ comparison_digest: z.ZodString;
2053
+ amendment_digest: z.ZodString;
2054
+ }, "strict", z.ZodTypeAny, {
2055
+ protocol: "context.indexer.overlay-question-amendment/v1";
2056
+ project_ref: string;
2057
+ target_registry: {
2058
+ protocol: "context.indexer.registry/v1";
2059
+ requirements: {
2060
+ id: string;
2061
+ reader_goals: string[];
2062
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
2063
+ target_scope: {
2064
+ targets: {
2065
+ source_ref: string;
2066
+ module_refs: string[];
2067
+ }[];
2068
+ };
2069
+ evidence_source_scope: {
2070
+ targets: {
2071
+ source_ref: string;
2072
+ module_refs: string[];
2073
+ }[];
2074
+ };
2075
+ questions?: {
2076
+ ref: string;
2077
+ authority: {
2078
+ kind: "cli-base-contract" | "verified-contract-overlay";
2079
+ ref: string;
2080
+ digest: string;
2081
+ };
2082
+ contract_version: number;
2083
+ contract_digest: string;
2084
+ }[] | undefined;
2085
+ exclusions?: {
2086
+ id: string;
2087
+ scope: {
2088
+ targets: {
2089
+ source_ref: string;
2090
+ module_refs: string[];
2091
+ }[];
2092
+ };
2093
+ reason: string;
2094
+ }[] | undefined;
2095
+ }[];
2096
+ indexers: {
2097
+ id: string;
2098
+ operations: ("main-index" | "material-answer")[];
2099
+ requirement_bindings: {
2100
+ coverage_domains: string[];
2101
+ requirement_ref: string;
2102
+ owned_scope: {
2103
+ targets: {
2104
+ source_ref: string;
2105
+ module_refs: string[];
2106
+ }[];
2107
+ } | {
2108
+ ref: string;
2109
+ };
2110
+ role: "primary" | "enricher";
2111
+ }[];
2112
+ read_scope: {
2113
+ refs: string[];
2114
+ extra_targets?: {
2115
+ source_ref: string;
2116
+ module_refs: string[];
2117
+ }[] | undefined;
2118
+ };
2119
+ profile: {
2120
+ primary: {
2121
+ id: string;
2122
+ provider: string;
2123
+ variants?: Record<string, string> | undefined;
2124
+ };
2125
+ additional?: {
2126
+ id: string;
2127
+ kind: "supporting" | "extension";
2128
+ provider: string;
2129
+ variants?: Record<string, string> | undefined;
2130
+ }[] | undefined;
2131
+ composers?: {
2132
+ id: string;
2133
+ provider: string;
2134
+ }[] | undefined;
2135
+ };
2136
+ providers: {
2137
+ id: string;
2138
+ role: "primary" | "extension";
2139
+ skill: string;
2140
+ version: string;
2141
+ integrity: string;
2142
+ distribution: {
2143
+ kind: "cli-bundled";
2144
+ locator: string;
2145
+ } | {
2146
+ kind: "bundled";
2147
+ locator: string;
2148
+ } | {
2149
+ kind: "workspace";
2150
+ locator: string;
2151
+ } | {
2152
+ kind: "package";
2153
+ locator: string;
2154
+ } | {
2155
+ kind: "marketplace";
2156
+ locator: string;
2157
+ };
2158
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
2159
+ }[];
2160
+ customization?: {
2161
+ mode: "replace" | "extend";
2162
+ } | undefined;
2163
+ }[];
2164
+ };
2165
+ comparison: {
2166
+ protocol: "context.indexer.requirement-contraction-comparison/v1";
2167
+ requirementRef: string;
2168
+ evidenceSourceChange: "unchanged" | "expanded" | "reduced" | "changed";
2169
+ relation: "equivalent" | "strengthening" | "contraction" | "incomparable";
2170
+ requiresHumanConfirmation: boolean;
2171
+ changes: {
2172
+ path: string;
2173
+ area: "exclusions" | "question" | "target-scope" | "reader-goals" | "coverage-domain" | "question-semantic" | "question-selector" | "question-domain" | "question-evidence";
2174
+ relation: "strengthening" | "contraction" | "incomparable";
2175
+ detail: string;
2176
+ }[];
2177
+ };
2178
+ comparison_digest: string;
2179
+ target_requirement_digest: string;
2180
+ base_requirement_digest: string;
2181
+ base_requirement_set_digest: string;
2182
+ target_requirement_set_digest: string;
2183
+ overlay_digest: string;
2184
+ conformance_report_digest: string;
2185
+ requirement_id: string;
2186
+ target_requirement: {
2187
+ id: string;
2188
+ reader_goals: string[];
2189
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
2190
+ target_scope: {
2191
+ targets: {
2192
+ source_ref: string;
2193
+ module_refs: string[];
2194
+ }[];
2195
+ };
2196
+ evidence_source_scope: {
2197
+ targets: {
2198
+ source_ref: string;
2199
+ module_refs: string[];
2200
+ }[];
2201
+ };
2202
+ questions?: {
2203
+ ref: string;
2204
+ authority: {
2205
+ kind: "cli-base-contract" | "verified-contract-overlay";
2206
+ ref: string;
2207
+ digest: string;
2208
+ };
2209
+ contract_version: number;
2210
+ contract_digest: string;
2211
+ }[] | undefined;
2212
+ exclusions?: {
2213
+ id: string;
2214
+ scope: {
2215
+ targets: {
2216
+ source_ref: string;
2217
+ module_refs: string[];
2218
+ }[];
2219
+ };
2220
+ reason: string;
2221
+ }[] | undefined;
2222
+ };
2223
+ target_registry_digest: string;
2224
+ overlay_trust_receipt_digest: string;
2225
+ added_target_domains: {
2226
+ id: string;
2227
+ contract_digest: string;
2228
+ }[];
2229
+ added_questions: {
2230
+ contract: {
2231
+ ref: string;
2232
+ version: number;
2233
+ semantic: string;
2234
+ coverage_domain: string;
2235
+ target_domain_ref: string;
2236
+ target_selector: {
2237
+ protocol: "context.indexer.selector/v1";
2238
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
2239
+ };
2240
+ evidence_contract: {
2241
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
2242
+ minimum_items: number;
2243
+ minimum_distinct_sources: number;
2244
+ provenance_constraints?: {
2245
+ protocol: "context.indexer.selector/v1";
2246
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
2247
+ } | undefined;
2248
+ };
2249
+ allowed_exclusion_reason_codes?: string[] | undefined;
2250
+ };
2251
+ contract_digest: string;
2252
+ binding: {
2253
+ ref: string;
2254
+ authority: {
2255
+ kind: "verified-contract-overlay";
2256
+ ref: string;
2257
+ digest: string;
2258
+ };
2259
+ contract_version: number;
2260
+ contract_digest: string;
2261
+ };
2262
+ }[];
2263
+ amendment_digest: string;
2264
+ }, {
2265
+ protocol: "context.indexer.overlay-question-amendment/v1";
2266
+ project_ref: string;
2267
+ target_registry: {
2268
+ protocol: "context.indexer.registry/v1";
2269
+ requirements: {
2270
+ id: string;
2271
+ reader_goals: string[];
2272
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
2273
+ target_scope: {
2274
+ targets: {
2275
+ source_ref: string;
2276
+ module_refs: string[];
2277
+ }[];
2278
+ };
2279
+ evidence_source_scope: {
2280
+ targets: {
2281
+ source_ref: string;
2282
+ module_refs: string[];
2283
+ }[];
2284
+ };
2285
+ questions?: {
2286
+ ref: string;
2287
+ authority: {
2288
+ kind: "cli-base-contract" | "verified-contract-overlay";
2289
+ ref: string;
2290
+ digest: string;
2291
+ };
2292
+ contract_version: number;
2293
+ contract_digest: string;
2294
+ }[] | undefined;
2295
+ exclusions?: {
2296
+ id: string;
2297
+ scope: {
2298
+ targets: {
2299
+ source_ref: string;
2300
+ module_refs: string[];
2301
+ }[];
2302
+ };
2303
+ reason: string;
2304
+ }[] | undefined;
2305
+ }[];
2306
+ indexers: {
2307
+ id: string;
2308
+ operations: ("main-index" | "material-answer")[];
2309
+ requirement_bindings: {
2310
+ coverage_domains: string[];
2311
+ requirement_ref: string;
2312
+ owned_scope: {
2313
+ targets: {
2314
+ source_ref: string;
2315
+ module_refs: string[];
2316
+ }[];
2317
+ } | {
2318
+ ref: string;
2319
+ };
2320
+ role: "primary" | "enricher";
2321
+ }[];
2322
+ read_scope: {
2323
+ refs: string[];
2324
+ extra_targets?: {
2325
+ source_ref: string;
2326
+ module_refs: string[];
2327
+ }[] | undefined;
2328
+ };
2329
+ profile: {
2330
+ primary: {
2331
+ id: string;
2332
+ provider: string;
2333
+ variants?: Record<string, string> | undefined;
2334
+ };
2335
+ additional?: {
2336
+ id: string;
2337
+ kind: "supporting" | "extension";
2338
+ provider: string;
2339
+ variants?: Record<string, string> | undefined;
2340
+ }[] | undefined;
2341
+ composers?: {
2342
+ id: string;
2343
+ provider: string;
2344
+ }[] | undefined;
2345
+ };
2346
+ providers: {
2347
+ id: string;
2348
+ role: "primary" | "extension";
2349
+ skill: string;
2350
+ version: string;
2351
+ integrity: string;
2352
+ distribution: {
2353
+ kind: "cli-bundled";
2354
+ locator: string;
2355
+ } | {
2356
+ kind: "bundled";
2357
+ locator: string;
2358
+ } | {
2359
+ kind: "workspace";
2360
+ locator: string;
2361
+ } | {
2362
+ kind: "package";
2363
+ locator: string;
2364
+ } | {
2365
+ kind: "marketplace";
2366
+ locator: string;
2367
+ };
2368
+ config?: Record<string, import("./indexerRegistry.js").IndexerJson> | undefined;
2369
+ }[];
2370
+ customization?: {
2371
+ mode: "replace" | "extend";
2372
+ } | undefined;
2373
+ }[];
2374
+ };
2375
+ comparison: {
2376
+ protocol: "context.indexer.requirement-contraction-comparison/v1";
2377
+ requirementRef: string;
2378
+ evidenceSourceChange: "unchanged" | "expanded" | "reduced" | "changed";
2379
+ relation: "equivalent" | "strengthening" | "contraction" | "incomparable";
2380
+ requiresHumanConfirmation: boolean;
2381
+ changes: {
2382
+ path: string;
2383
+ area: "exclusions" | "question" | "target-scope" | "reader-goals" | "coverage-domain" | "question-semantic" | "question-selector" | "question-domain" | "question-evidence";
2384
+ relation: "strengthening" | "contraction" | "incomparable";
2385
+ detail: string;
2386
+ }[];
2387
+ };
2388
+ comparison_digest: string;
2389
+ target_requirement_digest: string;
2390
+ base_requirement_digest: string;
2391
+ base_requirement_set_digest: string;
2392
+ target_requirement_set_digest: string;
2393
+ overlay_digest: string;
2394
+ conformance_report_digest: string;
2395
+ requirement_id: string;
2396
+ target_requirement: {
2397
+ id: string;
2398
+ reader_goals: string[];
2399
+ coverage_domains: Record<string, "required" | "optional" | "out-of-scope">;
2400
+ target_scope: {
2401
+ targets: {
2402
+ source_ref: string;
2403
+ module_refs: string[];
2404
+ }[];
2405
+ };
2406
+ evidence_source_scope: {
2407
+ targets: {
2408
+ source_ref: string;
2409
+ module_refs: string[];
2410
+ }[];
2411
+ };
2412
+ questions?: {
2413
+ ref: string;
2414
+ authority: {
2415
+ kind: "cli-base-contract" | "verified-contract-overlay";
2416
+ ref: string;
2417
+ digest: string;
2418
+ };
2419
+ contract_version: number;
2420
+ contract_digest: string;
2421
+ }[] | undefined;
2422
+ exclusions?: {
2423
+ id: string;
2424
+ scope: {
2425
+ targets: {
2426
+ source_ref: string;
2427
+ module_refs: string[];
2428
+ }[];
2429
+ };
2430
+ reason: string;
2431
+ }[] | undefined;
2432
+ };
2433
+ target_registry_digest: string;
2434
+ overlay_trust_receipt_digest: string;
2435
+ added_target_domains: {
2436
+ id: string;
2437
+ contract_digest: string;
2438
+ }[];
2439
+ added_questions: {
2440
+ contract: {
2441
+ ref: string;
2442
+ version: number;
2443
+ semantic: string;
2444
+ coverage_domain: string;
2445
+ target_domain_ref: string;
2446
+ target_selector: {
2447
+ protocol: "context.indexer.selector/v1";
2448
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
2449
+ };
2450
+ evidence_contract: {
2451
+ accepted_kinds: ("contract" | "code" | "configuration" | "documentation" | "runbook" | "decision-record" | "test-result" | "runtime-observation" | "tool-snapshot")[];
2452
+ minimum_items: number;
2453
+ minimum_distinct_sources: number;
2454
+ provenance_constraints?: {
2455
+ protocol: "context.indexer.selector/v1";
2456
+ expression: import("./indexerRestrictedSelector.js").IndexerRestrictedSelectorExpression;
2457
+ } | undefined;
2458
+ };
2459
+ allowed_exclusion_reason_codes?: string[] | undefined;
2460
+ };
2461
+ contract_digest: string;
2462
+ binding: {
2463
+ ref: string;
2464
+ authority: {
2465
+ kind: "verified-contract-overlay";
2466
+ ref: string;
2467
+ digest: string;
2468
+ };
2469
+ contract_version: number;
2470
+ contract_digest: string;
2471
+ };
2472
+ }[];
2473
+ amendment_digest: string;
2474
+ }>;
2475
+ export type IndexerOverlayQuestionAmendment = z.infer<typeof indexerOverlayQuestionAmendmentSchema>;
2476
+ export interface IndexerOverlayQuestionAuthorityProof {
2477
+ project_ref: string;
2478
+ requirement_id: string;
2479
+ provider_integrity: string;
2480
+ overlay_validation: ReturnType<typeof validateIndexerContractOverlay>;
2481
+ trust_receipt: IndexerOverlayTrustReceipt;
2482
+ }
2483
+ export declare function resolveIndexerOverlayQuestionBindingAuthority(input: {
2484
+ registry: IndexerRegistry;
2485
+ binding: unknown;
2486
+ base_contract: IndexerProfileContract;
2487
+ operator_contract: IndexerOperatorContract;
2488
+ proof: IndexerOverlayQuestionAuthorityProof;
2489
+ }): IndexerResolvedMaterialQuestion;
2490
+ export declare function buildIndexerOverlayQuestionAmendment(input: {
2491
+ project_ref: string;
2492
+ registry: IndexerRegistry;
2493
+ requirement_id: string;
2494
+ overlay_validation: ReturnType<typeof validateIndexerContractOverlay>;
2495
+ base_contract: IndexerProfileContract;
2496
+ operator_contract: IndexerOperatorContract;
2497
+ provider_integrity: string;
2498
+ trust_receipt: unknown;
2499
+ }): IndexerOverlayQuestionAmendment;
2500
+ export declare function validateIndexerOverlayQuestionAmendment(value: unknown): IndexerOverlayQuestionAmendment;
2501
+ export declare const indexerRequirementAmendmentConfirmationSchema: z.ZodObject<{
2502
+ protocol: z.ZodLiteral<"context.indexer.requirement-amendment-confirmation/v1">;
2503
+ project_ref: z.ZodString;
2504
+ amendment_digest: z.ZodString;
2505
+ base_requirement_set_digest: z.ZodString;
2506
+ target_requirement_set_digest: z.ZodString;
2507
+ comparison_digest: z.ZodString;
2508
+ authority: z.ZodEnum<["managed", "human"]>;
2509
+ non_delegable: z.ZodBoolean;
2510
+ confirmed_by: z.ZodString;
2511
+ confirmed_at: z.ZodString;
2512
+ confirmation_digest: z.ZodString;
2513
+ }, "strict", z.ZodTypeAny, {
2514
+ protocol: "context.indexer.requirement-amendment-confirmation/v1";
2515
+ authority: "managed" | "human";
2516
+ project_ref: string;
2517
+ confirmed_by: string;
2518
+ confirmed_at: string;
2519
+ comparison_digest: string;
2520
+ non_delegable: boolean;
2521
+ confirmation_digest: string;
2522
+ base_requirement_set_digest: string;
2523
+ target_requirement_set_digest: string;
2524
+ amendment_digest: string;
2525
+ }, {
2526
+ protocol: "context.indexer.requirement-amendment-confirmation/v1";
2527
+ authority: "managed" | "human";
2528
+ project_ref: string;
2529
+ confirmed_by: string;
2530
+ confirmed_at: string;
2531
+ comparison_digest: string;
2532
+ non_delegable: boolean;
2533
+ confirmation_digest: string;
2534
+ base_requirement_set_digest: string;
2535
+ target_requirement_set_digest: string;
2536
+ amendment_digest: string;
2537
+ }>;
2538
+ export type IndexerRequirementAmendmentConfirmation = z.infer<typeof indexerRequirementAmendmentConfirmationSchema>;
2539
+ export declare function indexerRequirementAmendmentConfirmationDigest(value: Omit<IndexerRequirementAmendmentConfirmation, "confirmation_digest">): string;
2540
+ export declare function confirmIndexerRequirementAmendment(input: {
2541
+ amendment: unknown;
2542
+ authority: "managed" | "human";
2543
+ confirmed_by: string;
2544
+ confirmed_at: string;
2545
+ }): IndexerRequirementAmendmentConfirmation;
2546
+ export declare function validateIndexerRequirementAmendmentConfirmation(input: {
2547
+ amendment: unknown;
2548
+ confirmation: unknown;
2549
+ }): IndexerRequirementAmendmentConfirmation;
2550
+ export declare function indexerRequirementSetDigest(registry: IndexerRegistry): string;
2551
+ export type { RequirementContractionComparison };