@abloh/core 1.0.0 → 1.0.1
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 +30 -4
- package/dist/index.js +6 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -35637,7 +35637,7 @@ declare const ACTION_REPOSITORY = "Vero-Technology/abloh-action";
|
|
|
35637
35637
|
* A tag is a moving reference somebody else controls; a customer's pull request should run the exact
|
|
35638
35638
|
* Action we tested. Only a release moves this value, and it moves in one place now.
|
|
35639
35639
|
*/
|
|
35640
|
-
declare const PINNED_ACTION = "Vero-Technology/abloh-action@
|
|
35640
|
+
declare const PINNED_ACTION = "Vero-Technology/abloh-action@8e27337e0419f6f24a2aa1b245307fe42fd7082d";
|
|
35641
35641
|
/**
|
|
35642
35642
|
* THE OTHER HALF OF THE ACTION: the one that holds an identity, and measures nothing.
|
|
35643
35643
|
*
|
|
@@ -36094,7 +36094,7 @@ declare function workflowYaml(input: {
|
|
|
36094
36094
|
runtimes: readonly WorkflowRuntime[];
|
|
36095
36095
|
}): string;
|
|
36096
36096
|
/** The action reference a placed step carries, so a test and the renderer read one value. */
|
|
36097
|
-
declare const SETUP_STEP_ACTION = "Vero-Technology/abloh-action@
|
|
36097
|
+
declare const SETUP_STEP_ACTION = "Vero-Technology/abloh-action@8e27337e0419f6f24a2aa1b245307fe42fd7082d";
|
|
36098
36098
|
/** The step's `name:`, which is what a maintainer sees on their own checks page. */
|
|
36099
36099
|
declare const SETUP_STEP_NAME = "Abloh";
|
|
36100
36100
|
/**
|
|
@@ -40378,7 +40378,7 @@ declare function runRecordReaderProblems(): readonly string[];
|
|
|
40378
40378
|
/** The mutation engine's own name, as the artifact's `engine.name` states it. */
|
|
40379
40379
|
declare const ASTER_ENGINE_NAME: "@abloh/aster";
|
|
40380
40380
|
/** The mutation engine's own version, as the artifact's `engine.version` states it. */
|
|
40381
|
-
declare const ASTER_ENGINE_VERSION: "0.1
|
|
40381
|
+
declare const ASTER_ENGINE_VERSION: "1.0.1";
|
|
40382
40382
|
|
|
40383
40383
|
/**
|
|
40384
40384
|
* THE VERDICT OF A RUN, IN THE WORDS EVERY SURFACE SAYS IT IN.
|
|
@@ -40619,6 +40619,32 @@ declare const PLAYGROUND_VITEST_RUNNER_VERSION = "4.1.10";
|
|
|
40619
40619
|
declare const PLAYGROUND_ENGINE_REVISION = "d197cf194238daebd842a00c1605c151f8b348a0";
|
|
40620
40620
|
declare const PLAYGROUND_POLICY_SHA256 = "a47d08a7d63be6344fdd3bec5ed8b27de702e6a4364448740a58ef04a023f7a9";
|
|
40621
40621
|
declare const PLAYGROUND_ENGINE_NAME = "abloh-deterministic";
|
|
40622
|
+
/**
|
|
40623
|
+
* THE PLAYGROUND'S OWN ENGINE VERSION, DELIBERATELY NOT THE `@abloh/aster` PACKAGE'S.
|
|
40624
|
+
*
|
|
40625
|
+
* It is a `wireLiteral` in {@link PLAYGROUND_PUBLIC_RESULT_MATERIAL} below, so it is not a label: a
|
|
40626
|
+
* recorded result whose `engine.version` is not this exact string is REFUSED by the browser decoder
|
|
40627
|
+
* that reads it. `fixtures/playground-acceptance/*-result.json` are real browser captures taken on
|
|
40628
|
+
* 2026-09-08 and they carry `0.1.0`, which is a fact about what that day's playground answered.
|
|
40629
|
+
*
|
|
40630
|
+
* WHY IT IS ITS OWN PIN (2026-09-11). It was `ASTER_ENGINE_VERSION`, which
|
|
40631
|
+
* `packages/aster/src/version-pin.test.ts` holds equal to that package's manifest - so the first
|
|
40632
|
+
* release that moved the manifest put those two requirements in direct conflict, and every release
|
|
40633
|
+
* after it would do the same. A version that must equal an npm manifest cannot also be a frozen
|
|
40634
|
+
* literal in recorded evidence. Splitting them costs nothing and was already the shape here:
|
|
40635
|
+
* {@link PLAYGROUND_ENGINE_NAME} is `abloh-deterministic` rather than `@abloh/aster`, and
|
|
40636
|
+
* {@link PLAYGROUND_ENGINE_REVISION} and {@link PLAYGROUND_VITEST_RUNNER_VERSION} are pins moved by
|
|
40637
|
+
* a deliberate act. This is the fourth of them.
|
|
40638
|
+
*
|
|
40639
|
+
* WHAT STILL TRACKS THE PACKAGE is the ENGINE's own identity, which is a different claim about a
|
|
40640
|
+
* different document: the engine report `packages/playground-runtime/src/aster-harness.ts` produces
|
|
40641
|
+
* carries `ASTER_ENGINE_NAME` and `ASTER_ENGINE_VERSION`, and the adapter refuses a report that is
|
|
40642
|
+
* not from the engine this build admits. `PLAYGROUND_ENGINE_REVISION` names the exact commit, so
|
|
40643
|
+
* the public result loses no provenance by not repeating a package version.
|
|
40644
|
+
*
|
|
40645
|
+
* Moving this is a decision, and it invalidates every recorded capture that carries the old value.
|
|
40646
|
+
*/
|
|
40647
|
+
declare const PLAYGROUND_ENGINE_VERSION: "0.1.0";
|
|
40622
40648
|
declare const PLAYGROUND_OPERATOR_SET_VERSION: "aster-0.1.0";
|
|
40623
40649
|
declare const PLAYGROUND_SANDBOX_VERSIONS: readonly ["trusted-local-host-v1", "docker-sandbox-v1"];
|
|
40624
40650
|
declare const PLAYGROUND_TEST_STATUSES: readonly ["passed", "failed", "skipped", "unknown"];
|
|
@@ -41806,4 +41832,4 @@ declare function nodeOptionInsertionPoint(argv: readonly string[], takesAValue?:
|
|
|
41806
41832
|
*/
|
|
41807
41833
|
declare function destinationRepairs(argv: readonly string[]): string[];
|
|
41808
41834
|
|
|
41809
|
-
export { ABLOH_FAILURE_OWNERSHIP, ABLOH_FAILURE_OWNERSHIP_ANONYMOUS, ABLOH_SUPPORT_ADDRESS, ACCOUNT_MODEL_VARIABLES, ACCOUNT_ORGANIZATION_VAR, ACCOUNT_SESSION_TOKEN_VAR, ACCOUNT_TOKEN_URL_VAR, ACTION_NON_IMPORTED_ASSETS, ACTION_REFERENCES, ACTION_REPOSITORY, ADDITION_GROUPS, ADMISSION_DRIFT_PHRASES, ADMISSION_SENTENCE_MAX, ALL_STAGES_RAN_NOTE, ANGULAR_RUNNERS, ANNOTATION_SEVERITIES, API_KEY_SCOPES, ASTER_COVERAGE_FORMAT, ASTER_COVERAGE_PROVIDER, ASTER_COVERAGE_RAW_FORMAT, ASTER_COVERAGE_SCHEMA, ASTER_ENGINE_NAME, ASTER_ENGINE_VERSION, ATTESTATION_JOB_ID, ATTEST_ACTION, AUDITABLE_SOURCE_EXTENSIONS, type AblohConfig, type AblohFailureFacts, type ActionFileReader, type AddedVariable, type AdditionGroup, type AdmissionCoverage, type AdmissionDrift, type AdmissionDriftKind, type AdmissionRefusalReason, type AdmissionSubject, type AngularKarmaShape, type AngularRunnerName, type AngularTestRunner, type AngularTestTarget, type AnnotationSeverity, type ApiKeyScope, type AppliedCeilings, type ArchiveComponent, type ArchiveIdentity, type ArtifactDestinationFacts, type ArtifactDestinationProblem, type ArtifactOutputPathCombination, type ArtifactOutputPathFacts, type ArtifactOutputPathProblem, type ArtifactPublicationLockCombination, type ArtifactPublicationLockFacts, type ArtifactWriteCombination, type ArtifactWriteFacts, type AssayResult, type AssayVerdict, type AsterCoverageCensus, type AsterCoverageEvidence, type AsterCoverageFile, type AsterCoverageLine, type AttestResultsV2, type AttestStatus, type AttestationEnvironment, type AttestationInput, type AttributionQuality, type AuditScope, BASELINE_HISTORY_MAPPING, BASELINE_HISTORY_REASONS, BASELINE_JOB_CLOCK_REMEDY, BASELINE_JOB_CLOCK_RESERVE_SUITE_RUNS, BASELINE_LINE_MAPPING, BASELINE_PUBLICATION_ALLOWANCE_MS, BASELINE_RUN_FACTOR, BASELINE_RUN_FLOOR_MS, BOOST_MS_PER_DAY, BROWSER_LANE_MEASURED_ENVIRONMENT, BROWSER_LANE_SEAL, BROWSER_SHARED_MEMORY_ARGV, BROWSER_SHARED_MEMORY_PATH, BROWSER_SHARED_MEMORY_TMPFS, BUG_BEHAVIOUR_VERDICTS, BUG_EMOJI, BUG_SEVERITIES, BUN_DIFF_COVERAGE_NOTICE, BUN_DIFF_COVERAGE_NOTICE_SHORT, type BaseReachability, type BaseUnreachableCause, type BaselineCombination, type BaselineCommand, type BaselineGateAbsence, type BaselineHistoryCombination, type BaselineHistoryLine, type BaselineHistoryReason, type BaselineJobClock, type BaselineJobClockStop, type BaselineLine, type BaselineLineCombination, type BaselineOutcomeEvidence, type BaselineOutcomeFacts, type BaselineRunBound, type BaselineRunBoundSource, type BrowserSealClause, type BugBehaviourVerdict, type BugSeverity, type BuildCiPropertyBlockInput, type BuildScenarioSearchBlockInput, type BuiltOutputFacts, CANDIDATE_BODY_MAX, CANDIDATE_ENTRIES_MAX, CANDIDATE_NAME_MAX, CANDIDATE_PATH_MAX, CANDIDATE_TEXT_CONTROL_DETAIL_MAX, CANDIDATE_TEXT_CONTROL_SCHEMA, CANDIDATE_UPLOAD_RULES, CANONICAL_MODEL_VARIABLES, CARRIED_AFTER_SHA, CARRIED_BEFORE_SHA, CARRIED_BUG_OUTCOMES, CARRIED_SHA_LENGTH, CARRIED_UNNAMED, CHECKOUT_ACTION, CHECK_ADMISSION_SCHEMA, CHECK_ADMISSION_TIMEOUT_MS, CHROME_DENIED_CLONE_FLAGS, CHROME_SECCOMP_ADDITIONS, CI_OBLIGATION_SIGNAL_AUTHORITIES, CI_PROPERTY_AUTHORITIES, CI_PROPERTY_CAPS, CI_PROPERTY_FAMILIES, CI_PROPERTY_INTENT_POOL_SCHEMA, CI_PROPERTY_INTENT_TASK_SCHEMA, CI_PROPERTY_OUTCOMES, CI_PROPERTY_STATES, CI_RESIDUAL_STATES, CLI_COMMANDS, CLI_HELP_REMEDY, CLI_MAPPINGS, CLI_OPTIONS, CLI_OPTION_CONFIG_CONFLICT_REMEDY, CLI_OPTION_CONFLICT_REMEDY, CLI_OPTION_UNAVAILABLE_REMEDY, CLI_PATH_PROBLEMS, CLUSTER_STRATEGIES, COMMAND_READ_PROBLEMS, COMPUTE_RATE_ENV, CONFIG_DOCS_URL, CONFIG_FILE_PATH, CONFIG_KEY_REGISTRY, CONTROL_CHARACTERS, CONVENTIONAL_HEADER_MAX_LENGTH, CONVENTIONAL_TYPES, COST_UNKNOWN, COVERAGE_DISPLAY_STATES, COVERAGE_EVIDENCE_SCHEMA, COVERAGE_LINE_MAPPING, COVERAGE_PROVIDER_CACHE_DEFAULT_ROOT, COVERAGE_PROVIDER_CACHE_DIR_VAR, COVERAGE_PROVIDER_CHOICES, COVERAGE_STATE_WORDS, COVERAGE_VERDICT, CREDENTIAL_SHAPE_MASK, CUSTOMER_TYPED, type CallerJobOutcome, type CandidateTextControl, type CandidateUploadRule, type CarriedBugOutcome, type CarriedStanding, type CarriedVerdict, type CellObservation, type ChangedStructuralCounts, type CheckAdmissionCombination, type CheckAdmissionFacts, type CheckAdmissionRequestWire, type CheckAdmissionResponseWire, type CheckAdmissionSilence, type CheckoutIdentity, type ChromeSeccompAddition, type ChromeSeccompArg, type CiChangedRange, type CiObligationSignal, type CiObligationSignalAuthority, type CiPropertyAuthority, type CiPropertyCandidateCap, type CiPropertyCounts, type CiPropertyFamily, type CiPropertyMeasuredBlock, type CiPropertyOutcome, type CiPropertyRuleCandidate, type CiPropertyRuleDrop, type CiPropertySearchBlock, type CiPropertyState, type CiPropertySummary, type CiPropertyTargetCandidate, type CiPropertyTargetDecision, type CiPropertyTargetPlan, type CiResidualGapEntry, type CiResidualGapLedger, type CiResidualState, type CiStepsUnreadFacts, type ClassicMutationConfig, type ClassicMutationTier, type ClassicSamplingBlock, type CliCommand, type CliFacts, type CliOption, type CliPathProblem, type CliValueShape, type ClusterStrategy, type CodeownersRule, type CombinedGate, type CommandGlobExpansion, type CommandLine, type CommandLineCombination, type CommandLineObservation, type CommandPlan, type CommandProvenance, type CommandReadProblem, type CommandResolutionStop, type CommandRuntime, type CommandScriptHop, type CompiledOutputReading, type ComposedFindings, type ConditionalPowerResult, type ConfigInRangeCombination, type ConfigInRangeFacts, type ConfigInRangeSilence, type ConfigKeyEntry, type ConfigKeyReader, type ConfigKeyStanding, type ConfigLoad, type ConfigOrigin, type ConfigTreeEntryCombination, type ConfigTreeEntryFacts, type ConfigTreeEntrySilence, type ConfigValueJudge, type ConfigValueRule, type ConfigValueVerdict, type ConfinementClause, type ConsumedGeneratedImport, type ContentsEntry, type ContentsIndexRef, type ConventionalHeader, type CoreSilence, type CorepackCacheFacts, type Counts, type CoverageAcquisitionObservation, type CoverageAdapterResolutionObservation, type CoverageAddressableFacts, type CoverageBundledPackageFacts, type CoverageCacheFacts, type CoverageComposition, type CoverageDisplayState, type CoverageEvidence, type CoverageEvidenceChild, type CoverageFacts, type CoverageLine, type CoverageLineCombination, type CoverageProvider, type CoverageProviderCacheFacts, type CoverageProviderChoice, type CoverageProviderFacts, type CoverageProviderObservation, type CoverageReportFormatFacts, type CoverageReportSizeFacts, type CoverageRunnerFacts, type CoverageScopeFacts, type CoverageStateWords, type CoverageVerdictState, DECLARED_SERVICE_CONFINEMENT, DEEPEN_FETCH_TIMEOUT_MS, DEEPEN_LADDER, DEEP_AUDIT_ARTIFACT_SCHEMA, DEEP_AUDIT_FINDING_ORIGINS, DEEP_AUDIT_LINE_VERDICTS, DEEP_AUDIT_SCOPE_SOURCES, DEFAULT_CLASSIC_MUTATION, DEFAULT_CONFIG, DEFAULT_DIFF_COVERAGE, DEFAULT_ENVIRONMENT, DEFAULT_ENVIRONMENT_IMAGE_DIGEST, DEFAULT_ENVIRONMENT_IMAGE_REF, DEFAULT_FLOOR, DEFAULT_MODEL_ENDPOINT, DEFAULT_MUTATION, DEFAULT_NATIVE_VOCABULARY, DEFAULT_SETUP_BOT_LOGIN, DEFAULT_SETUP_ROAD, DEPENDENCY_PATH_SEGMENTS, DESTINATION_LABELS, DIFF_COVERAGE_CANNOT_ATTEST_REASONS, DIFF_COVERAGE_THRESHOLD, DISPLAY_CUT_MARK, DISPLAY_TRUNCATABLE_FIELDS, DOCKER_DEFAULT_SECCOMP_SOURCE, type DecisiveLayer, type DeclaredEnvironment, type DeclaredKey, type DeclaredKeyCombination, type DeclaredKeyObservation, type DeclaredPackageManager, DeclaredRefusalError, type DeclaredValue, type DeepAuditArtifactParse, type DeepAuditCountsReport, type DeepAuditCoverageFileReport, type DeepAuditCoverageRange, type DeepAuditFinding, type DeepAuditFindingOrigin, type DeepAuditLineVerdict, type DeepAuditReachReport, type DeepAuditRunArtifact, type DeepAuditScopeReport, type DeepAuditScopeSource, type DeepAuditSpendReport, type DetectionCell, type DeterministicMutantsBlock, type DiffCoverageCannotAttestReason, type DiffCoverageConfig, type DiffCoverageCounts, type DiffCoverageLine, type DiffCoverageLineState, type DiffCoverageNotApplicableReason, type DiffCoverageNotRunReason, type DiffCoverageResult, DiffScopeError, type DisplayTruncatableField, type DisplayTruncation, type DockerCommandRunner, type DockerInvocation, ENGINE_FAILURE_LOG, ENGINE_FAILURE_REPORT_ID_PATTERN, ENGINE_FAILURE_SHAPE_NAMES, ENGINE_FAILURE_TIMED_OUT, ENGINE_MODEL_FAILURES, ENVELOPE_ONLY_EVIDENCE_KEYS, ENVIRONMENT_AMENDMENT_COMMIT_MESSAGE, EVIDENCE_API_KEY_SCOPES, EVIDENCE_EGRESS_SAFE, EVIDENCE_INDEX_MISSING_REMEDY, EVIDENCE_INDEX_UNREADABLE_REPORT_ID, EVIDENCE_MANIFEST_SCHEMA, EVIDENCE_OUTPUTS, EVIDENCE_REGROUPING_EXPIRY, EVIDENCE_RETENTION_DEFAULT_DAYS, EVIDENCE_RETENTION_MAX_DAYS, EVIDENCE_RETENTION_MIN_DAYS, EVIDENCE_SOURCES, EVIDENCE_WORD, EXCLUDE_RE, EXECUTION_STAGES, EXPECTED_ORACLE_CELL, type EgressEngineFailure, type EgressRefusal, type EngineFailureBlock, type EngineFailureShape, type EngineModelFailure, type EnsureBaseReachableInput, type EnvironmentConfig, type EnvironmentServiceConfig, type ErrorHandlersBlock, type ErrorPathsConfig, type EvidenceCustody, type EvidenceFloor, type EvidenceIndexFacts, type EvidenceIndexProblem, type EvidenceKind, type EvidenceManifest, type EvidenceManifestEntry, type EvidenceOutput, type EvidenceOutputId, type EvidenceProfile, type EvidenceProvenance, type EvidenceRole, type EvidenceSlot, type EvidenceSource, type EvidenceUploadPlan, type EvidenceVerdictState, type EvidenceWithholdReason, type ExecutionAxis, type ExecutionCopies, type ExecutionCopy, type ExecutionCopyMethod, type ExecutionRecord, type ExecutionRecordSink, type ExecutionStage, type ExpandedCommandGlobs, type ExperimentManifest, FAIL_FAST_JOB_NOTE, FEATURE_NOT_RUN_REASONS, FINDINGS_TABLE_MAPPING, FINDING_CARRIED_SHA, FINDING_FILE_PATH_MAX, FINDING_MUTANT_ID_MAX, FINDING_MUTATOR_MAX, FINDING_PROVENANCE_MAX, FINDING_SEVERITIES, type FactMapping, type FactTestRow, type FactsOf, type FailFastJob, type FailFastReading, type FailedTestFile, type FeatureNotRunReason, type FeatureState, type FileFacts, type FileScope, type FileStructural, type FindingSeverity, type FindingStatus, type FindingsTable, type FindingsTableCombination, type FirstPassProjection, type FirstPassRates, type FixLoopBlock, type FixProofSummary, type FixProofVerdict, type FlakyConfig, type FloorConfig, GATE_VERDICT, GATE_WORD, GENERATION_STATES, type GapFinding, type GapKeyInput, type GateResult, type GateStatus, type GateVerdictState, type GeneratedPath, type GenerationState, type GitCommandCombination, type GitCommandFacts, type GitCommandSilence, type GitHubStructuralFinding, type GithubValue, type GroupableFinding, HANDOFF_EVIDENCE_KEYS_V1, HANDOFF_EVIDENCE_KEYS_V2, HANDOFF_TARGET_KEYS, HEALABLE_SETUP_STAGES, HEX_DIGEST_64, HOSTED_CHECKS_NEED_NO_KEYS, HOSTED_RUN_HEADER, type HandlerAntiPatternKind, type HandlerFinding, type HeadroomResult, type HeadroomVerdict, type HistoricalPair, type HostedRunIdentity, IDENTITY_CONDITION_CODES, IMPORT_SELECTOR_PREFIX, INIT_DOORS, INIT_FAILURE_CLASSES, INIT_OUTCOMES, INIT_PACKAGE_MANAGERS, INIT_QUESTION_KEYS, INIT_RUNNERS, INIT_TELEMETRY_SCHEMA, INIT_TELEMETRY_VERSION, INTENT_TASK_COMMON_FIELDS, INTERRUPTION_MECHANISMS, INVENTORY_NAME_RENDER_LIMIT, type IdentityConditionFacts, type IdentityConditionKind, type ImportHop, type IndexCandidate, type IndexQuery, type Infer, type InferFields, type InitDoor, type InitFailureClass, type InitOutcome, type InitPackageManager, type InitQuestionKey, type InitRunner, type InitTelemetryEvent, type InstalledInput, type InstrumentationComparison, type InstrumentationDivergence, type InterruptionMechanism, InvariantError, JEST_WATCH_DISABLE_FLAGS, JEST_WATCH_DISABLE_SUFFIX, JOB_CLOCK_COST_BASES, JOB_CLOCK_SEALED_STAGES, JOB_CLOCK_STAGES, JOB_CLOCK_STAGE_OVERHEADS, JOB_CLOCK_STAGE_UNITS, type JobClockCostBasis, type JobClockStage, type JobClockStageOverhead, type JobClockStageProjection, type JobClockStageStop, type JobClockStageUnit, type JobTimeBudgetRefusalFacts, KNOWN_ENVIRONMENT_KEYS, KNOWN_SETUP_KEYS, LAYER0_EXECUTION, LAYER0_SCOPE_DISCLOSURE, LAYER1_EXECUTION, LAYER2_INTENT_PROPOSAL_FIELDS, LAYER2_INTENT_PROPOSAL_SCHEMA, LAYER2_INTENT_TASK_SCHEMA, LIVE_PROGRESS_MAX_UPDATES_PER_RUN, LIVE_PROGRESS_SCHEMA, LIVE_PROGRESS_SUMMARY_MAX_BYTES, LIVE_PROGRESS_TIMEOUT_MS, LIVE_PROGRESS_TITLE_MAX, LOCAL_DESTINATIONS, LOCAL_LADDER_LEAD_IN, LOCAL_MODEL_DOCS_URL, LOCK_POLL_MS, LOCK_STALE_MS, LOCK_WAIT_MS, type Layer1GateInput, type Layer2IntentProposalField, type LedgerEntry, type LineGroup, type LiveProgressUpdateWire, MAINLINE_BRANCHES, MAX_ANNOTATION_MUTATORS, MAX_ANNOTATION_REASONS, MAX_ANSWERED_SYSTEM_PACKAGES, MAX_ARTIFACT_COVERAGE_FILES, MAX_ARTIFACT_FINDINGS, MAX_ARTIFACT_RANGES_PER_FILE, MAX_BUG_DESCRIPTION_LEN, MAX_BUG_RATIONALE_LEN, MAX_BUG_SENTENCE_LEN, MAX_BUG_TYPE_LEN, MAX_CARRIED_BUG_ENTRIES, MAX_DEEPEN_DEPTH, MAX_DIAGNOSTIC_REASON_CHARS, MAX_ENVIRONMENT_SERVICES, MAX_EXECUTION_RECORDS, MAX_EXPANDED_LINES, MAX_FINDING_ABOUT_LEN, MAX_FINDING_DESCRIPTION_LEN, MAX_GENERATED_FILES, MAX_IMPORT_LENGTH, MAX_LITERAL_ARGUMENTS, MAX_LITERAL_COMMAND_BYTES, MAX_MUTANT_ROSTER, MAX_MUTANT_ROSTER_ROWS, MAX_OBSERVED_EVENT_BYTES, MAX_PACKAGE_ROWS, MAX_PATTERN_LENGTH, MAX_POOL2_EVIDENCE_ENTRIES, MAX_PREFLIGHT_CHECKS_RUN, MAX_PREFLIGHT_LIST, MAX_PROPOSAL_CANDIDATES, MAX_RESOLVED_FINDINGS, MAX_REWRITTEN_FILES, MAX_SCOPE_IMPORTS, MAX_SCOPE_PATTERNS, MAX_SCOPE_RANGES, MAX_SCOPE_TEAMS, MAX_SCRIPT_HOPS, MAX_SETUP_SCRIPT_BYTES, MAX_SETUP_STEPS, MAX_SYSTEM_PACKAGES, MAX_UPLOADED_FINDINGS, MEASURED_COST_MODEL_UNCERTAINTY, MEASURED_DOLLARS_PER_ESCAPE, MEASURED_DOLLARS_PER_HUNTED_FILE, MEASURED_FUNCTIONS_PER_AUDITABLE_KILOBYTE, MEASURED_LONGEST_HOLD_REASON, MEASURED_SECONDS_PER_SWEPT_FUNCTION, MEASURED_TYPICAL_ESCAPES_PER_HUNTED_FILE, MEASURED_WORST_ESCAPES_PER_HUNTED_FILE, MEASUREMENT_PLAN_SCHEMA, MECHANICAL_ERROR_PATH_REASON, MEMORY_CEILING_MAX_MB, MEMORY_FLOOR_MB, MEMORY_HOST_SHARE, MEMORY_PER_CORE_MB, MERGE_REF_REMEDY, MESSAGE_MAPPINGS, MINT_TIMEOUT_MS, MIN_CELL_REPEATS, MODEL_AUTH_VAR, MODEL_DISPATCH_ATTEMPT_ID_RE, MODEL_DISPATCH_DOORS, MODEL_DISPATCH_REFUSALS, MODEL_ENDPOINT_VAR, MODEL_ERROR_CATEGORIES, MODEL_ERROR_RETRYABLE, MODEL_KEY_PREFIX, MODEL_KEY_VAR, MODEL_OIDC_AUDIENCE_VAR, MODEL_OIDC_REQUEST_TOKEN_VAR, MODEL_OIDC_REQUEST_URL_VAR, MODEL_PATH_DISPOSITION, MODEL_PATH_NAMED_ELSEWHERE, MODEL_PROBE_REFUSAL_CODES, MODEL_RECEIPT_KEY, MODEL_REQUEST_LOCAL_REFUSALS, MODEL_RESPONSE_MODES, MODEL_SERVICE_BASE_PATH, MODEL_SERVICE_CONTRACT_VERSION, MODEL_SERVICE_EFFORTS, MODEL_SERVICE_LIMITS, MODEL_SERVICE_MODEL_NAME, MODEL_SERVICE_OUTPUT_FORMATS, MODEL_SERVICE_ROUTES, MODEL_SERVICE_SURFACES, MODEL_SERVICE_VERSIONS_UNDERSTOOD, MODEL_SETUP_HINT, MODEL_STREAM_OUTCOMES, MODEL_TERMINAL_EVENT_TYPE, MODEL_TOKEN_INPUT_NAME, MODEL_TOKEN_SECRET_NAME, MODEL_VARIABLE_ALIASES, MODEL_VARIABLE_GUIDE, MUTANT_STATUSES, MUTATION_ATTEMPTED_NOT_RUN_REASONS, MUTATION_EXECUTION_STATES, MUTATION_LINE_MAPPING, MUTATION_NOT_RUN_REASONS, MUTATION_REFUSAL_CODES, MUTATION_SCOPE_KINDS, MUTATION_SCOPE_SURFACE, MUTATION_SKIP_REASONS, MUTATION_STAGE_WALL_MINUTES, MUTATION_STAGE_WALL_MS, MUTATOR_TOKEN_RE, type ManifestModel, type ManifestValidation, type MapCostPolicy, type MapCostProjection, type MapCostReading, type MapCostRoadFacts, type MapCostStop, type MatrixLeg, type MatrixLegs, type MatrixValue, type MeasurementPlan, type MechanicalCounts, type MessageFacts, type MessageOutcome, type MessageSilence, type ModelAccess, type ModelBufferedReceipt, type ModelChoiceConfig, type ModelCostState, type ModelDispatchClaim, type ModelDispatchClaimAnswer, type ModelDispatchClaims, type ModelDispatchDoor, type ModelDispatchRefusal, type ModelDispatchRunKey, type ModelDispatchSettlement, type ModelErrorCategory, type ModelFailureDisposition, type ModelPathFailure, type ModelProbe, type ModelProbeCombination, type ModelRate, type ModelReceipt, type ModelReplyReading, type ModelRequestFit, type ModelRequestFitFailure, type ModelRequestLocalRefusal, type ModelResponseMode, type ModelServiceAnswer, type ModelServiceEffort, type ModelServiceErrorBody, type ModelServiceErrorEnvelope, type ModelServiceOutage, type ModelServiceOutputFormat, type ModelServiceRoute, type ModelServiceSurface, type ModelStep, type ModelStreamOutcome, ModelStreamReading, type ModelSurface, type ModelTerminalEvent, type ModelUsage, type ModelUsageState, type ModelVariableRead, type ModelsConfig, type ModuleLayout, type MutantRosterEntry, type MutantStatus, type MutationConfig, type MutationExecution, type MutationExecutionState, type MutationLine, type MutationLineCombination, type MutationMode, type MutationNotRunReason, type MutationScopeKind, type MutationSkipReason, NATIVE_FLOOR_PACKAGES, NATIVE_FLOOR_PACKAGE_NAMES, NATIVE_FONT_PACKAGES, NATIVE_FONT_REASON, NATIVE_SYMPTOM_KINDS, NATIVE_VOCABULARIES, NEARBY_MAX_NAMED, NEARBY_NOT_IN_RATE, NEARBY_TITLE, NEW_RAW_MESSAGE_GUIDANCE, NODE_FLAGS_TAKING_A_VALUE, NODE_REPORTER_STDOUT, NOFILE_CEILING_MAX, NOFILE_FLOOR, NOFILE_PER_CORE, NON_EVIDENCE_OUTPUTS, NON_SOURCE_DIRECTORIES, NOTHING_IS_WAITING, NOTHING_IS_WAITING_LABEL, NOTHING_IS_WAITING_LINE, NO_JOB_TO_RIDE_NOTE, NO_PROPOSAL_LINES, NO_VERDICT_LABEL, type NarrationSink, type NativeFloorPackage, type NativeResolution, type NativeResolutionResult, type NativeSymptom, type NativeSymptomKind, type NativeUnresolved, type NativeUnresolvedCause, type NativeVocabulary, type NearbyCodeUnmeasuredCause, type NearbyCodeUnmeasuredFacts, type NearbyFinding, type NearbyReport, type NearbyRole, type NearbyVerdict, type NestedProjection, type NextActionParts, type NodeRuntime, type NodeRuntimeCombination, type NodeRuntimeObservation, type NonEvidenceKind, type NonEvidenceOutput, type NonEvidenceOutputId, type NormalizedCoverage, type NormalizedMutant, ORIGIN_TRACKED_KEYS, type Observation, type OracleObservation, type OriginFacts, type OutcomeFor, PACKAGE_EXCLUSION_TEXT_MAX, PACKAGE_MANAGERS, PACKAGE_ROW_EXCLUDED_FIELDS, PACKAGE_ROW_FIELDS, PACKAGE_UNMEASURABLE, PATTERN_REFUSALS, PIDS_CEILING_MAX, PIDS_FLOOR, PIDS_PER_CORE, PINNED_ACTION, PLANTED_COUNTS_MAPPING, PLAN_NAMES, PLAN_REFUSAL_CODES, PLAYGROUND_ABLOH_FAILURE_LINE, PLAYGROUND_ADVISORY_TRIAGE, PLAYGROUND_DISMISS_LABEL, PLAYGROUND_ENGINE_MUTANT, PLAYGROUND_ENGINE_MUTANT_FIELDS, PLAYGROUND_ENGINE_NAME, PLAYGROUND_ENGINE_REVISION, PLAYGROUND_EXCERPTS_PER_MUTANT, PLAYGROUND_EXCERPT_MAX_BYTES, PLAYGROUND_EXCERPT_RESULT_SHARE, PLAYGROUND_EXECUTED_TEST, PLAYGROUND_EXPLANATION, PLAYGROUND_JOB_API_VERSION_V2, PLAYGROUND_MAX_MUTANTS, PLAYGROUND_MODEL_RESPONSE, PLAYGROUND_MUTANT_EVIDENCE, PLAYGROUND_MUTANT_STATUSES, PLAYGROUND_OPERATOR_SET_VERSION, PLAYGROUND_POLICY_SHA256, PLAYGROUND_PUBLIC_MUTANT, PLAYGROUND_PUBLIC_RESULT, PLAYGROUND_PUBLIC_RESULT_MATERIAL, PLAYGROUND_PUBLIC_ROSTER, PLAYGROUND_PUBLIC_RUN_RESULT_SCHEMA, PLAYGROUND_RESULT_MAX_BYTES, PLAYGROUND_RESULT_WITHHELD, PLAYGROUND_REVIEWS, PLAYGROUND_ROSTER_EXCERPT_MAX_BYTES, PLAYGROUND_SANDBOX_VERSIONS, PLAYGROUND_SENTENCES, PLAYGROUND_SEVERITIES, PLAYGROUND_SOURCE_MAX_BYTES, PLAYGROUND_STAGE_EVENT, PLAYGROUND_STAGE_EVENTS, PLAYGROUND_SUMMARY, PLAYGROUND_TEST_EVIDENCE_ABSENCES, PLAYGROUND_TEST_EXECUTION, PLAYGROUND_TEST_EXECUTIONS, PLAYGROUND_TEST_STATUSES, PLAYGROUND_TRIAGE_FIELD_POLICY, PLAYGROUND_TRIAGE_REASON_CODES_V2, PLAYGROUND_TRIAGE_VERDICTS_V2, PLAYGROUND_VITEST_RUNNER_VERSION, PNP_RUNTIME_BASENAME, PNP_RUNTIME_FILE_PATTERN, POOL2_EVIDENCE_SCHEMA, PREFLIGHT_CHECKS, PRINTABLE_ASCII, PRINTABLE_TEXT, PRINT_WIDTH, PRIVATE_DIRECTORY_MODE, PRIVATE_FILE_MODE, PROPOSALS_BLOCK_SCHEMA, PROPOSALS_CANDIDATE_FIELDS, PROPOSALS_DISCOVERY_STATES, PROPOSALS_FEATURE_STATES, PROPOSALS_FILE_PATH_MAX, PROPOSALS_GAP_ORIGINS, PROPOSALS_MUTANT_ID_MAX, PROPOSALS_PACKAGE_SIDECAR_INDEX, PROPOSALS_PREDICTOR_MODES, PROPOSALS_SIDECAR_SCHEMA, PROPOSALS_SUITE_STATES, PROPOSALS_SUMMARY_FIELDS, PROPOSALS_UNAVAILABLE_COPY, PROPOSALS_VERDICTS, PROVEN_BASIS, PROVIDER_RAW_FORMAT, type PackageEvidence, type PackageExclusion, type PackageManagerDeclaration, type PackageManagerName, type PackageManagerPin, type PackageManifest, type PackageManifestProblem, type PackageManifestReading, type PackageRowField, type PairIsolation, type PatternRefusal, type PerTestAttribution, type PerTestBlock, type PerTestConfig, type PerTestFinding, type PerTestFindingKind, type PerTestReportFailure, type PlanBinding, type PlanCommand, type PlanCommandSource, type PlanEnvironment, type PlanEnvironmentBackend, type PlanEvidence, type PlanExecution, type PlanLimitFacts, type PlanName, type PlanQuarantine, type PlanRefusalCode, type PlanRefusalCombination, type PlanRefusalFacts, type PlanRefusalObservation, type PlanSetup, type PlanTarget, type PlantedCounts, type PlantedCountsCombination, type PlaygroundAdvisoryTriage, type PlaygroundEngineMutant, type PlaygroundExecutedTest, type PlaygroundExplanation, type PlaygroundModelResponse, type PlaygroundMutantStatusName, type PlaygroundPublicMutant, type PlaygroundPublicResult, type PlaygroundPublicResultMaterial, type PlaygroundPublicSummary, type PlaygroundStageEvent, type PlaygroundStageFact, type PlaygroundTestExecution, type PluginInvocation, type PreflightCheck, type PreflightCombination, type PreflightEventWire, type PreflightReportFacts, type PreflightSilence, type PreparationRole, type PreparedTestCommand, type PreparedTestCommandSource, type ProducerChoice, type ProposalsCandidateWire, type ProposalsConfig, type ProposalsDiscoveryState, type ProposalsFeatureState, type ProposalsGapOrigin, type ProposalsPredictorMode, type ProposalsSuiteState, type ProposalsSummaryWire, type ProposalsUnavailableCode, type ProposalsVerdict, type ProposedMutant, type ProvenanceStrength, type PullRequestCheckout, QUARANTINE_CAP_MINIMUM, QUARANTINE_CAP_PROPORTION, QUARANTINE_NAME_RENDER_LIMIT, QUARANTINE_REASONS, QUARANTINE_REASON_COPY, type QualificationResult, type QualificationVerdict, type QualifiedOmission, type QuarantineAdmission, type QuarantineCounts, type QuarantineDisclosure, type QuarantineExclusionMode, type QuarantineReason, RATE_CARD_ENV, RATE_CARD_SCHEMA, RAW_COVERAGE_FORMATS, REALISTIC_CATEGORIES, RECEIPT_DETAIL_MAX, RECEIPT_DIRECTORY, RECEIPT_FILE_MAX_BYTES, RECEIPT_STAGES, RECEIPT_UNREADABLE_PHRASES, RED_BASELINE_OUTPUT_TAIL_LINES, REFUSAL_CODES, REFUSAL_CODE_MERGE_EXPIRY, REFUSAL_CODE_RE, REFUSAL_DESTINATIONS, REFUSAL_MESSAGE_MAX, REFUSAL_MESSAGE_PATHS, REFUSAL_OWNERS, REFUSAL_PRIVACY, REFUSAL_REGISTRY, REFUSAL_STAGES, REMINT_MARGIN_MS, REPORT_DIALECTS, REPORT_MAPPINGS, REPORT_SECTION_MAPPING, REPORT_UNAVAILABLE_CAUSES, RESERVED_CUSTOMER_PREFIXES, RESERVED_CUSTOMER_VARIABLES, RESOLVED_EVIDENCE_FIELDS, RESOLVED_EVIDENCE_SCHEMA, RESOLVED_EVIDENCE_UNKNOWN_FIELDS, RETIRED_EVIDENCE_OUTPUTS, RETIRED_KEYS, RETIRED_PROPOSALS_BLOCK_SCHEMAS, RETIRED_REFUSAL_CODES, ROUTE_PURITY_RUNGS, RULED_AUDITABLE_FILES_PER_HUNTABLE_FILE, RULED_FIRST_PASS_RATES, RULED_HUNT_ENVELOPE_DOLLARS, RULED_MAP_ROAD_SLICE_EXECUTIONS, RULED_PROPOSAL_CHANGED_WITHIN_DAYS, RULED_RUN_DOLLAR_CAP, RULED_RUN_HUNT_WALL_MS, RULED_RUN_WALL_MS, RULED_SIZE_GATE, RULED_SWEEP_WALL_FRACTION, RUNNER_BINARY_SUFFIX_SOURCE, RUNNER_CAPABILITIES, RUNNER_DEFAULT_SOURCE, RUNNER_TYPED_CONSEQUENCE, RUN_ATTEMPT_DIGITS, RUN_ATTEMPT_MAX, RUN_CEILING_REMEDY, RUN_COST_STOP_MAPPING, RUN_FINDING_ABSENCE, RUN_FINDING_FIELDS, RUN_FINDING_NESTED, RUN_FINDING_TRIAGE_ABSENCE, RUN_FINDING_TRIAGE_FIELDS, RUN_INTERRUPTION_FACT_KEY_RE, RUN_INTERRUPTION_LIMITS, RUN_LOCAL_EVIDENCE_SCHEMA, RUN_LOG_STAGE, RUN_MODEL_COST_LIMITS, RUN_PROGRESS, RUN_PROGRESS_COUNTERS, RUN_PROGRESS_COUNTER_MAX, RUN_PROGRESS_COUNTS, RUN_PROGRESS_MAX_PROPOSALS, RUN_PROGRESS_NAME_MAX, RUN_PROGRESS_PATH_MAX, RUN_PROGRESS_PROPOSAL, RUN_PROGRESS_REASON_MAX, RUN_PROGRESS_STAGES, RUN_PROGRESS_STAGE_ROW, RUN_PROGRESS_STAGE_STATES, RUN_RECORD_ASSEMBLY_SITES, RUN_RECORD_CONTRACT, RUN_RECORD_WIRE_GAPS, RUN_REFUSAL_CODE_RE, RUN_REFUSAL_LIMITS, RUN_SCOPE_MAPPING, RUN_STAGES, RUN_STAGE_UNITS, type RankedCiPropertyRule, type RateCard, type RateCardFailure, type RateCardResolution, type RawCoverageFormat, type RawCoverageFormatName, type RealisticCategory, type RebuildFacts, type ReceiptCombination, type ReceiptFileInvalidity, type ReceiptFileParse, type ReceiptInvalidity, type ReceiptProvenance, type ReceiptStage, type ReceiptStageName, type ReceiptState, type ReconciliationBlock, type RecordingReplayCombination, type RecordingReplayFacts, type RecordingReplaySilence, type RecordingsFileCombination, type RecordingsFileFacts, type RecordingsFileSilence, type RedBaselineFacts, type RedBaselineShape, type Refusal, type RefusalCard, type RefusalCode, type RefusalContent, type RefusalDeclaration, type RefusalDestination, type RefusalEnvelope, type RefusalEvidence, type RefusalInput, type RefusalOf, type RefusalOwner, type RefusalPrivacy, type RefusalRemedy, type RefusalStage, type RegistryAuthFailure, type RemedyLocation, type RenderedRefusal, type RepoReader, type ReportDialect, type ReportFacts, type ReportOutcome, type ReportSection, type ReportSectionCombination, type ReportSectionName, type ReportSilence, type ReportUnavailable, type ReportUnavailableCause, type ReportedTestFiles, type RepositoryFileReader, type RepositoryModelCredential, type RepositorySizeScan, type RepositorySizeVerdict, type ReservedComposition, type ResolvedCommandPlan, type ResolvedEvidenceObject, type ResolvedProjectPackage, type RetiredEvidenceOutput, type RetiredEvidenceOutputId, type RetiredRefusalCode, type RoutePurityRung, type RunAdmission, type RunAttempt, type RunCeilingFacts, type RunCostStop, type RunCostStopCombination, type RunEventCombination, type RunEventFacts, type RunFindingTriageWire, type RunFindingWire, type RunInterruption, type RunLocalEvidence, type RunLogStage, type RunModelCost, type RunModelCostLane, type RunProgress, type RunProgressCounter, type RunProgressStage, type RunProgressStageState, type RunRecordAssemblySite, type RunRecordFieldContract, type RunRecordFieldName, type RunRecordWire, type RunScope, type RunScopeCombination, type RunStage, type RunStageProgress, type RunStageUnit, type RunnerAlias, type RunnerCapability, type RunnerEcosystem, type RunnerFailureSummary, type RunnerName, type RunnerSpecSelection, SCENARIO_AUTHORITIES, SCENARIO_LANES, SCENARIO_OUTCOMES, SCENARIO_SEARCH_STATES, SCENARIO_SOURCE_INDEPENDENCE, SCENARIO_SOURCE_KINDS, SCORE_EVIDENCE_MAPPING, SCRIPT_NAMED_RUNNERS, SEALED_BROWSER_UID, SEALED_BUN_LINK, SEALED_BUN_PREFIX, SEALED_BUN_VERSION, SEALED_CHROME_BIN, SEALED_CHROMIUM_PACKAGES, SEALED_COREPACK_HOME, SEALED_DENO_BINARY_RELATIVE, SEALED_DENO_DIR, SEALED_DENO_LINK, SEALED_DENO_PREFIX, SEALED_DENO_VERSION, SEALED_EXECUTION_AMBIENT_FACTOR, SEALED_EXECUTION_CEILING_UNMEASURED_MS, SEALED_PLAYWRIGHT_BROWSERS_PATH, SEALED_PNPM_VERSION, SEALED_PREPARATION_ALLOWANCE_MS, SEALED_RUNTIME_ROOT, SEALED_TEST_COMMAND_SOURCES, SEALED_TEST_PROCESS_CONFINEMENT, SEALED_TOOLCHAIN_APT_PACKAGES, SEALED_TOOLCHAIN_BINARIES, SEALED_YARN_VERSION, SECRET_MASKING_FLOOR, SERVICE_REFUSED_FLAGS, SETUP_BRANCH, SETUP_BRANCH_COMMIT_MESSAGE, SETUP_CANDIDATE_CAP, SETUP_CHECK_NAME, SETUP_COMMIT_EMAIL, SETUP_DOCS_URL, SETUP_FAIL_FAST_ANSWERS, SETUP_FAIL_FAST_CONSEQUENCES, SETUP_NODE_ACTION, SETUP_PR_TITLE_TEXT, SETUP_REPORT_MARKER, SETUP_REPORT_OVERSIZE_CODE, SETUP_REPORT_OVERSIZE_NEXT_ACTION, SETUP_ROADS, SETUP_ROAD_CONSEQUENCES, SETUP_ROAD_LABELS, SETUP_ROAD_QUESTION, SETUP_SCRIPT_MODE, SETUP_SCRIPT_PATH, SETUP_STAGE_LABELS, SETUP_STAGE_ORDER, SETUP_STEP_ACTION, SETUP_STEP_IF, SETUP_STEP_JOB_STATUS, SETUP_STEP_NAME, SETUP_STEP_STATES, SETUP_TRIAL_ARTIFACT_NAME, SETUP_TRIAL_MAX_BYTES, SETUP_TRIAL_SCHEMA, SETUP_VOCABULARY, SET_AT_THE_PROMPT, SIGNED_SCORE_RULE, SIZE_BANDS, SOURCE_CHECK_STEPS, SOURCE_RE, SPEND_UNMETERED_REASONS, STANDING_LIMITATION_IDS, SUBDIR_CONFIG_KEY, SUBDIR_OPTION, SYSTEM_PACKAGE_ARCHIVE_HINT, SYSTEM_PACKAGE_NAME, SYSTEM_PACKAGE_VERSION, type ScenarioAuthority, type ScenarioExpectedObservation, type ScenarioInputDomain, type ScenarioIntent, type ScenarioIntentDraft, type ScenarioLane, type ScenarioOperationStep, type ScenarioOutcome, type ScenarioSearchBlock, type ScenarioSearchCounts, type ScenarioSearchMeasuredBlock, type ScenarioSearchProvenance, type ScenarioSearchRestrictions, type ScenarioSearchState, type ScenarioSourceIndependence, type ScenarioSourceKind, type ScenarioSourceRef, type ScenarioSummary, type ScopeFilters, type ScopeOptions, type ScopeParse, type ScopeProposal, type ScopeResolution, type ScopeResolutionInput, type ScopeResult, type ScoreComponent, type ScoreEvidence, type ScoreEvidenceCombination, type ScoreInput, type Scores, type ScriptNamedRunner, type ScriptRun, type ScriptRunEnvironment, type ScriptRunKind, type ScriptRunLauncher, type ScriptRunsInput, type ScriptSeparator, type SealedCeiling, type SealedExtra, type SealedRunnerCapabilities, type SealedRuntime, type SealedSetupFlags, type SealedTestCommand, type SealedTestCommandSource, type ServicePortAssignment, type ServicePortRequest, type SetupAnswer, type SetupAnswerCombination, type SetupAnswerObservation, type SetupCandidateExclusion, type SetupCandidateFilter, type SetupCandidateGate, type SetupCandidateJob, type SetupCandidateTrigger, type SetupFailFast, type SetupHealing, type SetupHealingNote, type SetupJobAttempt, type SetupJobDeclarationUnusableFacts, type SetupNoUsableJobFacts, type SetupPin, type SetupPinReading, type SetupPublishHost, type SetupRegistryUnreachableFacts, type SetupReportInput, type SetupReportOversizeFacts, type SetupRideTier, type SetupRoad, type SetupScriptDraftProblem, SetupScriptError, type SetupScriptStep, type SetupStepState, type SetupStepStatus, type SetupTrialArtifact, type SetupTrialInvalidity, type SetupTrialParse, type SetupTrialRun, type SetupTrialRunOrder, type SetupWorkflowCaller, type ShardDeclaration, type SizeBand, type SizeBandReason, type SizeGateMessage, type SizeGateThresholds, type SourceCheckStep, type SpendUnmeteredReason, type StageBInputs, type StageBReadiness, type StandingLimitation, type StandingLimitationFacts, type StandingLimitationId, type StandsForFacts, type StepConditionVerdict, type StreamTerminalFact, StreamUsageObserver, type StructuralCoverage, type StructuralSite, type Subject, type SuiteObservation, type SuiteOutcome, type SystemPackage, type SystemPackageOperand, TARGET_ARTIFACT_KEYS, TARGET_INVENTORY_SCHEMA, TARGET_INVENTORY_SOURCES, TARGET_RECEIPT_FILE_SCHEMA, TARGET_RECEIPT_SCHEMA, TARGET_SELECTION_KINDS, TARGET_STATE_LABELS, TARGET_STATE_MARKS, TASK_REPLY_PROBLEMS, TEST_COMMAND_SOURCE, TEST_FILE_PATH, TEST_MODULE_MOCKS_FLAG, TEST_PATH_RE, TRIAGE_CALL_FAILURES, TRIAGE_REASON_CODES, TRIAGE_REQUEST_CATEGORIES, TRIAGE_STATES, TRIAGE_VERDICTS, type TargetAdmission, type TargetAdmissionState, type TargetInventoryRow, type TargetInventorySource, type TargetReceipt, type TargetReceiptFile, type TargetSelectionKind, type TaskReplyProblem, type TaskReplyReading, type TestFileCounts, type TestFileTextReader, type TestLocation, type TestRunFacts, type TestRunStage, type TestStrengthBlock, type TextUnit, type TriageCallFailure, type TriageReasonCode, type TriageRecord, type TriageRequestCategory, type TriageState, type TriageVerdict, UNDRIVABLE_RUNNERS, UNOBSERVED_REASONS, UNRECOGNISED_ENGINE_FAILURE, UNREPORTED_ENGINE_FAILURE, UNRESOLVED, USAGE_UNKNOWN, type UnguardedSites, type UnknownFieldPosture, type Unobserved, type UnobservedBaselineCause, type UnobservedBaselineFacts, type UnobservedOutcome, type UnobservedReason, type Unresolved, type UnsatisfiableCheck, type UntestedChangeFacts, type UploadAnswerCombination, type UploadAnswerFacts, type UploadArtifactFacts, type UploadTransportFacts, type UploadedRefusal, type UploadedRefusalEvidence, type UploadedRefusalRemedy, VALUE_ORIGINS, type ValueOrigin, type ValueOriginMap, type VcsSuiteFinding, type VcsSuiteUse, type VerdictExecutionEnvironment, WIRE_HOLD_REASON_MAX, WIRE_REASON_MAX, WORKFLOW_FILE_PATH, WORKFLOW_JOB_ID, WORKFLOW_RUNTIME_PREFIX, WORKSPACE_ORIGINS, type WireAbsence, type WireArray, type WireBoolean, type WireEnum, type WireField, type WireFields, type WireInteger, type WireLiteral, type WireNode, type WireNullable, type WireNumber, type WireObject, type WirePath, type WireResult, type WireString, type WireUnion, type WithheldEvidence, type WorkflowNodePin, type WorkflowRuntime, type WorkspaceOrigin, type WorstOfOutcome, type WorstOfRow, type XmlElement, YARN_DEPENDENCY_ENTRIES, type YamlQuote, ablohAuthored, ablohFailureClosingLine, acceptBugBehaviour, acceptBugDescription, acceptBugEmoji, acceptBugSentence, acceptBugSeverity, acceptBugType, acceptCarriedBugOutcome, accountModelMinter, actionFilesReferenced, actionPinOf, actionRuntimeFiles, actionSubPathOf, addSealedReporter, additionsBetween, admissionCoverage, admissionDecisionProblem, admissionDigest, admissionDrift, admissionSubject, admitFirstPassRun, admitTarget, admitsMainlineBranch, alwaysEmittedEvidenceKeys, ambientEnvironmentWithoutEngineCredentials, angularKarmaShape, angularProjectFromScript, angularRunnerName, angularScriptIsFanout, angularSealedTestCommand, apiKeyScopeProblem, appReceiptCommitMessage, appSetupFileCommitMessage, appSetupHealCommitMessage, appSetupPullRequestTitle, appendRunnerArguments, applyLayer1Gate, asciiDiagnostic, assertNever, assignServicePorts, attributionComplete, attributionMissing, avaInvocation, baselineGateObservation, baselineJobClockBoundMs, baselineJobClockRemedy, baselineJobClockRemedyLocation, baselineJobClockStopSentence, baselineJobClockTimeoutKey, baselineObservedNoTests, baselineOutcome, baselineRunBound, baselineRunBoundDisclosure, baselineRunTimeoutProse, binaryName, boundHoldReason, boundMinutes, boundProgressCount, boundProgressText, boundReceiptDetail, browserLaneSealSummary, bugIdentity, buildCiPropertySearchBlock, buildCiPropertyTargetUniverse, buildCustomerProcessEnvironment, buildOutputDirectory, buildScenarioSearchBlock, buildScopeProposal, buildSecretsFor, bunInvocation, callCeilingDollars, canBeOwnedByAbloh, canStartStageB, candidateBody, candidateName, candidatePath, candidateTextControl, candidateUploadProblem, canonicalJson, capability, carriedVerdict, carriedVerdictNote, catchRate, catchRateIsRaw, catchRateScopeNote, categoryOfStatus, caughtWithinMeasured, ceilingDollarsPerHuntedFile, ceilingNotice, changedStructuralCoverage, chatRequestContract, checkAdmissionRefusal, checkAdmissionRequest, checkAdmissionResponse, checkAdmissionWarning, checkModelRequestFits, checkoutNotComparableReason, chosenTestFiles, chromeSeccompDigest, chromeSeccompProfile, ciPropertyBehaviourKey, ciPropertyLedgerDigest, ciPropertyMutatorFamilies, classicHeadroom, classicMutationExecution, classicMutationTier, classifyDiffCoverage, classifyPullRequestCheckout, classifyReportUnavailable, classifyRepositorySize, cliOptionConfigConflictSentence, cliOptionConflictSentence, cliOptionPathUnusableRemedy, cliOptionPathUnusableSentence, cliOptionRequiredRemedy, cliOptionRequiredSentence, cliOptionRequiresRemedy, cliOptionRequiresSentence, cliOptionUnavailableSentence, cliOptionValueInvalidRemedy, cliOptionValueInvalidSentence, cliUnknownCommandRemedy, cliUnknownCommandSentence, cliUnknownOptionRemedy, cliUnknownOptionSentence, cliUnknownSubcommandRemedy, cliUnknownSubcommandSentence, codeownersFor, codesInFamily, combineLayerGates, commandGlobMatches, commandOutputTail, commandRuntime, commandStageName, commandStages, commandTokens, compareInstrumentation, compiledOutputEvidence, composableReservedEntries, composeExecutionRecord, composeReservedValue, composedValueJudges, computeScope, computeScores, conditionalPower, configFlakyLines, configHeaderLines, configKeyChildren, configKeyDefault, configKeyEntry, configKeyEntryFields, configKeyValueRule, configSettingLines, configSetupJobLines, confinementArgv, consumedGeneratedImport, containsEngineCredential, contentsIndexRefs, conventionalHeaderProblem, countCoverageLines, countsAreWholeVerdicts, countsFrom, countsFromLines, coverageComposition, coverageDisplayState, coverageGroupState, coverageLocationFinding, coverageLocationFindingFor, coveragePathNotAddressableSentence, coverageProviderCacheUnusableSentence, coverageProviderProblem, coverageProviderUnavailableSentence, coverageProviderUnsupportedRunnerSentence, coverageReportBytes, coverageReportInvalidSentence, coverageReportTooLargeSentence, coverageScopeIncompleteSentence, coveredLinesToScope, credentialShapeRefusal, customerChildEnvironment, customerEnvironmentFromConfig, customerEnvironmentNames, cutAtCodePoints, cutTailAtCodePoints, debugPreparationOverflowStack, debugPreparationStack, decideObservation, decideQuarantineAdmission, decideSetupHealing, declarableTopLevelKeys, declaredConfigKeys, declaredDependencies, declaredOrigin, declaredRunnerProblem, declaredShard, declaredValueOrigins, declaredValues, declaresJestWatchMode, declaresWatchMode, decodeTaskObject, decodeTaskReply, decodeXmlEntities, defaultDockerCommandRunner, denominatorOf, dependencyPath, dependencyRoot, deprecatedModelVariableWarning, deprecatedModelVariablesInUse, deriveScenarioSearchCounts, deriveWorstOfGate, describeCommandGlobExpansions, describeDays, describeDollars, describeFiles, describeFinding, describeJobClockStage, describeJobDuration, describeMutationEvidence, describeReasonCode, describeRunStage, describeRuns, destinationLabel, destinationRepairs, detectModuleLayout, detectNativeSymptoms, detectReactNativeProject, detectVcsSuiteUse, detectedHostCores, detectedHostMemoryMb, diffCoverageExecution, directRunnerCommand, displayTruncationNote, distinctChecks, dotEnvDefinesModelVariables, dotEnvModelHint, egressRefusalFor, emptyCounts, emptyScope, endProcessGroup, endsSentence, engineFailureEgress, engineFailureLog, engineFailureReportId, engineFailureShape, engineFailureShapeSentence, engineFailureSignature, engineFailureTimeoutMinutes, engineOrDependencyStoragePath, ensureBaseReachable, entryAnswers, envelopeEvidenceKeys, environmentDifference, environmentValueProblem, errorCountOf, evaluateAssay, evaluateDiffCoverageGate, evaluateFloor, evaluateGate, evaluateStepCondition, evaluateStepConditions, evidenceBasename, evidenceDeleteAfter, evidenceIndexMissingLines, evidenceIndexMissingSentence, evidenceIndexRefusalCode, evidenceOutput, evidenceOutputByBasename, evidenceRetentionDaysOr, evidenceRetentionExpired, evidenceUploadPlan, evidenceWithheldLine, excludedAndDisclosed, executionRecorder, expandCommandGlobs, expandDeclaredTestCommand, expandScopeLines, expectedDollarsPerHuntedFile, extractImportSpecifiers, failFastCancelsLegs, failFastEditable, failFastNotice, failFastReceipt, failedSetupStage, failingTestSentence, fileImportTargets, fileSelectionArgs, fileSelectionTemplate, fileUrlCarriesPath, filterSetupCandidates, findRunnerFailureSummary, findXmlElements, findingEffort, findingKind, findingReasonCode, findingSeverity, findingStatus, findingTriageVerdict, foldToPrintableAscii, foldToPrintableText, foldedNeighborsClause, formattedJson, fullyConstructible, gapKeys, generatedFilePathProblem, generatedFilesValue, generatedPaths, generationState, gitHeaderPath, githubEquals, githubTruthy, globToRegExp, gradedFindingSeverity, groupFindingsByLine, hasAbandonedImportClause, hasRegisteredSecrets, healthCommandProblem, healthPortProblem, holdReasonText, hostedRunHeaderValue, hostedRunHeaders, identityConditionLine, identityConditionOfEnvironment, identityConditionSentence, identityFilesValue, imageVocabulary, importSelectorTarget, importTargetMatches, indexQueryFor, insertSealedSetupFlags, installCommandNeedsCorepackEnable, installedInputs, instrumentationComparisonLines, invokesDefaultTestScript, isAblohFailureClosing, isAblohSetupAuthor, isAngularRunner, isAnnotatableSurvivor, isAuditableSourcePath, isBoundedCodeFreeSentence, isCanonicalBase64, isCiPropertyCandidateCap, isClusterStrategy, isCodeFreeProse, isConfirmedEquivalent, isDiffCoverageCannotAttestReason, isEngineFailureReportId, isEngineFailureShapeName, isEnvironmentName, isEvidenceRetentionDays, isExactPackageManagerVersion, isExpandableGlobArgument, isModelServiceOutageAnswer, isModelTerminalEvent, isNonExecutableLine, isNothingWaiting, isObserved, isPlaygroundSentence, isReservedCustomerVariable, isScenarioAuthority, isScenarioLane, isScenarioOutcome, isScenarioSearchState, isSetupBranchName, isSetupReportComment, isTestPath, isValueOrigin, isWellFormedText, itemsPerModelRequest, jobClockRaiseInstruction, jobClockStageLogPrefix, jobClockStageRemedy, jobClockStageStopSentence, jobClockStageTimeoutKey, jobOnMatrixLeg, jobTimeBudgetSentence, jsRunners, judgeCandidateTextControl, judgeConfigKeyValue, keylessLocalRunBlock, kibibytes, knownRunner, layer0EnabledRunners, layer2IntentProposalFieldsSentence, liveProgressUpdate, loadConfig, loadConfigWithNotes, localBinaryPrefix, localContractCommitMessage, localDetailClause, localEvidenceText, localLadderLines, locationOfPattern, lockPathFor, looksLikeRunnerFailureSummary, makeFilePrivate, manifestBasename, manifestScripts, mapCostGate, mapCostReason, mapCostRoadFacts, mapCostSentence, mapCostsMoreThanTheVerdicts, markNonExecutable, matchesCredentialShape, matrixLegAsOffered, matrixLegProblem, matrixLegRunner, matrixValueAsOffered, matrixValueCondition, matrixValueText, matrixValueYaml, measurableCount, measurableTestRuns, measurementPlanDigest, mebibytes, mechanicalCounts, mechanicalErrorPathDisposition, memoryRepoReader, mergeBaseNotEstablished, message, messageFromFacts, microsToUsd, missingActionFiles, missingModelVariableReason, missingScopedFiles, modelBufferedReceipt, modelDispatchClaimProblem, modelOidcMinter, modelRequestContract, modelRequestKeys, modelServiceAnswers, modelServiceBaseUrl, modelServiceErrorContract, modelServiceOutageEvidence, modelStepBoundaryMessage, modelTerminalEvent, modelTerminalEventContract, mutantIdentity, mutationRefusalSentence, mutationRefusalWall, mutationWasAttempted, nameDrivenRunners, narrationTo, nativeFloorCommand, nearbyCarryClause, nearbyCodeSentence, nearbyConsequenceClause, nearbyFindingName, nearbyFindingSentence, nearbyLine, nearbyMeasurementClause, nearbyRelationClause, nearbyRemainderSentence, nearbyReportFrom, nearbyRow, newlyFailingTests, nextActionLine, nextActionParts, nextActionSentence, nodeMajorFromImageRef, nodeOptionInsertionPoint, nodeReporterCounts, nodeTestInvocation, nodeVersionFromImageRef, nonEvidenceBasename, nonEvidenceOutput, normalizeDeclaredPath, normalizeImportTarget, normalizeOwner, normalizeRepoPath, normalizeRunFinding, notUploadedRunRecordFields, noteModelServiceAnswer, nothingToMeasurePathFilter, observedNegative, observedPositive, openExecutionCopies, optional, originOf, outputShowsDeniedFork, ownedByOrigin, packageScriptSeparator, parseAptSources, parseAsterCoverageEvidence, parseClosedReason, parseCodeowners, parseContentsEntry, parseConventionalHeader, parseDeepAuditArtifact, parseDpkgArchitecture, parseEvidenceManifest, parseHostedRunHeader, parseInitTelemetryEvent, parseJsonc, parseLiteralArguments, parsePreparedTestCommand, parseRunLocalEvidence, parseRunModelCost, parseScope, parseSetupScript, parseSetupTrialArtifact, parseTargetInventory, parseTargetReceiptFile, parseUnifiedDiff, parseUploadedInterruption, parseUploadedRefusal, parseValueOriginMap, parseXml, partialAdmissionSentence, pathWithin, patternMatches, patternRefusal, percentOfMeasured, pidCeilingExhaustion, pidCeilingNotice, plainSafe, planCommand, planCompletionBatches, planLimitRemedy, planLimitSentence, planRefusalFactsOf, planRefusalRemedy, planRefusalSentence, playgroundExcerptBytes, playgroundOutcome, playgroundRosterExcerptsFit, pnpRuntimeFile, pool2Population, preflightCheck, preflightEvent, preparedCommandProblem, privateDirectory, producerChoice, project, projectFirstPass, projectMapCost, projectRunFinding, projectRunFindingTriage, projectedRunRecordFields, projectionHours, proposalCandidatePaths, proposalIsOffered, proposalMessage, proposalsCandidate, proposalsDiscoveryState, proposalsFeatureState, proposalsGapOrigin, proposalsPredictorMode, proposalsSuiteState, proposalsSummary, proposalsUnavailableSentence, proposalsVerdict, provenShapeProblem, publishableEvidenceDirectories, publishableEvidenceFiles, qualifyCorpus, qualifyHistoricalPair, quarantineCap, quarantineCapExceeded, quarantineDisclosureSentence, quarantineExcludableRunners, quarantineExcludedTotal, quarantineExclusionMode, quarantineFloorBreached, quarantineFloorRefusal, quarantineGrowthSentence, quarantineNameList, quarantineNamesSentence, quoteLiteralArgument, rankCiPropertyRules, rankIndexCandidates, rankSetupCandidates, rateCardFromEnvironment, readBufferedModelReply, readEventUsage, readFailFastDeclaration, readModelBufferedReceipt, readModelServiceError, readModelServiceOutage, readModelTerminalEvent, readModelVariable, readOutputItemsText, readPackageManagerDeclaration, readPackageManagerPin, readPackageManifest, readPackageManifestFile, readRefusalText, readRegistryAuthFailure, readReportedModel, readReportedTestFiles, readRunAttempt, readSetupPin, readSetupPinFromDocument, readTerminalFact, readTextDelta, readUsageFrame, readsCompiledOutput, readsProposalsBlockSchema, readsReportedTestFiles, rebuildBeforeMeasuringFailedSentence, receiptPathFor, recognizedProvidersFor, recordsForStage, redBaselineCallerGreenDetail, redBaselineCallerJobWasGreen, redBaselineCommandNeverStarted, redBaselineDetail, redBaselineRefusal, redBaselineReportFailureNote, redBaselineRunnerExitedNonZero, redBaselineShape, redactCredentialShapes, redactCredentialShapesDeep, redactTriageForEgress, refusalCodeIsReadable, refusalCodeOf, refusalDetail, refusalEnvelope, refusalFromFacts, refusalFromStoredCode, refusalIsWall, refusalLines, refusalMessageOf, refusalOfUploaded, refusalOwnersOf, refusalRemedyText, refusalSentence, refusalSentenceWithRemedy, refusalSummary, refuse, refusedAsAblohOwned, registerSecretValue, registeredBasenames, registeredSecretNames, registryAuthRefusal, registryEntryProblems, releaseDigestFor, remedyEditLines, remedyLocation, remedyValueShape, renderAsterCoverageEvidence, renderCoverageEvidence, renderEvidenceManifest, renderModelVariableRow, renderRefusal, renderRunLocalEvidence, renderSetupFailure, renderSetupReportComment, renderSetupScript, renderSetupStepLine, renderTargetReceiptFile, reportMessageFromFacts, reportUnavailableFacts, repositoryModelCredentialOfEnvironment, requireEvidenceCustody, requirePackageManifest, required, reservedComposeProblem, reservedComposition, resetModelServiceAnswers, resetRegisteredSecrets, resolveCommandPlan, resolveFacts, resolveImportTarget, resolveModelAccess, resolvePreparedTestCommand, resolveProjectPackage, resolveRefusalCode, resolveRefusalOwner, resolveScope, resolveSealedTestCommand, resourceCeilingExhaustion, respelledClasses, responsesRequestContract, retiredConfigKeyNote, retiredConfigKeyWarning, retiredConfigKeys, retiredEvidenceBasename, retiredEvidenceBasenames, retiredEvidenceOutputs, rewrittenFilePathProblem, rewrittenFilesValue, ridableMatrixCombinations, roadOpensPullRequest, roadRunsLocalTrial, rosterTruncation, routePurityRung, rowAdmitted, runAttempt, runCeilingSentence, runFinding, runFindingProblem, runFindingTriage, runIsDroppable, runRecordReaderProblems, runnerAliases, runnerChoiceConsequence, runnerConfigFromInvocation, runnerImageVocabulary, runnerNamePattern, runnerNamesInScript, runnerSpecSelection, runsLifecycleScripts, runsPackageScript, runsRequiredBefore, sameMatrixValue, sameModelDispatchRun, sanitizeCiPropertySummary, sanitizeFindingAbout, sanitizeFindingDescription, sanitizeScenarioSummary, scanRepositoryTree, scopeCallsModel, scopeHeadline, scopeImportSelectors, scopeIsEmpty, scopeReadsEvidence, scopeSummary, scriptRuns, scrubSecrets, scrubSecretsDeep, sealedBunInstallProgram, sealedBunPackage, sealedCommandForInvocation, sealedDenoInstallProgram, sealedExecutionCeilingMs, sealedExtrasNeeded, sealedFileDescriptorLimit, sealedMemoryLimitMb, sealedPidsLimit, sealedReportingArgs, sealedRunnerCommand, sealedRuntimeInstallProgram, sealedRuntimeNeeded, sealedRuntimeVersion, sealedSetupFlags, sealedTestProcessArgv, sealedToolchainCommand, selectAngularTestTarget, selectCiPropertyTargets, selectScriptNames, separatorForCommand, serviceNameProblem, setupCandidateExclusion, setupCandidateNarrowing, setupCandidatesExhausted, setupFailFastProblem, setupFailureRefusal, setupFailureSentence, setupHealingAsksForAnEdit, setupJobProblem, setupJobReference, setupMatrixLegProblem, setupPinProblem, setupProvisionalRideUnproven, setupPublishHost, setupReportOversizeLine, setupReportOversizeSentence, setupRideIsProvisional, setupRunnerExclusion, setupScriptDraftProblem, setupScriptPathProblem, setupStepIf, setupStepLabel, setupStepLines, setupStepMarker, setupStepStatuses, setupTrialPassed, setupTrialRunOrder, setupWordingProblem, sha256, sha256Bytes, shardDeclarationBlock, shardDisclosure, shippedGeneratedPaths, shortenForDisplay, shortenTailForDisplay, silence, sizeGateMessage, slotPrivacy, sortedSystemPackages, specPositionalsOf, stableOutcome, stageProjectionMs, stageProjectionsMs, stagedEvidenceIsLedger, standingLimitationClause, standingLimitations, statedByTheClock, statesTestingGap, storedEvidenceBasename, storedEvidenceLabel, streamOutcomeIsSuccess, stripComments, stripJsonComments, stripTestIdentityDiscriminator, structuralDigest, structuralFindingsFor, subjectDigest, summaryThenAction, supportsTestModuleMocks, survivingMutantFinding, survivingMutantObligationSignals, systemPackageInstallCommand, systemPackageOperandProblem, systemPackagePinHint, systemPackageProblem, tallyCounts, targetReceiptDigest, targetReceiptFile, testLocations, testRunObservation, testRunStages, testRuns, testsImportBuiltOutputSentence, textDeclaredLocations, textFits, textLength, toApiKeyScope, toEgressRefusal, toGapFindings, toPosixSeparators, toUploadedInterruption, toUploadedRefusal, toWorkdirRelPosix, tokenIsSearchable, tolerated, triageState, truncateForDisplay, truncatedRosterNote, uncoveredCount, uncoveredLinesToScope, understandsModelServiceVersion, undrivableRunner, unguardedSentence, unguardedSitesFrom, unmaskableSecretRefusal, unobserved, unobservedBaselineCause, unobservedBaselineCode, unobservedBaselineRefusal, unobservedBaselineRunnerNote, untestedChangeLead, upstreamErrorInBody, usageDollars, usageKnown, usageOrNull, usdToMicros, validateCiResidualGapLedger, validateConfig, validateConfigWithNotes, validateDiffCoverageLines, validateManifest, validatePlaygroundExplanation, validatePlaygroundModelResponse, validatePlaygroundPublicMaterial, validatePlaygroundPublicResult, validatePlaygroundSummary, validatePreparedTestCommand, validateTargetReceipt, verdictExecutionEnvironment, watchModeDisableFlags, watchModeRefusal, wilsonInterval, wireArray, wireBoolean, wireDigest, wireEnum, wireInteger, wireLiteral, wireNullable, wireNumber, wireObject, wirePrintable, wirePrintableText, wireRecord, wireString, wireUnion, withFileLock, withJestWatchModeDisabled, withWatchModeDisabled, withheldEvidenceLine, withinPackage, withoutJestWatchDisableFlags, withoutRetiredKeys, withoutSpecPositionals, withoutUbuntuTimeSuffix, withoutWatchDisableFlags, workflowRuntimeBin, workflowRuntimeCheckStep, workflowRuntimePrefix, workflowRuntimeSteps, workflowYaml, writePrivateFile, xmlChild, yamlLegValue, yamlScalar };
|
|
41835
|
+
export { ABLOH_FAILURE_OWNERSHIP, ABLOH_FAILURE_OWNERSHIP_ANONYMOUS, ABLOH_SUPPORT_ADDRESS, ACCOUNT_MODEL_VARIABLES, ACCOUNT_ORGANIZATION_VAR, ACCOUNT_SESSION_TOKEN_VAR, ACCOUNT_TOKEN_URL_VAR, ACTION_NON_IMPORTED_ASSETS, ACTION_REFERENCES, ACTION_REPOSITORY, ADDITION_GROUPS, ADMISSION_DRIFT_PHRASES, ADMISSION_SENTENCE_MAX, ALL_STAGES_RAN_NOTE, ANGULAR_RUNNERS, ANNOTATION_SEVERITIES, API_KEY_SCOPES, ASTER_COVERAGE_FORMAT, ASTER_COVERAGE_PROVIDER, ASTER_COVERAGE_RAW_FORMAT, ASTER_COVERAGE_SCHEMA, ASTER_ENGINE_NAME, ASTER_ENGINE_VERSION, ATTESTATION_JOB_ID, ATTEST_ACTION, AUDITABLE_SOURCE_EXTENSIONS, type AblohConfig, type AblohFailureFacts, type ActionFileReader, type AddedVariable, type AdditionGroup, type AdmissionCoverage, type AdmissionDrift, type AdmissionDriftKind, type AdmissionRefusalReason, type AdmissionSubject, type AngularKarmaShape, type AngularRunnerName, type AngularTestRunner, type AngularTestTarget, type AnnotationSeverity, type ApiKeyScope, type AppliedCeilings, type ArchiveComponent, type ArchiveIdentity, type ArtifactDestinationFacts, type ArtifactDestinationProblem, type ArtifactOutputPathCombination, type ArtifactOutputPathFacts, type ArtifactOutputPathProblem, type ArtifactPublicationLockCombination, type ArtifactPublicationLockFacts, type ArtifactWriteCombination, type ArtifactWriteFacts, type AssayResult, type AssayVerdict, type AsterCoverageCensus, type AsterCoverageEvidence, type AsterCoverageFile, type AsterCoverageLine, type AttestResultsV2, type AttestStatus, type AttestationEnvironment, type AttestationInput, type AttributionQuality, type AuditScope, BASELINE_HISTORY_MAPPING, BASELINE_HISTORY_REASONS, BASELINE_JOB_CLOCK_REMEDY, BASELINE_JOB_CLOCK_RESERVE_SUITE_RUNS, BASELINE_LINE_MAPPING, BASELINE_PUBLICATION_ALLOWANCE_MS, BASELINE_RUN_FACTOR, BASELINE_RUN_FLOOR_MS, BOOST_MS_PER_DAY, BROWSER_LANE_MEASURED_ENVIRONMENT, BROWSER_LANE_SEAL, BROWSER_SHARED_MEMORY_ARGV, BROWSER_SHARED_MEMORY_PATH, BROWSER_SHARED_MEMORY_TMPFS, BUG_BEHAVIOUR_VERDICTS, BUG_EMOJI, BUG_SEVERITIES, BUN_DIFF_COVERAGE_NOTICE, BUN_DIFF_COVERAGE_NOTICE_SHORT, type BaseReachability, type BaseUnreachableCause, type BaselineCombination, type BaselineCommand, type BaselineGateAbsence, type BaselineHistoryCombination, type BaselineHistoryLine, type BaselineHistoryReason, type BaselineJobClock, type BaselineJobClockStop, type BaselineLine, type BaselineLineCombination, type BaselineOutcomeEvidence, type BaselineOutcomeFacts, type BaselineRunBound, type BaselineRunBoundSource, type BrowserSealClause, type BugBehaviourVerdict, type BugSeverity, type BuildCiPropertyBlockInput, type BuildScenarioSearchBlockInput, type BuiltOutputFacts, CANDIDATE_BODY_MAX, CANDIDATE_ENTRIES_MAX, CANDIDATE_NAME_MAX, CANDIDATE_PATH_MAX, CANDIDATE_TEXT_CONTROL_DETAIL_MAX, CANDIDATE_TEXT_CONTROL_SCHEMA, CANDIDATE_UPLOAD_RULES, CANONICAL_MODEL_VARIABLES, CARRIED_AFTER_SHA, CARRIED_BEFORE_SHA, CARRIED_BUG_OUTCOMES, CARRIED_SHA_LENGTH, CARRIED_UNNAMED, CHECKOUT_ACTION, CHECK_ADMISSION_SCHEMA, CHECK_ADMISSION_TIMEOUT_MS, CHROME_DENIED_CLONE_FLAGS, CHROME_SECCOMP_ADDITIONS, CI_OBLIGATION_SIGNAL_AUTHORITIES, CI_PROPERTY_AUTHORITIES, CI_PROPERTY_CAPS, CI_PROPERTY_FAMILIES, CI_PROPERTY_INTENT_POOL_SCHEMA, CI_PROPERTY_INTENT_TASK_SCHEMA, CI_PROPERTY_OUTCOMES, CI_PROPERTY_STATES, CI_RESIDUAL_STATES, CLI_COMMANDS, CLI_HELP_REMEDY, CLI_MAPPINGS, CLI_OPTIONS, CLI_OPTION_CONFIG_CONFLICT_REMEDY, CLI_OPTION_CONFLICT_REMEDY, CLI_OPTION_UNAVAILABLE_REMEDY, CLI_PATH_PROBLEMS, CLUSTER_STRATEGIES, COMMAND_READ_PROBLEMS, COMPUTE_RATE_ENV, CONFIG_DOCS_URL, CONFIG_FILE_PATH, CONFIG_KEY_REGISTRY, CONTROL_CHARACTERS, CONVENTIONAL_HEADER_MAX_LENGTH, CONVENTIONAL_TYPES, COST_UNKNOWN, COVERAGE_DISPLAY_STATES, COVERAGE_EVIDENCE_SCHEMA, COVERAGE_LINE_MAPPING, COVERAGE_PROVIDER_CACHE_DEFAULT_ROOT, COVERAGE_PROVIDER_CACHE_DIR_VAR, COVERAGE_PROVIDER_CHOICES, COVERAGE_STATE_WORDS, COVERAGE_VERDICT, CREDENTIAL_SHAPE_MASK, CUSTOMER_TYPED, type CallerJobOutcome, type CandidateTextControl, type CandidateUploadRule, type CarriedBugOutcome, type CarriedStanding, type CarriedVerdict, type CellObservation, type ChangedStructuralCounts, type CheckAdmissionCombination, type CheckAdmissionFacts, type CheckAdmissionRequestWire, type CheckAdmissionResponseWire, type CheckAdmissionSilence, type CheckoutIdentity, type ChromeSeccompAddition, type ChromeSeccompArg, type CiChangedRange, type CiObligationSignal, type CiObligationSignalAuthority, type CiPropertyAuthority, type CiPropertyCandidateCap, type CiPropertyCounts, type CiPropertyFamily, type CiPropertyMeasuredBlock, type CiPropertyOutcome, type CiPropertyRuleCandidate, type CiPropertyRuleDrop, type CiPropertySearchBlock, type CiPropertyState, type CiPropertySummary, type CiPropertyTargetCandidate, type CiPropertyTargetDecision, type CiPropertyTargetPlan, type CiResidualGapEntry, type CiResidualGapLedger, type CiResidualState, type CiStepsUnreadFacts, type ClassicMutationConfig, type ClassicMutationTier, type ClassicSamplingBlock, type CliCommand, type CliFacts, type CliOption, type CliPathProblem, type CliValueShape, type ClusterStrategy, type CodeownersRule, type CombinedGate, type CommandGlobExpansion, type CommandLine, type CommandLineCombination, type CommandLineObservation, type CommandPlan, type CommandProvenance, type CommandReadProblem, type CommandResolutionStop, type CommandRuntime, type CommandScriptHop, type CompiledOutputReading, type ComposedFindings, type ConditionalPowerResult, type ConfigInRangeCombination, type ConfigInRangeFacts, type ConfigInRangeSilence, type ConfigKeyEntry, type ConfigKeyReader, type ConfigKeyStanding, type ConfigLoad, type ConfigOrigin, type ConfigTreeEntryCombination, type ConfigTreeEntryFacts, type ConfigTreeEntrySilence, type ConfigValueJudge, type ConfigValueRule, type ConfigValueVerdict, type ConfinementClause, type ConsumedGeneratedImport, type ContentsEntry, type ContentsIndexRef, type ConventionalHeader, type CoreSilence, type CorepackCacheFacts, type Counts, type CoverageAcquisitionObservation, type CoverageAdapterResolutionObservation, type CoverageAddressableFacts, type CoverageBundledPackageFacts, type CoverageCacheFacts, type CoverageComposition, type CoverageDisplayState, type CoverageEvidence, type CoverageEvidenceChild, type CoverageFacts, type CoverageLine, type CoverageLineCombination, type CoverageProvider, type CoverageProviderCacheFacts, type CoverageProviderChoice, type CoverageProviderFacts, type CoverageProviderObservation, type CoverageReportFormatFacts, type CoverageReportSizeFacts, type CoverageRunnerFacts, type CoverageScopeFacts, type CoverageStateWords, type CoverageVerdictState, DECLARED_SERVICE_CONFINEMENT, DEEPEN_FETCH_TIMEOUT_MS, DEEPEN_LADDER, DEEP_AUDIT_ARTIFACT_SCHEMA, DEEP_AUDIT_FINDING_ORIGINS, DEEP_AUDIT_LINE_VERDICTS, DEEP_AUDIT_SCOPE_SOURCES, DEFAULT_CLASSIC_MUTATION, DEFAULT_CONFIG, DEFAULT_DIFF_COVERAGE, DEFAULT_ENVIRONMENT, DEFAULT_ENVIRONMENT_IMAGE_DIGEST, DEFAULT_ENVIRONMENT_IMAGE_REF, DEFAULT_FLOOR, DEFAULT_MODEL_ENDPOINT, DEFAULT_MUTATION, DEFAULT_NATIVE_VOCABULARY, DEFAULT_SETUP_BOT_LOGIN, DEFAULT_SETUP_ROAD, DEPENDENCY_PATH_SEGMENTS, DESTINATION_LABELS, DIFF_COVERAGE_CANNOT_ATTEST_REASONS, DIFF_COVERAGE_THRESHOLD, DISPLAY_CUT_MARK, DISPLAY_TRUNCATABLE_FIELDS, DOCKER_DEFAULT_SECCOMP_SOURCE, type DecisiveLayer, type DeclaredEnvironment, type DeclaredKey, type DeclaredKeyCombination, type DeclaredKeyObservation, type DeclaredPackageManager, DeclaredRefusalError, type DeclaredValue, type DeepAuditArtifactParse, type DeepAuditCountsReport, type DeepAuditCoverageFileReport, type DeepAuditCoverageRange, type DeepAuditFinding, type DeepAuditFindingOrigin, type DeepAuditLineVerdict, type DeepAuditReachReport, type DeepAuditRunArtifact, type DeepAuditScopeReport, type DeepAuditScopeSource, type DeepAuditSpendReport, type DetectionCell, type DeterministicMutantsBlock, type DiffCoverageCannotAttestReason, type DiffCoverageConfig, type DiffCoverageCounts, type DiffCoverageLine, type DiffCoverageLineState, type DiffCoverageNotApplicableReason, type DiffCoverageNotRunReason, type DiffCoverageResult, DiffScopeError, type DisplayTruncatableField, type DisplayTruncation, type DockerCommandRunner, type DockerInvocation, ENGINE_FAILURE_LOG, ENGINE_FAILURE_REPORT_ID_PATTERN, ENGINE_FAILURE_SHAPE_NAMES, ENGINE_FAILURE_TIMED_OUT, ENGINE_MODEL_FAILURES, ENVELOPE_ONLY_EVIDENCE_KEYS, ENVIRONMENT_AMENDMENT_COMMIT_MESSAGE, EVIDENCE_API_KEY_SCOPES, EVIDENCE_EGRESS_SAFE, EVIDENCE_INDEX_MISSING_REMEDY, EVIDENCE_INDEX_UNREADABLE_REPORT_ID, EVIDENCE_MANIFEST_SCHEMA, EVIDENCE_OUTPUTS, EVIDENCE_REGROUPING_EXPIRY, EVIDENCE_RETENTION_DEFAULT_DAYS, EVIDENCE_RETENTION_MAX_DAYS, EVIDENCE_RETENTION_MIN_DAYS, EVIDENCE_SOURCES, EVIDENCE_WORD, EXCLUDE_RE, EXECUTION_STAGES, EXPECTED_ORACLE_CELL, type EgressEngineFailure, type EgressRefusal, type EngineFailureBlock, type EngineFailureShape, type EngineModelFailure, type EnsureBaseReachableInput, type EnvironmentConfig, type EnvironmentServiceConfig, type ErrorHandlersBlock, type ErrorPathsConfig, type EvidenceCustody, type EvidenceFloor, type EvidenceIndexFacts, type EvidenceIndexProblem, type EvidenceKind, type EvidenceManifest, type EvidenceManifestEntry, type EvidenceOutput, type EvidenceOutputId, type EvidenceProfile, type EvidenceProvenance, type EvidenceRole, type EvidenceSlot, type EvidenceSource, type EvidenceUploadPlan, type EvidenceVerdictState, type EvidenceWithholdReason, type ExecutionAxis, type ExecutionCopies, type ExecutionCopy, type ExecutionCopyMethod, type ExecutionRecord, type ExecutionRecordSink, type ExecutionStage, type ExpandedCommandGlobs, type ExperimentManifest, FAIL_FAST_JOB_NOTE, FEATURE_NOT_RUN_REASONS, FINDINGS_TABLE_MAPPING, FINDING_CARRIED_SHA, FINDING_FILE_PATH_MAX, FINDING_MUTANT_ID_MAX, FINDING_MUTATOR_MAX, FINDING_PROVENANCE_MAX, FINDING_SEVERITIES, type FactMapping, type FactTestRow, type FactsOf, type FailFastJob, type FailFastReading, type FailedTestFile, type FeatureNotRunReason, type FeatureState, type FileFacts, type FileScope, type FileStructural, type FindingSeverity, type FindingStatus, type FindingsTable, type FindingsTableCombination, type FirstPassProjection, type FirstPassRates, type FixLoopBlock, type FixProofSummary, type FixProofVerdict, type FlakyConfig, type FloorConfig, GATE_VERDICT, GATE_WORD, GENERATION_STATES, type GapFinding, type GapKeyInput, type GateResult, type GateStatus, type GateVerdictState, type GeneratedPath, type GenerationState, type GitCommandCombination, type GitCommandFacts, type GitCommandSilence, type GitHubStructuralFinding, type GithubValue, type GroupableFinding, HANDOFF_EVIDENCE_KEYS_V1, HANDOFF_EVIDENCE_KEYS_V2, HANDOFF_TARGET_KEYS, HEALABLE_SETUP_STAGES, HEX_DIGEST_64, HOSTED_CHECKS_NEED_NO_KEYS, HOSTED_RUN_HEADER, type HandlerAntiPatternKind, type HandlerFinding, type HeadroomResult, type HeadroomVerdict, type HistoricalPair, type HostedRunIdentity, IDENTITY_CONDITION_CODES, IMPORT_SELECTOR_PREFIX, INIT_DOORS, INIT_FAILURE_CLASSES, INIT_OUTCOMES, INIT_PACKAGE_MANAGERS, INIT_QUESTION_KEYS, INIT_RUNNERS, INIT_TELEMETRY_SCHEMA, INIT_TELEMETRY_VERSION, INTENT_TASK_COMMON_FIELDS, INTERRUPTION_MECHANISMS, INVENTORY_NAME_RENDER_LIMIT, type IdentityConditionFacts, type IdentityConditionKind, type ImportHop, type IndexCandidate, type IndexQuery, type Infer, type InferFields, type InitDoor, type InitFailureClass, type InitOutcome, type InitPackageManager, type InitQuestionKey, type InitRunner, type InitTelemetryEvent, type InstalledInput, type InstrumentationComparison, type InstrumentationDivergence, type InterruptionMechanism, InvariantError, JEST_WATCH_DISABLE_FLAGS, JEST_WATCH_DISABLE_SUFFIX, JOB_CLOCK_COST_BASES, JOB_CLOCK_SEALED_STAGES, JOB_CLOCK_STAGES, JOB_CLOCK_STAGE_OVERHEADS, JOB_CLOCK_STAGE_UNITS, type JobClockCostBasis, type JobClockStage, type JobClockStageOverhead, type JobClockStageProjection, type JobClockStageStop, type JobClockStageUnit, type JobTimeBudgetRefusalFacts, KNOWN_ENVIRONMENT_KEYS, KNOWN_SETUP_KEYS, LAYER0_EXECUTION, LAYER0_SCOPE_DISCLOSURE, LAYER1_EXECUTION, LAYER2_INTENT_PROPOSAL_FIELDS, LAYER2_INTENT_PROPOSAL_SCHEMA, LAYER2_INTENT_TASK_SCHEMA, LIVE_PROGRESS_MAX_UPDATES_PER_RUN, LIVE_PROGRESS_SCHEMA, LIVE_PROGRESS_SUMMARY_MAX_BYTES, LIVE_PROGRESS_TIMEOUT_MS, LIVE_PROGRESS_TITLE_MAX, LOCAL_DESTINATIONS, LOCAL_LADDER_LEAD_IN, LOCAL_MODEL_DOCS_URL, LOCK_POLL_MS, LOCK_STALE_MS, LOCK_WAIT_MS, type Layer1GateInput, type Layer2IntentProposalField, type LedgerEntry, type LineGroup, type LiveProgressUpdateWire, MAINLINE_BRANCHES, MAX_ANNOTATION_MUTATORS, MAX_ANNOTATION_REASONS, MAX_ANSWERED_SYSTEM_PACKAGES, MAX_ARTIFACT_COVERAGE_FILES, MAX_ARTIFACT_FINDINGS, MAX_ARTIFACT_RANGES_PER_FILE, MAX_BUG_DESCRIPTION_LEN, MAX_BUG_RATIONALE_LEN, MAX_BUG_SENTENCE_LEN, MAX_BUG_TYPE_LEN, MAX_CARRIED_BUG_ENTRIES, MAX_DEEPEN_DEPTH, MAX_DIAGNOSTIC_REASON_CHARS, MAX_ENVIRONMENT_SERVICES, MAX_EXECUTION_RECORDS, MAX_EXPANDED_LINES, MAX_FINDING_ABOUT_LEN, MAX_FINDING_DESCRIPTION_LEN, MAX_GENERATED_FILES, MAX_IMPORT_LENGTH, MAX_LITERAL_ARGUMENTS, MAX_LITERAL_COMMAND_BYTES, MAX_MUTANT_ROSTER, MAX_MUTANT_ROSTER_ROWS, MAX_OBSERVED_EVENT_BYTES, MAX_PACKAGE_ROWS, MAX_PATTERN_LENGTH, MAX_POOL2_EVIDENCE_ENTRIES, MAX_PREFLIGHT_CHECKS_RUN, MAX_PREFLIGHT_LIST, MAX_PROPOSAL_CANDIDATES, MAX_RESOLVED_FINDINGS, MAX_REWRITTEN_FILES, MAX_SCOPE_IMPORTS, MAX_SCOPE_PATTERNS, MAX_SCOPE_RANGES, MAX_SCOPE_TEAMS, MAX_SCRIPT_HOPS, MAX_SETUP_SCRIPT_BYTES, MAX_SETUP_STEPS, MAX_SYSTEM_PACKAGES, MAX_UPLOADED_FINDINGS, MEASURED_COST_MODEL_UNCERTAINTY, MEASURED_DOLLARS_PER_ESCAPE, MEASURED_DOLLARS_PER_HUNTED_FILE, MEASURED_FUNCTIONS_PER_AUDITABLE_KILOBYTE, MEASURED_LONGEST_HOLD_REASON, MEASURED_SECONDS_PER_SWEPT_FUNCTION, MEASURED_TYPICAL_ESCAPES_PER_HUNTED_FILE, MEASURED_WORST_ESCAPES_PER_HUNTED_FILE, MEASUREMENT_PLAN_SCHEMA, MECHANICAL_ERROR_PATH_REASON, MEMORY_CEILING_MAX_MB, MEMORY_FLOOR_MB, MEMORY_HOST_SHARE, MEMORY_PER_CORE_MB, MERGE_REF_REMEDY, MESSAGE_MAPPINGS, MINT_TIMEOUT_MS, MIN_CELL_REPEATS, MODEL_AUTH_VAR, MODEL_DISPATCH_ATTEMPT_ID_RE, MODEL_DISPATCH_DOORS, MODEL_DISPATCH_REFUSALS, MODEL_ENDPOINT_VAR, MODEL_ERROR_CATEGORIES, MODEL_ERROR_RETRYABLE, MODEL_KEY_PREFIX, MODEL_KEY_VAR, MODEL_OIDC_AUDIENCE_VAR, MODEL_OIDC_REQUEST_TOKEN_VAR, MODEL_OIDC_REQUEST_URL_VAR, MODEL_PATH_DISPOSITION, MODEL_PATH_NAMED_ELSEWHERE, MODEL_PROBE_REFUSAL_CODES, MODEL_RECEIPT_KEY, MODEL_REQUEST_LOCAL_REFUSALS, MODEL_RESPONSE_MODES, MODEL_SERVICE_BASE_PATH, MODEL_SERVICE_CONTRACT_VERSION, MODEL_SERVICE_EFFORTS, MODEL_SERVICE_LIMITS, MODEL_SERVICE_MODEL_NAME, MODEL_SERVICE_OUTPUT_FORMATS, MODEL_SERVICE_ROUTES, MODEL_SERVICE_SURFACES, MODEL_SERVICE_VERSIONS_UNDERSTOOD, MODEL_SETUP_HINT, MODEL_STREAM_OUTCOMES, MODEL_TERMINAL_EVENT_TYPE, MODEL_TOKEN_INPUT_NAME, MODEL_TOKEN_SECRET_NAME, MODEL_VARIABLE_ALIASES, MODEL_VARIABLE_GUIDE, MUTANT_STATUSES, MUTATION_ATTEMPTED_NOT_RUN_REASONS, MUTATION_EXECUTION_STATES, MUTATION_LINE_MAPPING, MUTATION_NOT_RUN_REASONS, MUTATION_REFUSAL_CODES, MUTATION_SCOPE_KINDS, MUTATION_SCOPE_SURFACE, MUTATION_SKIP_REASONS, MUTATION_STAGE_WALL_MINUTES, MUTATION_STAGE_WALL_MS, MUTATOR_TOKEN_RE, type ManifestModel, type ManifestValidation, type MapCostPolicy, type MapCostProjection, type MapCostReading, type MapCostRoadFacts, type MapCostStop, type MatrixLeg, type MatrixLegs, type MatrixValue, type MeasurementPlan, type MechanicalCounts, type MessageFacts, type MessageOutcome, type MessageSilence, type ModelAccess, type ModelBufferedReceipt, type ModelChoiceConfig, type ModelCostState, type ModelDispatchClaim, type ModelDispatchClaimAnswer, type ModelDispatchClaims, type ModelDispatchDoor, type ModelDispatchRefusal, type ModelDispatchRunKey, type ModelDispatchSettlement, type ModelErrorCategory, type ModelFailureDisposition, type ModelPathFailure, type ModelProbe, type ModelProbeCombination, type ModelRate, type ModelReceipt, type ModelReplyReading, type ModelRequestFit, type ModelRequestFitFailure, type ModelRequestLocalRefusal, type ModelResponseMode, type ModelServiceAnswer, type ModelServiceEffort, type ModelServiceErrorBody, type ModelServiceErrorEnvelope, type ModelServiceOutage, type ModelServiceOutputFormat, type ModelServiceRoute, type ModelServiceSurface, type ModelStep, type ModelStreamOutcome, ModelStreamReading, type ModelSurface, type ModelTerminalEvent, type ModelUsage, type ModelUsageState, type ModelVariableRead, type ModelsConfig, type ModuleLayout, type MutantRosterEntry, type MutantStatus, type MutationConfig, type MutationExecution, type MutationExecutionState, type MutationLine, type MutationLineCombination, type MutationMode, type MutationNotRunReason, type MutationScopeKind, type MutationSkipReason, NATIVE_FLOOR_PACKAGES, NATIVE_FLOOR_PACKAGE_NAMES, NATIVE_FONT_PACKAGES, NATIVE_FONT_REASON, NATIVE_SYMPTOM_KINDS, NATIVE_VOCABULARIES, NEARBY_MAX_NAMED, NEARBY_NOT_IN_RATE, NEARBY_TITLE, NEW_RAW_MESSAGE_GUIDANCE, NODE_FLAGS_TAKING_A_VALUE, NODE_REPORTER_STDOUT, NOFILE_CEILING_MAX, NOFILE_FLOOR, NOFILE_PER_CORE, NON_EVIDENCE_OUTPUTS, NON_SOURCE_DIRECTORIES, NOTHING_IS_WAITING, NOTHING_IS_WAITING_LABEL, NOTHING_IS_WAITING_LINE, NO_JOB_TO_RIDE_NOTE, NO_PROPOSAL_LINES, NO_VERDICT_LABEL, type NarrationSink, type NativeFloorPackage, type NativeResolution, type NativeResolutionResult, type NativeSymptom, type NativeSymptomKind, type NativeUnresolved, type NativeUnresolvedCause, type NativeVocabulary, type NearbyCodeUnmeasuredCause, type NearbyCodeUnmeasuredFacts, type NearbyFinding, type NearbyReport, type NearbyRole, type NearbyVerdict, type NestedProjection, type NextActionParts, type NodeRuntime, type NodeRuntimeCombination, type NodeRuntimeObservation, type NonEvidenceKind, type NonEvidenceOutput, type NonEvidenceOutputId, type NormalizedCoverage, type NormalizedMutant, ORIGIN_TRACKED_KEYS, type Observation, type OracleObservation, type OriginFacts, type OutcomeFor, PACKAGE_EXCLUSION_TEXT_MAX, PACKAGE_MANAGERS, PACKAGE_ROW_EXCLUDED_FIELDS, PACKAGE_ROW_FIELDS, PACKAGE_UNMEASURABLE, PATTERN_REFUSALS, PIDS_CEILING_MAX, PIDS_FLOOR, PIDS_PER_CORE, PINNED_ACTION, PLANTED_COUNTS_MAPPING, PLAN_NAMES, PLAN_REFUSAL_CODES, PLAYGROUND_ABLOH_FAILURE_LINE, PLAYGROUND_ADVISORY_TRIAGE, PLAYGROUND_DISMISS_LABEL, PLAYGROUND_ENGINE_MUTANT, PLAYGROUND_ENGINE_MUTANT_FIELDS, PLAYGROUND_ENGINE_NAME, PLAYGROUND_ENGINE_REVISION, PLAYGROUND_ENGINE_VERSION, PLAYGROUND_EXCERPTS_PER_MUTANT, PLAYGROUND_EXCERPT_MAX_BYTES, PLAYGROUND_EXCERPT_RESULT_SHARE, PLAYGROUND_EXECUTED_TEST, PLAYGROUND_EXPLANATION, PLAYGROUND_JOB_API_VERSION_V2, PLAYGROUND_MAX_MUTANTS, PLAYGROUND_MODEL_RESPONSE, PLAYGROUND_MUTANT_EVIDENCE, PLAYGROUND_MUTANT_STATUSES, PLAYGROUND_OPERATOR_SET_VERSION, PLAYGROUND_POLICY_SHA256, PLAYGROUND_PUBLIC_MUTANT, PLAYGROUND_PUBLIC_RESULT, PLAYGROUND_PUBLIC_RESULT_MATERIAL, PLAYGROUND_PUBLIC_ROSTER, PLAYGROUND_PUBLIC_RUN_RESULT_SCHEMA, PLAYGROUND_RESULT_MAX_BYTES, PLAYGROUND_RESULT_WITHHELD, PLAYGROUND_REVIEWS, PLAYGROUND_ROSTER_EXCERPT_MAX_BYTES, PLAYGROUND_SANDBOX_VERSIONS, PLAYGROUND_SENTENCES, PLAYGROUND_SEVERITIES, PLAYGROUND_SOURCE_MAX_BYTES, PLAYGROUND_STAGE_EVENT, PLAYGROUND_STAGE_EVENTS, PLAYGROUND_SUMMARY, PLAYGROUND_TEST_EVIDENCE_ABSENCES, PLAYGROUND_TEST_EXECUTION, PLAYGROUND_TEST_EXECUTIONS, PLAYGROUND_TEST_STATUSES, PLAYGROUND_TRIAGE_FIELD_POLICY, PLAYGROUND_TRIAGE_REASON_CODES_V2, PLAYGROUND_TRIAGE_VERDICTS_V2, PLAYGROUND_VITEST_RUNNER_VERSION, PNP_RUNTIME_BASENAME, PNP_RUNTIME_FILE_PATTERN, POOL2_EVIDENCE_SCHEMA, PREFLIGHT_CHECKS, PRINTABLE_ASCII, PRINTABLE_TEXT, PRINT_WIDTH, PRIVATE_DIRECTORY_MODE, PRIVATE_FILE_MODE, PROPOSALS_BLOCK_SCHEMA, PROPOSALS_CANDIDATE_FIELDS, PROPOSALS_DISCOVERY_STATES, PROPOSALS_FEATURE_STATES, PROPOSALS_FILE_PATH_MAX, PROPOSALS_GAP_ORIGINS, PROPOSALS_MUTANT_ID_MAX, PROPOSALS_PACKAGE_SIDECAR_INDEX, PROPOSALS_PREDICTOR_MODES, PROPOSALS_SIDECAR_SCHEMA, PROPOSALS_SUITE_STATES, PROPOSALS_SUMMARY_FIELDS, PROPOSALS_UNAVAILABLE_COPY, PROPOSALS_VERDICTS, PROVEN_BASIS, PROVIDER_RAW_FORMAT, type PackageEvidence, type PackageExclusion, type PackageManagerDeclaration, type PackageManagerName, type PackageManagerPin, type PackageManifest, type PackageManifestProblem, type PackageManifestReading, type PackageRowField, type PairIsolation, type PatternRefusal, type PerTestAttribution, type PerTestBlock, type PerTestConfig, type PerTestFinding, type PerTestFindingKind, type PerTestReportFailure, type PlanBinding, type PlanCommand, type PlanCommandSource, type PlanEnvironment, type PlanEnvironmentBackend, type PlanEvidence, type PlanExecution, type PlanLimitFacts, type PlanName, type PlanQuarantine, type PlanRefusalCode, type PlanRefusalCombination, type PlanRefusalFacts, type PlanRefusalObservation, type PlanSetup, type PlanTarget, type PlantedCounts, type PlantedCountsCombination, type PlaygroundAdvisoryTriage, type PlaygroundEngineMutant, type PlaygroundExecutedTest, type PlaygroundExplanation, type PlaygroundModelResponse, type PlaygroundMutantStatusName, type PlaygroundPublicMutant, type PlaygroundPublicResult, type PlaygroundPublicResultMaterial, type PlaygroundPublicSummary, type PlaygroundStageEvent, type PlaygroundStageFact, type PlaygroundTestExecution, type PluginInvocation, type PreflightCheck, type PreflightCombination, type PreflightEventWire, type PreflightReportFacts, type PreflightSilence, type PreparationRole, type PreparedTestCommand, type PreparedTestCommandSource, type ProducerChoice, type ProposalsCandidateWire, type ProposalsConfig, type ProposalsDiscoveryState, type ProposalsFeatureState, type ProposalsGapOrigin, type ProposalsPredictorMode, type ProposalsSuiteState, type ProposalsSummaryWire, type ProposalsUnavailableCode, type ProposalsVerdict, type ProposedMutant, type ProvenanceStrength, type PullRequestCheckout, QUARANTINE_CAP_MINIMUM, QUARANTINE_CAP_PROPORTION, QUARANTINE_NAME_RENDER_LIMIT, QUARANTINE_REASONS, QUARANTINE_REASON_COPY, type QualificationResult, type QualificationVerdict, type QualifiedOmission, type QuarantineAdmission, type QuarantineCounts, type QuarantineDisclosure, type QuarantineExclusionMode, type QuarantineReason, RATE_CARD_ENV, RATE_CARD_SCHEMA, RAW_COVERAGE_FORMATS, REALISTIC_CATEGORIES, RECEIPT_DETAIL_MAX, RECEIPT_DIRECTORY, RECEIPT_FILE_MAX_BYTES, RECEIPT_STAGES, RECEIPT_UNREADABLE_PHRASES, RED_BASELINE_OUTPUT_TAIL_LINES, REFUSAL_CODES, REFUSAL_CODE_MERGE_EXPIRY, REFUSAL_CODE_RE, REFUSAL_DESTINATIONS, REFUSAL_MESSAGE_MAX, REFUSAL_MESSAGE_PATHS, REFUSAL_OWNERS, REFUSAL_PRIVACY, REFUSAL_REGISTRY, REFUSAL_STAGES, REMINT_MARGIN_MS, REPORT_DIALECTS, REPORT_MAPPINGS, REPORT_SECTION_MAPPING, REPORT_UNAVAILABLE_CAUSES, RESERVED_CUSTOMER_PREFIXES, RESERVED_CUSTOMER_VARIABLES, RESOLVED_EVIDENCE_FIELDS, RESOLVED_EVIDENCE_SCHEMA, RESOLVED_EVIDENCE_UNKNOWN_FIELDS, RETIRED_EVIDENCE_OUTPUTS, RETIRED_KEYS, RETIRED_PROPOSALS_BLOCK_SCHEMAS, RETIRED_REFUSAL_CODES, ROUTE_PURITY_RUNGS, RULED_AUDITABLE_FILES_PER_HUNTABLE_FILE, RULED_FIRST_PASS_RATES, RULED_HUNT_ENVELOPE_DOLLARS, RULED_MAP_ROAD_SLICE_EXECUTIONS, RULED_PROPOSAL_CHANGED_WITHIN_DAYS, RULED_RUN_DOLLAR_CAP, RULED_RUN_HUNT_WALL_MS, RULED_RUN_WALL_MS, RULED_SIZE_GATE, RULED_SWEEP_WALL_FRACTION, RUNNER_BINARY_SUFFIX_SOURCE, RUNNER_CAPABILITIES, RUNNER_DEFAULT_SOURCE, RUNNER_TYPED_CONSEQUENCE, RUN_ATTEMPT_DIGITS, RUN_ATTEMPT_MAX, RUN_CEILING_REMEDY, RUN_COST_STOP_MAPPING, RUN_FINDING_ABSENCE, RUN_FINDING_FIELDS, RUN_FINDING_NESTED, RUN_FINDING_TRIAGE_ABSENCE, RUN_FINDING_TRIAGE_FIELDS, RUN_INTERRUPTION_FACT_KEY_RE, RUN_INTERRUPTION_LIMITS, RUN_LOCAL_EVIDENCE_SCHEMA, RUN_LOG_STAGE, RUN_MODEL_COST_LIMITS, RUN_PROGRESS, RUN_PROGRESS_COUNTERS, RUN_PROGRESS_COUNTER_MAX, RUN_PROGRESS_COUNTS, RUN_PROGRESS_MAX_PROPOSALS, RUN_PROGRESS_NAME_MAX, RUN_PROGRESS_PATH_MAX, RUN_PROGRESS_PROPOSAL, RUN_PROGRESS_REASON_MAX, RUN_PROGRESS_STAGES, RUN_PROGRESS_STAGE_ROW, RUN_PROGRESS_STAGE_STATES, RUN_RECORD_ASSEMBLY_SITES, RUN_RECORD_CONTRACT, RUN_RECORD_WIRE_GAPS, RUN_REFUSAL_CODE_RE, RUN_REFUSAL_LIMITS, RUN_SCOPE_MAPPING, RUN_STAGES, RUN_STAGE_UNITS, type RankedCiPropertyRule, type RateCard, type RateCardFailure, type RateCardResolution, type RawCoverageFormat, type RawCoverageFormatName, type RealisticCategory, type RebuildFacts, type ReceiptCombination, type ReceiptFileInvalidity, type ReceiptFileParse, type ReceiptInvalidity, type ReceiptProvenance, type ReceiptStage, type ReceiptStageName, type ReceiptState, type ReconciliationBlock, type RecordingReplayCombination, type RecordingReplayFacts, type RecordingReplaySilence, type RecordingsFileCombination, type RecordingsFileFacts, type RecordingsFileSilence, type RedBaselineFacts, type RedBaselineShape, type Refusal, type RefusalCard, type RefusalCode, type RefusalContent, type RefusalDeclaration, type RefusalDestination, type RefusalEnvelope, type RefusalEvidence, type RefusalInput, type RefusalOf, type RefusalOwner, type RefusalPrivacy, type RefusalRemedy, type RefusalStage, type RegistryAuthFailure, type RemedyLocation, type RenderedRefusal, type RepoReader, type ReportDialect, type ReportFacts, type ReportOutcome, type ReportSection, type ReportSectionCombination, type ReportSectionName, type ReportSilence, type ReportUnavailable, type ReportUnavailableCause, type ReportedTestFiles, type RepositoryFileReader, type RepositoryModelCredential, type RepositorySizeScan, type RepositorySizeVerdict, type ReservedComposition, type ResolvedCommandPlan, type ResolvedEvidenceObject, type ResolvedProjectPackage, type RetiredEvidenceOutput, type RetiredEvidenceOutputId, type RetiredRefusalCode, type RoutePurityRung, type RunAdmission, type RunAttempt, type RunCeilingFacts, type RunCostStop, type RunCostStopCombination, type RunEventCombination, type RunEventFacts, type RunFindingTriageWire, type RunFindingWire, type RunInterruption, type RunLocalEvidence, type RunLogStage, type RunModelCost, type RunModelCostLane, type RunProgress, type RunProgressCounter, type RunProgressStage, type RunProgressStageState, type RunRecordAssemblySite, type RunRecordFieldContract, type RunRecordFieldName, type RunRecordWire, type RunScope, type RunScopeCombination, type RunStage, type RunStageProgress, type RunStageUnit, type RunnerAlias, type RunnerCapability, type RunnerEcosystem, type RunnerFailureSummary, type RunnerName, type RunnerSpecSelection, SCENARIO_AUTHORITIES, SCENARIO_LANES, SCENARIO_OUTCOMES, SCENARIO_SEARCH_STATES, SCENARIO_SOURCE_INDEPENDENCE, SCENARIO_SOURCE_KINDS, SCORE_EVIDENCE_MAPPING, SCRIPT_NAMED_RUNNERS, SEALED_BROWSER_UID, SEALED_BUN_LINK, SEALED_BUN_PREFIX, SEALED_BUN_VERSION, SEALED_CHROME_BIN, SEALED_CHROMIUM_PACKAGES, SEALED_COREPACK_HOME, SEALED_DENO_BINARY_RELATIVE, SEALED_DENO_DIR, SEALED_DENO_LINK, SEALED_DENO_PREFIX, SEALED_DENO_VERSION, SEALED_EXECUTION_AMBIENT_FACTOR, SEALED_EXECUTION_CEILING_UNMEASURED_MS, SEALED_PLAYWRIGHT_BROWSERS_PATH, SEALED_PNPM_VERSION, SEALED_PREPARATION_ALLOWANCE_MS, SEALED_RUNTIME_ROOT, SEALED_TEST_COMMAND_SOURCES, SEALED_TEST_PROCESS_CONFINEMENT, SEALED_TOOLCHAIN_APT_PACKAGES, SEALED_TOOLCHAIN_BINARIES, SEALED_YARN_VERSION, SECRET_MASKING_FLOOR, SERVICE_REFUSED_FLAGS, SETUP_BRANCH, SETUP_BRANCH_COMMIT_MESSAGE, SETUP_CANDIDATE_CAP, SETUP_CHECK_NAME, SETUP_COMMIT_EMAIL, SETUP_DOCS_URL, SETUP_FAIL_FAST_ANSWERS, SETUP_FAIL_FAST_CONSEQUENCES, SETUP_NODE_ACTION, SETUP_PR_TITLE_TEXT, SETUP_REPORT_MARKER, SETUP_REPORT_OVERSIZE_CODE, SETUP_REPORT_OVERSIZE_NEXT_ACTION, SETUP_ROADS, SETUP_ROAD_CONSEQUENCES, SETUP_ROAD_LABELS, SETUP_ROAD_QUESTION, SETUP_SCRIPT_MODE, SETUP_SCRIPT_PATH, SETUP_STAGE_LABELS, SETUP_STAGE_ORDER, SETUP_STEP_ACTION, SETUP_STEP_IF, SETUP_STEP_JOB_STATUS, SETUP_STEP_NAME, SETUP_STEP_STATES, SETUP_TRIAL_ARTIFACT_NAME, SETUP_TRIAL_MAX_BYTES, SETUP_TRIAL_SCHEMA, SETUP_VOCABULARY, SET_AT_THE_PROMPT, SIGNED_SCORE_RULE, SIZE_BANDS, SOURCE_CHECK_STEPS, SOURCE_RE, SPEND_UNMETERED_REASONS, STANDING_LIMITATION_IDS, SUBDIR_CONFIG_KEY, SUBDIR_OPTION, SYSTEM_PACKAGE_ARCHIVE_HINT, SYSTEM_PACKAGE_NAME, SYSTEM_PACKAGE_VERSION, type ScenarioAuthority, type ScenarioExpectedObservation, type ScenarioInputDomain, type ScenarioIntent, type ScenarioIntentDraft, type ScenarioLane, type ScenarioOperationStep, type ScenarioOutcome, type ScenarioSearchBlock, type ScenarioSearchCounts, type ScenarioSearchMeasuredBlock, type ScenarioSearchProvenance, type ScenarioSearchRestrictions, type ScenarioSearchState, type ScenarioSourceIndependence, type ScenarioSourceKind, type ScenarioSourceRef, type ScenarioSummary, type ScopeFilters, type ScopeOptions, type ScopeParse, type ScopeProposal, type ScopeResolution, type ScopeResolutionInput, type ScopeResult, type ScoreComponent, type ScoreEvidence, type ScoreEvidenceCombination, type ScoreInput, type Scores, type ScriptNamedRunner, type ScriptRun, type ScriptRunEnvironment, type ScriptRunKind, type ScriptRunLauncher, type ScriptRunsInput, type ScriptSeparator, type SealedCeiling, type SealedExtra, type SealedRunnerCapabilities, type SealedRuntime, type SealedSetupFlags, type SealedTestCommand, type SealedTestCommandSource, type ServicePortAssignment, type ServicePortRequest, type SetupAnswer, type SetupAnswerCombination, type SetupAnswerObservation, type SetupCandidateExclusion, type SetupCandidateFilter, type SetupCandidateGate, type SetupCandidateJob, type SetupCandidateTrigger, type SetupFailFast, type SetupHealing, type SetupHealingNote, type SetupJobAttempt, type SetupJobDeclarationUnusableFacts, type SetupNoUsableJobFacts, type SetupPin, type SetupPinReading, type SetupPublishHost, type SetupRegistryUnreachableFacts, type SetupReportInput, type SetupReportOversizeFacts, type SetupRideTier, type SetupRoad, type SetupScriptDraftProblem, SetupScriptError, type SetupScriptStep, type SetupStepState, type SetupStepStatus, type SetupTrialArtifact, type SetupTrialInvalidity, type SetupTrialParse, type SetupTrialRun, type SetupTrialRunOrder, type SetupWorkflowCaller, type ShardDeclaration, type SizeBand, type SizeBandReason, type SizeGateMessage, type SizeGateThresholds, type SourceCheckStep, type SpendUnmeteredReason, type StageBInputs, type StageBReadiness, type StandingLimitation, type StandingLimitationFacts, type StandingLimitationId, type StandsForFacts, type StepConditionVerdict, type StreamTerminalFact, StreamUsageObserver, type StructuralCoverage, type StructuralSite, type Subject, type SuiteObservation, type SuiteOutcome, type SystemPackage, type SystemPackageOperand, TARGET_ARTIFACT_KEYS, TARGET_INVENTORY_SCHEMA, TARGET_INVENTORY_SOURCES, TARGET_RECEIPT_FILE_SCHEMA, TARGET_RECEIPT_SCHEMA, TARGET_SELECTION_KINDS, TARGET_STATE_LABELS, TARGET_STATE_MARKS, TASK_REPLY_PROBLEMS, TEST_COMMAND_SOURCE, TEST_FILE_PATH, TEST_MODULE_MOCKS_FLAG, TEST_PATH_RE, TRIAGE_CALL_FAILURES, TRIAGE_REASON_CODES, TRIAGE_REQUEST_CATEGORIES, TRIAGE_STATES, TRIAGE_VERDICTS, type TargetAdmission, type TargetAdmissionState, type TargetInventoryRow, type TargetInventorySource, type TargetReceipt, type TargetReceiptFile, type TargetSelectionKind, type TaskReplyProblem, type TaskReplyReading, type TestFileCounts, type TestFileTextReader, type TestLocation, type TestRunFacts, type TestRunStage, type TestStrengthBlock, type TextUnit, type TriageCallFailure, type TriageReasonCode, type TriageRecord, type TriageRequestCategory, type TriageState, type TriageVerdict, UNDRIVABLE_RUNNERS, UNOBSERVED_REASONS, UNRECOGNISED_ENGINE_FAILURE, UNREPORTED_ENGINE_FAILURE, UNRESOLVED, USAGE_UNKNOWN, type UnguardedSites, type UnknownFieldPosture, type Unobserved, type UnobservedBaselineCause, type UnobservedBaselineFacts, type UnobservedOutcome, type UnobservedReason, type Unresolved, type UnsatisfiableCheck, type UntestedChangeFacts, type UploadAnswerCombination, type UploadAnswerFacts, type UploadArtifactFacts, type UploadTransportFacts, type UploadedRefusal, type UploadedRefusalEvidence, type UploadedRefusalRemedy, VALUE_ORIGINS, type ValueOrigin, type ValueOriginMap, type VcsSuiteFinding, type VcsSuiteUse, type VerdictExecutionEnvironment, WIRE_HOLD_REASON_MAX, WIRE_REASON_MAX, WORKFLOW_FILE_PATH, WORKFLOW_JOB_ID, WORKFLOW_RUNTIME_PREFIX, WORKSPACE_ORIGINS, type WireAbsence, type WireArray, type WireBoolean, type WireEnum, type WireField, type WireFields, type WireInteger, type WireLiteral, type WireNode, type WireNullable, type WireNumber, type WireObject, type WirePath, type WireResult, type WireString, type WireUnion, type WithheldEvidence, type WorkflowNodePin, type WorkflowRuntime, type WorkspaceOrigin, type WorstOfOutcome, type WorstOfRow, type XmlElement, YARN_DEPENDENCY_ENTRIES, type YamlQuote, ablohAuthored, ablohFailureClosingLine, acceptBugBehaviour, acceptBugDescription, acceptBugEmoji, acceptBugSentence, acceptBugSeverity, acceptBugType, acceptCarriedBugOutcome, accountModelMinter, actionFilesReferenced, actionPinOf, actionRuntimeFiles, actionSubPathOf, addSealedReporter, additionsBetween, admissionCoverage, admissionDecisionProblem, admissionDigest, admissionDrift, admissionSubject, admitFirstPassRun, admitTarget, admitsMainlineBranch, alwaysEmittedEvidenceKeys, ambientEnvironmentWithoutEngineCredentials, angularKarmaShape, angularProjectFromScript, angularRunnerName, angularScriptIsFanout, angularSealedTestCommand, apiKeyScopeProblem, appReceiptCommitMessage, appSetupFileCommitMessage, appSetupHealCommitMessage, appSetupPullRequestTitle, appendRunnerArguments, applyLayer1Gate, asciiDiagnostic, assertNever, assignServicePorts, attributionComplete, attributionMissing, avaInvocation, baselineGateObservation, baselineJobClockBoundMs, baselineJobClockRemedy, baselineJobClockRemedyLocation, baselineJobClockStopSentence, baselineJobClockTimeoutKey, baselineObservedNoTests, baselineOutcome, baselineRunBound, baselineRunBoundDisclosure, baselineRunTimeoutProse, binaryName, boundHoldReason, boundMinutes, boundProgressCount, boundProgressText, boundReceiptDetail, browserLaneSealSummary, bugIdentity, buildCiPropertySearchBlock, buildCiPropertyTargetUniverse, buildCustomerProcessEnvironment, buildOutputDirectory, buildScenarioSearchBlock, buildScopeProposal, buildSecretsFor, bunInvocation, callCeilingDollars, canBeOwnedByAbloh, canStartStageB, candidateBody, candidateName, candidatePath, candidateTextControl, candidateUploadProblem, canonicalJson, capability, carriedVerdict, carriedVerdictNote, catchRate, catchRateIsRaw, catchRateScopeNote, categoryOfStatus, caughtWithinMeasured, ceilingDollarsPerHuntedFile, ceilingNotice, changedStructuralCoverage, chatRequestContract, checkAdmissionRefusal, checkAdmissionRequest, checkAdmissionResponse, checkAdmissionWarning, checkModelRequestFits, checkoutNotComparableReason, chosenTestFiles, chromeSeccompDigest, chromeSeccompProfile, ciPropertyBehaviourKey, ciPropertyLedgerDigest, ciPropertyMutatorFamilies, classicHeadroom, classicMutationExecution, classicMutationTier, classifyDiffCoverage, classifyPullRequestCheckout, classifyReportUnavailable, classifyRepositorySize, cliOptionConfigConflictSentence, cliOptionConflictSentence, cliOptionPathUnusableRemedy, cliOptionPathUnusableSentence, cliOptionRequiredRemedy, cliOptionRequiredSentence, cliOptionRequiresRemedy, cliOptionRequiresSentence, cliOptionUnavailableSentence, cliOptionValueInvalidRemedy, cliOptionValueInvalidSentence, cliUnknownCommandRemedy, cliUnknownCommandSentence, cliUnknownOptionRemedy, cliUnknownOptionSentence, cliUnknownSubcommandRemedy, cliUnknownSubcommandSentence, codeownersFor, codesInFamily, combineLayerGates, commandGlobMatches, commandOutputTail, commandRuntime, commandStageName, commandStages, commandTokens, compareInstrumentation, compiledOutputEvidence, composableReservedEntries, composeExecutionRecord, composeReservedValue, composedValueJudges, computeScope, computeScores, conditionalPower, configFlakyLines, configHeaderLines, configKeyChildren, configKeyDefault, configKeyEntry, configKeyEntryFields, configKeyValueRule, configSettingLines, configSetupJobLines, confinementArgv, consumedGeneratedImport, containsEngineCredential, contentsIndexRefs, conventionalHeaderProblem, countCoverageLines, countsAreWholeVerdicts, countsFrom, countsFromLines, coverageComposition, coverageDisplayState, coverageGroupState, coverageLocationFinding, coverageLocationFindingFor, coveragePathNotAddressableSentence, coverageProviderCacheUnusableSentence, coverageProviderProblem, coverageProviderUnavailableSentence, coverageProviderUnsupportedRunnerSentence, coverageReportBytes, coverageReportInvalidSentence, coverageReportTooLargeSentence, coverageScopeIncompleteSentence, coveredLinesToScope, credentialShapeRefusal, customerChildEnvironment, customerEnvironmentFromConfig, customerEnvironmentNames, cutAtCodePoints, cutTailAtCodePoints, debugPreparationOverflowStack, debugPreparationStack, decideObservation, decideQuarantineAdmission, decideSetupHealing, declarableTopLevelKeys, declaredConfigKeys, declaredDependencies, declaredOrigin, declaredRunnerProblem, declaredShard, declaredValueOrigins, declaredValues, declaresJestWatchMode, declaresWatchMode, decodeTaskObject, decodeTaskReply, decodeXmlEntities, defaultDockerCommandRunner, denominatorOf, dependencyPath, dependencyRoot, deprecatedModelVariableWarning, deprecatedModelVariablesInUse, deriveScenarioSearchCounts, deriveWorstOfGate, describeCommandGlobExpansions, describeDays, describeDollars, describeFiles, describeFinding, describeJobClockStage, describeJobDuration, describeMutationEvidence, describeReasonCode, describeRunStage, describeRuns, destinationLabel, destinationRepairs, detectModuleLayout, detectNativeSymptoms, detectReactNativeProject, detectVcsSuiteUse, detectedHostCores, detectedHostMemoryMb, diffCoverageExecution, directRunnerCommand, displayTruncationNote, distinctChecks, dotEnvDefinesModelVariables, dotEnvModelHint, egressRefusalFor, emptyCounts, emptyScope, endProcessGroup, endsSentence, engineFailureEgress, engineFailureLog, engineFailureReportId, engineFailureShape, engineFailureShapeSentence, engineFailureSignature, engineFailureTimeoutMinutes, engineOrDependencyStoragePath, ensureBaseReachable, entryAnswers, envelopeEvidenceKeys, environmentDifference, environmentValueProblem, errorCountOf, evaluateAssay, evaluateDiffCoverageGate, evaluateFloor, evaluateGate, evaluateStepCondition, evaluateStepConditions, evidenceBasename, evidenceDeleteAfter, evidenceIndexMissingLines, evidenceIndexMissingSentence, evidenceIndexRefusalCode, evidenceOutput, evidenceOutputByBasename, evidenceRetentionDaysOr, evidenceRetentionExpired, evidenceUploadPlan, evidenceWithheldLine, excludedAndDisclosed, executionRecorder, expandCommandGlobs, expandDeclaredTestCommand, expandScopeLines, expectedDollarsPerHuntedFile, extractImportSpecifiers, failFastCancelsLegs, failFastEditable, failFastNotice, failFastReceipt, failedSetupStage, failingTestSentence, fileImportTargets, fileSelectionArgs, fileSelectionTemplate, fileUrlCarriesPath, filterSetupCandidates, findRunnerFailureSummary, findXmlElements, findingEffort, findingKind, findingReasonCode, findingSeverity, findingStatus, findingTriageVerdict, foldToPrintableAscii, foldToPrintableText, foldedNeighborsClause, formattedJson, fullyConstructible, gapKeys, generatedFilePathProblem, generatedFilesValue, generatedPaths, generationState, gitHeaderPath, githubEquals, githubTruthy, globToRegExp, gradedFindingSeverity, groupFindingsByLine, hasAbandonedImportClause, hasRegisteredSecrets, healthCommandProblem, healthPortProblem, holdReasonText, hostedRunHeaderValue, hostedRunHeaders, identityConditionLine, identityConditionOfEnvironment, identityConditionSentence, identityFilesValue, imageVocabulary, importSelectorTarget, importTargetMatches, indexQueryFor, insertSealedSetupFlags, installCommandNeedsCorepackEnable, installedInputs, instrumentationComparisonLines, invokesDefaultTestScript, isAblohFailureClosing, isAblohSetupAuthor, isAngularRunner, isAnnotatableSurvivor, isAuditableSourcePath, isBoundedCodeFreeSentence, isCanonicalBase64, isCiPropertyCandidateCap, isClusterStrategy, isCodeFreeProse, isConfirmedEquivalent, isDiffCoverageCannotAttestReason, isEngineFailureReportId, isEngineFailureShapeName, isEnvironmentName, isEvidenceRetentionDays, isExactPackageManagerVersion, isExpandableGlobArgument, isModelServiceOutageAnswer, isModelTerminalEvent, isNonExecutableLine, isNothingWaiting, isObserved, isPlaygroundSentence, isReservedCustomerVariable, isScenarioAuthority, isScenarioLane, isScenarioOutcome, isScenarioSearchState, isSetupBranchName, isSetupReportComment, isTestPath, isValueOrigin, isWellFormedText, itemsPerModelRequest, jobClockRaiseInstruction, jobClockStageLogPrefix, jobClockStageRemedy, jobClockStageStopSentence, jobClockStageTimeoutKey, jobOnMatrixLeg, jobTimeBudgetSentence, jsRunners, judgeCandidateTextControl, judgeConfigKeyValue, keylessLocalRunBlock, kibibytes, knownRunner, layer0EnabledRunners, layer2IntentProposalFieldsSentence, liveProgressUpdate, loadConfig, loadConfigWithNotes, localBinaryPrefix, localContractCommitMessage, localDetailClause, localEvidenceText, localLadderLines, locationOfPattern, lockPathFor, looksLikeRunnerFailureSummary, makeFilePrivate, manifestBasename, manifestScripts, mapCostGate, mapCostReason, mapCostRoadFacts, mapCostSentence, mapCostsMoreThanTheVerdicts, markNonExecutable, matchesCredentialShape, matrixLegAsOffered, matrixLegProblem, matrixLegRunner, matrixValueAsOffered, matrixValueCondition, matrixValueText, matrixValueYaml, measurableCount, measurableTestRuns, measurementPlanDigest, mebibytes, mechanicalCounts, mechanicalErrorPathDisposition, memoryRepoReader, mergeBaseNotEstablished, message, messageFromFacts, microsToUsd, missingActionFiles, missingModelVariableReason, missingScopedFiles, modelBufferedReceipt, modelDispatchClaimProblem, modelOidcMinter, modelRequestContract, modelRequestKeys, modelServiceAnswers, modelServiceBaseUrl, modelServiceErrorContract, modelServiceOutageEvidence, modelStepBoundaryMessage, modelTerminalEvent, modelTerminalEventContract, mutantIdentity, mutationRefusalSentence, mutationRefusalWall, mutationWasAttempted, nameDrivenRunners, narrationTo, nativeFloorCommand, nearbyCarryClause, nearbyCodeSentence, nearbyConsequenceClause, nearbyFindingName, nearbyFindingSentence, nearbyLine, nearbyMeasurementClause, nearbyRelationClause, nearbyRemainderSentence, nearbyReportFrom, nearbyRow, newlyFailingTests, nextActionLine, nextActionParts, nextActionSentence, nodeMajorFromImageRef, nodeOptionInsertionPoint, nodeReporterCounts, nodeTestInvocation, nodeVersionFromImageRef, nonEvidenceBasename, nonEvidenceOutput, normalizeDeclaredPath, normalizeImportTarget, normalizeOwner, normalizeRepoPath, normalizeRunFinding, notUploadedRunRecordFields, noteModelServiceAnswer, nothingToMeasurePathFilter, observedNegative, observedPositive, openExecutionCopies, optional, originOf, outputShowsDeniedFork, ownedByOrigin, packageScriptSeparator, parseAptSources, parseAsterCoverageEvidence, parseClosedReason, parseCodeowners, parseContentsEntry, parseConventionalHeader, parseDeepAuditArtifact, parseDpkgArchitecture, parseEvidenceManifest, parseHostedRunHeader, parseInitTelemetryEvent, parseJsonc, parseLiteralArguments, parsePreparedTestCommand, parseRunLocalEvidence, parseRunModelCost, parseScope, parseSetupScript, parseSetupTrialArtifact, parseTargetInventory, parseTargetReceiptFile, parseUnifiedDiff, parseUploadedInterruption, parseUploadedRefusal, parseValueOriginMap, parseXml, partialAdmissionSentence, pathWithin, patternMatches, patternRefusal, percentOfMeasured, pidCeilingExhaustion, pidCeilingNotice, plainSafe, planCommand, planCompletionBatches, planLimitRemedy, planLimitSentence, planRefusalFactsOf, planRefusalRemedy, planRefusalSentence, playgroundExcerptBytes, playgroundOutcome, playgroundRosterExcerptsFit, pnpRuntimeFile, pool2Population, preflightCheck, preflightEvent, preparedCommandProblem, privateDirectory, producerChoice, project, projectFirstPass, projectMapCost, projectRunFinding, projectRunFindingTriage, projectedRunRecordFields, projectionHours, proposalCandidatePaths, proposalIsOffered, proposalMessage, proposalsCandidate, proposalsDiscoveryState, proposalsFeatureState, proposalsGapOrigin, proposalsPredictorMode, proposalsSuiteState, proposalsSummary, proposalsUnavailableSentence, proposalsVerdict, provenShapeProblem, publishableEvidenceDirectories, publishableEvidenceFiles, qualifyCorpus, qualifyHistoricalPair, quarantineCap, quarantineCapExceeded, quarantineDisclosureSentence, quarantineExcludableRunners, quarantineExcludedTotal, quarantineExclusionMode, quarantineFloorBreached, quarantineFloorRefusal, quarantineGrowthSentence, quarantineNameList, quarantineNamesSentence, quoteLiteralArgument, rankCiPropertyRules, rankIndexCandidates, rankSetupCandidates, rateCardFromEnvironment, readBufferedModelReply, readEventUsage, readFailFastDeclaration, readModelBufferedReceipt, readModelServiceError, readModelServiceOutage, readModelTerminalEvent, readModelVariable, readOutputItemsText, readPackageManagerDeclaration, readPackageManagerPin, readPackageManifest, readPackageManifestFile, readRefusalText, readRegistryAuthFailure, readReportedModel, readReportedTestFiles, readRunAttempt, readSetupPin, readSetupPinFromDocument, readTerminalFact, readTextDelta, readUsageFrame, readsCompiledOutput, readsProposalsBlockSchema, readsReportedTestFiles, rebuildBeforeMeasuringFailedSentence, receiptPathFor, recognizedProvidersFor, recordsForStage, redBaselineCallerGreenDetail, redBaselineCallerJobWasGreen, redBaselineCommandNeverStarted, redBaselineDetail, redBaselineRefusal, redBaselineReportFailureNote, redBaselineRunnerExitedNonZero, redBaselineShape, redactCredentialShapes, redactCredentialShapesDeep, redactTriageForEgress, refusalCodeIsReadable, refusalCodeOf, refusalDetail, refusalEnvelope, refusalFromFacts, refusalFromStoredCode, refusalIsWall, refusalLines, refusalMessageOf, refusalOfUploaded, refusalOwnersOf, refusalRemedyText, refusalSentence, refusalSentenceWithRemedy, refusalSummary, refuse, refusedAsAblohOwned, registerSecretValue, registeredBasenames, registeredSecretNames, registryAuthRefusal, registryEntryProblems, releaseDigestFor, remedyEditLines, remedyLocation, remedyValueShape, renderAsterCoverageEvidence, renderCoverageEvidence, renderEvidenceManifest, renderModelVariableRow, renderRefusal, renderRunLocalEvidence, renderSetupFailure, renderSetupReportComment, renderSetupScript, renderSetupStepLine, renderTargetReceiptFile, reportMessageFromFacts, reportUnavailableFacts, repositoryModelCredentialOfEnvironment, requireEvidenceCustody, requirePackageManifest, required, reservedComposeProblem, reservedComposition, resetModelServiceAnswers, resetRegisteredSecrets, resolveCommandPlan, resolveFacts, resolveImportTarget, resolveModelAccess, resolvePreparedTestCommand, resolveProjectPackage, resolveRefusalCode, resolveRefusalOwner, resolveScope, resolveSealedTestCommand, resourceCeilingExhaustion, respelledClasses, responsesRequestContract, retiredConfigKeyNote, retiredConfigKeyWarning, retiredConfigKeys, retiredEvidenceBasename, retiredEvidenceBasenames, retiredEvidenceOutputs, rewrittenFilePathProblem, rewrittenFilesValue, ridableMatrixCombinations, roadOpensPullRequest, roadRunsLocalTrial, rosterTruncation, routePurityRung, rowAdmitted, runAttempt, runCeilingSentence, runFinding, runFindingProblem, runFindingTriage, runIsDroppable, runRecordReaderProblems, runnerAliases, runnerChoiceConsequence, runnerConfigFromInvocation, runnerImageVocabulary, runnerNamePattern, runnerNamesInScript, runnerSpecSelection, runsLifecycleScripts, runsPackageScript, runsRequiredBefore, sameMatrixValue, sameModelDispatchRun, sanitizeCiPropertySummary, sanitizeFindingAbout, sanitizeFindingDescription, sanitizeScenarioSummary, scanRepositoryTree, scopeCallsModel, scopeHeadline, scopeImportSelectors, scopeIsEmpty, scopeReadsEvidence, scopeSummary, scriptRuns, scrubSecrets, scrubSecretsDeep, sealedBunInstallProgram, sealedBunPackage, sealedCommandForInvocation, sealedDenoInstallProgram, sealedExecutionCeilingMs, sealedExtrasNeeded, sealedFileDescriptorLimit, sealedMemoryLimitMb, sealedPidsLimit, sealedReportingArgs, sealedRunnerCommand, sealedRuntimeInstallProgram, sealedRuntimeNeeded, sealedRuntimeVersion, sealedSetupFlags, sealedTestProcessArgv, sealedToolchainCommand, selectAngularTestTarget, selectCiPropertyTargets, selectScriptNames, separatorForCommand, serviceNameProblem, setupCandidateExclusion, setupCandidateNarrowing, setupCandidatesExhausted, setupFailFastProblem, setupFailureRefusal, setupFailureSentence, setupHealingAsksForAnEdit, setupJobProblem, setupJobReference, setupMatrixLegProblem, setupPinProblem, setupProvisionalRideUnproven, setupPublishHost, setupReportOversizeLine, setupReportOversizeSentence, setupRideIsProvisional, setupRunnerExclusion, setupScriptDraftProblem, setupScriptPathProblem, setupStepIf, setupStepLabel, setupStepLines, setupStepMarker, setupStepStatuses, setupTrialPassed, setupTrialRunOrder, setupWordingProblem, sha256, sha256Bytes, shardDeclarationBlock, shardDisclosure, shippedGeneratedPaths, shortenForDisplay, shortenTailForDisplay, silence, sizeGateMessage, slotPrivacy, sortedSystemPackages, specPositionalsOf, stableOutcome, stageProjectionMs, stageProjectionsMs, stagedEvidenceIsLedger, standingLimitationClause, standingLimitations, statedByTheClock, statesTestingGap, storedEvidenceBasename, storedEvidenceLabel, streamOutcomeIsSuccess, stripComments, stripJsonComments, stripTestIdentityDiscriminator, structuralDigest, structuralFindingsFor, subjectDigest, summaryThenAction, supportsTestModuleMocks, survivingMutantFinding, survivingMutantObligationSignals, systemPackageInstallCommand, systemPackageOperandProblem, systemPackagePinHint, systemPackageProblem, tallyCounts, targetReceiptDigest, targetReceiptFile, testLocations, testRunObservation, testRunStages, testRuns, testsImportBuiltOutputSentence, textDeclaredLocations, textFits, textLength, toApiKeyScope, toEgressRefusal, toGapFindings, toPosixSeparators, toUploadedInterruption, toUploadedRefusal, toWorkdirRelPosix, tokenIsSearchable, tolerated, triageState, truncateForDisplay, truncatedRosterNote, uncoveredCount, uncoveredLinesToScope, understandsModelServiceVersion, undrivableRunner, unguardedSentence, unguardedSitesFrom, unmaskableSecretRefusal, unobserved, unobservedBaselineCause, unobservedBaselineCode, unobservedBaselineRefusal, unobservedBaselineRunnerNote, untestedChangeLead, upstreamErrorInBody, usageDollars, usageKnown, usageOrNull, usdToMicros, validateCiResidualGapLedger, validateConfig, validateConfigWithNotes, validateDiffCoverageLines, validateManifest, validatePlaygroundExplanation, validatePlaygroundModelResponse, validatePlaygroundPublicMaterial, validatePlaygroundPublicResult, validatePlaygroundSummary, validatePreparedTestCommand, validateTargetReceipt, verdictExecutionEnvironment, watchModeDisableFlags, watchModeRefusal, wilsonInterval, wireArray, wireBoolean, wireDigest, wireEnum, wireInteger, wireLiteral, wireNullable, wireNumber, wireObject, wirePrintable, wirePrintableText, wireRecord, wireString, wireUnion, withFileLock, withJestWatchModeDisabled, withWatchModeDisabled, withheldEvidenceLine, withinPackage, withoutJestWatchDisableFlags, withoutRetiredKeys, withoutSpecPositionals, withoutUbuntuTimeSuffix, withoutWatchDisableFlags, workflowRuntimeBin, workflowRuntimeCheckStep, workflowRuntimePrefix, workflowRuntimeSteps, workflowYaml, writePrivateFile, xmlChild, yamlLegValue, yamlScalar };
|
package/dist/index.js
CHANGED
|
@@ -2413,7 +2413,7 @@ var CONFIG_FILE_PATH = "abloh.yml";
|
|
|
2413
2413
|
var WORKFLOW_FILE_PATH = ".github/workflows/abloh-check.yml";
|
|
2414
2414
|
var WORKFLOW_JOB_ID = "abloh";
|
|
2415
2415
|
var ACTION_REPOSITORY = "Vero-Technology/abloh-action";
|
|
2416
|
-
var PINNED_ACTION = `${ACTION_REPOSITORY}@
|
|
2416
|
+
var PINNED_ACTION = `${ACTION_REPOSITORY}@8e27337e0419f6f24a2aa1b245307fe42fd7082d`;
|
|
2417
2417
|
var ACTION_PIN = PINNED_ACTION.slice(PINNED_ACTION.indexOf("@") + 1);
|
|
2418
2418
|
var ATTEST_ACTION = `${ACTION_REPOSITORY}/attest@${ACTION_PIN}`;
|
|
2419
2419
|
var ACTION_REFERENCES = [PINNED_ACTION, ATTEST_ACTION];
|
|
@@ -34471,7 +34471,7 @@ function runRecordReaderProblems() {
|
|
|
34471
34471
|
|
|
34472
34472
|
// src/wire/engine-identity.ts
|
|
34473
34473
|
var ASTER_ENGINE_NAME = "@abloh/aster";
|
|
34474
|
-
var ASTER_ENGINE_VERSION = "0.1
|
|
34474
|
+
var ASTER_ENGINE_VERSION = "1.0.1";
|
|
34475
34475
|
|
|
34476
34476
|
// src/verdict-words.ts
|
|
34477
34477
|
var GATE_VERDICT = {
|
|
@@ -34562,7 +34562,8 @@ var PLAYGROUND_VITEST_RUNNER_VERSION = "4.1.10";
|
|
|
34562
34562
|
var PLAYGROUND_ENGINE_REVISION = "d197cf194238daebd842a00c1605c151f8b348a0";
|
|
34563
34563
|
var PLAYGROUND_POLICY_SHA256 = "a47d08a7d63be6344fdd3bec5ed8b27de702e6a4364448740a58ef04a023f7a9";
|
|
34564
34564
|
var PLAYGROUND_ENGINE_NAME = "abloh-deterministic";
|
|
34565
|
-
var
|
|
34565
|
+
var PLAYGROUND_ENGINE_VERSION = "0.1.0";
|
|
34566
|
+
var PLAYGROUND_OPERATOR_SET_VERSION = `aster-${PLAYGROUND_ENGINE_VERSION}`;
|
|
34566
34567
|
var PLAYGROUND_SANDBOX_VERSIONS = ["trusted-local-host-v1", "docker-sandbox-v1"];
|
|
34567
34568
|
var PLAYGROUND_TEST_STATUSES = ["passed", "failed", "skipped", "unknown"];
|
|
34568
34569
|
var PLAYGROUND_TEST_EVIDENCE_ABSENCES = ["timeout", "missing-report", "invalid-report", "output-limit"];
|
|
@@ -34936,7 +34937,7 @@ var PLAYGROUND_PUBLIC_RESULT_MATERIAL = wireObject({
|
|
|
34936
34937
|
runner: required(wireObject({ name: required(wireLiteral("vitest")), version: required(wireLiteral(PLAYGROUND_VITEST_RUNNER_VERSION)) }, closed)),
|
|
34937
34938
|
engine: required(wireObject({
|
|
34938
34939
|
name: required(wireLiteral(PLAYGROUND_ENGINE_NAME)),
|
|
34939
|
-
version: required(wireLiteral(
|
|
34940
|
+
version: required(wireLiteral(PLAYGROUND_ENGINE_VERSION)),
|
|
34940
34941
|
revision: required(wireLiteral(PLAYGROUND_ENGINE_REVISION)),
|
|
34941
34942
|
operatorSetVersion: required(wireLiteral(PLAYGROUND_OPERATOR_SET_VERSION)),
|
|
34942
34943
|
sandboxVersion: required(wireEnum(PLAYGROUND_SANDBOX_VERSIONS)),
|
|
@@ -35398,6 +35399,7 @@ export {
|
|
|
35398
35399
|
PLAYGROUND_ENGINE_MUTANT_FIELDS,
|
|
35399
35400
|
PLAYGROUND_ENGINE_NAME,
|
|
35400
35401
|
PLAYGROUND_ENGINE_REVISION,
|
|
35402
|
+
PLAYGROUND_ENGINE_VERSION,
|
|
35401
35403
|
PLAYGROUND_EXCERPTS_PER_MUTANT,
|
|
35402
35404
|
PLAYGROUND_EXCERPT_MAX_BYTES,
|
|
35403
35405
|
PLAYGROUND_EXCERPT_RESULT_SHARE,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abloh/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Abloh core: normalized results contract, diff scoping, policy, findings, scoring. \"name\" will publish under the @abloh scope.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|