@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,447 @@
1
+ import { z } from "zod";
2
+ export declare const indexerLayoutProposalSetSchema: z.ZodObject<{
3
+ protocol: z.ZodLiteral<"context.indexer.layout-proposal-set/v1">;
4
+ subject_key_schema_set_digest: z.ZodString;
5
+ proposals: z.ZodArray<z.ZodObject<{
6
+ protocol: z.ZodLiteral<"context.indexer.layout-proposal/v1">;
7
+ indexer_id: z.ZodEffects<z.ZodString, string, string>;
8
+ source_ref: z.ZodString;
9
+ profile: z.ZodEffects<z.ZodString, string, string>;
10
+ profile_contract_digest: z.ZodString;
11
+ subject_key_schema_set_digest: z.ZodString;
12
+ subject_key_schema_digest: z.ZodString;
13
+ artifact_result_digest: z.ZodString;
14
+ shared_artifact_fingerprint: z.ZodObject<{
15
+ protocol: z.ZodLiteral<"context.indexer.shared-artifact-fingerprint/v1">;
16
+ indexer_id: z.ZodEffects<z.ZodString, string, string>;
17
+ implementation_fingerprint: z.ZodString;
18
+ instructions_fingerprint: z.ZodString;
19
+ template_fingerprint: z.ZodString;
20
+ } & {
21
+ fingerprint_digest: z.ZodString;
22
+ }, "strict", z.ZodTypeAny, {
23
+ protocol: "context.indexer.shared-artifact-fingerprint/v1";
24
+ indexer_id: string;
25
+ implementation_fingerprint: string;
26
+ instructions_fingerprint: string;
27
+ template_fingerprint: string;
28
+ fingerprint_digest: string;
29
+ }, {
30
+ protocol: "context.indexer.shared-artifact-fingerprint/v1";
31
+ indexer_id: string;
32
+ implementation_fingerprint: string;
33
+ instructions_fingerprint: string;
34
+ template_fingerprint: string;
35
+ fingerprint_digest: string;
36
+ }>;
37
+ node: z.ZodObject<{
38
+ node_ref: z.ZodString;
39
+ subject_key: z.ZodObject<{
40
+ protocol: z.ZodLiteral<"context.subject-key/v1">;
41
+ namespace: z.ZodEffects<z.ZodString, string, string>;
42
+ kind: z.ZodEffects<z.ZodString, string, string>;
43
+ local_key: z.ZodEffects<z.ZodString, string, string>;
44
+ }, "strict", z.ZodTypeAny, {
45
+ kind: string;
46
+ protocol: "context.subject-key/v1";
47
+ namespace: string;
48
+ local_key: string;
49
+ }, {
50
+ kind: string;
51
+ protocol: "context.subject-key/v1";
52
+ namespace: string;
53
+ local_key: string;
54
+ }>;
55
+ }, "strict", z.ZodTypeAny, {
56
+ subject_key: {
57
+ kind: string;
58
+ protocol: "context.subject-key/v1";
59
+ namespace: string;
60
+ local_key: string;
61
+ };
62
+ node_ref: string;
63
+ }, {
64
+ subject_key: {
65
+ kind: string;
66
+ protocol: "context.subject-key/v1";
67
+ namespace: string;
68
+ local_key: string;
69
+ };
70
+ node_ref: string;
71
+ }>;
72
+ artifacts: z.ZodArray<z.ZodObject<{
73
+ artifact_ref: z.ZodString;
74
+ node_ref: z.ZodString;
75
+ artifact_id: z.ZodEffects<z.ZodString, string, string>;
76
+ artifact_kind: z.ZodEffects<z.ZodString, string, string>;
77
+ internal_view_ref: z.ZodString;
78
+ collection: z.ZodType<import("./contracts.js").TopLevelNamespace, z.ZodTypeDef, import("./contracts.js").TopLevelNamespace>;
79
+ output_path: z.ZodEffects<z.ZodString, string, string>;
80
+ shared_artifact_fingerprint_digest: z.ZodString;
81
+ purpose: z.ZodEnum<["required", "discretionary", "semantic-split"]>;
82
+ split_of_artifact_ref: z.ZodNullable<z.ZodString>;
83
+ split_boundary: z.ZodNullable<z.ZodObject<{
84
+ axis: z.ZodEffects<z.ZodString, string, string>;
85
+ start_key: z.ZodString;
86
+ end_key: z.ZodString;
87
+ }, "strict", z.ZodTypeAny, {
88
+ axis: string;
89
+ start_key: string;
90
+ end_key: string;
91
+ }, {
92
+ axis: string;
93
+ start_key: string;
94
+ end_key: string;
95
+ }>>;
96
+ sections: z.ZodArray<z.ZodObject<{
97
+ section_ref: z.ZodString;
98
+ section_identity_ref: z.ZodString;
99
+ section_key: z.ZodEffects<z.ZodString, string, string>;
100
+ owner_indexer_id: z.ZodEffects<z.ZodString, string, string>;
101
+ document_kind: z.ZodEffects<z.ZodString, string, string>;
102
+ reader_goal: z.ZodEffects<z.ZodString, string, string>;
103
+ artifact_kind: z.ZodEffects<z.ZodString, string, string>;
104
+ state: z.ZodEnum<["structured", "rendered", "material-gap"]>;
105
+ content_digest: z.ZodNullable<z.ZodString>;
106
+ evidence_refs: z.ZodArray<z.ZodString, "many">;
107
+ material_question_proposal_ref: z.ZodNullable<z.ZodString>;
108
+ collection_resolution_digest: z.ZodString;
109
+ }, "strict", z.ZodTypeAny, {
110
+ evidence_refs: string[];
111
+ artifact_kind: string;
112
+ state: "material-gap" | "structured" | "rendered";
113
+ document_kind: string;
114
+ reader_goal: string;
115
+ content_digest: string | null;
116
+ section_key: string;
117
+ material_question_proposal_ref: string | null;
118
+ owner_indexer_id: string;
119
+ section_ref: string;
120
+ section_identity_ref: string;
121
+ collection_resolution_digest: string;
122
+ }, {
123
+ evidence_refs: string[];
124
+ artifact_kind: string;
125
+ state: "material-gap" | "structured" | "rendered";
126
+ document_kind: string;
127
+ reader_goal: string;
128
+ content_digest: string | null;
129
+ section_key: string;
130
+ material_question_proposal_ref: string | null;
131
+ owner_indexer_id: string;
132
+ section_ref: string;
133
+ section_identity_ref: string;
134
+ collection_resolution_digest: string;
135
+ }>, "many">;
136
+ }, "strict", z.ZodTypeAny, {
137
+ collection: import("./contracts.js").TopLevelNamespace;
138
+ output_path: string;
139
+ artifact_kind: string;
140
+ artifact_id: string;
141
+ purpose: "required" | "discretionary" | "semantic-split";
142
+ node_ref: string;
143
+ sections: {
144
+ evidence_refs: string[];
145
+ artifact_kind: string;
146
+ state: "material-gap" | "structured" | "rendered";
147
+ document_kind: string;
148
+ reader_goal: string;
149
+ content_digest: string | null;
150
+ section_key: string;
151
+ material_question_proposal_ref: string | null;
152
+ owner_indexer_id: string;
153
+ section_ref: string;
154
+ section_identity_ref: string;
155
+ collection_resolution_digest: string;
156
+ }[];
157
+ artifact_ref: string;
158
+ internal_view_ref: string;
159
+ shared_artifact_fingerprint_digest: string;
160
+ split_of_artifact_ref: string | null;
161
+ split_boundary: {
162
+ axis: string;
163
+ start_key: string;
164
+ end_key: string;
165
+ } | null;
166
+ }, {
167
+ collection: import("./contracts.js").TopLevelNamespace;
168
+ output_path: string;
169
+ artifact_kind: string;
170
+ artifact_id: string;
171
+ purpose: "required" | "discretionary" | "semantic-split";
172
+ node_ref: string;
173
+ sections: {
174
+ evidence_refs: string[];
175
+ artifact_kind: string;
176
+ state: "material-gap" | "structured" | "rendered";
177
+ document_kind: string;
178
+ reader_goal: string;
179
+ content_digest: string | null;
180
+ section_key: string;
181
+ material_question_proposal_ref: string | null;
182
+ owner_indexer_id: string;
183
+ section_ref: string;
184
+ section_identity_ref: string;
185
+ collection_resolution_digest: string;
186
+ }[];
187
+ artifact_ref: string;
188
+ internal_view_ref: string;
189
+ shared_artifact_fingerprint_digest: string;
190
+ split_of_artifact_ref: string | null;
191
+ split_boundary: {
192
+ axis: string;
193
+ start_key: string;
194
+ end_key: string;
195
+ } | null;
196
+ }>, "many">;
197
+ } & {
198
+ proposal_digest: z.ZodString;
199
+ }, "strict", z.ZodTypeAny, {
200
+ source_ref: string;
201
+ protocol: "context.indexer.layout-proposal/v1";
202
+ profile: string;
203
+ node: {
204
+ subject_key: {
205
+ kind: string;
206
+ protocol: "context.subject-key/v1";
207
+ namespace: string;
208
+ local_key: string;
209
+ };
210
+ node_ref: string;
211
+ };
212
+ artifacts: {
213
+ collection: import("./contracts.js").TopLevelNamespace;
214
+ output_path: string;
215
+ artifact_kind: string;
216
+ artifact_id: string;
217
+ purpose: "required" | "discretionary" | "semantic-split";
218
+ node_ref: string;
219
+ sections: {
220
+ evidence_refs: string[];
221
+ artifact_kind: string;
222
+ state: "material-gap" | "structured" | "rendered";
223
+ document_kind: string;
224
+ reader_goal: string;
225
+ content_digest: string | null;
226
+ section_key: string;
227
+ material_question_proposal_ref: string | null;
228
+ owner_indexer_id: string;
229
+ section_ref: string;
230
+ section_identity_ref: string;
231
+ collection_resolution_digest: string;
232
+ }[];
233
+ artifact_ref: string;
234
+ internal_view_ref: string;
235
+ shared_artifact_fingerprint_digest: string;
236
+ split_of_artifact_ref: string | null;
237
+ split_boundary: {
238
+ axis: string;
239
+ start_key: string;
240
+ end_key: string;
241
+ } | null;
242
+ }[];
243
+ indexer_id: string;
244
+ profile_contract_digest: string;
245
+ subject_key_schema_digest: string;
246
+ artifact_result_digest: string;
247
+ shared_artifact_fingerprint: {
248
+ protocol: "context.indexer.shared-artifact-fingerprint/v1";
249
+ indexer_id: string;
250
+ implementation_fingerprint: string;
251
+ instructions_fingerprint: string;
252
+ template_fingerprint: string;
253
+ fingerprint_digest: string;
254
+ };
255
+ proposal_digest: string;
256
+ subject_key_schema_set_digest: string;
257
+ }, {
258
+ source_ref: string;
259
+ protocol: "context.indexer.layout-proposal/v1";
260
+ profile: string;
261
+ node: {
262
+ subject_key: {
263
+ kind: string;
264
+ protocol: "context.subject-key/v1";
265
+ namespace: string;
266
+ local_key: string;
267
+ };
268
+ node_ref: string;
269
+ };
270
+ artifacts: {
271
+ collection: import("./contracts.js").TopLevelNamespace;
272
+ output_path: string;
273
+ artifact_kind: string;
274
+ artifact_id: string;
275
+ purpose: "required" | "discretionary" | "semantic-split";
276
+ node_ref: string;
277
+ sections: {
278
+ evidence_refs: string[];
279
+ artifact_kind: string;
280
+ state: "material-gap" | "structured" | "rendered";
281
+ document_kind: string;
282
+ reader_goal: string;
283
+ content_digest: string | null;
284
+ section_key: string;
285
+ material_question_proposal_ref: string | null;
286
+ owner_indexer_id: string;
287
+ section_ref: string;
288
+ section_identity_ref: string;
289
+ collection_resolution_digest: string;
290
+ }[];
291
+ artifact_ref: string;
292
+ internal_view_ref: string;
293
+ shared_artifact_fingerprint_digest: string;
294
+ split_of_artifact_ref: string | null;
295
+ split_boundary: {
296
+ axis: string;
297
+ start_key: string;
298
+ end_key: string;
299
+ } | null;
300
+ }[];
301
+ indexer_id: string;
302
+ profile_contract_digest: string;
303
+ subject_key_schema_digest: string;
304
+ artifact_result_digest: string;
305
+ shared_artifact_fingerprint: {
306
+ protocol: "context.indexer.shared-artifact-fingerprint/v1";
307
+ indexer_id: string;
308
+ implementation_fingerprint: string;
309
+ instructions_fingerprint: string;
310
+ template_fingerprint: string;
311
+ fingerprint_digest: string;
312
+ };
313
+ proposal_digest: string;
314
+ subject_key_schema_set_digest: string;
315
+ }>, "many">;
316
+ } & {
317
+ set_digest: z.ZodString;
318
+ }, "strict", z.ZodTypeAny, {
319
+ protocol: "context.indexer.layout-proposal-set/v1";
320
+ proposals: {
321
+ source_ref: string;
322
+ protocol: "context.indexer.layout-proposal/v1";
323
+ profile: string;
324
+ node: {
325
+ subject_key: {
326
+ kind: string;
327
+ protocol: "context.subject-key/v1";
328
+ namespace: string;
329
+ local_key: string;
330
+ };
331
+ node_ref: string;
332
+ };
333
+ artifacts: {
334
+ collection: import("./contracts.js").TopLevelNamespace;
335
+ output_path: string;
336
+ artifact_kind: string;
337
+ artifact_id: string;
338
+ purpose: "required" | "discretionary" | "semantic-split";
339
+ node_ref: string;
340
+ sections: {
341
+ evidence_refs: string[];
342
+ artifact_kind: string;
343
+ state: "material-gap" | "structured" | "rendered";
344
+ document_kind: string;
345
+ reader_goal: string;
346
+ content_digest: string | null;
347
+ section_key: string;
348
+ material_question_proposal_ref: string | null;
349
+ owner_indexer_id: string;
350
+ section_ref: string;
351
+ section_identity_ref: string;
352
+ collection_resolution_digest: string;
353
+ }[];
354
+ artifact_ref: string;
355
+ internal_view_ref: string;
356
+ shared_artifact_fingerprint_digest: string;
357
+ split_of_artifact_ref: string | null;
358
+ split_boundary: {
359
+ axis: string;
360
+ start_key: string;
361
+ end_key: string;
362
+ } | null;
363
+ }[];
364
+ indexer_id: string;
365
+ profile_contract_digest: string;
366
+ subject_key_schema_digest: string;
367
+ artifact_result_digest: string;
368
+ shared_artifact_fingerprint: {
369
+ protocol: "context.indexer.shared-artifact-fingerprint/v1";
370
+ indexer_id: string;
371
+ implementation_fingerprint: string;
372
+ instructions_fingerprint: string;
373
+ template_fingerprint: string;
374
+ fingerprint_digest: string;
375
+ };
376
+ proposal_digest: string;
377
+ subject_key_schema_set_digest: string;
378
+ }[];
379
+ set_digest: string;
380
+ subject_key_schema_set_digest: string;
381
+ }, {
382
+ protocol: "context.indexer.layout-proposal-set/v1";
383
+ proposals: {
384
+ source_ref: string;
385
+ protocol: "context.indexer.layout-proposal/v1";
386
+ profile: string;
387
+ node: {
388
+ subject_key: {
389
+ kind: string;
390
+ protocol: "context.subject-key/v1";
391
+ namespace: string;
392
+ local_key: string;
393
+ };
394
+ node_ref: string;
395
+ };
396
+ artifacts: {
397
+ collection: import("./contracts.js").TopLevelNamespace;
398
+ output_path: string;
399
+ artifact_kind: string;
400
+ artifact_id: string;
401
+ purpose: "required" | "discretionary" | "semantic-split";
402
+ node_ref: string;
403
+ sections: {
404
+ evidence_refs: string[];
405
+ artifact_kind: string;
406
+ state: "material-gap" | "structured" | "rendered";
407
+ document_kind: string;
408
+ reader_goal: string;
409
+ content_digest: string | null;
410
+ section_key: string;
411
+ material_question_proposal_ref: string | null;
412
+ owner_indexer_id: string;
413
+ section_ref: string;
414
+ section_identity_ref: string;
415
+ collection_resolution_digest: string;
416
+ }[];
417
+ artifact_ref: string;
418
+ internal_view_ref: string;
419
+ shared_artifact_fingerprint_digest: string;
420
+ split_of_artifact_ref: string | null;
421
+ split_boundary: {
422
+ axis: string;
423
+ start_key: string;
424
+ end_key: string;
425
+ } | null;
426
+ }[];
427
+ indexer_id: string;
428
+ profile_contract_digest: string;
429
+ subject_key_schema_digest: string;
430
+ artifact_result_digest: string;
431
+ shared_artifact_fingerprint: {
432
+ protocol: "context.indexer.shared-artifact-fingerprint/v1";
433
+ indexer_id: string;
434
+ implementation_fingerprint: string;
435
+ instructions_fingerprint: string;
436
+ template_fingerprint: string;
437
+ fingerprint_digest: string;
438
+ };
439
+ proposal_digest: string;
440
+ subject_key_schema_set_digest: string;
441
+ }[];
442
+ set_digest: string;
443
+ subject_key_schema_set_digest: string;
444
+ }>;
445
+ export type IndexerLayoutProposalSet = z.infer<typeof indexerLayoutProposalSetSchema>;
446
+ export declare function buildIndexerLayoutProposalSet(values: readonly unknown[]): IndexerLayoutProposalSet;
447
+ export declare function validateIndexerLayoutProposalSet(value: unknown): IndexerLayoutProposalSet;