@lax-wp/editor 0.4.13 → 0.4.15-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/dist/api/audit.d.ts +79 -0
- package/dist/api/derivedRulebook.d.ts +470 -0
- package/dist/api/documentVersions.d.ts +519 -0
- package/dist/api/effectiveRules.d.ts +372 -0
- package/dist/api/methodology.d.ts +62 -0
- package/dist/api/playbook.d.ts +604 -0
- package/dist/api/promotions.d.ts +1432 -0
- package/dist/api/r1.d.ts +1097 -0
- package/dist/api/r1.fixtures.d.ts +111 -0
- package/dist/api/redlineJobs.d.ts +377 -0
- package/dist/api/redlineStream.d.ts +2979 -0
- package/dist/api/redlines.d.ts +504 -0
- package/dist/api/regsync.d.ts +2355 -0
- package/dist/api/ruleAuthoring.d.ts +305 -0
- package/dist/api/ruleBuilder.d.ts +1009 -0
- package/dist/api/ruleOverrides.d.ts +31 -0
- package/dist/api/ruleStats.d.ts +84 -0
- package/dist/api/rulesCatalog.d.ts +234 -0
- package/dist/api/versions.d.ts +76 -0
- package/dist/api/workspace.d.ts +41 -0
- package/dist/components/EditorSidebar.d.ts +4 -1
- package/dist/components/audit/AuditView.d.ts +8 -0
- package/dist/components/capturededits/AddAsRuleModal.d.ts +8 -0
- package/dist/components/capturededits/CapturedEditCard.d.ts +15 -0
- package/dist/components/capturededits/CapturedEditsTray.d.ts +4 -0
- package/dist/components/capturededits/capturedEditIntent.d.ts +23 -0
- package/dist/components/common/EscDropdown.d.ts +2 -0
- package/dist/components/compliance/MethodologyPanel.d.ts +14 -0
- package/dist/components/compliance/RegSyncPanel.d.ts +18 -0
- package/dist/components/compliance/index.d.ts +8 -0
- package/dist/components/compliance/primitives.d.ts +41 -0
- package/dist/components/documents/DocumentVersionHistory.d.ts +12 -0
- package/dist/components/documents/documentDiff.d.ts +68 -0
- package/dist/components/documents/index.d.ts +4 -0
- package/dist/components/flowdown/FlowdownPanel.d.ts +28 -0
- package/dist/components/flowdown/FlowdownRowCard.d.ts +27 -0
- package/dist/components/flowdown/flowdownModel.d.ts +150 -0
- package/dist/components/history/PlaybookVersionHistory.d.ts +10 -0
- package/dist/components/history/versionDiff.d.ts +14 -0
- package/dist/components/playbook/AllPlaybooksView.d.ts +41 -0
- package/dist/components/playbook/DerivedRulebookView.d.ts +9 -0
- package/dist/components/playbook/DraftedRulePreview.d.ts +17 -0
- package/dist/components/playbook/EffectiveRulesView.d.ts +11 -0
- package/dist/components/playbook/NewRuleDrawer.d.ts +11 -0
- package/dist/components/playbook/PlaybookCard.d.ts +13 -0
- package/dist/components/playbook/PlaybookPage.d.ts +29 -0
- package/dist/components/playbook/PlaybookPanel.d.ts +73 -0
- package/dist/components/playbook/PromotionSuggestions.d.ts +1 -0
- package/dist/components/playbook/ReprioritizeDialog.d.ts +16 -0
- package/dist/components/playbook/RuleDetail.d.ts +27 -0
- package/dist/components/playbook/RuleEditorFields.d.ts +42 -0
- package/dist/components/playbook/RuleEditorModal.d.ts +27 -0
- package/dist/components/playbook/RulePerformancePanel.d.ts +4 -0
- package/dist/components/playbook/RuleRow.d.ts +26 -0
- package/dist/components/playbook/ThisDocumentView.d.ts +45 -0
- package/dist/components/playbook/ViewTabs.d.ts +8 -0
- package/dist/components/playbook/index.d.ts +14 -0
- package/dist/components/playbook/predicateSummary.d.ts +10 -0
- package/dist/components/playbook/primitives.d.ts +82 -0
- package/dist/components/playbook/useFocusTrap.d.ts +6 -0
- package/dist/components/playbook/usePlaybookData.d.ts +161 -0
- package/dist/components/playbook/usePlaybookLabel.d.ts +18 -0
- package/dist/components/r1/ApprovalPanel.d.ts +10 -0
- package/dist/components/r1/CandidateRuleCard.d.ts +8 -0
- package/dist/components/r1/ExecSummaryPanel.d.ts +23 -0
- package/dist/components/r1/PrimeUploadPanel.d.ts +8 -0
- package/dist/components/r1/ReviewStartControls.d.ts +24 -0
- package/dist/components/r1/ReviewSummaryTab.d.ts +38 -0
- package/dist/components/r1/index.d.ts +13 -0
- package/dist/components/r1/primitives.d.ts +59 -0
- package/dist/components/redline/AiReviewPanel.d.ts +194 -0
- package/dist/components/redline/RedlineHoverCard.d.ts +13 -0
- package/dist/components/redline/RedlineItem.d.ts +12 -0
- package/dist/components/redline/ReviewCard.d.ts +49 -0
- package/dist/components/redline/index.d.ts +6 -0
- package/dist/components/redline/reviewItems.d.ts +49 -0
- package/dist/components/redline/reviewPrefs.d.ts +18 -0
- package/dist/components/redline/useRunScopedCards.d.ts +16 -0
- package/dist/components/rulebuilder/AuthorForms.d.ts +28 -0
- package/dist/components/rulebuilder/CandidateQueue.d.ts +21 -0
- package/dist/components/rulebuilder/DraftPane.d.ts +12 -0
- package/dist/components/rulebuilder/RuleBuilderPanel.d.ts +6 -0
- package/dist/components/rulebuilder/RuleCard.d.ts +16 -0
- package/dist/components/rulebuilder/TestBench.d.ts +10 -0
- package/dist/components/rulebuilder/VocabularyPanel.d.ts +26 -0
- package/dist/components/rulebuilder/index.d.ts +13 -0
- package/dist/components/rulebuilder/primitives.d.ts +54 -0
- package/dist/components/rulebuilder/useRuleBuilder.d.ts +291 -0
- package/dist/components/sidebar/ExpandableSidebar.d.ts +2 -0
- package/dist/components/sidebar/WorkspaceRetentionPanel.d.ts +18 -0
- package/dist/components/sidebar/content/TrackChangesContent.d.ts +8 -0
- package/dist/components/sidebar/content/anonymization-page/PIIAnonymization.d.ts +1 -1
- package/dist/components/sidebar/content/anonymization-page/PiiIdleView.d.ts +12 -0
- package/dist/components/sidebar/content/anonymization-page/PiiRecoveryView.d.ts +16 -0
- package/dist/components/sidebar/content/anonymization-page/PiiSummaryView.d.ts +34 -0
- package/dist/components/sidebar/content/anonymization-page/PiiUnavailableView.d.ts +1 -0
- package/dist/components/sidebar/content/anonymization-page/RestoreConfirmDialog.d.ts +9 -0
- package/dist/components/sidebar/content/anonymization-page/anonymizationUtils.d.ts +38 -17
- package/dist/components/sidebar/content/anonymization-page/piiVault.d.ts +18 -0
- package/dist/components/sidebar/content/index.d.ts +0 -1
- package/dist/components/toolbar/AutocompletionToggle.d.ts +1 -0
- package/dist/components/trackChanges/TrackChangesCards.d.ts +1 -0
- package/dist/components/trackChanges/index.d.ts +2 -0
- package/dist/components/trackChanges/utils.d.ts +5 -0
- package/dist/config/EditorConfig.d.ts +197 -73
- package/dist/constants/Extensions.d.ts +12 -0
- package/dist/constants/playbook.d.ts +108 -0
- package/dist/contexts/CapturedEditsContext.d.ts +56 -0
- package/dist/contexts/EditorShellContext.d.ts +4 -1
- package/dist/editor.css +1 -1
- package/dist/extensions/AnonymizedText.d.ts +31 -2
- package/dist/extensions/VariableText.d.ts +20 -0
- package/dist/extensions/index.d.ts +1 -1
- package/dist/extensions/plugins/CapturedEditsPlugin.d.ts +90 -0
- package/dist/extensions/plugins/MarkHighlightPlugin.d.ts +0 -1
- package/dist/extensions/plugins/RedlinePlugin.d.ts +9 -0
- package/dist/extensions/redline/changeTypes.d.ts +70 -0
- package/dist/extensions/redline/constants.d.ts +25 -0
- package/dist/extensions/redline/engine/blockNodes.d.ts +31 -0
- package/dist/extensions/redline/engine/clipboard.d.ts +16 -0
- package/dist/extensions/redline/engine/deletion.d.ts +34 -0
- package/dist/extensions/redline/engine/formatSplit.d.ts +16 -0
- package/dist/extensions/redline/engine/insertion.d.ts +26 -0
- package/dist/extensions/redline/engine/predicates.d.ts +73 -0
- package/dist/extensions/redline/engine/textReplace.d.ts +19 -0
- package/dist/extensions/redline/id.d.ts +7 -0
- package/dist/extensions/redline/index.d.ts +36 -0
- package/dist/extensions/redline/plugin.d.ts +34 -0
- package/dist/extensions/redline/query/scan.d.ts +52 -0
- package/dist/extensions/redline/review/applyChange.d.ts +25 -0
- package/dist/extensions/redline/review/index.d.ts +1 -0
- package/dist/extensions/redline/review/nodeResolvers.d.ts +29 -0
- package/dist/extensions/redline/review/pairedNodes.d.ts +38 -0
- package/dist/extensions/redline/review/structuralRevert.d.ts +20 -0
- package/dist/extensions/redline/review/textResolver.d.ts +9 -0
- package/dist/extensions/redline/schema/marks.d.ts +65 -0
- package/dist/extensions/redline/schema/shared.d.ts +34 -0
- package/dist/extensions/redline/session.d.ts +71 -0
- package/dist/extensions/redline/types.d.ts +24 -0
- package/dist/extensions/trackedChanges/TrackedChanges.d.ts +64 -0
- package/dist/extensions/trackedChanges/constants.d.ts +34 -0
- package/dist/extensions/trackedChanges/engine.d.ts +32 -0
- package/dist/extensions/trackedChanges/index.d.ts +13 -0
- package/dist/extensions/trackedChanges/marks.d.ts +20 -0
- package/dist/extensions/trackedChanges/normalize.d.ts +2 -0
- package/dist/extensions/trackedChanges/plugin.d.ts +32 -0
- package/dist/extensions/trackedChanges/query.d.ts +3 -0
- package/dist/extensions/trackedChanges/review.d.ts +34 -0
- package/dist/extensions/trackedChanges/types.d.ts +72 -0
- package/dist/extensions/trackedChanges/utils.d.ts +20 -0
- package/dist/hooks/useMediaQuery.d.ts +2 -0
- package/dist/hooks/useRedlineHover.d.ts +17 -0
- package/dist/hooks/useRedlineReview.d.ts +83 -0
- package/dist/index.d.ts +46 -0
- package/dist/index.es.js +38491 -22189
- package/dist/index.umd.js +224 -125
- package/dist/utils/cdts.d.ts +37 -0
- package/dist/utils/groundingAdapter.d.ts +36 -0
- package/package.json +39 -33
|
@@ -0,0 +1,2355 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reg-sync API module — FAR/DFARS regulation-change detection.
|
|
3
|
+
*
|
|
4
|
+
* POST /v1/playbooks/regsync/report
|
|
5
|
+
*
|
|
6
|
+
* The backend diffs the clause-master snapshot a workspace's playbooks were
|
|
7
|
+
* built against against the current one, and reports every serving rule whose
|
|
8
|
+
* cited `authority` references a changed clause. It is strictly READ-ONLY over
|
|
9
|
+
* rules: it flags, humans dispose (internal/playbook-engine/regsync).
|
|
10
|
+
*
|
|
11
|
+
* Two request shapes, both from the Go handler
|
|
12
|
+
* (internal/playbook-engine/api/regsync.go):
|
|
13
|
+
*
|
|
14
|
+
* { source: "es" } server pulls the current snapshot from
|
|
15
|
+
* the configured ES clause master, scoped
|
|
16
|
+
* to the clause numbers this workspace's
|
|
17
|
+
* rules cite. 503 when ES is not wired.
|
|
18
|
+
* { new_snapshot, old_snapshot? } caller-supplied snapshots (air-gapped
|
|
19
|
+
* ops + tests). Supplying BOTH `source`
|
|
20
|
+
* and `new_snapshot` is a 400.
|
|
21
|
+
*
|
|
22
|
+
* Baseline semantics: when no `old_snapshot` is supplied AND the server holds
|
|
23
|
+
* no remembered baseline for the workspace, the response is
|
|
24
|
+
* `baseline_established: true` with empty change lists — the new snapshot is
|
|
25
|
+
* stored as the baseline and the NEXT report carries the diff. That baseline
|
|
26
|
+
* lives in **process memory** on the server (regsync.Service's documented v1
|
|
27
|
+
* persistence ceiling), so a backend restart silently resets it. The panel
|
|
28
|
+
* says so rather than presenting "no changes" as a clean bill of health.
|
|
29
|
+
*
|
|
30
|
+
* WIRING GAP, verified live on 2026-08-17: `cmd/server/main.go` never sets
|
|
31
|
+
* `api.Deps.RegSync` (it appears only in Go tests), so in the composed binary
|
|
32
|
+
* `source:"es"` always 503s and the baseline is never remembered — posting a
|
|
33
|
+
* changed snapshot twice returns `baseline_established: true` both times. This
|
|
34
|
+
* client is written against the contract, not the gap; see RegSyncPanel.tsx
|
|
35
|
+
* for what the UI does about it.
|
|
36
|
+
*
|
|
37
|
+
* Transport: reuses `request` from ./playbook — same base URL, bearer token,
|
|
38
|
+
* X-Workspace-Id header and canonical `{code,message}` error envelope. This is
|
|
39
|
+
* a playbook-engine route, so the playbook base URL is the correct one.
|
|
40
|
+
*/
|
|
41
|
+
import { z } from "zod";
|
|
42
|
+
/** regsync.Entry — the tracked state of one clause in a snapshot. */
|
|
43
|
+
export declare const clauseEntrySchema: z.ZodObject<{
|
|
44
|
+
title: z.ZodDefault<z.ZodString>;
|
|
45
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
46
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
47
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
48
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
49
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
50
|
+
title: z.ZodDefault<z.ZodString>;
|
|
51
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
52
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
53
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
54
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
55
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
56
|
+
title: z.ZodDefault<z.ZodString>;
|
|
57
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
58
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
59
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
60
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
61
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
62
|
+
export type ClauseEntry = z.infer<typeof clauseEntrySchema>;
|
|
63
|
+
/**
|
|
64
|
+
* A snapshot maps a BARE clause number ("252.204-7012", no "DFARS " prefix)
|
|
65
|
+
* to its tracked state. Keys are compared literally by the server's Diff.
|
|
66
|
+
*
|
|
67
|
+
* Uses the schema's INPUT shape, not the parsed output: snapshots appear in
|
|
68
|
+
* REQUESTS (a caller supplying `{title}` alone is valid — the server treats
|
|
69
|
+
* absent `effective_date`/`body_hash` as empty), whereas the output type
|
|
70
|
+
* would force callers to invent empty strings for the defaulted fields.
|
|
71
|
+
*/
|
|
72
|
+
export type ClauseSnapshot = Record<string, z.input<typeof clauseEntrySchema>>;
|
|
73
|
+
/** regsync.ClauseChange.Kind. */
|
|
74
|
+
export type ClauseChangeKind = "added" | "removed" | "revised";
|
|
75
|
+
export declare const clauseChangeSchema: z.ZodObject<{
|
|
76
|
+
number: z.ZodString;
|
|
77
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
78
|
+
kind: z.ZodString;
|
|
79
|
+
/** Absent for "added". */
|
|
80
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
81
|
+
title: z.ZodDefault<z.ZodString>;
|
|
82
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
83
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
84
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
85
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
86
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
87
|
+
title: z.ZodDefault<z.ZodString>;
|
|
88
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
89
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
90
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
91
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
92
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
93
|
+
title: z.ZodDefault<z.ZodString>;
|
|
94
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
95
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
96
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
97
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
98
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
99
|
+
/** Absent for "removed". */
|
|
100
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
101
|
+
title: z.ZodDefault<z.ZodString>;
|
|
102
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
103
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
104
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
105
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
106
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
107
|
+
title: z.ZodDefault<z.ZodString>;
|
|
108
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
109
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
110
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
111
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
112
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
113
|
+
title: z.ZodDefault<z.ZodString>;
|
|
114
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
115
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
116
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
117
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
118
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
119
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
120
|
+
number: z.ZodString;
|
|
121
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
122
|
+
kind: z.ZodString;
|
|
123
|
+
/** Absent for "added". */
|
|
124
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
125
|
+
title: z.ZodDefault<z.ZodString>;
|
|
126
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
127
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
128
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
129
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
130
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
131
|
+
title: z.ZodDefault<z.ZodString>;
|
|
132
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
133
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
134
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
135
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
136
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
137
|
+
title: z.ZodDefault<z.ZodString>;
|
|
138
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
139
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
140
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
141
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
142
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
143
|
+
/** Absent for "removed". */
|
|
144
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
145
|
+
title: z.ZodDefault<z.ZodString>;
|
|
146
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
147
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
148
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
149
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
150
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
151
|
+
title: z.ZodDefault<z.ZodString>;
|
|
152
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
153
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
154
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
155
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
156
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
157
|
+
title: z.ZodDefault<z.ZodString>;
|
|
158
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
159
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
160
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
161
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
162
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
163
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
164
|
+
number: z.ZodString;
|
|
165
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
166
|
+
kind: z.ZodString;
|
|
167
|
+
/** Absent for "added". */
|
|
168
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
169
|
+
title: z.ZodDefault<z.ZodString>;
|
|
170
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
171
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
172
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
173
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
174
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
175
|
+
title: z.ZodDefault<z.ZodString>;
|
|
176
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
177
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
178
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
179
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
180
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
181
|
+
title: z.ZodDefault<z.ZodString>;
|
|
182
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
183
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
184
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
185
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
186
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
187
|
+
/** Absent for "removed". */
|
|
188
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
189
|
+
title: z.ZodDefault<z.ZodString>;
|
|
190
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
191
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
192
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
193
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
194
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
195
|
+
title: z.ZodDefault<z.ZodString>;
|
|
196
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
197
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
198
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
199
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
200
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
201
|
+
title: z.ZodDefault<z.ZodString>;
|
|
202
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
203
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
204
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
205
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
206
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
207
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
208
|
+
export type ClauseChange = z.infer<typeof clauseChangeSchema>;
|
|
209
|
+
/** regsync.AffectedRule — one serving rule citing a changed clause. */
|
|
210
|
+
export declare const affectedRuleSchema: z.ZodObject<{
|
|
211
|
+
rule_id: z.ZodString;
|
|
212
|
+
playbook_id: z.ZodString;
|
|
213
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
214
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
215
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
216
|
+
authority: z.ZodString;
|
|
217
|
+
change: z.ZodObject<{
|
|
218
|
+
number: z.ZodString;
|
|
219
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
220
|
+
kind: z.ZodString;
|
|
221
|
+
/** Absent for "added". */
|
|
222
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
223
|
+
title: z.ZodDefault<z.ZodString>;
|
|
224
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
225
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
226
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
227
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
228
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
229
|
+
title: z.ZodDefault<z.ZodString>;
|
|
230
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
231
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
232
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
233
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
234
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
235
|
+
title: z.ZodDefault<z.ZodString>;
|
|
236
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
237
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
238
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
239
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
240
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
241
|
+
/** Absent for "removed". */
|
|
242
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
243
|
+
title: z.ZodDefault<z.ZodString>;
|
|
244
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
245
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
246
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
247
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
248
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
249
|
+
title: z.ZodDefault<z.ZodString>;
|
|
250
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
251
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
252
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
253
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
254
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
255
|
+
title: z.ZodDefault<z.ZodString>;
|
|
256
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
257
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
258
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
259
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
260
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
261
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
262
|
+
number: z.ZodString;
|
|
263
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
264
|
+
kind: z.ZodString;
|
|
265
|
+
/** Absent for "added". */
|
|
266
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
267
|
+
title: z.ZodDefault<z.ZodString>;
|
|
268
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
269
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
270
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
271
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
272
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
273
|
+
title: z.ZodDefault<z.ZodString>;
|
|
274
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
275
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
276
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
277
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
278
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
279
|
+
title: z.ZodDefault<z.ZodString>;
|
|
280
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
281
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
282
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
283
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
284
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
285
|
+
/** Absent for "removed". */
|
|
286
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
287
|
+
title: z.ZodDefault<z.ZodString>;
|
|
288
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
289
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
290
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
291
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
292
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
293
|
+
title: z.ZodDefault<z.ZodString>;
|
|
294
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
295
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
296
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
297
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
298
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
299
|
+
title: z.ZodDefault<z.ZodString>;
|
|
300
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
301
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
302
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
303
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
304
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
305
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
306
|
+
number: z.ZodString;
|
|
307
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
308
|
+
kind: z.ZodString;
|
|
309
|
+
/** Absent for "added". */
|
|
310
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
311
|
+
title: z.ZodDefault<z.ZodString>;
|
|
312
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
313
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
314
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
315
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
316
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
317
|
+
title: z.ZodDefault<z.ZodString>;
|
|
318
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
319
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
320
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
321
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
322
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
323
|
+
title: z.ZodDefault<z.ZodString>;
|
|
324
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
325
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
326
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
327
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
328
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
329
|
+
/** Absent for "removed". */
|
|
330
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
331
|
+
title: z.ZodDefault<z.ZodString>;
|
|
332
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
333
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
334
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
335
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
336
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
337
|
+
title: z.ZodDefault<z.ZodString>;
|
|
338
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
339
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
340
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
341
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
342
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
343
|
+
title: z.ZodDefault<z.ZodString>;
|
|
344
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
345
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
346
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
347
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
348
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
349
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
350
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
351
|
+
rule_id: z.ZodString;
|
|
352
|
+
playbook_id: z.ZodString;
|
|
353
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
354
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
355
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
356
|
+
authority: z.ZodString;
|
|
357
|
+
change: z.ZodObject<{
|
|
358
|
+
number: z.ZodString;
|
|
359
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
360
|
+
kind: z.ZodString;
|
|
361
|
+
/** Absent for "added". */
|
|
362
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
363
|
+
title: z.ZodDefault<z.ZodString>;
|
|
364
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
365
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
366
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
367
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
368
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
369
|
+
title: z.ZodDefault<z.ZodString>;
|
|
370
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
371
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
372
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
373
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
374
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
375
|
+
title: z.ZodDefault<z.ZodString>;
|
|
376
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
377
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
378
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
379
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
380
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
381
|
+
/** Absent for "removed". */
|
|
382
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
383
|
+
title: z.ZodDefault<z.ZodString>;
|
|
384
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
385
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
386
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
387
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
388
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
389
|
+
title: z.ZodDefault<z.ZodString>;
|
|
390
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
391
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
392
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
393
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
394
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
395
|
+
title: z.ZodDefault<z.ZodString>;
|
|
396
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
397
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
398
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
399
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
400
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
401
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
402
|
+
number: z.ZodString;
|
|
403
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
404
|
+
kind: z.ZodString;
|
|
405
|
+
/** Absent for "added". */
|
|
406
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
407
|
+
title: z.ZodDefault<z.ZodString>;
|
|
408
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
409
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
410
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
411
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
412
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
413
|
+
title: z.ZodDefault<z.ZodString>;
|
|
414
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
415
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
416
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
417
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
418
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
419
|
+
title: z.ZodDefault<z.ZodString>;
|
|
420
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
421
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
422
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
423
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
424
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
425
|
+
/** Absent for "removed". */
|
|
426
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
427
|
+
title: z.ZodDefault<z.ZodString>;
|
|
428
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
429
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
430
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
431
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
432
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
433
|
+
title: z.ZodDefault<z.ZodString>;
|
|
434
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
435
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
436
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
437
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
438
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
439
|
+
title: z.ZodDefault<z.ZodString>;
|
|
440
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
441
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
442
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
443
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
444
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
445
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
446
|
+
number: z.ZodString;
|
|
447
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
448
|
+
kind: z.ZodString;
|
|
449
|
+
/** Absent for "added". */
|
|
450
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
451
|
+
title: z.ZodDefault<z.ZodString>;
|
|
452
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
453
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
454
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
455
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
456
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
457
|
+
title: z.ZodDefault<z.ZodString>;
|
|
458
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
459
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
460
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
461
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
462
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
463
|
+
title: z.ZodDefault<z.ZodString>;
|
|
464
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
465
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
466
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
467
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
468
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
469
|
+
/** Absent for "removed". */
|
|
470
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
471
|
+
title: z.ZodDefault<z.ZodString>;
|
|
472
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
473
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
474
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
475
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
476
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
477
|
+
title: z.ZodDefault<z.ZodString>;
|
|
478
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
479
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
480
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
481
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
482
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
483
|
+
title: z.ZodDefault<z.ZodString>;
|
|
484
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
485
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
486
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
487
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
488
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
489
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
490
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
491
|
+
rule_id: z.ZodString;
|
|
492
|
+
playbook_id: z.ZodString;
|
|
493
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
494
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
495
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
496
|
+
authority: z.ZodString;
|
|
497
|
+
change: z.ZodObject<{
|
|
498
|
+
number: z.ZodString;
|
|
499
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
500
|
+
kind: z.ZodString;
|
|
501
|
+
/** Absent for "added". */
|
|
502
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
503
|
+
title: z.ZodDefault<z.ZodString>;
|
|
504
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
505
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
506
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
507
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
508
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
509
|
+
title: z.ZodDefault<z.ZodString>;
|
|
510
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
511
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
512
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
513
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
514
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
515
|
+
title: z.ZodDefault<z.ZodString>;
|
|
516
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
517
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
518
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
519
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
520
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
521
|
+
/** Absent for "removed". */
|
|
522
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
523
|
+
title: z.ZodDefault<z.ZodString>;
|
|
524
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
525
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
526
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
527
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
528
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
529
|
+
title: z.ZodDefault<z.ZodString>;
|
|
530
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
531
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
532
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
533
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
534
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
535
|
+
title: z.ZodDefault<z.ZodString>;
|
|
536
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
537
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
538
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
539
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
540
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
541
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
542
|
+
number: z.ZodString;
|
|
543
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
544
|
+
kind: z.ZodString;
|
|
545
|
+
/** Absent for "added". */
|
|
546
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
547
|
+
title: z.ZodDefault<z.ZodString>;
|
|
548
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
549
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
550
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
551
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
552
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
553
|
+
title: z.ZodDefault<z.ZodString>;
|
|
554
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
555
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
556
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
557
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
558
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
559
|
+
title: z.ZodDefault<z.ZodString>;
|
|
560
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
561
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
562
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
563
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
564
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
565
|
+
/** Absent for "removed". */
|
|
566
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
567
|
+
title: z.ZodDefault<z.ZodString>;
|
|
568
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
569
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
570
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
571
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
572
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
573
|
+
title: z.ZodDefault<z.ZodString>;
|
|
574
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
575
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
576
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
577
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
578
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
579
|
+
title: z.ZodDefault<z.ZodString>;
|
|
580
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
581
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
582
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
583
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
584
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
585
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
586
|
+
number: z.ZodString;
|
|
587
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
588
|
+
kind: z.ZodString;
|
|
589
|
+
/** Absent for "added". */
|
|
590
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
591
|
+
title: z.ZodDefault<z.ZodString>;
|
|
592
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
593
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
594
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
595
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
596
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
597
|
+
title: z.ZodDefault<z.ZodString>;
|
|
598
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
599
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
600
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
601
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
602
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
603
|
+
title: z.ZodDefault<z.ZodString>;
|
|
604
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
605
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
606
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
607
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
608
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
609
|
+
/** Absent for "removed". */
|
|
610
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
611
|
+
title: z.ZodDefault<z.ZodString>;
|
|
612
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
613
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
614
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
615
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
616
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
617
|
+
title: z.ZodDefault<z.ZodString>;
|
|
618
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
619
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
620
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
621
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
622
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
623
|
+
title: z.ZodDefault<z.ZodString>;
|
|
624
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
625
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
626
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
627
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
628
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
629
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
630
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
631
|
+
export type AffectedRule = z.infer<typeof affectedRuleSchema>;
|
|
632
|
+
export declare const regSyncReportSchema: z.ZodObject<{
|
|
633
|
+
changes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
634
|
+
number: z.ZodString;
|
|
635
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
636
|
+
kind: z.ZodString;
|
|
637
|
+
/** Absent for "added". */
|
|
638
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
639
|
+
title: z.ZodDefault<z.ZodString>;
|
|
640
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
641
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
642
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
643
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
644
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
645
|
+
title: z.ZodDefault<z.ZodString>;
|
|
646
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
647
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
648
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
649
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
650
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
651
|
+
title: z.ZodDefault<z.ZodString>;
|
|
652
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
653
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
654
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
655
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
656
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
657
|
+
/** Absent for "removed". */
|
|
658
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
659
|
+
title: z.ZodDefault<z.ZodString>;
|
|
660
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
661
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
662
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
663
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
664
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
665
|
+
title: z.ZodDefault<z.ZodString>;
|
|
666
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
667
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
668
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
669
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
670
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
671
|
+
title: z.ZodDefault<z.ZodString>;
|
|
672
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
673
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
674
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
675
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
676
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
677
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
678
|
+
number: z.ZodString;
|
|
679
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
680
|
+
kind: z.ZodString;
|
|
681
|
+
/** Absent for "added". */
|
|
682
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
683
|
+
title: z.ZodDefault<z.ZodString>;
|
|
684
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
685
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
686
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
687
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
688
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
689
|
+
title: z.ZodDefault<z.ZodString>;
|
|
690
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
691
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
692
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
693
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
694
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
695
|
+
title: z.ZodDefault<z.ZodString>;
|
|
696
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
697
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
698
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
699
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
700
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
701
|
+
/** Absent for "removed". */
|
|
702
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
703
|
+
title: z.ZodDefault<z.ZodString>;
|
|
704
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
705
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
706
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
707
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
708
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
709
|
+
title: z.ZodDefault<z.ZodString>;
|
|
710
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
711
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
712
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
713
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
714
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
715
|
+
title: z.ZodDefault<z.ZodString>;
|
|
716
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
717
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
718
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
719
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
720
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
721
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
722
|
+
number: z.ZodString;
|
|
723
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
724
|
+
kind: z.ZodString;
|
|
725
|
+
/** Absent for "added". */
|
|
726
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
727
|
+
title: z.ZodDefault<z.ZodString>;
|
|
728
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
729
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
730
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
731
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
732
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
733
|
+
title: z.ZodDefault<z.ZodString>;
|
|
734
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
735
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
736
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
737
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
738
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
739
|
+
title: z.ZodDefault<z.ZodString>;
|
|
740
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
741
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
742
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
743
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
744
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
745
|
+
/** Absent for "removed". */
|
|
746
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
747
|
+
title: z.ZodDefault<z.ZodString>;
|
|
748
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
749
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
750
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
751
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
752
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
753
|
+
title: z.ZodDefault<z.ZodString>;
|
|
754
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
755
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
756
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
757
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
758
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
759
|
+
title: z.ZodDefault<z.ZodString>;
|
|
760
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
761
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
762
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
763
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
764
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
765
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
766
|
+
affected_rules: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
767
|
+
rule_id: z.ZodString;
|
|
768
|
+
playbook_id: z.ZodString;
|
|
769
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
770
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
771
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
772
|
+
authority: z.ZodString;
|
|
773
|
+
change: z.ZodObject<{
|
|
774
|
+
number: z.ZodString;
|
|
775
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
776
|
+
kind: z.ZodString;
|
|
777
|
+
/** Absent for "added". */
|
|
778
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
779
|
+
title: z.ZodDefault<z.ZodString>;
|
|
780
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
781
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
782
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
783
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
784
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
785
|
+
title: z.ZodDefault<z.ZodString>;
|
|
786
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
787
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
788
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
789
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
790
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
791
|
+
title: z.ZodDefault<z.ZodString>;
|
|
792
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
793
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
794
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
795
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
796
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
797
|
+
/** Absent for "removed". */
|
|
798
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
799
|
+
title: z.ZodDefault<z.ZodString>;
|
|
800
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
801
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
802
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
803
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
804
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
805
|
+
title: z.ZodDefault<z.ZodString>;
|
|
806
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
807
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
808
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
809
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
810
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
811
|
+
title: z.ZodDefault<z.ZodString>;
|
|
812
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
813
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
814
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
815
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
816
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
817
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
818
|
+
number: z.ZodString;
|
|
819
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
820
|
+
kind: z.ZodString;
|
|
821
|
+
/** Absent for "added". */
|
|
822
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
823
|
+
title: z.ZodDefault<z.ZodString>;
|
|
824
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
825
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
826
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
827
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
828
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
829
|
+
title: z.ZodDefault<z.ZodString>;
|
|
830
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
831
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
832
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
833
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
834
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
835
|
+
title: z.ZodDefault<z.ZodString>;
|
|
836
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
837
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
838
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
839
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
840
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
841
|
+
/** Absent for "removed". */
|
|
842
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
843
|
+
title: z.ZodDefault<z.ZodString>;
|
|
844
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
845
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
846
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
847
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
848
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
849
|
+
title: z.ZodDefault<z.ZodString>;
|
|
850
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
851
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
852
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
853
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
854
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
855
|
+
title: z.ZodDefault<z.ZodString>;
|
|
856
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
857
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
858
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
859
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
860
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
861
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
862
|
+
number: z.ZodString;
|
|
863
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
864
|
+
kind: z.ZodString;
|
|
865
|
+
/** Absent for "added". */
|
|
866
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
867
|
+
title: z.ZodDefault<z.ZodString>;
|
|
868
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
869
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
870
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
871
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
872
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
873
|
+
title: z.ZodDefault<z.ZodString>;
|
|
874
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
875
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
876
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
877
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
878
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
879
|
+
title: z.ZodDefault<z.ZodString>;
|
|
880
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
881
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
882
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
883
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
884
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
885
|
+
/** Absent for "removed". */
|
|
886
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
887
|
+
title: z.ZodDefault<z.ZodString>;
|
|
888
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
889
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
890
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
891
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
892
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
893
|
+
title: z.ZodDefault<z.ZodString>;
|
|
894
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
895
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
896
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
897
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
898
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
899
|
+
title: z.ZodDefault<z.ZodString>;
|
|
900
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
901
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
902
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
903
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
904
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
905
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
906
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
907
|
+
rule_id: z.ZodString;
|
|
908
|
+
playbook_id: z.ZodString;
|
|
909
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
910
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
911
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
912
|
+
authority: z.ZodString;
|
|
913
|
+
change: z.ZodObject<{
|
|
914
|
+
number: z.ZodString;
|
|
915
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
916
|
+
kind: z.ZodString;
|
|
917
|
+
/** Absent for "added". */
|
|
918
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
919
|
+
title: z.ZodDefault<z.ZodString>;
|
|
920
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
921
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
922
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
923
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
924
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
925
|
+
title: z.ZodDefault<z.ZodString>;
|
|
926
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
927
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
928
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
929
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
930
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
931
|
+
title: z.ZodDefault<z.ZodString>;
|
|
932
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
933
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
934
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
935
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
936
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
937
|
+
/** Absent for "removed". */
|
|
938
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
939
|
+
title: z.ZodDefault<z.ZodString>;
|
|
940
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
941
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
942
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
943
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
944
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
945
|
+
title: z.ZodDefault<z.ZodString>;
|
|
946
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
947
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
948
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
949
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
950
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
951
|
+
title: z.ZodDefault<z.ZodString>;
|
|
952
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
953
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
954
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
955
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
956
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
957
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
958
|
+
number: z.ZodString;
|
|
959
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
960
|
+
kind: z.ZodString;
|
|
961
|
+
/** Absent for "added". */
|
|
962
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
963
|
+
title: z.ZodDefault<z.ZodString>;
|
|
964
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
965
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
966
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
967
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
968
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
969
|
+
title: z.ZodDefault<z.ZodString>;
|
|
970
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
971
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
972
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
973
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
974
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
975
|
+
title: z.ZodDefault<z.ZodString>;
|
|
976
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
977
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
978
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
979
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
980
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
981
|
+
/** Absent for "removed". */
|
|
982
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
983
|
+
title: z.ZodDefault<z.ZodString>;
|
|
984
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
985
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
986
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
987
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
988
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
989
|
+
title: z.ZodDefault<z.ZodString>;
|
|
990
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
991
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
992
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
993
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
994
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
995
|
+
title: z.ZodDefault<z.ZodString>;
|
|
996
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
997
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
998
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
999
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1000
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1001
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1002
|
+
number: z.ZodString;
|
|
1003
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1004
|
+
kind: z.ZodString;
|
|
1005
|
+
/** Absent for "added". */
|
|
1006
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1007
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1008
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1009
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1010
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1011
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1012
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1013
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1014
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1015
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1016
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1017
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1018
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1019
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1020
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1021
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1022
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1023
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1024
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1025
|
+
/** Absent for "removed". */
|
|
1026
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1027
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1028
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1029
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1030
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1031
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1032
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1033
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1034
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1035
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1036
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1037
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1038
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1039
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1040
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1041
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1042
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1043
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1044
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1045
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
1046
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1047
|
+
rule_id: z.ZodString;
|
|
1048
|
+
playbook_id: z.ZodString;
|
|
1049
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
1050
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1051
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
1052
|
+
authority: z.ZodString;
|
|
1053
|
+
change: z.ZodObject<{
|
|
1054
|
+
number: z.ZodString;
|
|
1055
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1056
|
+
kind: z.ZodString;
|
|
1057
|
+
/** Absent for "added". */
|
|
1058
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1059
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1060
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1061
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1062
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1063
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1064
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1065
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1066
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1067
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1068
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1069
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1070
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1071
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1072
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1073
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1074
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1075
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1076
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1077
|
+
/** Absent for "removed". */
|
|
1078
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1079
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1080
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1081
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1082
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1083
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1084
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1085
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1086
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1087
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1088
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1089
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1090
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1091
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1092
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1093
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1094
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1095
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1096
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1097
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1098
|
+
number: z.ZodString;
|
|
1099
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1100
|
+
kind: z.ZodString;
|
|
1101
|
+
/** Absent for "added". */
|
|
1102
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1103
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1104
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1105
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1106
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1107
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1108
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1109
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1110
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1111
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1112
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1113
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1114
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1115
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1116
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1117
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1118
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1119
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1120
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1121
|
+
/** Absent for "removed". */
|
|
1122
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1123
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1124
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1125
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1126
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1127
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1128
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1129
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1130
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1131
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1132
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1133
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1134
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1135
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1136
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1137
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1138
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1139
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1140
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1141
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1142
|
+
number: z.ZodString;
|
|
1143
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1144
|
+
kind: z.ZodString;
|
|
1145
|
+
/** Absent for "added". */
|
|
1146
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1147
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1148
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1149
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1150
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1151
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1152
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1153
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1154
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1155
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1156
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1157
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1158
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1159
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1160
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1161
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1162
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1163
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1164
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1165
|
+
/** Absent for "removed". */
|
|
1166
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1167
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1168
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1169
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1170
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1171
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1172
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1173
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1174
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1175
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1176
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1177
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1178
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1179
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1180
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1181
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1182
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1183
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1184
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1185
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
1186
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
1187
|
+
generated_at: z.ZodString;
|
|
1188
|
+
/** Server omits this when false (`omitempty`). */
|
|
1189
|
+
baseline_established: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1190
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1191
|
+
changes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1192
|
+
number: z.ZodString;
|
|
1193
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1194
|
+
kind: z.ZodString;
|
|
1195
|
+
/** Absent for "added". */
|
|
1196
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1197
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1198
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1199
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1200
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1201
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1202
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1203
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1204
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1205
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1206
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1207
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1208
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1209
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1210
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1211
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1212
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1213
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1214
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1215
|
+
/** Absent for "removed". */
|
|
1216
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1217
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1218
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1219
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1220
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1221
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1222
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1223
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1224
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1225
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1226
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1227
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1228
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1229
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1230
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1231
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1232
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1233
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1234
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1235
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1236
|
+
number: z.ZodString;
|
|
1237
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1238
|
+
kind: z.ZodString;
|
|
1239
|
+
/** Absent for "added". */
|
|
1240
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1241
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1242
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1243
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1244
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1245
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1246
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1247
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1248
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1249
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1250
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1251
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1252
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1253
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1254
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1255
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1256
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1257
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1258
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1259
|
+
/** Absent for "removed". */
|
|
1260
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1261
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1262
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1263
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1264
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1265
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1266
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1267
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1268
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1269
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1270
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1271
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1272
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1273
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1274
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1275
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1276
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1277
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1278
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1279
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1280
|
+
number: z.ZodString;
|
|
1281
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1282
|
+
kind: z.ZodString;
|
|
1283
|
+
/** Absent for "added". */
|
|
1284
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1285
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1286
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1287
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1288
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1289
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1290
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1291
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1292
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1293
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1294
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1295
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1296
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1297
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1298
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1299
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1300
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1301
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1302
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1303
|
+
/** Absent for "removed". */
|
|
1304
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1305
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1306
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1307
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1308
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1309
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1310
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1311
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1312
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1313
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1314
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1315
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1316
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1317
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1318
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1319
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1320
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1321
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1322
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1323
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
1324
|
+
affected_rules: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1325
|
+
rule_id: z.ZodString;
|
|
1326
|
+
playbook_id: z.ZodString;
|
|
1327
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
1328
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1329
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
1330
|
+
authority: z.ZodString;
|
|
1331
|
+
change: z.ZodObject<{
|
|
1332
|
+
number: z.ZodString;
|
|
1333
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1334
|
+
kind: z.ZodString;
|
|
1335
|
+
/** Absent for "added". */
|
|
1336
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1337
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1338
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1339
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1340
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1341
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1342
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1343
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1344
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1345
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1346
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1347
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1348
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1349
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1350
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1351
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1352
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1353
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1354
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1355
|
+
/** Absent for "removed". */
|
|
1356
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1357
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1358
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1359
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1360
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1361
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1362
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1363
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1364
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1365
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1366
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1367
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1368
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1369
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1370
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1371
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1372
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1373
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1374
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1375
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1376
|
+
number: z.ZodString;
|
|
1377
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1378
|
+
kind: z.ZodString;
|
|
1379
|
+
/** Absent for "added". */
|
|
1380
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1381
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1382
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1383
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1384
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1385
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1386
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1387
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1388
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1389
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1390
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1391
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1392
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1393
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1394
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1395
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1396
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1397
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1398
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1399
|
+
/** Absent for "removed". */
|
|
1400
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1401
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1402
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1403
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1404
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1405
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1406
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1407
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1408
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1409
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1410
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1411
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1412
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1413
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1414
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1415
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1416
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1417
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1418
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1419
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1420
|
+
number: z.ZodString;
|
|
1421
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1422
|
+
kind: z.ZodString;
|
|
1423
|
+
/** Absent for "added". */
|
|
1424
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1425
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1426
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1427
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1428
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1429
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1430
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1431
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1432
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1433
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1434
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1435
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1436
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1437
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1438
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1439
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1440
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1441
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1442
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1443
|
+
/** Absent for "removed". */
|
|
1444
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1445
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1446
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1447
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1448
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1449
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1450
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1451
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1452
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1453
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1454
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1455
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1456
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1457
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1458
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1459
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1460
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1461
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1462
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1463
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
1464
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1465
|
+
rule_id: z.ZodString;
|
|
1466
|
+
playbook_id: z.ZodString;
|
|
1467
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
1468
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1469
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
1470
|
+
authority: z.ZodString;
|
|
1471
|
+
change: z.ZodObject<{
|
|
1472
|
+
number: z.ZodString;
|
|
1473
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1474
|
+
kind: z.ZodString;
|
|
1475
|
+
/** Absent for "added". */
|
|
1476
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1477
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1478
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1479
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1480
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1481
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1482
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1483
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1484
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1485
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1486
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1487
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1488
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1489
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1490
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1491
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1492
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1493
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1494
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1495
|
+
/** Absent for "removed". */
|
|
1496
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1497
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1498
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1499
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1500
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1501
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1502
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1503
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1504
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1505
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1506
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1507
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1508
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1509
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1510
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1511
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1512
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1513
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1514
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1515
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1516
|
+
number: z.ZodString;
|
|
1517
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1518
|
+
kind: z.ZodString;
|
|
1519
|
+
/** Absent for "added". */
|
|
1520
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1521
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1522
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1523
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1524
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1525
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1526
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1527
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1528
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1529
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1530
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1531
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1532
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1533
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1534
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1535
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1536
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1537
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1538
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1539
|
+
/** Absent for "removed". */
|
|
1540
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1541
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1542
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1543
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1544
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1545
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1546
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1547
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1548
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1549
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1550
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1551
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1552
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1553
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1554
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1555
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1556
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1557
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1558
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1559
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1560
|
+
number: z.ZodString;
|
|
1561
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1562
|
+
kind: z.ZodString;
|
|
1563
|
+
/** Absent for "added". */
|
|
1564
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1565
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1566
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1567
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1568
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1569
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1570
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1571
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1572
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1573
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1574
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1575
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1576
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1577
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1578
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1579
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1580
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1581
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1582
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1583
|
+
/** Absent for "removed". */
|
|
1584
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1585
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1586
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1587
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1588
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1589
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1590
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1591
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1592
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1593
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1594
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1595
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1596
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1597
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1598
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1599
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1600
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1601
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1602
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1603
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
1604
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1605
|
+
rule_id: z.ZodString;
|
|
1606
|
+
playbook_id: z.ZodString;
|
|
1607
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
1608
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1609
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
1610
|
+
authority: z.ZodString;
|
|
1611
|
+
change: z.ZodObject<{
|
|
1612
|
+
number: z.ZodString;
|
|
1613
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1614
|
+
kind: z.ZodString;
|
|
1615
|
+
/** Absent for "added". */
|
|
1616
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1617
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1618
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1619
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1620
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1621
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1622
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1623
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1624
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1625
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1626
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1627
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1628
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1629
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1630
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1631
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1632
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1633
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1634
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1635
|
+
/** Absent for "removed". */
|
|
1636
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1637
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1638
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1639
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1640
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1641
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1642
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1643
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1644
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1645
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1646
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1647
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1648
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1649
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1650
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1651
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1652
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1653
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1654
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1655
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1656
|
+
number: z.ZodString;
|
|
1657
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1658
|
+
kind: z.ZodString;
|
|
1659
|
+
/** Absent for "added". */
|
|
1660
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1661
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1662
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1663
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1664
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1665
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1666
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1667
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1668
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1669
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1670
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1671
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1672
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1673
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1674
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1675
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1676
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1677
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1678
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1679
|
+
/** Absent for "removed". */
|
|
1680
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1681
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1682
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1683
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1684
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1685
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1686
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1687
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1688
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1689
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1690
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1691
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1692
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1693
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1694
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1695
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1696
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1697
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1698
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1699
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1700
|
+
number: z.ZodString;
|
|
1701
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1702
|
+
kind: z.ZodString;
|
|
1703
|
+
/** Absent for "added". */
|
|
1704
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1705
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1706
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1707
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1708
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1709
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1710
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1711
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1712
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1713
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1714
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1715
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1716
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1717
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1718
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1719
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1720
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1721
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1722
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1723
|
+
/** Absent for "removed". */
|
|
1724
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1725
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1726
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1727
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1728
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1729
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1730
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1731
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1732
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1733
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1734
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1735
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1736
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1737
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1738
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1739
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1740
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1741
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1742
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1743
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
1744
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
1745
|
+
generated_at: z.ZodString;
|
|
1746
|
+
/** Server omits this when false (`omitempty`). */
|
|
1747
|
+
baseline_established: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1748
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1749
|
+
changes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1750
|
+
number: z.ZodString;
|
|
1751
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1752
|
+
kind: z.ZodString;
|
|
1753
|
+
/** Absent for "added". */
|
|
1754
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1755
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1756
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1757
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1758
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1759
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1760
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1761
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1762
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1763
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1764
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1765
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1766
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1767
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1768
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1769
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1770
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1771
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1772
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1773
|
+
/** Absent for "removed". */
|
|
1774
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1775
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1776
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1777
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1778
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1779
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1780
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1781
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1782
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1783
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1784
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1785
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1786
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1787
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1788
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1789
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1790
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1791
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1792
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1793
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1794
|
+
number: z.ZodString;
|
|
1795
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1796
|
+
kind: z.ZodString;
|
|
1797
|
+
/** Absent for "added". */
|
|
1798
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1799
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1800
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1801
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1802
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1803
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1804
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1805
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1806
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1807
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1808
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1809
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1810
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1811
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1812
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1813
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1814
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1815
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1816
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1817
|
+
/** Absent for "removed". */
|
|
1818
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1819
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1820
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1821
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1822
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1823
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1824
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1825
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1826
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1827
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1828
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1829
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1830
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1831
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1832
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1833
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1834
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1835
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1836
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1837
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1838
|
+
number: z.ZodString;
|
|
1839
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1840
|
+
kind: z.ZodString;
|
|
1841
|
+
/** Absent for "added". */
|
|
1842
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1843
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1844
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1845
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1846
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1847
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1848
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1849
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1850
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1851
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1852
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1853
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1854
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1855
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1856
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1857
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1858
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1859
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1860
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1861
|
+
/** Absent for "removed". */
|
|
1862
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1863
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1864
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1865
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1866
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1867
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1868
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1869
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1870
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1871
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1872
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1873
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1874
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1875
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1876
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1877
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1878
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1879
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1880
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1881
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
1882
|
+
affected_rules: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1883
|
+
rule_id: z.ZodString;
|
|
1884
|
+
playbook_id: z.ZodString;
|
|
1885
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
1886
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1887
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
1888
|
+
authority: z.ZodString;
|
|
1889
|
+
change: z.ZodObject<{
|
|
1890
|
+
number: z.ZodString;
|
|
1891
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1892
|
+
kind: z.ZodString;
|
|
1893
|
+
/** Absent for "added". */
|
|
1894
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1895
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1896
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1897
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1898
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1899
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1900
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1901
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1902
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1903
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1904
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1905
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1906
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1907
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1908
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1909
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1910
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1911
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1912
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1913
|
+
/** Absent for "removed". */
|
|
1914
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1915
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1916
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1917
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1918
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1919
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1920
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1921
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1922
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1923
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1924
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1925
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1926
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1927
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1928
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1929
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1930
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1931
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1932
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1933
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1934
|
+
number: z.ZodString;
|
|
1935
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1936
|
+
kind: z.ZodString;
|
|
1937
|
+
/** Absent for "added". */
|
|
1938
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1939
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1940
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1941
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1942
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1943
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1944
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1945
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1946
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1947
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1948
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1949
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1950
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1951
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1952
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1953
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1954
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1955
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1956
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1957
|
+
/** Absent for "removed". */
|
|
1958
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1959
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1960
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1961
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1962
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1963
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1964
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1965
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1966
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1967
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1968
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1969
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1970
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1971
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1972
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1973
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1974
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1975
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1976
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
1977
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1978
|
+
number: z.ZodString;
|
|
1979
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
1980
|
+
kind: z.ZodString;
|
|
1981
|
+
/** Absent for "added". */
|
|
1982
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1983
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1984
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1985
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1986
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1987
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1988
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1989
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1990
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1991
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1992
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1993
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1994
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1995
|
+
title: z.ZodDefault<z.ZodString>;
|
|
1996
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
1997
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1998
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
1999
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2000
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2001
|
+
/** Absent for "removed". */
|
|
2002
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2003
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2004
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2005
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2006
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2007
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2008
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2009
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2010
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2011
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2012
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2013
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2014
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2015
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2016
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2017
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2018
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2019
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2020
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2021
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
2022
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2023
|
+
rule_id: z.ZodString;
|
|
2024
|
+
playbook_id: z.ZodString;
|
|
2025
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
2026
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2027
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
2028
|
+
authority: z.ZodString;
|
|
2029
|
+
change: z.ZodObject<{
|
|
2030
|
+
number: z.ZodString;
|
|
2031
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
2032
|
+
kind: z.ZodString;
|
|
2033
|
+
/** Absent for "added". */
|
|
2034
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2035
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2036
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2037
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2038
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2039
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2040
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2041
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2042
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2043
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2044
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2045
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2046
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2047
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2048
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2049
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2050
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2051
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2052
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2053
|
+
/** Absent for "removed". */
|
|
2054
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2055
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2056
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2057
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2058
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2059
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2060
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2061
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2062
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2063
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2064
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2065
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2066
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2067
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2068
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2069
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2070
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2071
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2072
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2073
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2074
|
+
number: z.ZodString;
|
|
2075
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
2076
|
+
kind: z.ZodString;
|
|
2077
|
+
/** Absent for "added". */
|
|
2078
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2079
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2080
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2081
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2082
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2083
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2084
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2085
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2086
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2087
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2088
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2089
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2090
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2091
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2092
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2093
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2094
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2095
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2096
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2097
|
+
/** Absent for "removed". */
|
|
2098
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2099
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2100
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2101
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2102
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2103
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2104
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2105
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2106
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2107
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2108
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2109
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2110
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2111
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2112
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2113
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2114
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2115
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2116
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2117
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2118
|
+
number: z.ZodString;
|
|
2119
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
2120
|
+
kind: z.ZodString;
|
|
2121
|
+
/** Absent for "added". */
|
|
2122
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2123
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2124
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2125
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2126
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2127
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2128
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2129
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2130
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2131
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2132
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2133
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2134
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2135
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2136
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2137
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2138
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2139
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2140
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2141
|
+
/** Absent for "removed". */
|
|
2142
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2143
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2144
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2145
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2146
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2147
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2148
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2149
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2150
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2151
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2152
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2153
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2154
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2155
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2156
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2157
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2158
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2159
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2160
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2161
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
2162
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2163
|
+
rule_id: z.ZodString;
|
|
2164
|
+
playbook_id: z.ZodString;
|
|
2165
|
+
/** "regulatory" | "derived" | ... — omitted by the server when empty. */
|
|
2166
|
+
source: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2167
|
+
/** The rule's citation as authored, e.g. "DFARS 252.204-7012". */
|
|
2168
|
+
authority: z.ZodString;
|
|
2169
|
+
change: z.ZodObject<{
|
|
2170
|
+
number: z.ZodString;
|
|
2171
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
2172
|
+
kind: z.ZodString;
|
|
2173
|
+
/** Absent for "added". */
|
|
2174
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2175
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2176
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2177
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2178
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2179
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2180
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2181
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2182
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2183
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2184
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2185
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2186
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2187
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2188
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2189
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2190
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2191
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2192
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2193
|
+
/** Absent for "removed". */
|
|
2194
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2195
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2196
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2197
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2198
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2199
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2200
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2201
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2202
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2203
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2204
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2205
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2206
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2207
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2208
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2209
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2210
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2211
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2212
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2213
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2214
|
+
number: z.ZodString;
|
|
2215
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
2216
|
+
kind: z.ZodString;
|
|
2217
|
+
/** Absent for "added". */
|
|
2218
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2219
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2220
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2221
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2222
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2223
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2224
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2225
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2226
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2227
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2228
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2229
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2230
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2231
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2232
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2233
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2234
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2235
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2236
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2237
|
+
/** Absent for "removed". */
|
|
2238
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2239
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2240
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2241
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2242
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2243
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2244
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2245
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2246
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2247
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2248
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2249
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2250
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2251
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2252
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2253
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2254
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2255
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2256
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2257
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2258
|
+
number: z.ZodString;
|
|
2259
|
+
/** "added" | "removed" | "revised" — kept open so a new server kind parses. */
|
|
2260
|
+
kind: z.ZodString;
|
|
2261
|
+
/** Absent for "added". */
|
|
2262
|
+
old: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2263
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2264
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2265
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2266
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2267
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2268
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2269
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2270
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2271
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2272
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2273
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2274
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2275
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2276
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2277
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2278
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2279
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2280
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2281
|
+
/** Absent for "removed". */
|
|
2282
|
+
new: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2283
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2284
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2285
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2286
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2287
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2288
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2289
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2290
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2291
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2292
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2293
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2294
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2295
|
+
title: z.ZodDefault<z.ZodString>;
|
|
2296
|
+
/** Raw "Valid From" from the clause master, e.g. "2023-01-30". */
|
|
2297
|
+
effective_date: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2298
|
+
/** Content fingerprint; drives the "revised" verdict. */
|
|
2299
|
+
body_hash: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2300
|
+
}, z.ZodTypeAny, "passthrough">>>>;
|
|
2301
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
2302
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>>;
|
|
2303
|
+
generated_at: z.ZodString;
|
|
2304
|
+
/** Server omits this when false (`omitempty`). */
|
|
2305
|
+
baseline_established: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2306
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
2307
|
+
/** The normalized report the UI consumes (null arrays folded to []). */
|
|
2308
|
+
export interface RegSyncReport {
|
|
2309
|
+
changes: ClauseChange[];
|
|
2310
|
+
affectedRules: AffectedRule[];
|
|
2311
|
+
generatedAt: string;
|
|
2312
|
+
baselineEstablished: boolean;
|
|
2313
|
+
}
|
|
2314
|
+
export interface RegSyncReportOptions {
|
|
2315
|
+
/**
|
|
2316
|
+
* Ask the server to pull the current snapshot from its ES clause master.
|
|
2317
|
+
* This is the only source a UI can offer — a reviewer cannot hand-author a
|
|
2318
|
+
* FAR/DFARS snapshot. Mutually exclusive with `newSnapshot` (server 400s).
|
|
2319
|
+
*/
|
|
2320
|
+
fromClauseMaster?: boolean;
|
|
2321
|
+
/** Caller-supplied current state (air-gapped ops, tests). */
|
|
2322
|
+
newSnapshot?: ClauseSnapshot;
|
|
2323
|
+
/**
|
|
2324
|
+
* Baseline to diff against. Omit to use the server's remembered baseline
|
|
2325
|
+
* for the workspace (see the module docstring on its volatility).
|
|
2326
|
+
*/
|
|
2327
|
+
oldSnapshot?: ClauseSnapshot;
|
|
2328
|
+
signal?: AbortSignal;
|
|
2329
|
+
}
|
|
2330
|
+
/**
|
|
2331
|
+
* POST /v1/playbooks/regsync/report.
|
|
2332
|
+
*
|
|
2333
|
+
* Throws PlaybookApiError; the interesting kinds here are
|
|
2334
|
+
* `dependency_unavailable` (503 — ES clause master not configured, or the
|
|
2335
|
+
* pull failed) and `http` 400 (both/neither snapshot source supplied).
|
|
2336
|
+
*/
|
|
2337
|
+
export declare const getRegSyncReport: (opts?: RegSyncReportOptions) => Promise<RegSyncReport>;
|
|
2338
|
+
/** Regulation family inferred from a bare clause number (FAR 52.x, DFARS 252.x). */
|
|
2339
|
+
export declare const clauseRegulation: (number: string) => "FAR" | "DFARS" | "";
|
|
2340
|
+
/**
|
|
2341
|
+
* Human label for a change. "revised" is split further because the two
|
|
2342
|
+
* revision signals mean different things to a reviewer: a moved
|
|
2343
|
+
* `effective_date` is a new edition of the clause; a moved `body_hash` with
|
|
2344
|
+
* the same date is a correction to the master record.
|
|
2345
|
+
*/
|
|
2346
|
+
export declare const describeChange: (change: ClauseChange) => string;
|
|
2347
|
+
/**
|
|
2348
|
+
* Group affected rules by the clause that changed, so the panel reads
|
|
2349
|
+
* "this clause moved → these rules cite it" rather than repeating the change
|
|
2350
|
+
* once per rule. Insertion order follows the server's sorted `changes`.
|
|
2351
|
+
*/
|
|
2352
|
+
export declare const groupAffectedByClause: (changes: ClauseChange[], affected: AffectedRule[]) => Array<{
|
|
2353
|
+
change: ClauseChange;
|
|
2354
|
+
rules: AffectedRule[];
|
|
2355
|
+
}>;
|