@objectstack/lint 17.1.0 → 17.2.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/dist/index.d.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import { Manifest } from '@objectstack/sdui-parser';
2
+ import ts from 'typescript';
2
3
  import { SearchFieldMeta } from '@objectstack/spec/data';
3
4
  import { Options } from 'ajv';
4
5
  import { AccessMatrixParsed } from '@objectstack/spec/security';
5
- export { A as AUTHORING_COMMANDS, a as AUTHORING_RULES, b as AUTHORING_SURFACES, c as AuthoringCommand, d as AuthoringFinding, e as AuthoringRule, f as AuthoringRuleContext, g as AuthoringRuleInputTier, h as AuthoringRuleRun, i as AuthoringRuleTier, j as AuthoringSeverity, k as AuthoringSurface, E as EXPRESSION_INVALID, R as RuntimeGateResult, l as RuntimePackageScope, m as RuntimeStackContext, n as authoringRulesFor, o as buildRuntimeWriteSnapshots, p as narrowObjectsToPackageClosure, r as runAuthoringRules, q as runRuntimeAuthoringRules, s as runtimeAuthoringRulesFor, t as runtimeGatedTypes, u as splitBySeverity, v as stackKeyForType } from './runtime-s3X9D9hm.js';
6
+ export { A as AUTHORING_COMMANDS, a as AUTHORING_RULES, b as AUTHORING_SURFACES, c as AuthoringCommand, d as AuthoringFinding, e as AuthoringRule, f as AuthoringRuleContext, g as AuthoringRuleInputTier, h as AuthoringRuleRun, i as AuthoringRuleTier, j as AuthoringSeverity, k as AuthoringSurface, E as EXPRESSION_INVALID, R as RuntimeGateResult, l as RuntimePackageScope, m as RuntimeStackContext, n as authoringRulesFor, o as buildRuntimeWriteSnapshots, p as narrowObjectsToPackageClosure, r as runAuthoringRules, q as runRuntimeAuthoringRules, s as runtimeAuthoringRulesFor, t as runtimeGatedTypes, u as splitBySeverity, v as stackKeyForType } from './runtime-cV-l_vtC.js';
6
7
 
7
8
  /**
8
9
  * Build-time dashboard widget binding diagnostics (issues #1719, #1721).
@@ -225,6 +226,16 @@ declare const STARTUP_OPEN_VOCABULARY_VERDICT = "startup-open-vocabulary-verdict
225
226
  * {@link STARTUP_OPEN_VOCABULARY_VERDICT} already fired.
226
227
  */
227
228
  declare const STARTUP_VERDICT_ASSERTIVE_WORDING = "startup-verdict-assertive-wording";
229
+ /**
230
+ * The source could not be parsed, so this rule's verdict about it covers only
231
+ * what error recovery left standing (#10653).
232
+ *
233
+ * This rule's own subject matter, turned on the rule: a terminal conclusion
234
+ * drawn about a world that had not finished forming. "No findings" about a
235
+ * source the parser could not read is exactly that, and it is what this module
236
+ * used to return — silently, with a `catch` above it that never ran.
237
+ */
238
+ declare const STARTUP_SOURCE_UNPARSEABLE = "startup-source-unparseable";
228
239
  /**
229
240
  * Accessors that read a capability vocabulary a plugin can still extend.
230
241
  *
@@ -298,8 +309,10 @@ interface StartupRegistryVerdictOptions {
298
309
  * Find startup open-vocabulary verdicts in one TypeScript/JavaScript source.
299
310
  *
300
311
  * Pure: parses, never executes, never type-checks, touches no filesystem. An
301
- * unparseable source yields no findings rather than throwing — this advises on
302
- * source someone else owns, and refusing to parse is not a verdict about them.
312
+ * unparseable source is REPORTED ({@link STARTUP_SOURCE_UNPARSEABLE}) rather
313
+ * than thrown on — this advises on source someone else owns, so refusing to
314
+ * parse is not a verdict about them, but going silent about it was a verdict
315
+ * too, and the wrong one (#10653).
303
316
  */
304
317
  declare function findStartupRegistryVerdicts(source: string, options?: StartupRegistryVerdictOptions): StartupRegistryVerdictFinding[];
305
318
 
@@ -574,6 +587,23 @@ interface ReactPropFinding {
574
587
  hint: string;
575
588
  }
576
589
  type AnyRec$x = Record<string, unknown>;
590
+ /**
591
+ * The source could not be parsed, so the prop checks below read a partially
592
+ * recovered tree (#10653).
593
+ *
594
+ * Severity is `warning`, not `error`, and the reason is measured rather than
595
+ * cautious. The syntax VERDICT on a react page belongs to `validate-react-
596
+ * pages.ts`, which transpiles the same source through **Sucrase** — the parser
597
+ * family that actually compiles a react page — and errors when it refuses. This
598
+ * rule speaks for a different parser, and the two acceptance sets are not the
599
+ * same set: measured on 2026-08-21 (TypeScript 6.0.3 / sucrase 3.35.x), a react
600
+ * source containing `0755`, `'\012'`, `0b2` or `1__0` parses CLEAN through
601
+ * Sucrase while TypeScript reports a parse diagnostic, and `with (o) {}` goes
602
+ * the other way. Erroring here would newly fail builds the platform's own
603
+ * transpiler accepts; going silent is the defect this rule closes. A warning
604
+ * says the true thing: these checks did not get to run.
605
+ */
606
+ declare const REACT_PAGE_SOURCE_UNPARSEABLE = "react-page-source-unparseable";
577
607
  declare const REACT_CHART_FIELD_UNKNOWN = "react-chart-field-unknown";
578
608
  declare const REACT_CHART_FIELD_UNPROVISIONED = "react-chart-field-unprovisioned";
579
609
  declare const REACT_CHART_AGGREGATE_INVALID = "react-chart-aggregate-invalid";
@@ -582,6 +612,58 @@ declare const REACT_CHART_DRILLDOWN_INVALID = "react-chart-drilldown-invalid";
582
612
  declare const REACT_BLOCK_NEEDS_RECORD_CONTEXT = "react-block-needs-record-context";
583
613
  declare function validateReactPageProps(stack: AnyRec$x): ReactPropFinding[];
584
614
 
615
+ /** What a caller needs to tell an author WHICH source went unread, and where. */
616
+ interface SourceParseFailure {
617
+ /** The first parse diagnostic, in the compiler's own wording, flattened to one line. */
618
+ message: string;
619
+ /** 1-based line, in the AUTHORED source's coordinates (see `synthesizedLinesBefore`). */
620
+ line: number;
621
+ /** 1-based column. */
622
+ column: number;
623
+ /** How many parse diagnostics in total — `message` is the first of `count`. */
624
+ count: number;
625
+ }
626
+ /** A parse plus the verdict on whether it succeeded. `failure` absent ⇒ it parsed. */
627
+ interface CheckedParse {
628
+ /**
629
+ * The tree, ALWAYS returned — including when `failure` is set. Error recovery
630
+ * produces a partial tree, and a caller that already reports findings from it
631
+ * keeps doing so: the fix here is the missing SIGNAL, not the removal of
632
+ * whatever the recovered tree could still be read for.
633
+ */
634
+ sourceFile: ts.SourceFile;
635
+ /** Set when the parser reported at least one syntax diagnostic. */
636
+ failure?: SourceParseFailure;
637
+ }
638
+ interface CheckedParseOptions {
639
+ target: ts.ScriptTarget;
640
+ setParentNodes: boolean;
641
+ scriptKind: ts.ScriptKind;
642
+ /**
643
+ * Lines the CALLER synthesised ahead of the authored source, subtracted from
644
+ * the reported position so it lands in the author's coordinates.
645
+ *
646
+ * `validate-hook-body-writes.ts` parses an L2 hook body wrapped in
647
+ * `async function __body(ctx) {\n…\n}` — the shape the runtime compiles it
648
+ * into — so its diagnostics are one line low. The reported line is clamped to
649
+ * at least 1, so a diagnostic that lands on a synthesised line is attributed
650
+ * to the nearest AUTHORED line and never to a line the author did not write.
651
+ */
652
+ synthesizedLinesBefore?: number;
653
+ }
654
+ /**
655
+ * The one wording every caller's message embeds, so three findings about the
656
+ * same defect do not describe it three ways.
657
+ */
658
+ declare function describeParseFailure(failure: SourceParseFailure): string;
659
+ /**
660
+ * The hint every caller's finding carries. It says what the finding IS — a
661
+ * statement about what the checker could read, not a second syntax verdict —
662
+ * because a source that does not parse is not scored, and an author who reads
663
+ * "no problems found" about it would be reading a green line that lied.
664
+ */
665
+ declare const PARSE_FAILURE_HINT: string;
666
+
585
667
  type SourceStyleSeverity = 'error' | 'warning';
586
668
  interface SourceStyleFinding {
587
669
  severity: SourceStyleSeverity;
@@ -1532,21 +1614,75 @@ interface ReferenceIntegrityFinding {
1532
1614
  /** One member of the suite. `name` is the exported function's name — the id a wiring test can assert on. */
1533
1615
  interface ReferenceIntegrityRule {
1534
1616
  name: string;
1617
+ /**
1618
+ * [#9313] The runtime-publish per-write snapshot types this member judges.
1619
+ *
1620
+ * The suite is ONE entry in `AUTHORING_RULES`, and that entry's
1621
+ * `runtimeTypes` says which WRITES dispatch the suite at the runtime publish
1622
+ * gate. This field is the finer axis the entry cannot express: which MEMBERS
1623
+ * are safe to judge that per-write snapshot. The two axes differ because the
1624
+ * snapshot is partial by design (`RuntimeStackContext` carries objects /
1625
+ * permissions / books / datasets and nothing else): a member that resolves
1626
+ * against a collection the snapshot does not carry would not go quiet — it
1627
+ * would report every reference into that collection as dead. Measured on the
1628
+ * `view` widening: `validateActionNameRefs` resolves the action names in
1629
+ * `views[].list` / `views[].listViews.*` against `stack.actions`, which no
1630
+ * per-write snapshot carries, so crossing it with the suite would refuse a
1631
+ * legitimate CONTAINER view write for every stack-level action it names —
1632
+ * a false 422 on the only door a Studio tenant has (on a FLATTENED overlay
1633
+ * it has no rung, so the same crossing would be a silent no-op instead;
1634
+ * measured both ways, `runtime-gate.view-writes.test.ts`).
1635
+ *
1636
+ * ABSENT = `['flow']`, the surface the whole suite has run on since #4463 P1.
1637
+ * The default is deliberately the frozen historical surface, never "all":
1638
+ * widening a member onto another type is an explicit declaration here plus
1639
+ * its own false-positive measurement (#4716's budget), exactly the
1640
+ * discipline `runtimeTypes` gives registry entries. CLI commands ignore this
1641
+ * field entirely — all members always run there (see
1642
+ * {@link validateReferenceIntegrity}).
1643
+ */
1644
+ runtimeTypes?: readonly string[];
1535
1645
  run: (stack: Record<string, unknown>) => ReferenceIntegrityFinding[];
1536
1646
  }
1537
1647
  /**
1538
1648
  * Every reference-integrity rule, in the order their findings are reported.
1539
1649
  *
1540
1650
  * ADDING A RULE: append it here and it runs on `validate`, `lint` and
1541
- * `compile` at once. Do not re-wire the commands.
1651
+ * `compile` at once. Do not re-wire the commands. It joins the runtime
1652
+ * publish gate on the DEFAULT member surface (`flow` snapshots only, #9313) —
1653
+ * widening it to another write type is a `runtimeTypes` declaration on the
1654
+ * member plus that type's own false-positive measurement, never automatic.
1542
1655
  */
1543
1656
  declare const REFERENCE_INTEGRITY_RULES: readonly ReferenceIntegrityRule[];
1657
+ /**
1658
+ * Options for {@link validateReferenceIntegrity}.
1659
+ *
1660
+ * Declared as the suite's own type rather than importing
1661
+ * `AuthoringRuleContext` from `authoring-rules.ts` — the suite predates the
1662
+ * registry and the registry imports the suite, so the dependency must keep
1663
+ * pointing that way. The registry's context is assignable to this shape by
1664
+ * construction (`runtimeWriteType` spells the same key on both).
1665
+ */
1666
+ interface ReferenceIntegrityRunOptions {
1667
+ /**
1668
+ * [#9313] The singular metadata type of the per-write snapshot being judged,
1669
+ * when the caller is the runtime publish gate. Set by `runtime-gate.ts` for
1670
+ * every gated write; ABSENT on the three CLI commands and every whole-stack
1671
+ * caller, which run all members unconditionally.
1672
+ */
1673
+ runtimeWriteType?: string;
1674
+ }
1544
1675
  /**
1545
1676
  * Run every reference-integrity rule over a stack. Returns the concatenated
1546
1677
  * findings (empty = clean). Pure: no I/O, safe on both the schema-parsed stack
1547
1678
  * and the raw/normalized config the `lint` path carries.
1679
+ *
1680
+ * [#9313] When `options.runtimeWriteType` is set — the runtime publish gate
1681
+ * judging one write's snapshot — only the members declaring that type run
1682
+ * (see {@link ReferenceIntegrityRule.runtimeTypes}). Whole-stack callers pass
1683
+ * no options and keep the full suite, byte-identically.
1548
1684
  */
1549
- declare function validateReferenceIntegrity(stack: Record<string, unknown>): ReferenceIntegrityFinding[];
1685
+ declare function validateReferenceIntegrity(stack: Record<string, unknown>, options?: ReferenceIntegrityRunOptions): ReferenceIntegrityFinding[];
1550
1686
 
1551
1687
  /**
1552
1688
  * [ADR-0072 — reference resolvability] App-navigation targets that are not
@@ -1787,8 +1923,11 @@ interface ObjectSearchTarget {
1787
1923
  }
1788
1924
  /**
1789
1925
  * Validate every `searchableFields` declaration in the stack — the object's own
1790
- * (the canonical set, ADR-0061) and the list views that narrow it. Returns
1791
- * findings (empty = clean).
1926
+ * (the canonical set, ADR-0061) and the list views that narrow it, including
1927
+ * the two standalone `views[]` shapes the `PUT /api/v1/meta/view` door
1928
+ * carries and the runtime publish gate snapshots: the flattened list overlay
1929
+ * (#9313, top-level set) and the ViewItem record (#10001,
1930
+ * `config.searchableFields` one level down). Returns findings (empty = clean).
1792
1931
  *
1793
1932
  * The react page surface (`<ListView searchableFields={…}>`) is deliberately
1794
1933
  * NOT walked here: its declaration lives inside JSX source, and
@@ -1799,9 +1938,16 @@ declare function validateSearchableFields(stack: AnyRec$j): SearchableFieldFindi
1799
1938
 
1800
1939
  declare const SORT_FIELD_UNKNOWN = "sort-field-unknown";
1801
1940
  declare const SORT_FIELD_UNSORTABLE = "sort-field-unsortable";
1941
+ /** [#10474] The provenance verdict — a WARNING, unlike the two above. */
1942
+ declare const SORT_FIELD_UNPROVISIONED = "sort-field-unprovisioned";
1802
1943
  type SortableFieldSeverity = 'error' | 'warning';
1803
1944
  interface SortableFieldFinding {
1804
- /** Always `error` — both verdicts are a `400 INVALID_SORT` at request time. */
1945
+ /**
1946
+ * `error` for the two verdicts the runtime REFUSES (`400 INVALID_SORT` at
1947
+ * request time); `warning` for the #10474 provenance verdict, which no
1948
+ * runtime door refuses and which this pass cannot prove against a remote
1949
+ * schema it cannot see.
1950
+ */
1805
1951
  severity: SortableFieldSeverity;
1806
1952
  /** Diagnostic rule id. */
1807
1953
  rule: string;
@@ -1826,7 +1972,7 @@ type AnyRec$i = Record<string, unknown>;
1826
1972
  * created to end. `subject` names the declaration for the message; the parsed
1827
1973
  * key's position is appended to `path` so the author can go straight to it.
1828
1974
  */
1829
- declare function checkSortDeclaration(declared: unknown, objectName: string | undefined, fieldsByObject: ReadonlyMap<string, ObjectSearchTarget | null>, where: string, path: string, subject: string): SortableFieldFinding[];
1975
+ declare function checkSortDeclaration(declared: unknown, objectName: string | undefined, fieldsByObject: ReadonlyMap<string, ObjectSearchTarget | null>, where: string, path: string, subject: string, unprovisionedAnchors?: ReadonlyMap<string, ReadonlySet<string>>): SortableFieldFinding[];
1830
1976
  /**
1831
1977
  * Validate every list-view `sort` declaration in the stack — the object's
1832
1978
  * built-in named list views and the `defineView` aggregates that declare one.
@@ -2472,6 +2618,18 @@ interface HookBodyWriteFinding {
2472
2618
  hint: string;
2473
2619
  }
2474
2620
  declare const HOOK_BODY_WRITE_UNKNOWN_FIELD = "hook-body-write-unknown-field";
2621
+ /**
2622
+ * [#10653] The body did not parse, so its write set is whatever error recovery
2623
+ * left readable.
2624
+ *
2625
+ * Reported rather than skipped for the reason this rule exists at all: a
2626
+ * mistake must be visible where it is MADE. An unparseable body reached the
2627
+ * extractor, produced fewer matches, and came back as a hook with nothing to
2628
+ * report — the same silence the undeclared write itself has at run time, this
2629
+ * time wearing the checker's badge. `warning` because the whole rule is
2630
+ * advisory and never gates (the severity type admits nothing else).
2631
+ */
2632
+ declare const HOOK_BODY_SOURCE_UNPARSEABLE = "hook-body-source-unparseable";
2475
2633
  /**
2476
2634
  * [#8663] The write-axis twin of `flow-template-field-unprovisioned` (#8340):
2477
2635
  * the body writes a field {@link IMPLICIT_FIELDS} exempts, but on THIS target
@@ -2549,6 +2707,31 @@ interface ExtractedHookBodyWriteSet {
2549
2707
  * escape too, which is the safe direction: it suppresses findings.)
2550
2708
  */
2551
2709
  ctxRecordEscapes: boolean;
2710
+ /**
2711
+ * [#10653] Set when the body did not parse, so `writes` is whatever error
2712
+ * recovery left readable rather than the body's actual write set.
2713
+ *
2714
+ * Absent means one of two things, and they are not the same: the body parsed,
2715
+ * or the cheap pre-filter above rejected it before any parse. The filter is a
2716
+ * raw-text scan for `ctx` / `Object`, and a body containing neither cannot
2717
+ * match any pattern however it parses — so a skipped parse claims nothing and
2718
+ * hides nothing.
2719
+ *
2720
+ * ## Whose fault an unparseable body is — asked, not assumed
2721
+ *
2722
+ * The body is parsed inside a synthesised wrapper (`async function __body(ctx)
2723
+ * { … }`) because that is the shape the runtime compiles it into
2724
+ * (`new AsyncFunction('ctx', source)`). So a parse failure here could in
2725
+ * principle be the WRAPPER's fault rather than the author's, and blaming the
2726
+ * author for the checker's own bug is the failure this whole change is about.
2727
+ * It cannot be: the wrapper is a constant, and `validate-hook-body-writes.
2728
+ * test.ts` pins that it parses clean around an empty body and around every
2729
+ * example in the pattern ledger. Any diagnostic therefore comes from the
2730
+ * body — and its position is reported in the BODY's own coordinates (the
2731
+ * wrapper's line is subtracted, and the result is clamped so it can never
2732
+ * point at a line the author did not write).
2733
+ */
2734
+ parseFailure?: SourceParseFailure;
2552
2735
  }
2553
2736
  /**
2554
2737
  * Extract every literal field write the pattern ledger declares from an L2
@@ -2582,6 +2765,17 @@ interface ActionBodyWriteFinding {
2582
2765
  }
2583
2766
  declare const ACTION_BODY_WRITE_UNKNOWN_FIELD = "action-body-write-unknown-field";
2584
2767
  declare const ACTION_RECORD_WRITE_DISCARDED = "action-record-write-discarded";
2768
+ /**
2769
+ * [#10653] The action-surface twin of `hook-body-source-unparseable`. Same
2770
+ * extractor, same synthesised wrapper, same parse — so the body that came back
2771
+ * silently unread on the hook surface came back silently unread here too.
2772
+ *
2773
+ * Wiring only the hook rule would have left the blind half standing at the call
2774
+ * site next door, which this rule's own division of labour forbids: an action
2775
+ * body runs through the same `HookBodySchema` and the same sandbox, so it gets
2776
+ * the same treatment.
2777
+ */
2778
+ declare const ACTION_BODY_SOURCE_UNPARSEABLE = "action-body-source-unparseable";
2585
2779
  /**
2586
2780
  * [#8663] The action-surface twin of `hook-body-write-unprovisioned-anchor`.
2587
2781
  * Same question, same wording, same `warning` severity — this rule and the hook
@@ -2881,10 +3075,20 @@ interface LintIssue {
2881
3075
  * `f.where ?? f.path` at the adapter) is the same discipline — a consumer-side
2882
3076
  * fallback would let the next rule ship the positional spelling again, silently.
2883
3077
  *
2884
- * `path` is unchanged and stays positional: it is the slot that is SUPPOSED to
2885
- * be a config path, `os validate` prints it after `at`, and the runtime gate's
2886
- * `fingerprint` reads `where` and `path` together (making `where` more specific
2887
- * cannot merge two findings that were distinct).
3078
+ * `path` is unchanged and stays positional AT THE RULE LEVEL: it is the slot
3079
+ * that is SUPPOSED to be a config path, `os validate` prints it after `at`
3080
+ * (where the index resolves against the author's own config file), and the
3081
+ * runtime gate's `fingerprint` reads `where` and `path` together (making
3082
+ * `where` more specific cannot merge two findings that were distinct).
3083
+ *
3084
+ * [#10064] On the runtime gate's WIRE surface (`RuntimeAuthoringIssue.path`,
3085
+ * the 422 `issues[]` / 2xx `advisories`), the top-level collection index of a
3086
+ * collection-resident finding is rewritten to the entry's NAME
3087
+ * (`objects[417].sharingModel` → `objects.acme_invoice.sharingModel`) after
3088
+ * the differential — a runtime caller has no array to resolve `417` against;
3089
+ * that index numbers the gate's private per-write snapshot. The rewrite lives
3090
+ * in `runtime-gate.ts` (`nameKeyFindingPath`); rules keep emitting positional
3091
+ * paths and need no awareness of it.
2888
3092
  */
2889
3093
  interface LocatedLintIssue extends LintIssue {
2890
3094
  /** Human-readable location, e.g. `object "sys_account" · index 'uniq_org_email'`. */
@@ -2980,4 +3184,4 @@ declare function lintLegacyOrganizationComposites(objects: any[]): LocatedLintIs
2980
3184
  */
2981
3185
  declare function lintDataModel(objects: any[]): LintIssue[];
2982
3186
 
2983
- export { ACTION_BODY_WRITE_EXCLUSIONS, ACTION_BODY_WRITE_PATTERNS, ACTION_BODY_WRITE_PATTERN_IDS, ACTION_BODY_WRITE_UNKNOWN_FIELD, ACTION_BODY_WRITE_UNPROVISIONED_ANCHOR, ACTION_NAME_UNDEFINED, ACTION_NO_PLACEMENT, ACTION_RECORD_WRITE_DISCARDED, ACTION_RECORD_WRITE_PATTERNS, ACTION_RECORD_WRITE_PATTERN_IDS, AGENT_AUTHORING_WITHDRAWN, AI_SKILL_SURFACE_MISMATCH, AI_SKILL_TOOL_UNRESOLVED, APPROVAL_APPROVERS_MAY_RESOLVE_EMPTY, APPROVAL_APPROVER_CROSS_ORG_UNSUPPORTED, APPROVAL_APPROVER_NOT_MEMBERSHIP_TIER, APPROVAL_APPROVER_TYPE_DEPRECATED, APPROVAL_APPROVER_TYPE_UNKNOWN, APPROVAL_APPROVER_TYPE_UNSUPPORTED, APPROVAL_DECISION_OUTPUTS_RESERVED, APPROVAL_ESCALATION_REASSIGN_NO_TARGET, APPROVAL_EXPRESSION_INVALID, APPROVAL_EXPRESSION_NO_EMPTY_POLICY, AUTONUMBER_LITERAL_TOKEN, AUTONUMBER_OPTIONAL_FIELD, AUTONUMBER_SELF_REFERENCE, AUTONUMBER_UNKNOWN_FIELD, type ActionBodyWriteExclusion, type ActionBodyWriteFinding, type ActionBodyWriteSeverity, type ActionLocationsFinding, type ActionLocationsSeverity, type ActionNameRefFinding, type ActionNameRefSeverity, type AiAgentAuthoringFinding, type AiAgentAuthoringSeverity, type AiSurfaceAffinityFinding, type AiSurfaceAffinitySeverity, type AiToolRefFinding, type AiToolRefSeverity, type ApprovalApproverFinding, type ApprovalApproverSeverity, type AutonumberLintFinding, type BodyWritePatternExclusion, CAPABILITY_REFERENCE_UNKNOWN, CHART_AXIS_NOT_SELECTED, CHART_CONFIG_MISSING, CHART_DATASET_UNKNOWN, CHART_DIMENSION_UNKNOWN, CHART_FIELD_UNKNOWN, CHART_MEASURE_UNKNOWN, COMPONENT_PROPS_INVALID, COMPONENT_PROPS_UNKNOWN_KEY, type CapabilityRefFinding, type CapabilityRefSeverity, type ChartBindingFinding, type ChartBindingSeverity, type ComponentPropsFinding, type ComponentPropsSeverity, DASHBOARD_ACTION_ROUTE_UNRESOLVED, DASHBOARD_ACTION_TARGET_UNDEFINED, DASHBOARD_FILTER_FIELD_UNKNOWN, DASHBOARD_FILTER_FIELD_UNPROVISIONED, DEFAULT_AGENT_OUTSIDE_ROSTER, type DashboardActionRefFinding, type DashboardActionRefSeverity, type EmptyCombinatorFinding, type EmptyCombinatorSeverity, type ExprIssue, type ExtractedHookBodyWrite, type ExtractedHookBodyWriteSet, FIELD_GROUP_EMPTY, FIELD_GROUP_SHADOWED, FIELD_GROUP_UNDECLARED, FILTER_EMPTY_COMBINATOR, FILTER_EMPTY_NODE, FILTER_PRESET_COMPARAND, FILTER_TOKEN_UNKNOWN, FLOW_APPROVAL_REVISE_DEAD_END, FLOW_APPROVAL_REVISE_DISABLED, FLOW_APPROVAL_REVISE_TARGET_NOT_SERVICE_OWNED, FLOW_APPROVAL_REVISE_UNMARKED_BACKEDGE, FLOW_BARE_DOLLAR_REF, FLOW_BRANCH_LABEL_UNMATCHED, FLOW_DATE_EQUALITY_FILTER, FLOW_DECISION_UNCONDITIONAL_BRANCH, FLOW_DEFAULT_EDGE_WITH_CONDITION, FLOW_DOUBLE_BRACE_INTERP, FLOW_DRAFT_STATUS_AMBIGUOUS, FLOW_ERROR_LABEL_NOT_FAULT, FLOW_INERT_NODE_CONDITION, FLOW_MULTIPLE_DEFAULT_EDGES, FLOW_MULTI_WRITE_UNFILTERED, FLOW_NODE_WRITE_UNKNOWN_FIELD, FLOW_NODE_WRITE_UNPROVISIONED_ANCHOR, FLOW_PHANTOM_AGGREGATION, FLOW_RUNAS_UNSCOPED, FLOW_TEMPLATE_FIELD_UNPROVISIONED, FLOW_TEMPLATE_LOOKUP_TRAVERSAL, FLOW_TEMPLATE_UNKNOWN_FIELD, FLOW_TIME_RELATIVE_ANTIPATTERN, FLOW_TIME_RELATIVE_DESCRIPTOR_INVALID, FLOW_TIME_RELATIVE_DESCRIPTOR_UNROUTABLE, FLOW_TRIGGER_UNKNOWN_EVENT, FLOW_TRIGGER_UNKNOWN_OBJECT, FLOW_TRIGGER_UNROUTABLE, FLOW_UPDATE_READONLY_FIELD, FLOW_UPDATE_READONLY_WHEN_FIELD, FLOW_WRITE_NODE_TYPES, FLOW_WRITE_NODE_TYPES_DEFERRED, FORM_COLSPAN_ABSOLUTE, FORM_FIELD_UNKNOWN, type FilterTokenFinding, type FilterTokenSeverity, type FlowLintFinding, type FlowNodeWriteFinding, type FlowNodeWriteSeverity, type FlowTemplatePathFinding, type FlowTemplatePathSeverity, type FlowTriggerReadinessFinding, type FlowTriggerReadinessSeverity, type FlowWriteNodeDeferral, type FormLayoutFinding, type FormLayoutSeverity, type FunctionalCompletenessFinding, type FunctionalCompletenessSeverity, HOOK_BODY_WRITE_EXCLUSIONS, HOOK_BODY_WRITE_PATTERNS, HOOK_BODY_WRITE_PATTERN_IDS, HOOK_BODY_WRITE_UNKNOWN_FIELD, HOOK_BODY_WRITE_UNPROVISIONED_ANCHOR, type HookBodyWriteFinding, type HookBodyWritePattern, type HookBodyWriteSeverity, type JsxPageFinding, type JsxPageSeverity, LIST_VIEW_FILTERS_IN_VIEWS_MODE, LIVENESS_DEAD_PROPERTY, LIVENESS_EXPERIMENTAL_PROPERTY, type LintIssue, type ListViewModeFinding, type ListViewModeSeverity, type LivenessLintFinding, type LocatedLintIssue, MANAGED_API_METHOD_UNAFFORDABLE, MAX_SCHEMA_WALK_DEPTH, MEASURE_AGGREGATE_INCOHERENT, type ManagedApiMethodFinding, NAV_OBJECT_UNGRANTED, NAV_OBJECT_UNSERVABLE, NAV_TARGET_UNRESOLVED, NULL_GUARD_HINT, type NavAccessFinding, type NavAccessSeverity, type NavObjectServabilityFinding, type NavTargetRefFinding, type NavTargetRefSeverity, type NullGuardFinding, type NullGuardOptions, OBJECT_REFERENCE_UNKNOWN, OBJECT_REFERENCE_UNREGISTERED_PLATFORM, OPEN_VOCABULARY_PROBES, ORG_AXIS_CROSS_ORG_BU_GRANT, ORG_AXIS_PERMISSION_INHERITANCE, type ObjectRefFinding, type ObjectRefSeverity, type OrgAxisFinding, type OrgAxisSeverity, PAGE_FIELD_UNKNOWN, PAGE_FIELD_UNPROVISIONED, PAGE_SOURCE_CLASSNAME, PREDICATE_PATH_UNRESOLVED, PREDICATE_PATH_UNROOTED, PREDICATE_RHS_PATH_SHAPED, PRE_SEAL_PHASES, type PageFieldFinding, type PageFieldSeverity, type PredicatePathFinding, type PredicatePathOptions, type PredicatePathSeverity, type PresetComparandFinding, type PresetComparandSeverity, REACT_BLOCK_NEEDS_RECORD_CONTEXT, REACT_CHART_AGGREGATE_INVALID, REACT_CHART_AXIS_UNKNOWN, REACT_CHART_DRILLDOWN_INVALID, REACT_CHART_FIELD_UNKNOWN, REACT_CHART_FIELD_UNPROVISIONED, REFERENCE_INTEGRITY_RULES, RLS_PREDICATE_OVER_BUDGET, RLS_PREDICATE_UNENFORCEABLE, RLS_PREDICATE_UNPARSEABLE, RUNTIME_AJV_OPTIONS, type ReactPageFinding, type ReactPageSeverity, type ReactPropFinding, type ReactPropSeverity, type ReadonlyFlowWriteFinding, type ReadonlyFlowWriteSeverity, type RecordTitleFinding, type RecordTitleSeverity, type ReferenceIntegrityFinding, type ReferenceIntegrityRule, type ReferenceIntegritySeverity, type RlsPredicateFinding, type RlsPredicateSeverity, type RuleCompilabilityFinding, type RuleCompilabilitySeverity, type RuleSchemaFormatFinding, type RuleSchemaFormatSeverity, SEAL_MARKERS, SEARCHABLE_FIELD_UNKNOWN, SEARCHABLE_FIELD_UNPROVISIONED, SEARCHABLE_FIELD_UNSEARCHABLE, SECURITY_ANCHOR_HIGH_PRIVILEGE, SECURITY_BOOK_AUDIENCE_UNKNOWN_SET, SECURITY_CBP_NO_RELATION, SECURITY_DELEGATION_MISSING_REASON, SECURITY_EXTERNAL_WIDER, SECURITY_FLS_UNQUALIFIED_KEY, SECURITY_GRANT_EXPIRED_AT_AUTHORING, SECURITY_MASTER_DETAIL_UNGRANTED, SECURITY_OWD_ALIAS, SECURITY_OWD_UNSET, SECURITY_PRIVATE_NO_READSCOPE, SECURITY_ROLE_WORD, SECURITY_WILDCARD_VAMA, SEED_INSERT_MODE_DUPLICATES_ON_REPLAY, SEED_VALUE_OUTSIDE_STATE_MACHINE, SEMANTIC_ROLE_FIELD_UNKNOWN, SEMANTIC_ROLE_FIELD_UNPROVISIONED, SHARING_RULE_OBJECT_CONTROLLED_BY_PARENT, SHARING_RULE_OBJECT_NOT_SHAREABLE, SHARING_RULE_RUNTIME_VARIABLE_CONDITION, SHARING_RULE_UNLOWERABLE_CONDITION, SORT_FIELD_UNKNOWN, SORT_FIELD_UNSORTABLE, STARTUP_OPEN_VOCABULARY_VERDICT, STARTUP_VERDICT_ASSERTIVE_WORDING, STARTUP_VERDICT_HINT, STYLE_CLASSNAME_TAILWIND, STYLE_NODE_MISSING_ID, STYLE_RESPONSIVE_NO_BASE, STYLE_UNKNOWN_CSS_PROPERTY, STYLE_UNKNOWN_TOKEN, type SearchableFieldFinding, type SearchableFieldRole, type SearchableFieldSeverity, type SecurityFinding, type SecuritySeverity, type SeedReplaySafetyFinding, type SeedReplaySafetySeverity, type SeedStateMachineFinding, type SeedStateMachineSeverity, type SemanticRoleFinding, type SemanticRoleSeverity, type Severity, type SharingRuleEnforceabilityFinding, type SharingRuleEnforceabilitySeverity, type SortableFieldFinding, type SortableFieldSeverity, type SourceStyleFinding, type SourceStyleSeverity, type StartupRegistryVerdictFinding, type StartupRegistryVerdictOptions, type StartupRegistryVerdictSeverity, type StyleFinding, type StyleSeverity, TABLE_COUNT_ONLY, TITLE_FORMAT_RETIRED, TITLE_UNRESOLVABLE, TRANSLATION_OPTION_KEY_UNKNOWN, TRANSLATION_SECTION_NAME_MISSING, TRANSLATION_TARGET_UNKNOWN, type TranslatableSectionFinding, type TranslatableSectionSeverity, type TranslationRefFinding, type TranslationRefSeverity, UNIQUE_DOUBLE_DECLARATION, UNIQUE_LEGACY_ORGANIZATION_COMPOSITE, UNIQUE_UNSCOPED_DECLARED_INDEX, VALIDATION_RULE_REGEX_UNCOMPILABLE, VALIDATION_RULE_SCHEMA_UNCOMPILABLE, VALIDATION_RULE_SCHEMA_UNKNOWN_FORMAT, VIEW_CONTAINER_SHAPE, VIEW_KEY_COLLISION, VIEW_REF_FORM_TARGET_KIND, VIEW_REF_FORM_TARGET_MISSING, VISIBILITY_BARE_IDENTIFIER, VISIBILITY_PREDICATE_OVER_BUDGET, VISIBILITY_PREDICATE_SYNTAX, VISIBILITY_ROOT_MISLAYERED, type ViewContainerFinding, type ViewContainerSeverity, type ViewRefFinding, type VisibilityFinding, type VisibilityLayer, type VisibilityOptions, type VisibilitySeverity, WIDGET_DATASET_UNKNOWN, WIDGET_DIMENSION_UNKNOWN, WIDGET_LEGACY_ANALYTICS_SHAPE, WIDGET_LEGACY_ANALYTICS_UNRENDERABLE, WIDGET_MEASURE_UNKNOWN, type WalkedComponent, type WalkedValidationRule, type WidgetBindingFinding, type WidgetBindingSeverity, buildAccessMatrix, checkSortDeclaration, diffAccessMatrix, extractHookBodyWriteSet, extractHookBodyWrites, findStartupRegistryVerdicts, findUnguardedNullableOperands, isSourceAuthoredPage, lintAutonumberFormats, lintDataModel, lintFlowPatterns, lintLegacyOrganizationComposites, lintLivenessProperties, lintUniqueDeclarations, lintUnscopedDeclaredIndexes, lintViewRefs, nearestRegisteredFormat, nullGuardMessage, validateActionBodyWrites, validateActionLocations, validateActionNameRefs, validateAiAgentAuthoring, validateAiSurfaceAffinity, validateAiToolReferences, validateApprovalApprovers, validateCapabilityReferences, validateChartBindings, validateComponentProps, validateDashboardActionRefs, validateEmptyCombinators, validateFilterTokens, validateFlowNodeWrites, validateFlowTemplatePaths, validateFlowTriggerReadiness, validateFormLayout, validateFunctionalCompleteness, validateHookBodyWrites, validateJsxPages, validateListViewMode, validateManagedApiMethods, validateNavAccess, validateNavObjectServability, validateNavTargetRefs, validateObjectReferences, validateOrgAxisRedLines, validatePageFieldBindings, validatePageSourceStyling, validatePredicatePathRefs, validatePresetComparands, validateReactPageProps, validateReactPages, validateReadonlyFlowWrites, validateRecordTitle, validateReferenceIntegrity, validateResponsiveStyles, validateRlsPredicateEnforceability, validateRuleCompilability, validateRuleSchemaFormats, validateSearchableFields, validateSecurityPosture, validateSecurityRoleWord, validateSeedReplaySafety, validateSeedStateMachine, validateSemanticRoles, validateSharingRuleEnforceability, validateSortableFields, validateStackExpressions, validateTranslatableSections, validateTranslationReferences, validateViewContainers, validateVisibilityPredicates, validateWidgetBindings, walkPageComponents };
3187
+ export { ACTION_BODY_SOURCE_UNPARSEABLE, ACTION_BODY_WRITE_EXCLUSIONS, ACTION_BODY_WRITE_PATTERNS, ACTION_BODY_WRITE_PATTERN_IDS, ACTION_BODY_WRITE_UNKNOWN_FIELD, ACTION_BODY_WRITE_UNPROVISIONED_ANCHOR, ACTION_NAME_UNDEFINED, ACTION_NO_PLACEMENT, ACTION_RECORD_WRITE_DISCARDED, ACTION_RECORD_WRITE_PATTERNS, ACTION_RECORD_WRITE_PATTERN_IDS, AGENT_AUTHORING_WITHDRAWN, AI_SKILL_SURFACE_MISMATCH, AI_SKILL_TOOL_UNRESOLVED, APPROVAL_APPROVERS_MAY_RESOLVE_EMPTY, APPROVAL_APPROVER_CROSS_ORG_UNSUPPORTED, APPROVAL_APPROVER_NOT_MEMBERSHIP_TIER, APPROVAL_APPROVER_TYPE_DEPRECATED, APPROVAL_APPROVER_TYPE_UNKNOWN, APPROVAL_APPROVER_TYPE_UNSUPPORTED, APPROVAL_DECISION_OUTPUTS_RESERVED, APPROVAL_ESCALATION_REASSIGN_NO_TARGET, APPROVAL_EXPRESSION_INVALID, APPROVAL_EXPRESSION_NO_EMPTY_POLICY, AUTONUMBER_LITERAL_TOKEN, AUTONUMBER_OPTIONAL_FIELD, AUTONUMBER_SELF_REFERENCE, AUTONUMBER_UNKNOWN_FIELD, type ActionBodyWriteExclusion, type ActionBodyWriteFinding, type ActionBodyWriteSeverity, type ActionLocationsFinding, type ActionLocationsSeverity, type ActionNameRefFinding, type ActionNameRefSeverity, type AiAgentAuthoringFinding, type AiAgentAuthoringSeverity, type AiSurfaceAffinityFinding, type AiSurfaceAffinitySeverity, type AiToolRefFinding, type AiToolRefSeverity, type ApprovalApproverFinding, type ApprovalApproverSeverity, type AutonumberLintFinding, type BodyWritePatternExclusion, CAPABILITY_REFERENCE_UNKNOWN, CHART_AXIS_NOT_SELECTED, CHART_CONFIG_MISSING, CHART_DATASET_UNKNOWN, CHART_DIMENSION_UNKNOWN, CHART_FIELD_UNKNOWN, CHART_MEASURE_UNKNOWN, COMPONENT_PROPS_INVALID, COMPONENT_PROPS_UNKNOWN_KEY, type CapabilityRefFinding, type CapabilityRefSeverity, type ChartBindingFinding, type ChartBindingSeverity, type CheckedParse, type CheckedParseOptions, type ComponentPropsFinding, type ComponentPropsSeverity, DASHBOARD_ACTION_ROUTE_UNRESOLVED, DASHBOARD_ACTION_TARGET_UNDEFINED, DASHBOARD_FILTER_FIELD_UNKNOWN, DASHBOARD_FILTER_FIELD_UNPROVISIONED, DEFAULT_AGENT_OUTSIDE_ROSTER, type DashboardActionRefFinding, type DashboardActionRefSeverity, type EmptyCombinatorFinding, type EmptyCombinatorSeverity, type ExprIssue, type ExtractedHookBodyWrite, type ExtractedHookBodyWriteSet, FIELD_GROUP_EMPTY, FIELD_GROUP_SHADOWED, FIELD_GROUP_UNDECLARED, FILTER_EMPTY_COMBINATOR, FILTER_EMPTY_NODE, FILTER_PRESET_COMPARAND, FILTER_TOKEN_UNKNOWN, FLOW_APPROVAL_REVISE_DEAD_END, FLOW_APPROVAL_REVISE_DISABLED, FLOW_APPROVAL_REVISE_TARGET_NOT_SERVICE_OWNED, FLOW_APPROVAL_REVISE_UNMARKED_BACKEDGE, FLOW_BARE_DOLLAR_REF, FLOW_BRANCH_LABEL_UNMATCHED, FLOW_DATE_EQUALITY_FILTER, FLOW_DECISION_UNCONDITIONAL_BRANCH, FLOW_DEFAULT_EDGE_WITH_CONDITION, FLOW_DOUBLE_BRACE_INTERP, FLOW_DRAFT_STATUS_AMBIGUOUS, FLOW_ERROR_LABEL_NOT_FAULT, FLOW_INERT_NODE_CONDITION, FLOW_MULTIPLE_DEFAULT_EDGES, FLOW_MULTI_WRITE_UNFILTERED, FLOW_NODE_WRITE_UNKNOWN_FIELD, FLOW_NODE_WRITE_UNPROVISIONED_ANCHOR, FLOW_PHANTOM_AGGREGATION, FLOW_RUNAS_UNSCOPED, FLOW_TEMPLATE_FIELD_UNPROVISIONED, FLOW_TEMPLATE_LOOKUP_TRAVERSAL, FLOW_TEMPLATE_UNKNOWN_FIELD, FLOW_TIME_RELATIVE_ANTIPATTERN, FLOW_TIME_RELATIVE_DESCRIPTOR_INVALID, FLOW_TIME_RELATIVE_DESCRIPTOR_UNROUTABLE, FLOW_TRIGGER_UNKNOWN_EVENT, FLOW_TRIGGER_UNKNOWN_OBJECT, FLOW_TRIGGER_UNROUTABLE, FLOW_UPDATE_READONLY_FIELD, FLOW_UPDATE_READONLY_WHEN_FIELD, FLOW_WRITE_NODE_TYPES, FLOW_WRITE_NODE_TYPES_DEFERRED, FORM_COLSPAN_ABSOLUTE, FORM_FIELD_UNKNOWN, type FilterTokenFinding, type FilterTokenSeverity, type FlowLintFinding, type FlowNodeWriteFinding, type FlowNodeWriteSeverity, type FlowTemplatePathFinding, type FlowTemplatePathSeverity, type FlowTriggerReadinessFinding, type FlowTriggerReadinessSeverity, type FlowWriteNodeDeferral, type FormLayoutFinding, type FormLayoutSeverity, type FunctionalCompletenessFinding, type FunctionalCompletenessSeverity, HOOK_BODY_SOURCE_UNPARSEABLE, HOOK_BODY_WRITE_EXCLUSIONS, HOOK_BODY_WRITE_PATTERNS, HOOK_BODY_WRITE_PATTERN_IDS, HOOK_BODY_WRITE_UNKNOWN_FIELD, HOOK_BODY_WRITE_UNPROVISIONED_ANCHOR, type HookBodyWriteFinding, type HookBodyWritePattern, type HookBodyWriteSeverity, type JsxPageFinding, type JsxPageSeverity, LIST_VIEW_FILTERS_IN_VIEWS_MODE, LIVENESS_DEAD_PROPERTY, LIVENESS_EXPERIMENTAL_PROPERTY, type LintIssue, type ListViewModeFinding, type ListViewModeSeverity, type LivenessLintFinding, type LocatedLintIssue, MANAGED_API_METHOD_UNAFFORDABLE, MAX_SCHEMA_WALK_DEPTH, MEASURE_AGGREGATE_INCOHERENT, type ManagedApiMethodFinding, NAV_OBJECT_UNGRANTED, NAV_OBJECT_UNSERVABLE, NAV_TARGET_UNRESOLVED, NULL_GUARD_HINT, type NavAccessFinding, type NavAccessSeverity, type NavObjectServabilityFinding, type NavTargetRefFinding, type NavTargetRefSeverity, type NullGuardFinding, type NullGuardOptions, OBJECT_REFERENCE_UNKNOWN, OBJECT_REFERENCE_UNREGISTERED_PLATFORM, OPEN_VOCABULARY_PROBES, ORG_AXIS_CROSS_ORG_BU_GRANT, ORG_AXIS_PERMISSION_INHERITANCE, type ObjectRefFinding, type ObjectRefSeverity, type OrgAxisFinding, type OrgAxisSeverity, PAGE_FIELD_UNKNOWN, PAGE_FIELD_UNPROVISIONED, PAGE_SOURCE_CLASSNAME, PARSE_FAILURE_HINT, PREDICATE_PATH_UNRESOLVED, PREDICATE_PATH_UNROOTED, PREDICATE_RHS_PATH_SHAPED, PRE_SEAL_PHASES, type PageFieldFinding, type PageFieldSeverity, type PredicatePathFinding, type PredicatePathOptions, type PredicatePathSeverity, type PresetComparandFinding, type PresetComparandSeverity, REACT_BLOCK_NEEDS_RECORD_CONTEXT, REACT_CHART_AGGREGATE_INVALID, REACT_CHART_AXIS_UNKNOWN, REACT_CHART_DRILLDOWN_INVALID, REACT_CHART_FIELD_UNKNOWN, REACT_CHART_FIELD_UNPROVISIONED, REACT_PAGE_SOURCE_UNPARSEABLE, REFERENCE_INTEGRITY_RULES, RLS_PREDICATE_OVER_BUDGET, RLS_PREDICATE_UNENFORCEABLE, RLS_PREDICATE_UNPARSEABLE, RUNTIME_AJV_OPTIONS, type ReactPageFinding, type ReactPageSeverity, type ReactPropFinding, type ReactPropSeverity, type ReadonlyFlowWriteFinding, type ReadonlyFlowWriteSeverity, type RecordTitleFinding, type RecordTitleSeverity, type ReferenceIntegrityFinding, type ReferenceIntegrityRule, type ReferenceIntegritySeverity, type RlsPredicateFinding, type RlsPredicateSeverity, type RuleCompilabilityFinding, type RuleCompilabilitySeverity, type RuleSchemaFormatFinding, type RuleSchemaFormatSeverity, SEAL_MARKERS, SEARCHABLE_FIELD_UNKNOWN, SEARCHABLE_FIELD_UNPROVISIONED, SEARCHABLE_FIELD_UNSEARCHABLE, SECURITY_ANCHOR_HIGH_PRIVILEGE, SECURITY_BOOK_AUDIENCE_UNKNOWN_SET, SECURITY_CBP_NO_RELATION, SECURITY_DELEGATION_MISSING_REASON, SECURITY_EXTERNAL_WIDER, SECURITY_FLS_UNQUALIFIED_KEY, SECURITY_GRANT_EXPIRED_AT_AUTHORING, SECURITY_MASTER_DETAIL_UNGRANTED, SECURITY_OWD_ALIAS, SECURITY_OWD_UNSET, SECURITY_PRIVATE_NO_READSCOPE, SECURITY_ROLE_WORD, SECURITY_WILDCARD_VAMA, SEED_INSERT_MODE_DUPLICATES_ON_REPLAY, SEED_VALUE_OUTSIDE_STATE_MACHINE, SEMANTIC_ROLE_FIELD_UNKNOWN, SEMANTIC_ROLE_FIELD_UNPROVISIONED, SHARING_RULE_OBJECT_CONTROLLED_BY_PARENT, SHARING_RULE_OBJECT_NOT_SHAREABLE, SHARING_RULE_RUNTIME_VARIABLE_CONDITION, SHARING_RULE_UNLOWERABLE_CONDITION, SORT_FIELD_UNKNOWN, SORT_FIELD_UNPROVISIONED, SORT_FIELD_UNSORTABLE, STARTUP_OPEN_VOCABULARY_VERDICT, STARTUP_SOURCE_UNPARSEABLE, STARTUP_VERDICT_ASSERTIVE_WORDING, STARTUP_VERDICT_HINT, STYLE_CLASSNAME_TAILWIND, STYLE_NODE_MISSING_ID, STYLE_RESPONSIVE_NO_BASE, STYLE_UNKNOWN_CSS_PROPERTY, STYLE_UNKNOWN_TOKEN, type SearchableFieldFinding, type SearchableFieldRole, type SearchableFieldSeverity, type SecurityFinding, type SecuritySeverity, type SeedReplaySafetyFinding, type SeedReplaySafetySeverity, type SeedStateMachineFinding, type SeedStateMachineSeverity, type SemanticRoleFinding, type SemanticRoleSeverity, type Severity, type SharingRuleEnforceabilityFinding, type SharingRuleEnforceabilitySeverity, type SortableFieldFinding, type SortableFieldSeverity, type SourceParseFailure, type SourceStyleFinding, type SourceStyleSeverity, type StartupRegistryVerdictFinding, type StartupRegistryVerdictOptions, type StartupRegistryVerdictSeverity, type StyleFinding, type StyleSeverity, TABLE_COUNT_ONLY, TITLE_FORMAT_RETIRED, TITLE_UNRESOLVABLE, TRANSLATION_OPTION_KEY_UNKNOWN, TRANSLATION_SECTION_NAME_MISSING, TRANSLATION_TARGET_UNKNOWN, type TranslatableSectionFinding, type TranslatableSectionSeverity, type TranslationRefFinding, type TranslationRefSeverity, UNIQUE_DOUBLE_DECLARATION, UNIQUE_LEGACY_ORGANIZATION_COMPOSITE, UNIQUE_UNSCOPED_DECLARED_INDEX, VALIDATION_RULE_REGEX_UNCOMPILABLE, VALIDATION_RULE_SCHEMA_UNCOMPILABLE, VALIDATION_RULE_SCHEMA_UNKNOWN_FORMAT, VIEW_CONTAINER_SHAPE, VIEW_KEY_COLLISION, VIEW_REF_FORM_TARGET_KIND, VIEW_REF_FORM_TARGET_MISSING, VISIBILITY_BARE_IDENTIFIER, VISIBILITY_PREDICATE_OVER_BUDGET, VISIBILITY_PREDICATE_SYNTAX, VISIBILITY_ROOT_MISLAYERED, type ViewContainerFinding, type ViewContainerSeverity, type ViewRefFinding, type VisibilityFinding, type VisibilityLayer, type VisibilityOptions, type VisibilitySeverity, WIDGET_DATASET_UNKNOWN, WIDGET_DIMENSION_UNKNOWN, WIDGET_LEGACY_ANALYTICS_SHAPE, WIDGET_LEGACY_ANALYTICS_UNRENDERABLE, WIDGET_MEASURE_UNKNOWN, type WalkedComponent, type WalkedValidationRule, type WidgetBindingFinding, type WidgetBindingSeverity, buildAccessMatrix, checkSortDeclaration, describeParseFailure, diffAccessMatrix, extractHookBodyWriteSet, extractHookBodyWrites, findStartupRegistryVerdicts, findUnguardedNullableOperands, isSourceAuthoredPage, lintAutonumberFormats, lintDataModel, lintFlowPatterns, lintLegacyOrganizationComposites, lintLivenessProperties, lintUniqueDeclarations, lintUnscopedDeclaredIndexes, lintViewRefs, nearestRegisteredFormat, nullGuardMessage, validateActionBodyWrites, validateActionLocations, validateActionNameRefs, validateAiAgentAuthoring, validateAiSurfaceAffinity, validateAiToolReferences, validateApprovalApprovers, validateCapabilityReferences, validateChartBindings, validateComponentProps, validateDashboardActionRefs, validateEmptyCombinators, validateFilterTokens, validateFlowNodeWrites, validateFlowTemplatePaths, validateFlowTriggerReadiness, validateFormLayout, validateFunctionalCompleteness, validateHookBodyWrites, validateJsxPages, validateListViewMode, validateManagedApiMethods, validateNavAccess, validateNavObjectServability, validateNavTargetRefs, validateObjectReferences, validateOrgAxisRedLines, validatePageFieldBindings, validatePageSourceStyling, validatePredicatePathRefs, validatePresetComparands, validateReactPageProps, validateReactPages, validateReadonlyFlowWrites, validateRecordTitle, validateReferenceIntegrity, validateResponsiveStyles, validateRlsPredicateEnforceability, validateRuleCompilability, validateRuleSchemaFormats, validateSearchableFields, validateSecurityPosture, validateSecurityRoleWord, validateSeedReplaySafety, validateSeedStateMachine, validateSemanticRoles, validateSharingRuleEnforceability, validateSortableFields, validateStackExpressions, validateTranslatableSections, validateTranslationReferences, validateViewContainers, validateVisibilityPredicates, validateWidgetBindings, walkPageComponents };