@objectstack/lint 17.0.0-rc.6 → 17.0.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.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Manifest } from '@objectstack/sdui-parser';
2
2
  import { Options } from 'ajv';
3
3
  import { AccessMatrixParsed } from '@objectstack/spec/security';
4
- 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 RuntimeStackContext, m as authoringRulesFor, r as runAuthoringRules, n as runRuntimeAuthoringRules, o as runtimeAuthoringRulesFor, p as runtimeGatedTypes, s as splitBySeverity, q as stackKeyForType } from './runtime-B50yywI_.cjs';
4
+ 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 RuntimeStackContext, m as authoringRulesFor, n as buildRuntimeWriteSnapshots, r as runAuthoringRules, o as runRuntimeAuthoringRules, p as runtimeAuthoringRulesFor, q as runtimeGatedTypes, s as splitBySeverity, t as stackKeyForType } from './runtime-H-nDodRy.cjs';
5
5
 
6
6
  /**
7
7
  * Build-time dashboard widget binding diagnostics (issues #1719, #1721).
@@ -68,6 +68,14 @@ export { A as AUTHORING_COMMANDS, a as AUTHORING_RULES, b as AUTHORING_SURFACES,
68
68
  * single-form cutover removed. The dashboard renderer routes dataset-bound
69
69
  * widgets through `DatasetWidget` and never reads these, so they are a
70
70
  * silent no-op. Steers the author onto `dataset`+`dimensions`+`values`.
71
+ * - `dashboard-filter-field-unprovisioned` (#8340) — the filter's effective
72
+ * field RESOLVES (it is a registry-injected system column, so
73
+ * `dashboard-filter-field-unknown` above rightly stays silent) but the bound
74
+ * object is ADR-0015 `external`, where the platform registers the anchor and
75
+ * provisions no storage for it. The filter is still ANDed into the query, so
76
+ * the widget renders empty instead of crashing — the silent-degradation half
77
+ * of the same invariant, warned rather than errored because this pass cannot
78
+ * see the remote schema (#8116's severity reasoning).
71
79
  *
72
80
  * Warnings can be deliberately suppressed per widget via
73
81
  * `suppressWarnings: ['<rule-id>']`; errors cannot — they describe a
@@ -83,6 +91,7 @@ declare const MEASURE_AGGREGATE_INCOHERENT = "measure-aggregate-incoherent";
83
91
  declare const WIDGET_LEGACY_ANALYTICS_SHAPE = "widget-legacy-analytics-shape";
84
92
  declare const WIDGET_LEGACY_ANALYTICS_UNRENDERABLE = "widget-legacy-analytics-unrenderable";
85
93
  declare const DASHBOARD_FILTER_FIELD_UNKNOWN = "dashboard-filter-field-unknown";
94
+ declare const DASHBOARD_FILTER_FIELD_UNPROVISIONED = "dashboard-filter-field-unprovisioned";
86
95
  type WidgetBindingSeverity = 'error' | 'warning';
87
96
  interface WidgetBindingFinding {
88
97
  /** `error` = unresolvable binding (broken page); `warning` = advisory. */
@@ -335,6 +344,37 @@ interface FunctionalCompletenessFinding {
335
344
  */
336
345
  declare function validateFunctionalCompleteness(stack: unknown): FunctionalCompletenessFinding[];
337
346
 
347
+ /**
348
+ * Stable diagnostic id. Named for the CONTRADICTION rather than for the strip,
349
+ * because at authoring time nothing has been stripped yet — the declaration is
350
+ * simply advertising something the object cannot honour.
351
+ */
352
+ declare const MANAGED_API_METHOD_UNAFFORDABLE = "object/managed-api-method-unaffordable";
353
+ interface ManagedApiMethodFinding {
354
+ /**
355
+ * Always `error`. The contradiction is decidable from the object's own
356
+ * declaration — no call graph, no runtime state — and shipping it means the
357
+ * metadata claims an API surface the registry will silently take away.
358
+ */
359
+ severity: 'error';
360
+ rule: typeof MANAGED_API_METHOD_UNAFFORDABLE;
361
+ /** Human-readable location, e.g. `object "sys_environment"`. */
362
+ where: string;
363
+ /** Config path, e.g. `objects[2].enable.apiMethods`. */
364
+ path: string;
365
+ message: string;
366
+ hint: string;
367
+ }
368
+ /**
369
+ * Walk every object declaration in the stack through the shared
370
+ * managed-affordance predicate.
371
+ *
372
+ * One finding per object, not per verb: an object declaring both `create` and
373
+ * `update` against an all-locked bucket has ONE authoring mistake, and the fix
374
+ * — open the affordances or drop the verbs — is a single edit.
375
+ */
376
+ declare function validateManagedApiMethods(stack: unknown): ManagedApiMethodFinding[];
377
+
338
378
  type FlowTriggerReadinessSeverity = 'error' | 'warning';
339
379
  interface FlowTriggerReadinessFinding {
340
380
  severity: FlowTriggerReadinessSeverity;
@@ -423,6 +463,7 @@ interface FlowTemplatePathFinding {
423
463
  }
424
464
  declare const FLOW_TEMPLATE_UNKNOWN_FIELD = "flow-template-unknown-field";
425
465
  declare const FLOW_TEMPLATE_LOOKUP_TRAVERSAL = "flow-template-lookup-traversal";
466
+ declare const FLOW_TEMPLATE_FIELD_UNPROVISIONED = "flow-template-field-unprovisioned";
426
467
  type AnyRec$B = Record<string, unknown>;
427
468
  /**
428
469
  * Validate `{record.<path>}` template references across every record-change
@@ -533,6 +574,7 @@ interface ReactPropFinding {
533
574
  }
534
575
  type AnyRec$w = Record<string, unknown>;
535
576
  declare const REACT_CHART_FIELD_UNKNOWN = "react-chart-field-unknown";
577
+ declare const REACT_CHART_FIELD_UNPROVISIONED = "react-chart-field-unprovisioned";
536
578
  declare const REACT_CHART_AGGREGATE_INVALID = "react-chart-aggregate-invalid";
537
579
  declare const REACT_CHART_AXIS_UNKNOWN = "react-chart-axis-unknown";
538
580
  declare const REACT_CHART_DRILLDOWN_INVALID = "react-chart-drilldown-invalid";
@@ -607,6 +649,7 @@ declare const FIELD_GROUP_UNDECLARED = "field-group-undeclared";
607
649
  declare const FIELD_GROUP_EMPTY = "field-group-empty";
608
650
  declare const FIELD_GROUP_SHADOWED = "field-group-shadowed";
609
651
  declare const SEMANTIC_ROLE_FIELD_UNKNOWN = "semantic-role-field-unknown";
652
+ declare const SEMANTIC_ROLE_FIELD_UNPROVISIONED = "semantic-role-field-unprovisioned";
610
653
  type SemanticRoleSeverity = 'error' | 'warning';
611
654
  interface SemanticRoleFinding {
612
655
  /** Always `warning` today — all three rules are advisory (see module note). */
@@ -669,12 +712,24 @@ type VisibilitySeverity = 'error' | 'warning';
669
712
  /**
670
713
  * Which binding environment the linted surface belongs to (ADR-0089 §Context):
671
714
  * - `runtime` — `*.view.ts` / `*.page.ts`; binds `record` + `current_user` (+ `page`).
672
- * - `metadata` — `*.form.ts` metadata-editing forms; binds `data` (the row under edit).
715
+ * - `metadata` — metadata-editing forms (a `*.form.ts` module, or a form view
716
+ * declaring `data: { provider: 'schema', schemaId }`); binds `data` (the row
717
+ * under edit).
673
718
  */
674
719
  type VisibilityLayer = 'runtime' | 'metadata';
675
720
  /** Options for {@link validateVisibilityPredicates}. */
676
721
  interface VisibilityOptions {
677
- /** Binding layer of the surface being linted. Defaults to `'runtime'`. */
722
+ /**
723
+ * Binding layer for the sites whose layer the metadata does not state.
724
+ * Defaults to `'runtime'`.
725
+ *
726
+ * A form view that declares `data: { provider: 'schema', schemaId }` DOES
727
+ * state it — the metadata-admin evaluator renders that surface and binds the
728
+ * row under edit as `data` — so such a site is judged at `'metadata'`
729
+ * regardless of this option (#7815; see the module note §Which layer a site is
730
+ * on). Pass `'metadata'` to cover the forms that do not carry that data source
731
+ * either, which is what a file-aware caller linting a `*.form.ts` does.
732
+ */
678
733
  layer?: VisibilityLayer;
679
734
  }
680
735
  interface VisibilityFinding {
@@ -712,17 +767,30 @@ type AnyRec$r = Record<string, unknown>;
712
767
  * `visibility-predicate-over-budget` (#7217) and `visibility-bare-identifier`
713
768
  * (#6128) are `error` and the caller is expected to fail the build on them.
714
769
  *
715
- * The binding-root check is layer-directional (ADR-0089 D3): pass
716
- * `opts.layer = 'metadata'` when linting a `*.form.ts` metadata-editing form (so a
717
- * `record.`-rooted predicate is flagged), or leave it at the `'runtime'` default for
718
- * `*.view.ts` / `*.page.ts` surfaces (so a `data.`-rooted predicate is flagged). The
719
- * syntax and bare-identifier checks are layer-agnostic.
770
+ * The binding-root check is layer-directional (ADR-0089 D3). A form view that
771
+ * declares `data: { provider: 'schema', schemaId }` is judged at `metadata` on
772
+ * its own say-so (#7815); for every other site pass `opts.layer = 'metadata'`
773
+ * when linting a `*.form.ts` metadata-editing form (so a `record.`-rooted
774
+ * predicate is flagged), or leave it at the `'runtime'` default for `*.view.ts` /
775
+ * `*.page.ts` surfaces (so a `data.`-rooted predicate is flagged). The syntax and
776
+ * bare-identifier checks are layer-agnostic — but the ROOT their hints prescribe
777
+ * is not, which is the second half of what #7815 fixes.
720
778
  */
721
779
  declare function validateVisibilityPredicates(stack: AnyRec$r, opts?: VisibilityOptions): VisibilityFinding[];
722
780
 
723
781
  declare const PREDICATE_PATH_UNRESOLVED = "predicate-path-unresolved";
724
782
  declare const PREDICATE_PATH_UNROOTED = "predicate-path-unrooted";
725
- /** Both rules GATE — see the module note for why each is safe at `error`. */
783
+ /**
784
+ * A `==` / `!=` RIGHT-hand side that is path-shaped — an unquoted identifier
785
+ * chain (#7659). See the module note's §The right-hand side for the two
786
+ * severities this one id carries and why they are not the same defect.
787
+ */
788
+ declare const PREDICATE_RHS_PATH_SHAPED = "predicate-rhs-path-shaped";
789
+ /**
790
+ * The two path-RESOLUTION rules always GATE; {@link PREDICATE_RHS_PATH_SHAPED}
791
+ * gates on a dotted chain and is advisory on a bare word — see the module note
792
+ * for why the same shape earns two answers.
793
+ */
726
794
  type PredicatePathSeverity = 'error' | 'warning';
727
795
  interface PredicatePathFinding {
728
796
  severity: PredicatePathSeverity;
@@ -765,11 +833,18 @@ type AnyRec$q = Record<string, unknown>;
765
833
  * resolves, is skipped: see the module note for why the `record.*` layer is out
766
834
  * of scope rather than merely unimplemented.
767
835
  *
768
- * Both rules emit `error` and the caller is expected to fail the build on them.
769
- * The corpus measurement behind that severity is on the PR for #7010: over the
770
- * shipped `METADATA_FORM_REGISTRY` (17 forms, 46 predicates) the count is **0**
771
- * for both, and 16 for `predicate-path-unrooted` once #6254's pre-fix
772
- * `object.form.ts` is restored.
836
+ * Both path-resolution rules emit `error` and the caller is expected to fail the
837
+ * build on them. The corpus measurement behind that severity is on the PR for
838
+ * #7010: over the shipped `METADATA_FORM_REGISTRY` (17 forms, 46 predicates) the
839
+ * count is **0** for both, and 16 for `predicate-path-unrooted` once #6254's
840
+ * pre-fix `object.form.ts` is restored.
841
+ *
842
+ * The third rule, `predicate-rhs-path-shaped` (#7659), asks a different question
843
+ * about the same predicates — whether a `==` / `!=` RIGHT-hand side is
844
+ * path-shaped, which the renderer parses as a literal — and carries two
845
+ * severities: `error` on a dotted chain, `warning` on a bare word. Its corpus
846
+ * count over the same shipped forms is **0** at both severities. See the module
847
+ * note.
773
848
  *
774
849
  * Returns findings (empty = clean).
775
850
  */
@@ -892,6 +967,7 @@ declare const SECURITY_MASTER_DETAIL_UNGRANTED = "security-master-detail-ungrant
892
967
  declare const SECURITY_FLS_UNQUALIFIED_KEY = "security-fls-unqualified-key";
893
968
  declare const SECURITY_GRANT_EXPIRED_AT_AUTHORING = "security-grant-expired-at-authoring";
894
969
  declare const SECURITY_DELEGATION_MISSING_REASON = "security-delegation-missing-reason";
970
+ declare const SECURITY_CBP_NO_RELATION = "security-controlled-by-parent-no-relation";
895
971
  type SecuritySeverity = 'error' | 'warning' | 'info';
896
972
  interface SecurityFinding {
897
973
  severity: SecuritySeverity;
@@ -917,6 +993,35 @@ type AnyRec$l = Record<string, unknown>;
917
993
  declare function validateSecurityPosture(stack: AnyRec$l, opts?: {
918
994
  nowMs?: number;
919
995
  }): SecurityFinding[];
996
+ /**
997
+ * [ADR-0090 D3] The `security-role-word` vocabulary freeze, as its own rule.
998
+ *
999
+ * Scope: security-relevant identifiers/labels across SIX collections — objects
1000
+ * (names, field names, action names), permission sets, positions, apps, books.
1001
+ * Pages/views/components are NOT scanned — `role` there is HTML/ARIA
1002
+ * semantics, not permission vocabulary. The sole platform exception
1003
+ * (better-auth `sys_member.role`) is a system object, which app stacks never
1004
+ * author. Books entered the security-relevant set when `book.audience` became
1005
+ * a permission-model reference (ADR-0046 §6.7 / ADR-0090).
1006
+ *
1007
+ * ## Why this is a separate function from {@link validateSecurityPosture}
1008
+ *
1009
+ * [#8310] Not taste — a surface boundary. When the rest of the D7 block
1010
+ * crossed onto the runtime publish surface (`runtimeTypes: ['seed',
1011
+ * 'permission', 'book']` — `object` measured dirty and is escalated, see the
1012
+ * registry comment), this rule could not go with it: the per-write snapshot
1013
+ * (`runtime-gate.ts`) neither carries nor maps `positions` / `apps`, both of
1014
+ * which are `allowRuntimeCreate: true` — so wiring it through the shared
1015
+ * entry would have enforced ONE rule id for a strict subset of its six
1016
+ * collections. That is the #7220 failure shape (a door that refuses a
1017
+ * permission set named `role_manager` while a position named `sales_role`
1018
+ * walks through), and
1019
+ * the registry refuses to build it in either direction. The rule therefore
1020
+ * stays behind WHOLE, on its own CLI-only registry entry, until the snapshot
1021
+ * carries `positions`/`apps` and both types are gated — at which point it
1022
+ * crosses whole, in one edit, as its own entry.
1023
+ */
1024
+ declare function validateSecurityRoleWord(stack: AnyRec$l): SecurityFinding[];
920
1025
 
921
1026
  /**
922
1027
  * [ADR-0105 D6] The two organization-axis red lines, enforced at authoring time.
@@ -1414,6 +1519,11 @@ type NavTargetRefFinding = ReferenceIntegrityFinding;
1414
1519
  declare const NAV_TARGET_UNRESOLVED = "nav-target-unresolved";
1415
1520
  declare function validateNavTargetRefs(stack: unknown): NavTargetRefFinding[];
1416
1521
 
1522
+ type NavObjectServabilityFinding = ReferenceIntegrityFinding;
1523
+ /** Emitted when a nav entry targets an object whose `enable` block cannot serve a list. */
1524
+ declare const NAV_OBJECT_UNSERVABLE = "nav-object-unservable";
1525
+ declare function validateNavObjectServability(stack: unknown): NavObjectServabilityFinding[];
1526
+
1417
1527
  /**
1418
1528
  * [ADR-0061 — searchable set] `searchableFields` entries must name a field the
1419
1529
  * object actually has — and, on a list view, one the runtime will agree to scan.
@@ -1758,6 +1868,17 @@ declare function walkPageComponents(page: AnyRec$f, pagePath: string): WalkedCom
1758
1868
  * drift #4330 had just finished removing from the system-field lists.
1759
1869
  */
1760
1870
  declare const PAGE_FIELD_UNKNOWN = "page-field-unknown";
1871
+ /**
1872
+ * [#8340] The reference RESOLVES to a registry-injected system column — so
1873
+ * {@link PAGE_FIELD_UNKNOWN} is right to stay silent — but the bound object is
1874
+ * ADR-0015 `external`, where the platform registers the anchor and provisions
1875
+ * no storage behind it. Always `warning`, on both consequences and including
1876
+ * the `queried` one that gates for a genuinely missing column: the existence
1877
+ * question has a closed oracle here and the provenance question does not (this
1878
+ * pass cannot see the remote schema, only that the platform stores nothing) —
1879
+ * #8116's severity reasoning, unchanged.
1880
+ */
1881
+ declare const PAGE_FIELD_UNPROVISIONED = "page-field-unprovisioned";
1761
1882
  type PageFieldSeverity = 'error' | 'warning';
1762
1883
  interface PageFieldFinding {
1763
1884
  /**
@@ -2545,6 +2666,8 @@ declare const UNIQUE_LEGACY_ORGANIZATION_COMPOSITE = "unique/legacy-organization
2545
2666
  * 17.x: warning. Protocol 18 rejects the spelling at validate/publish (#5082).
2546
2667
  * Advisory — never fails a build in 17.x.
2547
2668
  *
2669
+ * Concrete harm: #8323 measured the cross-tenant 409-vs-201 oracle end to end.
2670
+ *
2548
2671
  * Wiring: own AUTHORING_RULES entry (validate/build), and `lintDataModel`
2549
2672
  * calls it for `os lint` — each command reports each finding exactly once.
2550
2673
  */
@@ -2613,4 +2736,4 @@ declare function lintLegacyOrganizationComposites(objects: any[]): LintIssue[];
2613
2736
  */
2614
2737
  declare function lintDataModel(objects: any[]): LintIssue[];
2615
2738
 
2616
- export { ACTION_BODY_WRITE_EXCLUSIONS, ACTION_BODY_WRITE_PATTERNS, ACTION_BODY_WRITE_PATTERN_IDS, ACTION_BODY_WRITE_UNKNOWN_FIELD, 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, 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_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_PHANTOM_AGGREGATION, FLOW_RUNAS_UNSCOPED, 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, 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, MAX_SCHEMA_WALK_DEPTH, MEASURE_AGGREGATE_INCOHERENT, NAV_OBJECT_UNGRANTED, NAV_TARGET_UNRESOLVED, NULL_GUARD_HINT, type NavAccessFinding, type NavAccessSeverity, 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_SOURCE_CLASSNAME, PREDICATE_PATH_UNRESOLVED, PREDICATE_PATH_UNROOTED, PRE_SEAL_PHASES, type PageFieldFinding, type PageFieldSeverity, type PredicatePathFinding, type PredicatePathOptions, type PredicatePathSeverity, REACT_BLOCK_NEEDS_RECORD_CONTEXT, REACT_CHART_AGGREGATE_INVALID, REACT_CHART_AXIS_UNKNOWN, REACT_CHART_DRILLDOWN_INVALID, REACT_CHART_FIELD_UNKNOWN, 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_UNSEARCHABLE, SECURITY_ANCHOR_HIGH_PRIVILEGE, SECURITY_BOOK_AUDIENCE_UNKNOWN_SET, 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, SHARING_RULE_RUNTIME_VARIABLE_CONDITION, SHARING_RULE_UNLOWERABLE_CONDITION, 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 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, 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, validateNavAccess, validateNavTargetRefs, validateObjectReferences, validateOrgAxisRedLines, validatePageFieldBindings, validatePageSourceStyling, validatePredicatePathRefs, validateReactPageProps, validateReactPages, validateReadonlyFlowWrites, validateRecordTitle, validateReferenceIntegrity, validateResponsiveStyles, validateRlsPredicateEnforceability, validateRuleCompilability, validateRuleSchemaFormats, validateSearchableFields, validateSecurityPosture, validateSeedReplaySafety, validateSeedStateMachine, validateSemanticRoles, validateSharingRuleEnforceability, validateStackExpressions, validateTranslatableSections, validateTranslationReferences, validateViewContainers, validateVisibilityPredicates, validateWidgetBindings, walkPageComponents };
2739
+ export { ACTION_BODY_WRITE_EXCLUSIONS, ACTION_BODY_WRITE_PATTERNS, ACTION_BODY_WRITE_PATTERN_IDS, ACTION_BODY_WRITE_UNKNOWN_FIELD, 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_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_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, 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, 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, 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_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_RUNTIME_VARIABLE_CONDITION, SHARING_RULE_UNLOWERABLE_CONDITION, 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 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, 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, validateReactPageProps, validateReactPages, validateReadonlyFlowWrites, validateRecordTitle, validateReferenceIntegrity, validateResponsiveStyles, validateRlsPredicateEnforceability, validateRuleCompilability, validateRuleSchemaFormats, validateSearchableFields, validateSecurityPosture, validateSecurityRoleWord, validateSeedReplaySafety, validateSeedStateMachine, validateSemanticRoles, validateSharingRuleEnforceability, validateStackExpressions, validateTranslatableSections, validateTranslationReferences, validateViewContainers, validateVisibilityPredicates, validateWidgetBindings, walkPageComponents };
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Manifest } from '@objectstack/sdui-parser';
2
2
  import { Options } from 'ajv';
3
3
  import { AccessMatrixParsed } from '@objectstack/spec/security';
4
- 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 RuntimeStackContext, m as authoringRulesFor, r as runAuthoringRules, n as runRuntimeAuthoringRules, o as runtimeAuthoringRulesFor, p as runtimeGatedTypes, s as splitBySeverity, q as stackKeyForType } from './runtime-B50yywI_.js';
4
+ 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 RuntimeStackContext, m as authoringRulesFor, n as buildRuntimeWriteSnapshots, r as runAuthoringRules, o as runRuntimeAuthoringRules, p as runtimeAuthoringRulesFor, q as runtimeGatedTypes, s as splitBySeverity, t as stackKeyForType } from './runtime-H-nDodRy.js';
5
5
 
6
6
  /**
7
7
  * Build-time dashboard widget binding diagnostics (issues #1719, #1721).
@@ -68,6 +68,14 @@ export { A as AUTHORING_COMMANDS, a as AUTHORING_RULES, b as AUTHORING_SURFACES,
68
68
  * single-form cutover removed. The dashboard renderer routes dataset-bound
69
69
  * widgets through `DatasetWidget` and never reads these, so they are a
70
70
  * silent no-op. Steers the author onto `dataset`+`dimensions`+`values`.
71
+ * - `dashboard-filter-field-unprovisioned` (#8340) — the filter's effective
72
+ * field RESOLVES (it is a registry-injected system column, so
73
+ * `dashboard-filter-field-unknown` above rightly stays silent) but the bound
74
+ * object is ADR-0015 `external`, where the platform registers the anchor and
75
+ * provisions no storage for it. The filter is still ANDed into the query, so
76
+ * the widget renders empty instead of crashing — the silent-degradation half
77
+ * of the same invariant, warned rather than errored because this pass cannot
78
+ * see the remote schema (#8116's severity reasoning).
71
79
  *
72
80
  * Warnings can be deliberately suppressed per widget via
73
81
  * `suppressWarnings: ['<rule-id>']`; errors cannot — they describe a
@@ -83,6 +91,7 @@ declare const MEASURE_AGGREGATE_INCOHERENT = "measure-aggregate-incoherent";
83
91
  declare const WIDGET_LEGACY_ANALYTICS_SHAPE = "widget-legacy-analytics-shape";
84
92
  declare const WIDGET_LEGACY_ANALYTICS_UNRENDERABLE = "widget-legacy-analytics-unrenderable";
85
93
  declare const DASHBOARD_FILTER_FIELD_UNKNOWN = "dashboard-filter-field-unknown";
94
+ declare const DASHBOARD_FILTER_FIELD_UNPROVISIONED = "dashboard-filter-field-unprovisioned";
86
95
  type WidgetBindingSeverity = 'error' | 'warning';
87
96
  interface WidgetBindingFinding {
88
97
  /** `error` = unresolvable binding (broken page); `warning` = advisory. */
@@ -335,6 +344,37 @@ interface FunctionalCompletenessFinding {
335
344
  */
336
345
  declare function validateFunctionalCompleteness(stack: unknown): FunctionalCompletenessFinding[];
337
346
 
347
+ /**
348
+ * Stable diagnostic id. Named for the CONTRADICTION rather than for the strip,
349
+ * because at authoring time nothing has been stripped yet — the declaration is
350
+ * simply advertising something the object cannot honour.
351
+ */
352
+ declare const MANAGED_API_METHOD_UNAFFORDABLE = "object/managed-api-method-unaffordable";
353
+ interface ManagedApiMethodFinding {
354
+ /**
355
+ * Always `error`. The contradiction is decidable from the object's own
356
+ * declaration — no call graph, no runtime state — and shipping it means the
357
+ * metadata claims an API surface the registry will silently take away.
358
+ */
359
+ severity: 'error';
360
+ rule: typeof MANAGED_API_METHOD_UNAFFORDABLE;
361
+ /** Human-readable location, e.g. `object "sys_environment"`. */
362
+ where: string;
363
+ /** Config path, e.g. `objects[2].enable.apiMethods`. */
364
+ path: string;
365
+ message: string;
366
+ hint: string;
367
+ }
368
+ /**
369
+ * Walk every object declaration in the stack through the shared
370
+ * managed-affordance predicate.
371
+ *
372
+ * One finding per object, not per verb: an object declaring both `create` and
373
+ * `update` against an all-locked bucket has ONE authoring mistake, and the fix
374
+ * — open the affordances or drop the verbs — is a single edit.
375
+ */
376
+ declare function validateManagedApiMethods(stack: unknown): ManagedApiMethodFinding[];
377
+
338
378
  type FlowTriggerReadinessSeverity = 'error' | 'warning';
339
379
  interface FlowTriggerReadinessFinding {
340
380
  severity: FlowTriggerReadinessSeverity;
@@ -423,6 +463,7 @@ interface FlowTemplatePathFinding {
423
463
  }
424
464
  declare const FLOW_TEMPLATE_UNKNOWN_FIELD = "flow-template-unknown-field";
425
465
  declare const FLOW_TEMPLATE_LOOKUP_TRAVERSAL = "flow-template-lookup-traversal";
466
+ declare const FLOW_TEMPLATE_FIELD_UNPROVISIONED = "flow-template-field-unprovisioned";
426
467
  type AnyRec$B = Record<string, unknown>;
427
468
  /**
428
469
  * Validate `{record.<path>}` template references across every record-change
@@ -533,6 +574,7 @@ interface ReactPropFinding {
533
574
  }
534
575
  type AnyRec$w = Record<string, unknown>;
535
576
  declare const REACT_CHART_FIELD_UNKNOWN = "react-chart-field-unknown";
577
+ declare const REACT_CHART_FIELD_UNPROVISIONED = "react-chart-field-unprovisioned";
536
578
  declare const REACT_CHART_AGGREGATE_INVALID = "react-chart-aggregate-invalid";
537
579
  declare const REACT_CHART_AXIS_UNKNOWN = "react-chart-axis-unknown";
538
580
  declare const REACT_CHART_DRILLDOWN_INVALID = "react-chart-drilldown-invalid";
@@ -607,6 +649,7 @@ declare const FIELD_GROUP_UNDECLARED = "field-group-undeclared";
607
649
  declare const FIELD_GROUP_EMPTY = "field-group-empty";
608
650
  declare const FIELD_GROUP_SHADOWED = "field-group-shadowed";
609
651
  declare const SEMANTIC_ROLE_FIELD_UNKNOWN = "semantic-role-field-unknown";
652
+ declare const SEMANTIC_ROLE_FIELD_UNPROVISIONED = "semantic-role-field-unprovisioned";
610
653
  type SemanticRoleSeverity = 'error' | 'warning';
611
654
  interface SemanticRoleFinding {
612
655
  /** Always `warning` today — all three rules are advisory (see module note). */
@@ -669,12 +712,24 @@ type VisibilitySeverity = 'error' | 'warning';
669
712
  /**
670
713
  * Which binding environment the linted surface belongs to (ADR-0089 §Context):
671
714
  * - `runtime` — `*.view.ts` / `*.page.ts`; binds `record` + `current_user` (+ `page`).
672
- * - `metadata` — `*.form.ts` metadata-editing forms; binds `data` (the row under edit).
715
+ * - `metadata` — metadata-editing forms (a `*.form.ts` module, or a form view
716
+ * declaring `data: { provider: 'schema', schemaId }`); binds `data` (the row
717
+ * under edit).
673
718
  */
674
719
  type VisibilityLayer = 'runtime' | 'metadata';
675
720
  /** Options for {@link validateVisibilityPredicates}. */
676
721
  interface VisibilityOptions {
677
- /** Binding layer of the surface being linted. Defaults to `'runtime'`. */
722
+ /**
723
+ * Binding layer for the sites whose layer the metadata does not state.
724
+ * Defaults to `'runtime'`.
725
+ *
726
+ * A form view that declares `data: { provider: 'schema', schemaId }` DOES
727
+ * state it — the metadata-admin evaluator renders that surface and binds the
728
+ * row under edit as `data` — so such a site is judged at `'metadata'`
729
+ * regardless of this option (#7815; see the module note §Which layer a site is
730
+ * on). Pass `'metadata'` to cover the forms that do not carry that data source
731
+ * either, which is what a file-aware caller linting a `*.form.ts` does.
732
+ */
678
733
  layer?: VisibilityLayer;
679
734
  }
680
735
  interface VisibilityFinding {
@@ -712,17 +767,30 @@ type AnyRec$r = Record<string, unknown>;
712
767
  * `visibility-predicate-over-budget` (#7217) and `visibility-bare-identifier`
713
768
  * (#6128) are `error` and the caller is expected to fail the build on them.
714
769
  *
715
- * The binding-root check is layer-directional (ADR-0089 D3): pass
716
- * `opts.layer = 'metadata'` when linting a `*.form.ts` metadata-editing form (so a
717
- * `record.`-rooted predicate is flagged), or leave it at the `'runtime'` default for
718
- * `*.view.ts` / `*.page.ts` surfaces (so a `data.`-rooted predicate is flagged). The
719
- * syntax and bare-identifier checks are layer-agnostic.
770
+ * The binding-root check is layer-directional (ADR-0089 D3). A form view that
771
+ * declares `data: { provider: 'schema', schemaId }` is judged at `metadata` on
772
+ * its own say-so (#7815); for every other site pass `opts.layer = 'metadata'`
773
+ * when linting a `*.form.ts` metadata-editing form (so a `record.`-rooted
774
+ * predicate is flagged), or leave it at the `'runtime'` default for `*.view.ts` /
775
+ * `*.page.ts` surfaces (so a `data.`-rooted predicate is flagged). The syntax and
776
+ * bare-identifier checks are layer-agnostic — but the ROOT their hints prescribe
777
+ * is not, which is the second half of what #7815 fixes.
720
778
  */
721
779
  declare function validateVisibilityPredicates(stack: AnyRec$r, opts?: VisibilityOptions): VisibilityFinding[];
722
780
 
723
781
  declare const PREDICATE_PATH_UNRESOLVED = "predicate-path-unresolved";
724
782
  declare const PREDICATE_PATH_UNROOTED = "predicate-path-unrooted";
725
- /** Both rules GATE — see the module note for why each is safe at `error`. */
783
+ /**
784
+ * A `==` / `!=` RIGHT-hand side that is path-shaped — an unquoted identifier
785
+ * chain (#7659). See the module note's §The right-hand side for the two
786
+ * severities this one id carries and why they are not the same defect.
787
+ */
788
+ declare const PREDICATE_RHS_PATH_SHAPED = "predicate-rhs-path-shaped";
789
+ /**
790
+ * The two path-RESOLUTION rules always GATE; {@link PREDICATE_RHS_PATH_SHAPED}
791
+ * gates on a dotted chain and is advisory on a bare word — see the module note
792
+ * for why the same shape earns two answers.
793
+ */
726
794
  type PredicatePathSeverity = 'error' | 'warning';
727
795
  interface PredicatePathFinding {
728
796
  severity: PredicatePathSeverity;
@@ -765,11 +833,18 @@ type AnyRec$q = Record<string, unknown>;
765
833
  * resolves, is skipped: see the module note for why the `record.*` layer is out
766
834
  * of scope rather than merely unimplemented.
767
835
  *
768
- * Both rules emit `error` and the caller is expected to fail the build on them.
769
- * The corpus measurement behind that severity is on the PR for #7010: over the
770
- * shipped `METADATA_FORM_REGISTRY` (17 forms, 46 predicates) the count is **0**
771
- * for both, and 16 for `predicate-path-unrooted` once #6254's pre-fix
772
- * `object.form.ts` is restored.
836
+ * Both path-resolution rules emit `error` and the caller is expected to fail the
837
+ * build on them. The corpus measurement behind that severity is on the PR for
838
+ * #7010: over the shipped `METADATA_FORM_REGISTRY` (17 forms, 46 predicates) the
839
+ * count is **0** for both, and 16 for `predicate-path-unrooted` once #6254's
840
+ * pre-fix `object.form.ts` is restored.
841
+ *
842
+ * The third rule, `predicate-rhs-path-shaped` (#7659), asks a different question
843
+ * about the same predicates — whether a `==` / `!=` RIGHT-hand side is
844
+ * path-shaped, which the renderer parses as a literal — and carries two
845
+ * severities: `error` on a dotted chain, `warning` on a bare word. Its corpus
846
+ * count over the same shipped forms is **0** at both severities. See the module
847
+ * note.
773
848
  *
774
849
  * Returns findings (empty = clean).
775
850
  */
@@ -892,6 +967,7 @@ declare const SECURITY_MASTER_DETAIL_UNGRANTED = "security-master-detail-ungrant
892
967
  declare const SECURITY_FLS_UNQUALIFIED_KEY = "security-fls-unqualified-key";
893
968
  declare const SECURITY_GRANT_EXPIRED_AT_AUTHORING = "security-grant-expired-at-authoring";
894
969
  declare const SECURITY_DELEGATION_MISSING_REASON = "security-delegation-missing-reason";
970
+ declare const SECURITY_CBP_NO_RELATION = "security-controlled-by-parent-no-relation";
895
971
  type SecuritySeverity = 'error' | 'warning' | 'info';
896
972
  interface SecurityFinding {
897
973
  severity: SecuritySeverity;
@@ -917,6 +993,35 @@ type AnyRec$l = Record<string, unknown>;
917
993
  declare function validateSecurityPosture(stack: AnyRec$l, opts?: {
918
994
  nowMs?: number;
919
995
  }): SecurityFinding[];
996
+ /**
997
+ * [ADR-0090 D3] The `security-role-word` vocabulary freeze, as its own rule.
998
+ *
999
+ * Scope: security-relevant identifiers/labels across SIX collections — objects
1000
+ * (names, field names, action names), permission sets, positions, apps, books.
1001
+ * Pages/views/components are NOT scanned — `role` there is HTML/ARIA
1002
+ * semantics, not permission vocabulary. The sole platform exception
1003
+ * (better-auth `sys_member.role`) is a system object, which app stacks never
1004
+ * author. Books entered the security-relevant set when `book.audience` became
1005
+ * a permission-model reference (ADR-0046 §6.7 / ADR-0090).
1006
+ *
1007
+ * ## Why this is a separate function from {@link validateSecurityPosture}
1008
+ *
1009
+ * [#8310] Not taste — a surface boundary. When the rest of the D7 block
1010
+ * crossed onto the runtime publish surface (`runtimeTypes: ['seed',
1011
+ * 'permission', 'book']` — `object` measured dirty and is escalated, see the
1012
+ * registry comment), this rule could not go with it: the per-write snapshot
1013
+ * (`runtime-gate.ts`) neither carries nor maps `positions` / `apps`, both of
1014
+ * which are `allowRuntimeCreate: true` — so wiring it through the shared
1015
+ * entry would have enforced ONE rule id for a strict subset of its six
1016
+ * collections. That is the #7220 failure shape (a door that refuses a
1017
+ * permission set named `role_manager` while a position named `sales_role`
1018
+ * walks through), and
1019
+ * the registry refuses to build it in either direction. The rule therefore
1020
+ * stays behind WHOLE, on its own CLI-only registry entry, until the snapshot
1021
+ * carries `positions`/`apps` and both types are gated — at which point it
1022
+ * crosses whole, in one edit, as its own entry.
1023
+ */
1024
+ declare function validateSecurityRoleWord(stack: AnyRec$l): SecurityFinding[];
920
1025
 
921
1026
  /**
922
1027
  * [ADR-0105 D6] The two organization-axis red lines, enforced at authoring time.
@@ -1414,6 +1519,11 @@ type NavTargetRefFinding = ReferenceIntegrityFinding;
1414
1519
  declare const NAV_TARGET_UNRESOLVED = "nav-target-unresolved";
1415
1520
  declare function validateNavTargetRefs(stack: unknown): NavTargetRefFinding[];
1416
1521
 
1522
+ type NavObjectServabilityFinding = ReferenceIntegrityFinding;
1523
+ /** Emitted when a nav entry targets an object whose `enable` block cannot serve a list. */
1524
+ declare const NAV_OBJECT_UNSERVABLE = "nav-object-unservable";
1525
+ declare function validateNavObjectServability(stack: unknown): NavObjectServabilityFinding[];
1526
+
1417
1527
  /**
1418
1528
  * [ADR-0061 — searchable set] `searchableFields` entries must name a field the
1419
1529
  * object actually has — and, on a list view, one the runtime will agree to scan.
@@ -1758,6 +1868,17 @@ declare function walkPageComponents(page: AnyRec$f, pagePath: string): WalkedCom
1758
1868
  * drift #4330 had just finished removing from the system-field lists.
1759
1869
  */
1760
1870
  declare const PAGE_FIELD_UNKNOWN = "page-field-unknown";
1871
+ /**
1872
+ * [#8340] The reference RESOLVES to a registry-injected system column — so
1873
+ * {@link PAGE_FIELD_UNKNOWN} is right to stay silent — but the bound object is
1874
+ * ADR-0015 `external`, where the platform registers the anchor and provisions
1875
+ * no storage behind it. Always `warning`, on both consequences and including
1876
+ * the `queried` one that gates for a genuinely missing column: the existence
1877
+ * question has a closed oracle here and the provenance question does not (this
1878
+ * pass cannot see the remote schema, only that the platform stores nothing) —
1879
+ * #8116's severity reasoning, unchanged.
1880
+ */
1881
+ declare const PAGE_FIELD_UNPROVISIONED = "page-field-unprovisioned";
1761
1882
  type PageFieldSeverity = 'error' | 'warning';
1762
1883
  interface PageFieldFinding {
1763
1884
  /**
@@ -2545,6 +2666,8 @@ declare const UNIQUE_LEGACY_ORGANIZATION_COMPOSITE = "unique/legacy-organization
2545
2666
  * 17.x: warning. Protocol 18 rejects the spelling at validate/publish (#5082).
2546
2667
  * Advisory — never fails a build in 17.x.
2547
2668
  *
2669
+ * Concrete harm: #8323 measured the cross-tenant 409-vs-201 oracle end to end.
2670
+ *
2548
2671
  * Wiring: own AUTHORING_RULES entry (validate/build), and `lintDataModel`
2549
2672
  * calls it for `os lint` — each command reports each finding exactly once.
2550
2673
  */
@@ -2613,4 +2736,4 @@ declare function lintLegacyOrganizationComposites(objects: any[]): LintIssue[];
2613
2736
  */
2614
2737
  declare function lintDataModel(objects: any[]): LintIssue[];
2615
2738
 
2616
- export { ACTION_BODY_WRITE_EXCLUSIONS, ACTION_BODY_WRITE_PATTERNS, ACTION_BODY_WRITE_PATTERN_IDS, ACTION_BODY_WRITE_UNKNOWN_FIELD, 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, 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_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_PHANTOM_AGGREGATION, FLOW_RUNAS_UNSCOPED, 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, 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, MAX_SCHEMA_WALK_DEPTH, MEASURE_AGGREGATE_INCOHERENT, NAV_OBJECT_UNGRANTED, NAV_TARGET_UNRESOLVED, NULL_GUARD_HINT, type NavAccessFinding, type NavAccessSeverity, 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_SOURCE_CLASSNAME, PREDICATE_PATH_UNRESOLVED, PREDICATE_PATH_UNROOTED, PRE_SEAL_PHASES, type PageFieldFinding, type PageFieldSeverity, type PredicatePathFinding, type PredicatePathOptions, type PredicatePathSeverity, REACT_BLOCK_NEEDS_RECORD_CONTEXT, REACT_CHART_AGGREGATE_INVALID, REACT_CHART_AXIS_UNKNOWN, REACT_CHART_DRILLDOWN_INVALID, REACT_CHART_FIELD_UNKNOWN, 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_UNSEARCHABLE, SECURITY_ANCHOR_HIGH_PRIVILEGE, SECURITY_BOOK_AUDIENCE_UNKNOWN_SET, 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, SHARING_RULE_RUNTIME_VARIABLE_CONDITION, SHARING_RULE_UNLOWERABLE_CONDITION, 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 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, 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, validateNavAccess, validateNavTargetRefs, validateObjectReferences, validateOrgAxisRedLines, validatePageFieldBindings, validatePageSourceStyling, validatePredicatePathRefs, validateReactPageProps, validateReactPages, validateReadonlyFlowWrites, validateRecordTitle, validateReferenceIntegrity, validateResponsiveStyles, validateRlsPredicateEnforceability, validateRuleCompilability, validateRuleSchemaFormats, validateSearchableFields, validateSecurityPosture, validateSeedReplaySafety, validateSeedStateMachine, validateSemanticRoles, validateSharingRuleEnforceability, validateStackExpressions, validateTranslatableSections, validateTranslationReferences, validateViewContainers, validateVisibilityPredicates, validateWidgetBindings, walkPageComponents };
2739
+ export { ACTION_BODY_WRITE_EXCLUSIONS, ACTION_BODY_WRITE_PATTERNS, ACTION_BODY_WRITE_PATTERN_IDS, ACTION_BODY_WRITE_UNKNOWN_FIELD, 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_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_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, 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, 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, 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_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_RUNTIME_VARIABLE_CONDITION, SHARING_RULE_UNLOWERABLE_CONDITION, 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 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, 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, validateReactPageProps, validateReactPages, validateReadonlyFlowWrites, validateRecordTitle, validateReferenceIntegrity, validateResponsiveStyles, validateRlsPredicateEnforceability, validateRuleCompilability, validateRuleSchemaFormats, validateSearchableFields, validateSecurityPosture, validateSecurityRoleWord, validateSeedReplaySafety, validateSeedStateMachine, validateSemanticRoles, validateSharingRuleEnforceability, validateStackExpressions, validateTranslatableSections, validateTranslationReferences, validateViewContainers, validateVisibilityPredicates, validateWidgetBindings, walkPageComponents };