@almadar/std 16.178.0 → 16.180.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/lolo/ui/core/atoms/std-detail-layout.lolo +82 -0
- package/behaviors/lolo/ui/core/molecules/ui-breadcrumb.lolo +20 -2
- package/behaviors/lolo/ui/core/molecules/ui-fx-overlay.lolo +63 -0
- package/behaviors/lolo/ui/core/molecules/ui-page-header.lolo +1 -1
- package/behaviors/lolo/ui/core/organisms/ui-detail-panel.lolo +6 -0
- package/behaviors/lolo/ui/core/organisms/ui-form-section.lolo +2 -2
- package/behaviors/lolo/ui/core/organisms/ui-form.lolo +2 -2
- package/behaviors/lolo/ui/core/templates/ui-dashboard-layout.lolo +2 -2
- package/behaviors/lolo/ui/game/atoms/std-fx-particles.lolo +23 -4
- package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +251 -0
- package/behaviors/lolo/ui/game/atoms/ui-draw-fx-layer.lolo +109 -0
- package/behaviors/lolo/ui/game/organisms/std-arcade-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-crew-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-dungeon-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-market-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-objective-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-platformer-board-2d.lolo +391 -0
- package/behaviors/lolo/ui/game/organisms/std-survival-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-2d.lolo +34 -6
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-3d.lolo +34 -4
- package/behaviors/lolo/ui/learning/atoms/std-learn-arrangement.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-classify.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-derivation.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-doser.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-estimate.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-fx-cues.lolo +147 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-goal-seek.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-hotspot.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-predict.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-scatter-fit.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-speed-drill.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-tour-3d.lolo +9 -0
- package/behaviors/registry/ui/core/atoms/std-detail-layout.orb +265 -0
- package/behaviors/registry/ui/core/molecules/ui-breadcrumb.orb +55 -17
- package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +281 -0
- package/behaviors/registry/ui/core/molecules/ui-page-header.orb +1 -1
- package/behaviors/registry/ui/core/organisms/ui-detail-panel.orb +8 -0
- package/behaviors/registry/ui/core/organisms/ui-form-section.orb +6 -0
- package/behaviors/registry/ui/core/organisms/ui-form.orb +6 -0
- package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +2 -2
- package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +265 -4
- package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +2136 -0
- package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +523 -0
- package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +159 -70
- package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +148 -58
- package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +169 -58
- package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +160 -70
- package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +151 -60
- package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +2981 -0
- package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +150 -60
- package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +163 -316
- package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +156 -184
- package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +62 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +73 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +66 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +1546 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +58 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +176 -0
- package/canonical-operators.json +14 -2
- package/dist/behaviors/exports-reader.js +8655 -5239
- package/dist/behaviors/functions/index.d.ts +686 -16
- package/dist/behaviors/functions/index.js +8637 -5240
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +8656 -5240
- package/dist/behaviors/query.js +8655 -5239
- package/dist/behaviors-embeddings.hash.json +3 -3
- package/dist/behaviors-embeddings.json +381 -353
- package/dist/behaviors-registry.json +2415 -443
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8656 -5240
- package/dist/knob-embeddings.hash.json +3 -3
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +1 -1
- package/package.json +2 -2
|
@@ -4532,6 +4532,75 @@ declare const StdDateRangeDateRangeOrbitalManifest: {
|
|
|
4532
4532
|
/** Typed guard — runtime validates StdDateRangeDateRangeOrbitalParams keys. */
|
|
4533
4533
|
declare function isStdDateRangeDateRangeOrbitalParams(p: object): p is StdDateRangeDateRangeOrbitalParams;
|
|
4534
4534
|
|
|
4535
|
+
/**
|
|
4536
|
+
* std-detail-layout — std-detail-layout — detail-page chrome band (back button + navigation-stack breadcrumb trail) above a single contentTrait slot. Use as the contentTrait of a detail page's AppShell binding: the band renders `← Back | Contracts › Contract details` from the orbital-scoped client navigation stack (session history, seeded from declared page-path ancestry on cold loads — the trail is never empty), and the consumer's detail trait renders below it. Back pops the stack; crumb clicks navigate to their level; a list router's `(navigate path payload { crumb: ?row.title })` labels the detail crumb with the real record title. Bind once per detail page — `XDetailLayout = DetailShell.traits.DetailLayout` with `contentTrait: @trait.XDetail`.
|
|
4537
|
+
*
|
|
4538
|
+
* Autogenerated by almadar-sync std-ts from
|
|
4539
|
+
* packages/almadar-std/behaviors/registry/atoms/std-detail-layout.orb.
|
|
4540
|
+
*
|
|
4541
|
+
* This is a thin descriptor layer over the canonical .orb. The exported
|
|
4542
|
+
* functions return TraitReference / PageRefObject / OrbitalDefinition
|
|
4543
|
+
* payloads that reference the sibling .orb via `uses:` + `ref:`. The
|
|
4544
|
+
* compiler's inline phase materialises the real trait at build time.
|
|
4545
|
+
*
|
|
4546
|
+
* Do not hand-edit — regenerate via
|
|
4547
|
+
* npx almadar-sync std-ts --only=std-detail-layout
|
|
4548
|
+
*
|
|
4549
|
+
* @level atom
|
|
4550
|
+
* @packageDocumentation
|
|
4551
|
+
*/
|
|
4552
|
+
|
|
4553
|
+
/**
|
|
4554
|
+
* Closed set of event keys this trait recognises —
|
|
4555
|
+
* derived from the .orb's `stateMachine.events[]` block
|
|
4556
|
+
* (transition triggers + emit names). Use as the key type
|
|
4557
|
+
* when passing an `events:` rename map at the call site.
|
|
4558
|
+
*/
|
|
4559
|
+
type StdDetailLayoutEventKey = 'BACK' | 'CRUMB_NAV' | 'INIT';
|
|
4560
|
+
/**
|
|
4561
|
+
* Typed call-site config block for this trait — every
|
|
4562
|
+
* field maps to a `config { ... }` entry in the source
|
|
4563
|
+
* .lolo. The agent fills these to specialise the trait
|
|
4564
|
+
* without modifying its state-machine topology.
|
|
4565
|
+
*/
|
|
4566
|
+
interface StdDetailLayoutConfig {
|
|
4567
|
+
/** Default: `"Back"` */
|
|
4568
|
+
backLabel?: string;
|
|
4569
|
+
contentTrait?: TraitFieldRef;
|
|
4570
|
+
}
|
|
4571
|
+
/**
|
|
4572
|
+
* Params for the std-detail-layout descriptor helpers.
|
|
4573
|
+
*
|
|
4574
|
+
* `entityName` binds every trait/page reference's `linkedEntity`.
|
|
4575
|
+
* The optional override fields mirror TraitReference / PageRefObject
|
|
4576
|
+
* fields and are forwarded to `makeTraitRef` / `makePageRef`.
|
|
4577
|
+
*/
|
|
4578
|
+
interface StdDetailLayoutParams {
|
|
4579
|
+
entityName: string;
|
|
4580
|
+
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
4581
|
+
fields?: EntityField[];
|
|
4582
|
+
/** Rename the inlined trait at the call site. */
|
|
4583
|
+
traitName?: string;
|
|
4584
|
+
/** Per-key event rename map. Keys narrow to the trait's declared emit names. */
|
|
4585
|
+
events?: Partial<Record<StdDetailLayoutEventKey, string>>;
|
|
4586
|
+
/** Per-event effect replacement (keys are POST-rename event names). */
|
|
4587
|
+
effects?: Record<string, SExpr[]>;
|
|
4588
|
+
/** Replace the imported trait's `listens` array entirely. */
|
|
4589
|
+
listens?: TraitEventListener[];
|
|
4590
|
+
/** Set every emit's scope. */
|
|
4591
|
+
emitsScope?: 'internal' | 'external';
|
|
4592
|
+
/** Typed call-site config block — see the per-field interface. */
|
|
4593
|
+
config?: StdDetailLayoutConfig;
|
|
4594
|
+
/** URL path override for the (first) page. */
|
|
4595
|
+
pagePath?: string;
|
|
4596
|
+
}
|
|
4597
|
+
/** Trait descriptor: `DetailLayout.traits.DetailLayout`. */
|
|
4598
|
+
declare function stdDetailLayoutTrait(params: StdDetailLayoutParams): TraitReference;
|
|
4599
|
+
/** Page descriptor: `DetailLayout.pages.DetailLayoutPage`. */
|
|
4600
|
+
declare function stdDetailLayoutPage(params: StdDetailLayoutParams): PageRefObject;
|
|
4601
|
+
/** Whole-orbital descriptor. */
|
|
4602
|
+
declare function stdDetailLayout(params: StdDetailLayoutParams): OrbitalDefinition;
|
|
4603
|
+
|
|
4535
4604
|
/**
|
|
4536
4605
|
* std-dungeon-combat — Headless dungeon combat authority: owns the enemy roster, hero HP, and kill score. Bump-attacks damage enemies; monster ticks chase the hero and deal contact damage.
|
|
4537
4606
|
*
|
|
@@ -5780,7 +5849,7 @@ declare const StdFormAdvancedFormEntryOrbitalManifest: {
|
|
|
5780
5849
|
declare function isStdFormAdvancedFormEntryOrbitalParams(p: object): p is StdFormAdvancedFormEntryOrbitalParams;
|
|
5781
5850
|
|
|
5782
5851
|
/**
|
|
5783
|
-
* std-fx-particles — Headless
|
|
5852
|
+
* std-fx-particles — Headless transient-fx mechanic serving BOTH game boards and learning shells: appends spawned particles on BURST — stamping maxTtl (fade envelope) and bornAt (epoch ms, smooth render interpolation) when absent — decays each entry's ttl every tick, drops the dead ones, and clears on RESTART. Name-blind mechanism: the effect-kind vocabulary is consumer-declared (FxPreset tables at the render call sites). Composed onto a [runtime, shared] entity; renders nothing — the board/shell owns the single render authority (draw-fx-layer for space "world", fx-overlay for space "screen").
|
|
5784
5853
|
*
|
|
5785
5854
|
* Autogenerated by almadar-sync std-ts from
|
|
5786
5855
|
* packages/almadar-std/behaviors/registry/atoms/std-fx-particles.orb.
|
|
@@ -5803,7 +5872,7 @@ declare function isStdFormAdvancedFormEntryOrbitalParams(p: object): p is StdFor
|
|
|
5803
5872
|
* (transition triggers + emit names). Use as the key type
|
|
5804
5873
|
* when passing an `events:` rename map at the call site.
|
|
5805
5874
|
*/
|
|
5806
|
-
type StdFxParticlesEventKey = 'BURST' | 'INIT';
|
|
5875
|
+
type StdFxParticlesEventKey = 'BURST' | 'INIT' | 'RESTART';
|
|
5807
5876
|
/**
|
|
5808
5877
|
* Typed call-site config block for this trait — every
|
|
5809
5878
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -7238,7 +7307,7 @@ declare function stdImport(params: StdImportParams): OrbitalDefinition;
|
|
|
7238
7307
|
* (transition triggers + emit names). Use as the key type
|
|
7239
7308
|
* when passing an `events:` rename map at the call site.
|
|
7240
7309
|
*/
|
|
7241
|
-
type StdLearnArrangementEventKey = 'ARRANGEMENT_CHECKED' | 'ARRANGEMENT_RESET' | 'CHECK' | 'INIT' | 'MODE_SELECTED' | 'PLACE' | 'RETRY' | 'UNDO';
|
|
7310
|
+
type StdLearnArrangementEventKey = 'ARRANGEMENT_CHECKED' | 'ARRANGEMENT_RESET' | 'CHECK' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'PLACE' | 'RETRY' | 'UNDO';
|
|
7242
7311
|
/**
|
|
7243
7312
|
* Payload shape for the `ARRANGEMENT_CHECKED` event.
|
|
7244
7313
|
*/
|
|
@@ -7246,6 +7315,13 @@ interface StdLearnArrangementArrangementCheckedPayload {
|
|
|
7246
7315
|
correctCount?: number;
|
|
7247
7316
|
total?: number;
|
|
7248
7317
|
}
|
|
7318
|
+
/**
|
|
7319
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
7320
|
+
*/
|
|
7321
|
+
interface StdLearnArrangementLearnRoundCompletePayload {
|
|
7322
|
+
score?: number;
|
|
7323
|
+
total?: number;
|
|
7324
|
+
}
|
|
7249
7325
|
/**
|
|
7250
7326
|
* Typed call-site config block for this trait — every
|
|
7251
7327
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -7355,7 +7431,7 @@ declare function stdLearnArrangement(params: StdLearnArrangementParams): Orbital
|
|
|
7355
7431
|
* (transition triggers + emit names). Use as the key type
|
|
7356
7432
|
* when passing an `events:` rename map at the call site.
|
|
7357
7433
|
*/
|
|
7358
|
-
type StdLearnClassifyEventKey = 'ADVANCE' | 'CLASSIFY_UPDATED' | 'INIT' | 'MODE_SELECTED' | 'PICK' | 'RETRY' | 'TOGGLE_RUN';
|
|
7434
|
+
type StdLearnClassifyEventKey = 'ADVANCE' | 'CLASSIFY_UPDATED' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'PICK' | 'RETRY' | 'TOGGLE_RUN';
|
|
7359
7435
|
/**
|
|
7360
7436
|
* Payload shape for the `CLASSIFY_UPDATED` event.
|
|
7361
7437
|
*/
|
|
@@ -7367,6 +7443,13 @@ interface StdLearnClassifyClassifyUpdatedPayload {
|
|
|
7367
7443
|
verdict?: string;
|
|
7368
7444
|
roundComplete?: boolean;
|
|
7369
7445
|
}
|
|
7446
|
+
/**
|
|
7447
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
7448
|
+
*/
|
|
7449
|
+
interface StdLearnClassifyLearnRoundCompletePayload {
|
|
7450
|
+
score?: number;
|
|
7451
|
+
total?: number;
|
|
7452
|
+
}
|
|
7370
7453
|
/**
|
|
7371
7454
|
* Typed call-site config block for this trait — every
|
|
7372
7455
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -7764,7 +7847,7 @@ declare function stdLearnCoupledSim(params: StdLearnCoupledSimParams): OrbitalDe
|
|
|
7764
7847
|
* (transition triggers + emit names). Use as the key type
|
|
7765
7848
|
* when passing an `events:` rename map at the call site.
|
|
7766
7849
|
*/
|
|
7767
|
-
type StdLearnDerivationEventKey = 'APPLY_STEP' | 'DERIVATION_UPDATED' | 'INIT' | 'MODE_SELECTED' | 'RESET' | 'TOGGLE_RUN';
|
|
7850
|
+
type StdLearnDerivationEventKey = 'APPLY_STEP' | 'DERIVATION_UPDATED' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'RESET' | 'TOGGLE_RUN';
|
|
7768
7851
|
/**
|
|
7769
7852
|
* Payload shape for the `DERIVATION_UPDATED` event.
|
|
7770
7853
|
*/
|
|
@@ -7774,6 +7857,13 @@ interface StdLearnDerivationDerivationUpdatedPayload {
|
|
|
7774
7857
|
lineCount?: number;
|
|
7775
7858
|
narration?: string;
|
|
7776
7859
|
}
|
|
7860
|
+
/**
|
|
7861
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
7862
|
+
*/
|
|
7863
|
+
interface StdLearnDerivationLearnRoundCompletePayload {
|
|
7864
|
+
score?: number;
|
|
7865
|
+
total?: number;
|
|
7866
|
+
}
|
|
7777
7867
|
/**
|
|
7778
7868
|
* Typed call-site config block for this trait — every
|
|
7779
7869
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -7963,7 +8053,7 @@ declare function stdLearnDiagram(params: StdLearnDiagramParams): OrbitalDefiniti
|
|
|
7963
8053
|
* (transition triggers + emit names). Use as the key type
|
|
7964
8054
|
* when passing an `events:` rename map at the call site.
|
|
7965
8055
|
*/
|
|
7966
|
-
type StdLearnDoserEventKey = 'ADD_LARGE' | 'ADD_SMALL' | 'DOSER_UPDATED' | 'DOSE_ADDED' | 'DOSE_RESET' | 'INIT' | 'MODE_SELECTED' | 'RESET' | 'TOGGLE_DRIP';
|
|
8056
|
+
type StdLearnDoserEventKey = 'ADD_LARGE' | 'ADD_SMALL' | 'DOSER_UPDATED' | 'DOSE_ADDED' | 'DOSE_RESET' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'RESET' | 'TOGGLE_DRIP';
|
|
7967
8057
|
/**
|
|
7968
8058
|
* Payload shape for the `DOSE_ADDED` event.
|
|
7969
8059
|
*/
|
|
@@ -7982,6 +8072,13 @@ interface StdLearnDoserDoserUpdatedPayload {
|
|
|
7982
8072
|
bandLabel?: string;
|
|
7983
8073
|
done?: boolean;
|
|
7984
8074
|
}
|
|
8075
|
+
/**
|
|
8076
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
8077
|
+
*/
|
|
8078
|
+
interface StdLearnDoserLearnRoundCompletePayload {
|
|
8079
|
+
score?: number;
|
|
8080
|
+
total?: number;
|
|
8081
|
+
}
|
|
7985
8082
|
/**
|
|
7986
8083
|
* Typed call-site config block for this trait — every
|
|
7987
8084
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -8085,7 +8182,7 @@ declare function stdLearnDoser(params: StdLearnDoserParams): OrbitalDefinition;
|
|
|
8085
8182
|
* (transition triggers + emit names). Use as the key type
|
|
8086
8183
|
* when passing an `events:` rename map at the call site.
|
|
8087
8184
|
*/
|
|
8088
|
-
type StdLearnEstimateEventKey = 'ESTIMATE_JUDGED' | 'INIT' | 'LOCK_IN' | 'MODE_SELECTED' | 'NEXT' | 'PROMPT_ADVANCED' | 'RETRY' | 'ROUND_RESTARTED' | 'SET_ESTIMATE';
|
|
8185
|
+
type StdLearnEstimateEventKey = 'ESTIMATE_JUDGED' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'LOCK_IN' | 'MODE_SELECTED' | 'NEXT' | 'PROMPT_ADVANCED' | 'RETRY' | 'ROUND_RESTARTED' | 'SET_ESTIMATE';
|
|
8089
8186
|
/**
|
|
8090
8187
|
* Payload shape for the `ESTIMATE_JUDGED` event.
|
|
8091
8188
|
*/
|
|
@@ -8109,6 +8206,13 @@ interface StdLearnEstimatePromptAdvancedPayload {
|
|
|
8109
8206
|
interface StdLearnEstimateRoundRestartedPayload {
|
|
8110
8207
|
totalPrompts?: number;
|
|
8111
8208
|
}
|
|
8209
|
+
/**
|
|
8210
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
8211
|
+
*/
|
|
8212
|
+
interface StdLearnEstimateLearnRoundCompletePayload {
|
|
8213
|
+
score?: number;
|
|
8214
|
+
total?: number;
|
|
8215
|
+
}
|
|
8112
8216
|
/**
|
|
8113
8217
|
* Typed call-site config block for this trait — every
|
|
8114
8218
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -8178,6 +8282,96 @@ declare function stdLearnEstimatePage(params: StdLearnEstimateParams): PageRefOb
|
|
|
8178
8282
|
/** Whole-orbital descriptor. */
|
|
8179
8283
|
declare function stdLearnEstimate(params: StdLearnEstimateParams): OrbitalDefinition;
|
|
8180
8284
|
|
|
8285
|
+
/**
|
|
8286
|
+
* std-learn-fx-cues — Headless pedagogy→fx translator: rides the bare-event cascade of the graded learning instruments (ANSWER_JUDGED, TAP_JUDGED, ESTIMATE_JUDGED, CLASSIFY_UPDATED, ARRANGEMENT_CHECKED, GOAL_CHECKED, LEARN_ROUND_COMPLETE, TRACE_DONE) and emits BURST cues for std-fx-particles to hold and a composed fx-overlay to play — correct/wrong beats, streak glow at a threshold, and a celebration on completion. Cues are typed FxCue config values carrying their own style (position, ttl, screen effect, color), so a lab opts in with two `uses` lines plus an overlay node and restyles or disables any cue purely through config; the instruments never learn about visuals, and this atom never learns about subjects. A new judged event elsewhere in the substrate means a new arm here — this listens list is the closed extension point. Renders nothing.
|
|
8287
|
+
*
|
|
8288
|
+
* Autogenerated by almadar-sync std-ts from
|
|
8289
|
+
* packages/almadar-std/behaviors/registry/atoms/std-learn-fx-cues.orb.
|
|
8290
|
+
*
|
|
8291
|
+
* This is a thin descriptor layer over the canonical .orb. The exported
|
|
8292
|
+
* functions return TraitReference / PageRefObject / OrbitalDefinition
|
|
8293
|
+
* payloads that reference the sibling .orb via `uses:` + `ref:`. The
|
|
8294
|
+
* compiler's inline phase materialises the real trait at build time.
|
|
8295
|
+
*
|
|
8296
|
+
* Do not hand-edit — regenerate via
|
|
8297
|
+
* npx almadar-sync std-ts --only=std-learn-fx-cues
|
|
8298
|
+
*
|
|
8299
|
+
* @level atom
|
|
8300
|
+
* @packageDocumentation
|
|
8301
|
+
*/
|
|
8302
|
+
|
|
8303
|
+
/**
|
|
8304
|
+
* Closed set of event keys this trait recognises —
|
|
8305
|
+
* derived from the .orb's `stateMachine.events[]` block
|
|
8306
|
+
* (transition triggers + emit names). Use as the key type
|
|
8307
|
+
* when passing an `events:` rename map at the call site.
|
|
8308
|
+
*/
|
|
8309
|
+
type StdLearnFxCuesEventKey = 'ANSWER_JUDGED' | 'ARRANGEMENT_CHECKED' | 'BURST' | 'CLASSIFY_UPDATED' | 'ESTIMATE_JUDGED' | 'GOAL_CHECKED' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'TAP_JUDGED' | 'TRACE_DONE';
|
|
8310
|
+
/**
|
|
8311
|
+
* Payload shape for the `BURST` event.
|
|
8312
|
+
*/
|
|
8313
|
+
interface StdLearnFxCuesBurstPayload {
|
|
8314
|
+
particles?: EntityRow[];
|
|
8315
|
+
}
|
|
8316
|
+
/**
|
|
8317
|
+
* Typed call-site config block for this trait — every
|
|
8318
|
+
* field maps to a `config { ... }` entry in the source
|
|
8319
|
+
* .lolo. The agent fills these to specialise the trait
|
|
8320
|
+
* without modifying its state-machine topology.
|
|
8321
|
+
*/
|
|
8322
|
+
interface StdLearnFxCuesConfig {
|
|
8323
|
+
/** Default: `[]` */
|
|
8324
|
+
bandCues?: EntityRow[];
|
|
8325
|
+
/** Default: `{"color":"#facc15","effect":"confetti","particleCount":40,"space":"screen","ttl":5,"type":"celebration","x":0.5,"z":0.45}` */
|
|
8326
|
+
celebrationCue?: EntityRow;
|
|
8327
|
+
/** Default: `{"color":"#4ade80","effect":"sparkle","particleCount":10,"space":"screen","ttl":1.5,"type":"correct","x":0.5,"z":0.35}` */
|
|
8328
|
+
correctCue?: EntityRow;
|
|
8329
|
+
/** Default: `{"color":"#a5b4fc","effect":"sparkle","particleCount":4,"space":"screen","ttl":1.5,"type":"progress","x":0.5,"z":0.35}` */
|
|
8330
|
+
progressCue?: EntityRow;
|
|
8331
|
+
/** Default: `true` */
|
|
8332
|
+
running?: boolean;
|
|
8333
|
+
/** Default: `{"color":"#fbbf24","effect":"streak-glow","space":"screen","ttl":2.5,"type":"streak","x":0.5,"z":0.2}` */
|
|
8334
|
+
streakCue?: EntityRow;
|
|
8335
|
+
/** Default: `3` */
|
|
8336
|
+
streakThreshold?: number;
|
|
8337
|
+
/** Default: `[]` */
|
|
8338
|
+
verdictCues?: EntityRow[];
|
|
8339
|
+
/** Default: `{"color":"#fda4af","effect":"shake","space":"screen","ttl":1,"type":"wrong","x":0.5,"z":0.35}` */
|
|
8340
|
+
wrongCue?: EntityRow;
|
|
8341
|
+
}
|
|
8342
|
+
/**
|
|
8343
|
+
* Params for the std-learn-fx-cues descriptor helpers.
|
|
8344
|
+
*
|
|
8345
|
+
* `entityName` binds every trait/page reference's `linkedEntity`.
|
|
8346
|
+
* The optional override fields mirror TraitReference / PageRefObject
|
|
8347
|
+
* fields and are forwarded to `makeTraitRef` / `makePageRef`.
|
|
8348
|
+
*/
|
|
8349
|
+
interface StdLearnFxCuesParams {
|
|
8350
|
+
entityName: string;
|
|
8351
|
+
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
8352
|
+
fields?: EntityField[];
|
|
8353
|
+
/** Rename the inlined trait at the call site. */
|
|
8354
|
+
traitName?: string;
|
|
8355
|
+
/** Per-key event rename map. Keys narrow to the trait's declared emit names. */
|
|
8356
|
+
events?: Partial<Record<StdLearnFxCuesEventKey, string>>;
|
|
8357
|
+
/** Per-event effect replacement (keys are POST-rename event names). */
|
|
8358
|
+
effects?: Record<string, SExpr[]>;
|
|
8359
|
+
/** Replace the imported trait's `listens` array entirely. */
|
|
8360
|
+
listens?: TraitEventListener[];
|
|
8361
|
+
/** Set every emit's scope. */
|
|
8362
|
+
emitsScope?: 'internal' | 'external';
|
|
8363
|
+
/** Typed call-site config block — see the per-field interface. */
|
|
8364
|
+
config?: StdLearnFxCuesConfig;
|
|
8365
|
+
/** URL path override for the (first) page. */
|
|
8366
|
+
pagePath?: string;
|
|
8367
|
+
}
|
|
8368
|
+
/** Trait descriptor: `LearnFxCues.traits.LearnFxCues`. */
|
|
8369
|
+
declare function stdLearnFxCuesTrait(params: StdLearnFxCuesParams): TraitReference;
|
|
8370
|
+
/** Page descriptor: `LearnFxCues.pages.LearnFxCuesPage`. */
|
|
8371
|
+
declare function stdLearnFxCuesPage(params: StdLearnFxCuesParams): PageRefObject;
|
|
8372
|
+
/** Whole-orbital descriptor. */
|
|
8373
|
+
declare function stdLearnFxCues(params: StdLearnFxCuesParams): OrbitalDefinition;
|
|
8374
|
+
|
|
8181
8375
|
/**
|
|
8182
8376
|
* std-learn-goal-seek — Generic goal-seek (inverse-problem) instrument — a config-declared target curve is drawn from a hidden parameter pair, and the learner tunes their own two parameters with sliders until their curve matches it, then presses Check to be graded against an RMS-distance tolerance. The curve family (power y = A·xᴮ, linear y = A + B·x, or sine y = A·sin(B·x)), the hidden target parameters, the tolerance, and every label are config-declared, so the same mechanism serves any inverse problem: fit a demand curve, match a projectile arc, tune a growth rate, recover a wave's amplitude and frequency. A live distance readout (optionally hidden for a harder variant) plays warmer/colder. Standalone by default; behind a lab router set matchMode and it renders only when MODE_SELECTED matches.
|
|
8183
8377
|
*
|
|
@@ -8202,7 +8396,7 @@ declare function stdLearnEstimate(params: StdLearnEstimateParams): OrbitalDefini
|
|
|
8202
8396
|
* (transition triggers + emit names). Use as the key type
|
|
8203
8397
|
* when passing an `events:` rename map at the call site.
|
|
8204
8398
|
*/
|
|
8205
|
-
type StdLearnGoalSeekEventKey = 'CHECK' | 'GOAL_CHECKED' | 'GOAL_RESET' | 'INIT' | 'MODE_SELECTED' | 'PARAMS_CHANGED' | 'RESET' | 'SET_PARAM_A' | 'SET_PARAM_B';
|
|
8399
|
+
type StdLearnGoalSeekEventKey = 'CHECK' | 'GOAL_CHECKED' | 'GOAL_RESET' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'PARAMS_CHANGED' | 'RESET' | 'SET_PARAM_A' | 'SET_PARAM_B';
|
|
8206
8400
|
/**
|
|
8207
8401
|
* Payload shape for the `PARAMS_CHANGED` event.
|
|
8208
8402
|
*/
|
|
@@ -8225,6 +8419,13 @@ interface StdLearnGoalSeekGoalCheckedPayload {
|
|
|
8225
8419
|
interface StdLearnGoalSeekGoalResetPayload {
|
|
8226
8420
|
attempts?: number;
|
|
8227
8421
|
}
|
|
8422
|
+
/**
|
|
8423
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
8424
|
+
*/
|
|
8425
|
+
interface StdLearnGoalSeekLearnRoundCompletePayload {
|
|
8426
|
+
score?: number;
|
|
8427
|
+
total?: number;
|
|
8428
|
+
}
|
|
8228
8429
|
/**
|
|
8229
8430
|
* Typed call-site config block for this trait — every
|
|
8230
8431
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -8480,7 +8681,7 @@ declare function stdLearnGridSim(params: StdLearnGridSimParams): OrbitalDefiniti
|
|
|
8480
8681
|
* (transition triggers + emit names). Use as the key type
|
|
8481
8682
|
* when passing an `events:` rename map at the call site.
|
|
8482
8683
|
*/
|
|
8483
|
-
type StdLearnHotspotEventKey = 'INIT' | 'MODE_SELECTED' | 'NEXT' | 'PROMPT_ADVANCED' | 'RETRY' | 'ROUND_RESTARTED' | 'TAP_JUDGED' | 'TAP_SHAPE';
|
|
8684
|
+
type StdLearnHotspotEventKey = 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'NEXT' | 'PROMPT_ADVANCED' | 'RETRY' | 'ROUND_RESTARTED' | 'TAP_JUDGED' | 'TAP_SHAPE';
|
|
8484
8685
|
/**
|
|
8485
8686
|
* Payload shape for the `TAP_JUDGED` event.
|
|
8486
8687
|
*/
|
|
@@ -8503,6 +8704,13 @@ interface StdLearnHotspotPromptAdvancedPayload {
|
|
|
8503
8704
|
interface StdLearnHotspotRoundRestartedPayload {
|
|
8504
8705
|
totalPrompts?: number;
|
|
8505
8706
|
}
|
|
8707
|
+
/**
|
|
8708
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
8709
|
+
*/
|
|
8710
|
+
interface StdLearnHotspotLearnRoundCompletePayload {
|
|
8711
|
+
score?: number;
|
|
8712
|
+
total?: number;
|
|
8713
|
+
}
|
|
8506
8714
|
/**
|
|
8507
8715
|
* Typed call-site config block for this trait — every
|
|
8508
8716
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -9080,7 +9288,7 @@ declare function stdLearnPerturb(params: StdLearnPerturbParams): OrbitalDefiniti
|
|
|
9080
9288
|
* (transition triggers + emit names). Use as the key type
|
|
9081
9289
|
* when passing an `events:` rename map at the call site.
|
|
9082
9290
|
*/
|
|
9083
|
-
type StdLearnPredictEventKey = 'INIT' | 'MODE_SELECTED' | 'NEXT' | 'PREDICT' | 'PREDICTION_COMMITTED' | 'RETRY' | 'ROUND_RESTARTED' | 'SCENARIO_ADVANCED';
|
|
9291
|
+
type StdLearnPredictEventKey = 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'NEXT' | 'PREDICT' | 'PREDICTION_COMMITTED' | 'RETRY' | 'ROUND_RESTARTED' | 'SCENARIO_ADVANCED';
|
|
9084
9292
|
/**
|
|
9085
9293
|
* Payload shape for the `PREDICTION_COMMITTED` event.
|
|
9086
9294
|
*/
|
|
@@ -9102,6 +9310,13 @@ interface StdLearnPredictScenarioAdvancedPayload {
|
|
|
9102
9310
|
interface StdLearnPredictRoundRestartedPayload {
|
|
9103
9311
|
totalScenarios?: number;
|
|
9104
9312
|
}
|
|
9313
|
+
/**
|
|
9314
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
9315
|
+
*/
|
|
9316
|
+
interface StdLearnPredictLearnRoundCompletePayload {
|
|
9317
|
+
score?: number;
|
|
9318
|
+
total?: number;
|
|
9319
|
+
}
|
|
9105
9320
|
/**
|
|
9106
9321
|
* Typed call-site config block for this trait — every
|
|
9107
9322
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -9395,7 +9610,7 @@ declare function stdLearnSandbox(params: StdLearnSandboxParams): OrbitalDefiniti
|
|
|
9395
9610
|
* (transition triggers + emit names). Use as the key type
|
|
9396
9611
|
* when passing an `events:` rename map at the call site.
|
|
9397
9612
|
*/
|
|
9398
|
-
type StdLearnScatterFitEventKey = 'ADD_POINT' | 'DRAG_POINT' | 'GUESS_LINE' | 'INIT' | 'LEARN_SCATTER_FIT_UPDATED' | 'MODE_SELECTED' | 'RESET' | 'REVEAL_FIT' | 'TOGGLE_RUN';
|
|
9613
|
+
type StdLearnScatterFitEventKey = 'ADD_POINT' | 'DRAG_POINT' | 'GUESS_LINE' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'LEARN_SCATTER_FIT_UPDATED' | 'MODE_SELECTED' | 'RESET' | 'REVEAL_FIT' | 'TOGGLE_RUN';
|
|
9399
9614
|
/**
|
|
9400
9615
|
* Payload shape for the `LEARN_SCATTER_FIT_UPDATED` event.
|
|
9401
9616
|
*/
|
|
@@ -9407,6 +9622,13 @@ interface StdLearnScatterFitLearnScatterFitUpdatedPayload {
|
|
|
9407
9622
|
pointCount?: number;
|
|
9408
9623
|
narration?: string;
|
|
9409
9624
|
}
|
|
9625
|
+
/**
|
|
9626
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
9627
|
+
*/
|
|
9628
|
+
interface StdLearnScatterFitLearnRoundCompletePayload {
|
|
9629
|
+
score?: number;
|
|
9630
|
+
total?: number;
|
|
9631
|
+
}
|
|
9410
9632
|
/**
|
|
9411
9633
|
* Typed call-site config block for this trait — every
|
|
9412
9634
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -9761,7 +9983,7 @@ declare function stdLearnSim3d(params: StdLearnSim3dParams): OrbitalDefinition;
|
|
|
9761
9983
|
* (transition triggers + emit names). Use as the key type
|
|
9762
9984
|
* when passing an `events:` rename map at the call site.
|
|
9763
9985
|
*/
|
|
9764
|
-
type StdLearnSpeedDrillEventKey = 'ANSWER' | 'ANSWER_JUDGED' | 'INIT' | 'MODE_SELECTED' | 'NEXT' | 'PROMPT_ADVANCED' | 'RETRY' | 'ROUND_RESTARTED';
|
|
9986
|
+
type StdLearnSpeedDrillEventKey = 'ANSWER' | 'ANSWER_JUDGED' | 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'NEXT' | 'PROMPT_ADVANCED' | 'RETRY' | 'ROUND_RESTARTED';
|
|
9765
9987
|
/**
|
|
9766
9988
|
* Payload shape for the `ANSWER_JUDGED` event.
|
|
9767
9989
|
*/
|
|
@@ -9785,6 +10007,13 @@ interface StdLearnSpeedDrillPromptAdvancedPayload {
|
|
|
9785
10007
|
interface StdLearnSpeedDrillRoundRestartedPayload {
|
|
9786
10008
|
totalItems?: number;
|
|
9787
10009
|
}
|
|
10010
|
+
/**
|
|
10011
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
10012
|
+
*/
|
|
10013
|
+
interface StdLearnSpeedDrillLearnRoundCompletePayload {
|
|
10014
|
+
score?: number;
|
|
10015
|
+
total?: number;
|
|
10016
|
+
}
|
|
9788
10017
|
/**
|
|
9789
10018
|
* Typed call-site config block for this trait — every
|
|
9790
10019
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -9984,7 +10213,7 @@ declare function stdLearnStepper(params: StdLearnStepperParams): OrbitalDefiniti
|
|
|
9984
10213
|
* (transition triggers + emit names). Use as the key type
|
|
9985
10214
|
* when passing an `events:` rename map at the call site.
|
|
9986
10215
|
*/
|
|
9987
|
-
type StdLearnTour3dEventKey = 'INIT' | 'MODE_SELECTED' | 'RESET' | 'SELECT_STATION' | 'SYNC_STATIONS' | 'TOUR' | 'TOUR_3D_UPDATED';
|
|
10216
|
+
type StdLearnTour3dEventKey = 'INIT' | 'LEARN_ROUND_COMPLETE' | 'MODE_SELECTED' | 'RESET' | 'SELECT_STATION' | 'SYNC_STATIONS' | 'TOUR' | 'TOUR_3D_UPDATED';
|
|
9988
10217
|
/**
|
|
9989
10218
|
* Payload shape for the `TOUR_3D_UPDATED` event.
|
|
9990
10219
|
*/
|
|
@@ -9996,6 +10225,13 @@ interface StdLearnTour3dTour3dUpdatedPayload {
|
|
|
9996
10225
|
total?: number;
|
|
9997
10226
|
tourComplete?: boolean;
|
|
9998
10227
|
}
|
|
10228
|
+
/**
|
|
10229
|
+
* Payload shape for the `LEARN_ROUND_COMPLETE` event.
|
|
10230
|
+
*/
|
|
10231
|
+
interface StdLearnTour3dLearnRoundCompletePayload {
|
|
10232
|
+
score?: number;
|
|
10233
|
+
total?: number;
|
|
10234
|
+
}
|
|
9999
10235
|
/**
|
|
10000
10236
|
* Typed call-site config block for this trait — every
|
|
10001
10237
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -14388,6 +14624,163 @@ declare function stdPatiencePage(params: StdPatienceParams): PageRefObject;
|
|
|
14388
14624
|
/** Whole-orbital descriptor. */
|
|
14389
14625
|
declare function stdPatience(params: StdPatienceParams): OrbitalDefinition;
|
|
14390
14626
|
|
|
14627
|
+
/**
|
|
14628
|
+
* std-platformer-body — Headless run/jump platformer-physics authority: the SOLE writer of body + fell + hazardId + goalId on side-view boards. Where std-motion-body owns free 2D drift (no collision), this atom owns the platformer contract: every 33ms physics tick it integrates gravity into the body's vertical velocity, steps position in per-second units, and collides the body rect against the config platforms with one-way semantics — a body moving in the gravity direction that overlaps a ground/platform tile lands on its anti-gravity face (vy zeroed, grounded set), while a body moving against gravity passes through, so jumping up through a platform and walking up a staircase both just work. The sign of gravity IS the vertical convention: positive pulls toward +y (screen boards, y down — sprite canvases), negative toward −y (math canvases, y up); jumps always fire against it. Intents: STEER sets horizontal velocity (dir −1/0/1 × moveSpeed, hold-to-run: keydown steers, keyup steers 0), JUMP kicks vertical velocity when grounded, PLACE teleports (spawns, hazard respawns), RESTART reseeds. Emits BODY_MOVED every tick for the render layer (boards that don't subscribe pay nothing), plus the sparse rule signals a board needs to score: BODY_JUMPED, BODY_LANDED (with impact speed), BODY_HAZARD (once per hazard entry, re-arms on exit), BODY_GOAL (same arming), BODY_FELL (once per fall past killY, re-armed by PLACE/RESTART). Curve skating: when config.skate is on and the grounded body comes within skateSnap of the config.skateCurve surface, the body rides the curve — y snaps to the interpolated surface and tangential gravity (g·slope/(1+slope²)) accelerates vx, so the body slides downhill along the graph itself and launches ballistically off its ends; jumping kicks free. Sparse BODY_SKATE_START/BODY_SKATE_END signals fire on engage/disengage so boards can layer fx. Lives, score, and win/lose stay downstream — this atom simulates, it never judges. Renders nothing.
|
|
14629
|
+
*
|
|
14630
|
+
* Autogenerated by almadar-sync std-ts from
|
|
14631
|
+
* packages/almadar-std/behaviors/registry/atoms/std-platformer-body.orb.
|
|
14632
|
+
*
|
|
14633
|
+
* This is a thin descriptor layer over the canonical .orb. The exported
|
|
14634
|
+
* functions return TraitReference / PageRefObject / OrbitalDefinition
|
|
14635
|
+
* payloads that reference the sibling .orb via `uses:` + `ref:`. The
|
|
14636
|
+
* compiler's inline phase materialises the real trait at build time.
|
|
14637
|
+
*
|
|
14638
|
+
* Do not hand-edit — regenerate via
|
|
14639
|
+
* npx almadar-sync std-ts --only=std-platformer-body
|
|
14640
|
+
*
|
|
14641
|
+
* @level atom
|
|
14642
|
+
* @packageDocumentation
|
|
14643
|
+
*/
|
|
14644
|
+
|
|
14645
|
+
/**
|
|
14646
|
+
* Closed set of event keys this trait recognises —
|
|
14647
|
+
* derived from the .orb's `stateMachine.events[]` block
|
|
14648
|
+
* (transition triggers + emit names). Use as the key type
|
|
14649
|
+
* when passing an `events:` rename map at the call site.
|
|
14650
|
+
*/
|
|
14651
|
+
type StdPlatformerBodyEventKey = 'BODY_FELL' | 'BODY_GOAL' | 'BODY_HAZARD' | 'BODY_JUMPED' | 'BODY_LANDED' | 'BODY_MOVED' | 'BODY_SKATE_END' | 'BODY_SKATE_START' | 'INIT' | 'JUMP' | 'PLACE' | 'RESTART' | 'STEER';
|
|
14652
|
+
/**
|
|
14653
|
+
* Payload shape for the `BODY_MOVED` event.
|
|
14654
|
+
*/
|
|
14655
|
+
interface StdPlatformerBodyBodyMovedPayload {
|
|
14656
|
+
x: number;
|
|
14657
|
+
y: number;
|
|
14658
|
+
vx: number;
|
|
14659
|
+
vy: number;
|
|
14660
|
+
grounded: boolean;
|
|
14661
|
+
skating: boolean;
|
|
14662
|
+
speed: number;
|
|
14663
|
+
}
|
|
14664
|
+
/**
|
|
14665
|
+
* Payload shape for the `BODY_SKATE_START` event.
|
|
14666
|
+
*/
|
|
14667
|
+
interface StdPlatformerBodyBodySkateStartPayload {
|
|
14668
|
+
x: number;
|
|
14669
|
+
y: number;
|
|
14670
|
+
slope: number;
|
|
14671
|
+
}
|
|
14672
|
+
/**
|
|
14673
|
+
* Payload shape for the `BODY_SKATE_END` event.
|
|
14674
|
+
*/
|
|
14675
|
+
interface StdPlatformerBodyBodySkateEndPayload {
|
|
14676
|
+
x: number;
|
|
14677
|
+
y: number;
|
|
14678
|
+
}
|
|
14679
|
+
/**
|
|
14680
|
+
* Payload shape for the `BODY_JUMPED` event.
|
|
14681
|
+
*/
|
|
14682
|
+
interface StdPlatformerBodyBodyJumpedPayload {
|
|
14683
|
+
x: number;
|
|
14684
|
+
y: number;
|
|
14685
|
+
}
|
|
14686
|
+
/**
|
|
14687
|
+
* Payload shape for the `BODY_LANDED` event.
|
|
14688
|
+
*/
|
|
14689
|
+
interface StdPlatformerBodyBodyLandedPayload {
|
|
14690
|
+
x: number;
|
|
14691
|
+
y: number;
|
|
14692
|
+
impact: number;
|
|
14693
|
+
}
|
|
14694
|
+
/**
|
|
14695
|
+
* Payload shape for the `BODY_HAZARD` event.
|
|
14696
|
+
*/
|
|
14697
|
+
interface StdPlatformerBodyBodyHazardPayload {
|
|
14698
|
+
id: string;
|
|
14699
|
+
x: number;
|
|
14700
|
+
y: number;
|
|
14701
|
+
}
|
|
14702
|
+
/**
|
|
14703
|
+
* Payload shape for the `BODY_GOAL` event.
|
|
14704
|
+
*/
|
|
14705
|
+
interface StdPlatformerBodyBodyGoalPayload {
|
|
14706
|
+
id: string;
|
|
14707
|
+
x: number;
|
|
14708
|
+
y: number;
|
|
14709
|
+
}
|
|
14710
|
+
/**
|
|
14711
|
+
* Payload shape for the `BODY_FELL` event.
|
|
14712
|
+
*/
|
|
14713
|
+
interface StdPlatformerBodyBodyFellPayload {
|
|
14714
|
+
x: number;
|
|
14715
|
+
y: number;
|
|
14716
|
+
}
|
|
14717
|
+
/**
|
|
14718
|
+
* Typed call-site config block for this trait — every
|
|
14719
|
+
* field maps to a `config { ... }` entry in the source
|
|
14720
|
+
* .lolo. The agent fills these to specialise the trait
|
|
14721
|
+
* without modifying its state-machine topology.
|
|
14722
|
+
*/
|
|
14723
|
+
interface StdPlatformerBodyConfig {
|
|
14724
|
+
/** Default: `24` */
|
|
14725
|
+
gravity?: number;
|
|
14726
|
+
/** Default: `11` */
|
|
14727
|
+
jumpStrength?: number;
|
|
14728
|
+
/** Default: `1000000` */
|
|
14729
|
+
killY?: number;
|
|
14730
|
+
/** Default: `14` */
|
|
14731
|
+
maxFallSpeed?: number;
|
|
14732
|
+
/** Default: `5` */
|
|
14733
|
+
moveSpeed?: number;
|
|
14734
|
+
/** Default: `[]` */
|
|
14735
|
+
platforms?: EntityRow[];
|
|
14736
|
+
/** Default: `true` */
|
|
14737
|
+
running?: boolean;
|
|
14738
|
+
/** Default: `false` */
|
|
14739
|
+
skate?: boolean;
|
|
14740
|
+
/** Default: `[]` */
|
|
14741
|
+
skateCurve?: EntityRow[];
|
|
14742
|
+
/** Default: `0.75` */
|
|
14743
|
+
skateSnap?: number;
|
|
14744
|
+
/** Default: `{"facingRight":true,"grounded":false,"height":0.6,"vx":0,"vy":0,"width":0.6,"x":2,"y":8}` */
|
|
14745
|
+
spawn?: EntityRow;
|
|
14746
|
+
/** Default: `1000000` */
|
|
14747
|
+
xMax?: number;
|
|
14748
|
+
/** Default: `-1000000` */
|
|
14749
|
+
xMin?: number;
|
|
14750
|
+
}
|
|
14751
|
+
/**
|
|
14752
|
+
* Params for the std-platformer-body descriptor helpers.
|
|
14753
|
+
*
|
|
14754
|
+
* `entityName` binds every trait/page reference's `linkedEntity`.
|
|
14755
|
+
* The optional override fields mirror TraitReference / PageRefObject
|
|
14756
|
+
* fields and are forwarded to `makeTraitRef` / `makePageRef`.
|
|
14757
|
+
*/
|
|
14758
|
+
interface StdPlatformerBodyParams {
|
|
14759
|
+
entityName: string;
|
|
14760
|
+
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
14761
|
+
fields?: EntityField[];
|
|
14762
|
+
/** Rename the inlined trait at the call site. */
|
|
14763
|
+
traitName?: string;
|
|
14764
|
+
/** Per-key event rename map. Keys narrow to the trait's declared emit names. */
|
|
14765
|
+
events?: Partial<Record<StdPlatformerBodyEventKey, string>>;
|
|
14766
|
+
/** Per-event effect replacement (keys are POST-rename event names). */
|
|
14767
|
+
effects?: Record<string, SExpr[]>;
|
|
14768
|
+
/** Replace the imported trait's `listens` array entirely. */
|
|
14769
|
+
listens?: TraitEventListener[];
|
|
14770
|
+
/** Set every emit's scope. */
|
|
14771
|
+
emitsScope?: 'internal' | 'external';
|
|
14772
|
+
/** Typed call-site config block — see the per-field interface. */
|
|
14773
|
+
config?: StdPlatformerBodyConfig;
|
|
14774
|
+
/** URL path override for the (first) page. */
|
|
14775
|
+
pagePath?: string;
|
|
14776
|
+
}
|
|
14777
|
+
/** Trait descriptor: `PlatformerBody.traits.PlatformerBody`. */
|
|
14778
|
+
declare function stdPlatformerBodyTrait(params: StdPlatformerBodyParams): TraitReference;
|
|
14779
|
+
/** Page descriptor: `PlatformerBody.pages.PlatformerBodyPage`. */
|
|
14780
|
+
declare function stdPlatformerBodyPage(params: StdPlatformerBodyParams): PageRefObject;
|
|
14781
|
+
/** Whole-orbital descriptor. */
|
|
14782
|
+
declare function stdPlatformerBody(params: StdPlatformerBodyParams): OrbitalDefinition;
|
|
14783
|
+
|
|
14391
14784
|
/**
|
|
14392
14785
|
* std-production — Headless unit-production mechanic: accrues productionPoints each turn (AI_TURN) and, on an affordable PRODUCE, emits a SPAWN intent for the grid-tactics authority to place a new unit. Owns only productionPoints (+ its spawn counter); never writes units directly.
|
|
14393
14786
|
*
|
|
@@ -21997,6 +22390,82 @@ declare function stdUiDividerPage(params: StdUiDividerParams): PageRefObject;
|
|
|
21997
22390
|
/** Whole-orbital descriptor. */
|
|
21998
22391
|
declare function stdUiDivider(params: StdUiDividerParams): OrbitalDefinition;
|
|
21999
22392
|
|
|
22393
|
+
/**
|
|
22394
|
+
* ui-draw-fx-layer — DrawFxLayer — UI factory (1:1 with the @almadar/ui draw-fx-layer pattern).
|
|
22395
|
+
*
|
|
22396
|
+
* Autogenerated by almadar-sync std-ts from
|
|
22397
|
+
* packages/almadar-std/behaviors/registry/atoms/ui-draw-fx-layer.orb.
|
|
22398
|
+
*
|
|
22399
|
+
* This is a thin descriptor layer over the canonical .orb. The exported
|
|
22400
|
+
* functions return TraitReference / PageRefObject / OrbitalDefinition
|
|
22401
|
+
* payloads that reference the sibling .orb via `uses:` + `ref:`. The
|
|
22402
|
+
* compiler's inline phase materialises the real trait at build time.
|
|
22403
|
+
*
|
|
22404
|
+
* Do not hand-edit — regenerate via
|
|
22405
|
+
* npx almadar-sync std-ts --only=ui-draw-fx-layer
|
|
22406
|
+
*
|
|
22407
|
+
* @level atom
|
|
22408
|
+
* @packageDocumentation
|
|
22409
|
+
*/
|
|
22410
|
+
|
|
22411
|
+
/**
|
|
22412
|
+
* Closed set of event keys this trait recognises —
|
|
22413
|
+
* derived from the .orb's `stateMachine.events[]` block
|
|
22414
|
+
* (transition triggers + emit names). Use as the key type
|
|
22415
|
+
* when passing an `events:` rename map at the call site.
|
|
22416
|
+
*/
|
|
22417
|
+
type StdUiDrawFxLayerEventKey = 'INIT';
|
|
22418
|
+
/**
|
|
22419
|
+
* Typed call-site config block for this trait — every
|
|
22420
|
+
* field maps to a `config { ... }` entry in the source
|
|
22421
|
+
* .lolo. The agent fills these to specialise the trait
|
|
22422
|
+
* without modifying its state-machine topology.
|
|
22423
|
+
*/
|
|
22424
|
+
interface StdUiDrawFxLayerConfig {
|
|
22425
|
+
/** Default: `{"item":{}}` */
|
|
22426
|
+
art?: Record<string, TraitConfig>;
|
|
22427
|
+
/** Default: `[{"id":"e1","message":"Unit spawned","type":"spawn","x":2,"y":2},{"id":"e2","message":"Attack landed","type":"effect","x":3,"y":1}]` */
|
|
22428
|
+
items?: EntityRow[];
|
|
22429
|
+
/** Default: `[]` */
|
|
22430
|
+
presets?: EntityRow[];
|
|
22431
|
+
/** Default: `{"item":{"animations":["static"],"aspect":"1:1","category":"item","dimension":"2d","name":"item","role":"item","style":"pixel","thumbnailUrl":"","url":"https://almadar-kflow-assets.web.app/shared/ui-roguelike-board/default/features/sword.png"}}` */
|
|
22432
|
+
sprites?: Record<string, TraitConfig>;
|
|
22433
|
+
textColor?: string;
|
|
22434
|
+
tickMs?: number;
|
|
22435
|
+
}
|
|
22436
|
+
/**
|
|
22437
|
+
* Params for the ui-draw-fx-layer descriptor helpers.
|
|
22438
|
+
*
|
|
22439
|
+
* `entityName` binds every trait/page reference's `linkedEntity`.
|
|
22440
|
+
* The optional override fields mirror TraitReference / PageRefObject
|
|
22441
|
+
* fields and are forwarded to `makeTraitRef` / `makePageRef`.
|
|
22442
|
+
*/
|
|
22443
|
+
interface StdUiDrawFxLayerParams {
|
|
22444
|
+
entityName: string;
|
|
22445
|
+
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
22446
|
+
fields?: EntityField[];
|
|
22447
|
+
/** Rename the inlined trait at the call site. */
|
|
22448
|
+
traitName?: string;
|
|
22449
|
+
/** Per-key event rename map. Keys narrow to the trait's declared emit names. */
|
|
22450
|
+
events?: Partial<Record<StdUiDrawFxLayerEventKey, string>>;
|
|
22451
|
+
/** Per-event effect replacement (keys are POST-rename event names). */
|
|
22452
|
+
effects?: Record<string, SExpr[]>;
|
|
22453
|
+
/** Replace the imported trait's `listens` array entirely. */
|
|
22454
|
+
listens?: TraitEventListener[];
|
|
22455
|
+
/** Set every emit's scope. */
|
|
22456
|
+
emitsScope?: 'internal' | 'external';
|
|
22457
|
+
/** Typed call-site config block — see the per-field interface. */
|
|
22458
|
+
config?: StdUiDrawFxLayerConfig;
|
|
22459
|
+
/** URL path override for the (first) page. */
|
|
22460
|
+
pagePath?: string;
|
|
22461
|
+
}
|
|
22462
|
+
/** Trait descriptor: `UiDrawFxLayer.traits.DrawFxLayerRender`. */
|
|
22463
|
+
declare function stdUiDrawFxLayerTrait(params: StdUiDrawFxLayerParams): TraitReference;
|
|
22464
|
+
/** Page descriptor: `UiDrawFxLayer.pages.DrawFxLayerPage`. */
|
|
22465
|
+
declare function stdUiDrawFxLayerPage(params: StdUiDrawFxLayerParams): PageRefObject;
|
|
22466
|
+
/** Whole-orbital descriptor. */
|
|
22467
|
+
declare function stdUiDrawFxLayer(params: StdUiDrawFxLayerParams): OrbitalDefinition;
|
|
22468
|
+
|
|
22000
22469
|
/**
|
|
22001
22470
|
* ui-draw-group — DrawGroup — UI factory (1:1 with the @almadar/ui draw-group pattern).
|
|
22002
22471
|
*
|
|
@@ -29494,7 +29963,13 @@ declare function stdUiBranchingLogicBuilder(params: StdUiBranchingLogicBuilderPa
|
|
|
29494
29963
|
* (transition triggers + emit names). Use as the key type
|
|
29495
29964
|
* when passing an `events:` rename map at the call site.
|
|
29496
29965
|
*/
|
|
29497
|
-
type StdUiBreadcrumbEventKey = 'INIT';
|
|
29966
|
+
type StdUiBreadcrumbEventKey = 'INIT' | 'ITEM';
|
|
29967
|
+
/**
|
|
29968
|
+
* Payload shape for the `ITEM` event.
|
|
29969
|
+
*/
|
|
29970
|
+
interface StdUiBreadcrumbItemPayload {
|
|
29971
|
+
id?: string;
|
|
29972
|
+
}
|
|
29498
29973
|
/**
|
|
29499
29974
|
* Typed call-site config block for this trait — every
|
|
29500
29975
|
* field maps to a `config { ... }` entry in the source
|
|
@@ -29503,7 +29978,11 @@ type StdUiBreadcrumbEventKey = 'INIT';
|
|
|
29503
29978
|
*/
|
|
29504
29979
|
interface StdUiBreadcrumbConfig {
|
|
29505
29980
|
className?: string;
|
|
29506
|
-
/** Default: `
|
|
29981
|
+
/** Default: `false` */
|
|
29982
|
+
fromNavStack?: boolean;
|
|
29983
|
+
/** Default: `"ITEM"` */
|
|
29984
|
+
itemEvent?: string;
|
|
29985
|
+
/** Default: `[]` */
|
|
29507
29986
|
items?: EntityRow[];
|
|
29508
29987
|
maxItems?: number;
|
|
29509
29988
|
separator?: unknown;
|
|
@@ -32612,6 +33091,77 @@ declare function stdUiFormSectionHeaderPage(params: StdUiFormSectionHeaderParams
|
|
|
32612
33091
|
/** Whole-orbital descriptor. */
|
|
32613
33092
|
declare function stdUiFormSectionHeader(params: StdUiFormSectionHeaderParams): OrbitalDefinition;
|
|
32614
33093
|
|
|
33094
|
+
/**
|
|
33095
|
+
* ui-fx-overlay — FxOverlay — UI factory (1:1 with the @almadar/ui fx-overlay pattern).
|
|
33096
|
+
*
|
|
33097
|
+
* Autogenerated by almadar-sync std-ts from
|
|
33098
|
+
* packages/almadar-std/behaviors/registry/molecules/ui-fx-overlay.orb.
|
|
33099
|
+
*
|
|
33100
|
+
* This is a thin descriptor layer over the canonical .orb. The exported
|
|
33101
|
+
* functions return TraitReference / PageRefObject / OrbitalDefinition
|
|
33102
|
+
* payloads that reference the sibling .orb via `uses:` + `ref:`. The
|
|
33103
|
+
* compiler's inline phase materialises the real trait at build time.
|
|
33104
|
+
*
|
|
33105
|
+
* Do not hand-edit — regenerate via
|
|
33106
|
+
* npx almadar-sync std-ts --only=ui-fx-overlay
|
|
33107
|
+
*
|
|
33108
|
+
* @level molecule
|
|
33109
|
+
* @packageDocumentation
|
|
33110
|
+
*/
|
|
33111
|
+
|
|
33112
|
+
/**
|
|
33113
|
+
* Closed set of event keys this trait recognises —
|
|
33114
|
+
* derived from the .orb's `stateMachine.events[]` block
|
|
33115
|
+
* (transition triggers + emit names). Use as the key type
|
|
33116
|
+
* when passing an `events:` rename map at the call site.
|
|
33117
|
+
*/
|
|
33118
|
+
type StdUiFxOverlayEventKey = 'INIT';
|
|
33119
|
+
/**
|
|
33120
|
+
* Typed call-site config block for this trait — every
|
|
33121
|
+
* field maps to a `config { ... }` entry in the source
|
|
33122
|
+
* .lolo. The agent fills these to specialise the trait
|
|
33123
|
+
* without modifying its state-machine topology.
|
|
33124
|
+
*/
|
|
33125
|
+
interface StdUiFxOverlayConfig {
|
|
33126
|
+
children?: PatternValue;
|
|
33127
|
+
className?: string;
|
|
33128
|
+
/** Default: `[{"id":"e1","message":"Unit spawned","type":"spawn","x":2,"y":2},{"id":"e2","message":"Attack landed","type":"effect","x":3,"y":1}]` */
|
|
33129
|
+
items?: EntityRow[];
|
|
33130
|
+
tickMs?: number;
|
|
33131
|
+
}
|
|
33132
|
+
/**
|
|
33133
|
+
* Params for the ui-fx-overlay descriptor helpers.
|
|
33134
|
+
*
|
|
33135
|
+
* `entityName` binds every trait/page reference's `linkedEntity`.
|
|
33136
|
+
* The optional override fields mirror TraitReference / PageRefObject
|
|
33137
|
+
* fields and are forwarded to `makeTraitRef` / `makePageRef`.
|
|
33138
|
+
*/
|
|
33139
|
+
interface StdUiFxOverlayParams {
|
|
33140
|
+
entityName: string;
|
|
33141
|
+
/** Extra fields to add to the orbital-scoped entity clone. */
|
|
33142
|
+
fields?: EntityField[];
|
|
33143
|
+
/** Rename the inlined trait at the call site. */
|
|
33144
|
+
traitName?: string;
|
|
33145
|
+
/** Per-key event rename map. Keys narrow to the trait's declared emit names. */
|
|
33146
|
+
events?: Partial<Record<StdUiFxOverlayEventKey, string>>;
|
|
33147
|
+
/** Per-event effect replacement (keys are POST-rename event names). */
|
|
33148
|
+
effects?: Record<string, SExpr[]>;
|
|
33149
|
+
/** Replace the imported trait's `listens` array entirely. */
|
|
33150
|
+
listens?: TraitEventListener[];
|
|
33151
|
+
/** Set every emit's scope. */
|
|
33152
|
+
emitsScope?: 'internal' | 'external';
|
|
33153
|
+
/** Typed call-site config block — see the per-field interface. */
|
|
33154
|
+
config?: StdUiFxOverlayConfig;
|
|
33155
|
+
/** URL path override for the (first) page. */
|
|
33156
|
+
pagePath?: string;
|
|
33157
|
+
}
|
|
33158
|
+
/** Trait descriptor: `UiFxOverlay.traits.FxOverlayRender`. */
|
|
33159
|
+
declare function stdUiFxOverlayTrait(params: StdUiFxOverlayParams): TraitReference;
|
|
33160
|
+
/** Page descriptor: `UiFxOverlay.pages.FxOverlayPage`. */
|
|
33161
|
+
declare function stdUiFxOverlayPage(params: StdUiFxOverlayParams): PageRefObject;
|
|
33162
|
+
/** Whole-orbital descriptor. */
|
|
33163
|
+
declare function stdUiFxOverlay(params: StdUiFxOverlayParams): OrbitalDefinition;
|
|
33164
|
+
|
|
32615
33165
|
/**
|
|
32616
33166
|
* ui-gradient-divider — GradientDivider — UI factory (1:1 with the @almadar/ui gradient-divider pattern).
|
|
32617
33167
|
*
|
|
@@ -39519,6 +40069,125 @@ interface StdObjectiveBoard3dParams {
|
|
|
39519
40069
|
/** Whole-organism descriptor (1 orbitals). Composes per-orbital factories. */
|
|
39520
40070
|
declare function stdObjectiveBoard3d(params?: StdObjectiveBoard3dParams): OrbitalDefinition[];
|
|
39521
40071
|
|
|
40072
|
+
/**
|
|
40073
|
+
* std-platformer-board-2d — 2D run/jump platformer board FRAME: composes platformer-body (run/jump physics, one-way AABB collision, hazard/goal/fall signals) + fx-particles + objective-flow (win/lose gate) onto one shared GameState with a side-view canvas render. The intent trait owns only game RULES — input forwarding (LEFT/RIGHT/STOP/JUMP → STEER/JUMP intents), goal scoring, hazard/pit lives with respawn, PLAY_AGAIN reset — physics, particles, and the win gate belong to the atoms. Games consume this organism and supply level geometry (platforms, in both BodyAuthority.platforms for collision and the render-side platforms knob), theme/assets, and physics feel via config/traitOverrides.
|
|
40074
|
+
*
|
|
40075
|
+
* Autogenerated by almadar-sync std-ts from
|
|
40076
|
+
* packages/almadar-std/behaviors/registry/organisms/std-platformer-board-2d.orb.
|
|
40077
|
+
*
|
|
40078
|
+
* This is a thin descriptor layer over the canonical .orb. The exported
|
|
40079
|
+
* functions return TraitReference / PageRefObject / OrbitalDefinition
|
|
40080
|
+
* payloads that reference the sibling .orb via `uses:` + `ref:`. The
|
|
40081
|
+
* compiler's inline phase materialises the real trait at build time.
|
|
40082
|
+
*
|
|
40083
|
+
* Do not hand-edit — regenerate via
|
|
40084
|
+
* npx almadar-sync std-ts --only=std-platformer-board-2d
|
|
40085
|
+
*
|
|
40086
|
+
* @level organism
|
|
40087
|
+
* @packageDocumentation
|
|
40088
|
+
*/
|
|
40089
|
+
|
|
40090
|
+
/**
|
|
40091
|
+
* Typed call-site config block for this trait — every
|
|
40092
|
+
* field maps to a `config { ... }` entry in the source
|
|
40093
|
+
* .lolo. The agent fills these to specialise the trait
|
|
40094
|
+
* without modifying its state-machine topology.
|
|
40095
|
+
*/
|
|
40096
|
+
interface StdPlatformerBoard2dConfig {
|
|
40097
|
+
/** Default: `550` */
|
|
40098
|
+
gravity?: unknown;
|
|
40099
|
+
/** Default: `365` */
|
|
40100
|
+
jumpStrength?: unknown;
|
|
40101
|
+
/** Default: `460` */
|
|
40102
|
+
killY?: unknown;
|
|
40103
|
+
/** Default: `600` */
|
|
40104
|
+
maxFallSpeed?: unknown;
|
|
40105
|
+
/** Default: `120` */
|
|
40106
|
+
moveSpeed?: unknown;
|
|
40107
|
+
/** Default: `[{"height":32,"id":"g0","type":"ground","width":800,"x":0,"y":368},{"height":16,"id":"p1","type":"platform","width":160,"x":150,"y":280},{"height":16,"id":"p2","type":"platform","width":160,"x":420,"y":220},{"height":16,"id":"h1","type":"hazard","width":80,"x":580,"y":300},{"height":28,"id":"goal","type":"goal","width":64,"x":700,"y":340}]` */
|
|
40108
|
+
platforms?: unknown;
|
|
40109
|
+
/** Default: `true` */
|
|
40110
|
+
running?: unknown;
|
|
40111
|
+
/** Default: `{"facingRight":true,"grounded":false,"height":48,"vx":0,"vy":0,"width":32,"x":80,"y":320}` */
|
|
40112
|
+
spawn?: unknown;
|
|
40113
|
+
/** Default: `768` */
|
|
40114
|
+
xMax?: unknown;
|
|
40115
|
+
/** Default: `0` */
|
|
40116
|
+
xMin?: unknown;
|
|
40117
|
+
}
|
|
40118
|
+
/**
|
|
40119
|
+
* Tunable params for the PlatformerBoard2DOrbital orbital.
|
|
40120
|
+
*
|
|
40121
|
+
* Canonical entity: GameState — overridable via
|
|
40122
|
+
* `entityName`. The factory threads the effective name through every
|
|
40123
|
+
* trait's `linkedEntity` binding; the `.orb` compiler's inline phase
|
|
40124
|
+
* auto-rewrites every `@Entity.x`, `["ref",X]`, `["fetch",X,…]`,
|
|
40125
|
+
* `["persist",…,X,…]` and payload type string accordingly.
|
|
40126
|
+
*
|
|
40127
|
+
* Override surface (mirrors `.lolo`'s native overrides 1:1):
|
|
40128
|
+
* fields — extra entity fields (appended)
|
|
40129
|
+
* pagePath — first-page URL override
|
|
40130
|
+
* entityName — rename the canonical entity
|
|
40131
|
+
* traitOverrides — per-imported-trait `config`, `linkedEntity`,
|
|
40132
|
+
* `events`, `name`, `emitsScope`, `listens`.
|
|
40133
|
+
* `effects` is NOT exposed — `.lolo` removed it
|
|
40134
|
+
* in Phase 9.5.H. Use `listens` via a sibling
|
|
40135
|
+
* trait to react to atom events.
|
|
40136
|
+
*/
|
|
40137
|
+
interface StdPlatformerBoard2dPlatformerBoard2DOrbitalParams {
|
|
40138
|
+
/** Extra fields appended to the canonical entity. */
|
|
40139
|
+
fields?: EntityField[];
|
|
40140
|
+
/** URL path override for the orbital's first page. */
|
|
40141
|
+
pagePath?: string;
|
|
40142
|
+
/** Rename the canonical entity (PascalCase singular, ≤32 chars). */
|
|
40143
|
+
entityName?: string;
|
|
40144
|
+
/**
|
|
40145
|
+
* Per-imported-trait override surface keyed on each imported
|
|
40146
|
+
* trait's canonical `name`. Accepts every override `.lolo`
|
|
40147
|
+
* natively supports: `config`, `linkedEntity`, `events`,
|
|
40148
|
+
* `name`, `emitsScope`, `listens`. `effects` is excluded —
|
|
40149
|
+
* atom-owned (use `listens` via a sibling trait instead).
|
|
40150
|
+
*/
|
|
40151
|
+
traitOverrides?: Partial<Record<'BodyAuthority' | 'FxDecay' | 'RoundGate' | 'PlatformerIntent', Pick<MakeTraitRefOpts, 'config' | 'linkedEntity' | 'events' | 'name' | 'emitsScope' | 'listens'>>>;
|
|
40152
|
+
}
|
|
40153
|
+
/** Per-orbital factory: builds the PlatformerBoard2DOrbital orbital with consumer params. */
|
|
40154
|
+
declare function stdPlatformerBoard2dPlatformerBoard2DOrbital(params?: StdPlatformerBoard2dPlatformerBoard2DOrbitalParams): OrbitalDefinition;
|
|
40155
|
+
/** Manifest — describes the params surface of stdPlatformerBoard2dPlatformerBoard2DOrbital. */
|
|
40156
|
+
declare const StdPlatformerBoard2dPlatformerBoard2DOrbitalManifest: {
|
|
40157
|
+
organism: string;
|
|
40158
|
+
orbitalName: string;
|
|
40159
|
+
paramFields: readonly [{
|
|
40160
|
+
readonly name: "fields";
|
|
40161
|
+
readonly type: "EntityField[]";
|
|
40162
|
+
readonly description: "Extra fields appended to the canonical entity.";
|
|
40163
|
+
}, {
|
|
40164
|
+
readonly name: "pagePath";
|
|
40165
|
+
readonly type: "string";
|
|
40166
|
+
readonly description: "URL override for the orbital first page.";
|
|
40167
|
+
}, {
|
|
40168
|
+
readonly name: "entityName";
|
|
40169
|
+
readonly type: "string";
|
|
40170
|
+
readonly description: "Rename the canonical entity. PascalCase singular, ≤32 chars. Threads through every trait's linkedEntity binding; compiler rewrites @Entity.x refs.";
|
|
40171
|
+
}, {
|
|
40172
|
+
readonly name: "traitOverrides";
|
|
40173
|
+
readonly type: "Partial<Record<TraitName, { config?, linkedEntity?, events?, name?, emitsScope?, listens? }>>";
|
|
40174
|
+
readonly description: "Per-imported-trait overrides — mirrors .lolo's native trait-composition surface 1:1. effects is excluded (atom-owned; use listens via a sibling trait).";
|
|
40175
|
+
}];
|
|
40176
|
+
traitNames: readonly ["BodyAuthority", "FxDecay", "RoundGate"];
|
|
40177
|
+
inlineTraitNames: readonly ["PlatformerIntent"];
|
|
40178
|
+
};
|
|
40179
|
+
/** Typed guard — runtime validates StdPlatformerBoard2dPlatformerBoard2DOrbitalParams keys. */
|
|
40180
|
+
declare function isStdPlatformerBoard2dPlatformerBoard2DOrbitalParams(p: object): p is StdPlatformerBoard2dPlatformerBoard2DOrbitalParams;
|
|
40181
|
+
/**
|
|
40182
|
+
* Bundled params for std-platformer-board-2d — one optional entry per orbital.
|
|
40183
|
+
* Each entry maps to its per-orbital factory above.
|
|
40184
|
+
*/
|
|
40185
|
+
interface StdPlatformerBoard2dParams {
|
|
40186
|
+
PlatformerBoard2D?: StdPlatformerBoard2dPlatformerBoard2DOrbitalParams;
|
|
40187
|
+
}
|
|
40188
|
+
/** Whole-organism descriptor (1 orbitals). Composes per-orbital factories. */
|
|
40189
|
+
declare function stdPlatformerBoard2d(params?: StdPlatformerBoard2dParams): OrbitalDefinition[];
|
|
40190
|
+
|
|
39522
40191
|
/**
|
|
39523
40192
|
* std-status-lifecycle-control — Status lifecycle control — infra molecule pairing std-status-lifecycle's StatusMachine, which deliberately surfaces no UI of its own. Pure presentational: shows the current status and one button per legal next move (config.transitions filtered on config.currentStatus), emitting ChangeStatusRequested with the picked move's id/from/to on click. Driven entirely by config (currentStatus/recordId/transitions) rather than a bound entity, so a host embeds it inline at the record it's viewing (currentStatus={@entity.status} recordId={@entity.id} transitions matching the paired StatusMachine's own config.transitions) and points that StatusMachine's `listens` at this trait's emit (`<Composer>.ChangeStatusRequested -> ChangeStatusRequested`) instead of at a dead declared-only event.
|
|
39524
40193
|
*
|
|
@@ -41229,6 +41898,7 @@ interface StdUiDetailPanelConfig {
|
|
|
41229
41898
|
footer?: PatternValue;
|
|
41230
41899
|
/** Default: `false` */
|
|
41231
41900
|
isLoading?: boolean;
|
|
41901
|
+
maxInlineActions?: number;
|
|
41232
41902
|
mode?: string;
|
|
41233
41903
|
pageProp?: number;
|
|
41234
41904
|
pageSize?: number;
|
|
@@ -44971,4 +45641,4 @@ declare function getOrbitalFactoryManifest(organism: string, orbitalName: string
|
|
|
44971
45641
|
*/
|
|
44972
45642
|
declare function listOrganismOrbitalManifests(organism: string): OrbitalParamsManifest[];
|
|
44973
45643
|
|
|
44974
|
-
export { StdAgentBuilderAgentBuilderOrbitalManifest, type StdAgentBuilderAgentBuilderOrbitalParams, type StdAgentBuilderBuildCompletePayload, type StdAgentBuilderEventKey, type StdAgentBuilderParams, type StdAgentBuilderPlannedPayload, StdAgentCompletionAgentCompletionOrbitalManifest, type StdAgentCompletionAgentCompletionOrbitalParams, type StdAgentCompletionCompletedPayload, type StdAgentCompletionEventKey, type StdAgentCompletionGeneratedPayload, type StdAgentCompletionParams, StdAgentContextAgentContextOrbitalManifest, type StdAgentContextAgentContextOrbitalParams, type StdAgentContextCountedPayload, type StdAgentContextEventKey, type StdAgentContextParams, type StdAgentContextTokenCountedPayload, StdAgentFixLoopAgentFixLoopOrbitalManifest, type StdAgentFixLoopAgentFixLoopOrbitalParams, type StdAgentFixLoopEventKey, type StdAgentFixLoopFixAppliedPayload, type StdAgentFixLoopParams, type StdAgentFixLoopPromptGeneratedPayload, StdAgentMemoryAgentMemoryOrbitalManifest, type StdAgentMemoryAgentMemoryOrbitalParams, type StdAgentMemoryEventKey, type StdAgentMemoryParams, type StdAgentMemoryRecallCompletePayload, type StdAgentMemoryRecalledPayload, StdAgentPlannerAgentPlannerOrbitalManifest, type StdAgentPlannerAgentPlannerOrbitalParams, type StdAgentPlannerEventKey, type StdAgentPlannerMemoriesRecalledPayload, type StdAgentPlannerParams, type StdAgentPlannerPlanGeneratedPayload, type StdAgentPlannerPlannedPayload, type StdAgentRabitComposedPayload, StdAgentRabitCoordinatorOrbitalManifest, type StdAgentRabitCoordinatorOrbitalParams, type StdAgentRabitDispatchedPayload, type StdAgentRabitEventKey, StdAgentRabitOrbitalProcessOrbitalManifest, type StdAgentRabitOrbitalProcessOrbitalParams, type StdAgentRabitParams, type StdAgentRabitPlannedPayload, type StdAgentRabitRabitDonePayload, StdAgentSessionAgentSessionOrbitalManifest, type StdAgentSessionAgentSessionOrbitalParams, type StdAgentSessionEventKey, type StdAgentSessionHistoryLoadedPayload, type StdAgentSessionParams, type StdAgentSessionSpecLoadedPayload, type StdAgentSessionSpecReadPayload, StdAgentToolCallAgentToolCallOrbitalManifest, type StdAgentToolCallAgentToolCallOrbitalParams, type StdAgentToolCallEventKey, type StdAgentToolCallParams, type StdAgentToolCallToolsCalledPayload, StdAgentToolLoopAgentToolLoopOrbitalManifest, type StdAgentToolLoopAgentToolLoopOrbitalParams, type StdAgentToolLoopEventKey, type StdAgentToolLoopLoopStepPayload, type StdAgentToolLoopParams, type StdAgentToolLoopToolsCalled1Payload, type StdAgentToolLoopToolsCalled2Payload, StdAgentTraceAgentTraceOrbitalManifest, type StdAgentTraceAgentTraceOrbitalParams, type StdAgentTraceEventKey, type StdAgentTraceParams, StdAnimTickAnimTickOrbitalManifest, type StdAnimTickAnimTickOrbitalParams, type StdAnimTickConfig, type StdAnimTickEventKey, type StdAnimTickParams, StdAppLayoutAppLayoutOrbitalManifest, type StdAppLayoutAppLayoutOrbitalParams, type StdAppLayoutAppLayoutStateLoadFailedPayload, type StdAppLayoutAppLayoutStateLoadedPayload, type StdAppLayoutConfig, type StdAppLayoutEventKey, type StdAppLayoutNotifyClickPayload, type StdAppLayoutParams, type StdAppLayoutSearchPayload, StdAppSearchAppSearchOrbitalManifest, type StdAppSearchAppSearchOrbitalParams, type StdAppSearchEventKey, type StdAppSearchParams, StdApprovalGateApprovalGateOrbitalManifest, type StdApprovalGateApprovalGateOrbitalParams, type StdApprovalGateParams, StdArcadeBoard3dArcadeBoard3DFrameOrbitalManifest, type StdArcadeBoard3dArcadeBoard3DFrameOrbitalParams, type StdArcadeBoard3dConfig, type StdArcadeBoard3dParams, type StdArcadeFlowConfig, type StdArcadeFlowEventKey, type StdArcadeFlowGameEndPayload, type StdArcadeFlowParams, type StdArcadePlayBurstPayload, type StdArcadePlayConfig, type StdArcadePlayEventKey, type StdArcadePlayParams, type StdArcadePlayScoreChangedPayload, StdAuditCaptureAuditCaptureOrbitalManifest, type StdAuditCaptureAuditCaptureOrbitalParams, type StdAuditCaptureAuditRecordedPayload, type StdAuditCaptureConfig, type StdAuditCaptureEventKey, type StdAuditCaptureParams, StdBillableHourBillableHourOrbitalManifest, type StdBillableHourBillableHourOrbitalParams, type StdBillableHourConfig, type StdBillableHourListenKey, type StdBillableHourParams, type StdBoardBoardItemsLoadFailedPayload, type StdBoardBoardItemsLoadedPayload, type StdBoardBoardItemsSaveFailedPayload, type StdBoardBoardItemsSavedPayload, StdBoardBoardOrbitalManifest, type StdBoardBoardOrbitalParams, type StdBoardConfig, type StdBoardDeleteCardPayload, type StdBoardEditCardPayload, type StdBoardEventKey, type StdBoardMoveCardPayload, type StdBoardOpenCardPayload, type StdBoardParams, type StdBoardReorderCardPayload, type StdBoardSaveCardPayload, StdBrowseBrowseItemOrbitalManifest, type StdBrowseBrowseItemOrbitalParams, type StdBrowseConfig, type StdBrowseListenKey, type StdBrowseParams, StdCacheAsideCacheEntryOrbitalManifest, type StdCacheAsideCacheEntryOrbitalParams, type StdCacheAsideConfig, type StdCacheAsideParams, type StdCalendarCalendarEventLoadFailedPayload, type StdCalendarCalendarEventLoadedPayload, StdCalendarCalendarEventOrbitalManifest, type StdCalendarCalendarEventOrbitalParams, type StdCalendarConfig, type StdCalendarEventKey, type StdCalendarParams, type StdCalendarPayload, type StdCascadeOnDeleteCascadeCompletedPayload, type StdCascadeOnDeleteCascadeFailedPayload, StdCascadeOnDeleteCascadeOnDeleteOrbitalManifest, type StdCascadeOnDeleteCascadeOnDeleteOrbitalParams, type StdCascadeOnDeleteCascadeRowDeletedPayload, type StdCascadeOnDeleteCascadeSteppedPayload, type StdCascadeOnDeleteConfig, type StdCascadeOnDeleteDepsLoadedPayload, type StdCascadeOnDeleteEventKey, type StdCascadeOnDeleteParams, type StdChaseAiBurstPayload, type StdChaseAiConfig, type StdChaseAiEventKey, type StdChaseAiParams, type StdChaseAiUnitsChangedPayload, type StdCircuitBreakerConfig, type StdCircuitBreakerParams, StdCircuitBreakerServiceNodeOrbitalManifest, type StdCircuitBreakerServiceNodeOrbitalParams, type StdConfirmationConfig, type StdConfirmationConfirmActionLoadFailedPayload, type StdConfirmationConfirmActionLoadedPayload, StdConfirmationConfirmActionOrbitalManifest, type StdConfirmationConfirmActionOrbitalParams, type StdConfirmationConfirmPayload, type StdConfirmationEventKey, type StdConfirmationParams, type StdCooldownConfig, StdCooldownCooldownOrbitalManifest, type StdCooldownCooldownOrbitalParams, type StdCooldownCooldownReadyPayload, type StdCooldownEventKey, type StdCooldownParams, type StdCrewBoard2dConfig, StdCrewBoard2dCrewBoard2DOrbitalManifest, type StdCrewBoard2dCrewBoard2DOrbitalParams, type StdCrewBoard2dParams, StdCrossReferenceCrossReferenceOrbitalManifest, type StdCrossReferenceCrossReferenceOrbitalParams, type StdCrossReferenceEventKey, type StdCrossReferenceLinkCreatedPayload, type StdCrossReferenceLinkOpFailedPayload, type StdCrossReferenceLinkRemovedPayload, type StdCrossReferenceLinksFetchedPayload, type StdCrossReferenceLinksLoadedPayload, type StdCrossReferenceParams, type StdDashboardGridEmbeddedConfig, StdDashboardGridEmbeddedDashboardGridEmbeddedOrbitalManifest, type StdDashboardGridEmbeddedDashboardGridEmbeddedOrbitalParams, type StdDashboardGridEmbeddedParams, type StdDataCollectorBufferReadyPayload, type StdDataCollectorConfig, type StdDataCollectorEventKey, StdDataCollectorMlDataCollectorOrbitalManifest, type StdDataCollectorMlDataCollectorOrbitalParams, type StdDataCollectorParams, StdDataErasureDataErasureOrbitalManifest, type StdDataErasureDataErasureOrbitalParams, type StdDataErasureParams, type StdDateRangeConfig, type StdDateRangeDateRangeChangedPayload, StdDateRangeDateRangeOrbitalManifest, type StdDateRangeDateRangeOrbitalParams, type StdDateRangeEventKey, type StdDateRangeParams, type StdDungeonBoard2dConfig, StdDungeonBoard2dDungeonBoard2DOrbitalManifest, type StdDungeonBoard2dDungeonBoard2DOrbitalParams, type StdDungeonBoard2dParams, type StdDungeonCombatBurstPayload, type StdDungeonCombatConfig, type StdDungeonCombatDefeatedPayload, type StdDungeonCombatEventKey, type StdDungeonCombatParams, StdEscalatingDecisionEscalatingDecisionOrbitalManifest, type StdEscalatingDecisionEscalatingDecisionOrbitalParams, type StdEscalatingDecisionEventKey, type StdEscalatingDecisionParams, type StdEscalatingDecisionRunExactPayload, type StdEsignFlowEventKey, type StdEsignFlowListenKey, type StdEsignFlowParams, type StdEsignFlowRequestDeletePayload, type StdEsignFlowResendRequestPayload, type StdEsignFlowSignatureSessionLoadFailedPayload, type StdEsignFlowSignatureSessionLoadedPayload, StdEsignFlowSignatureSessionOrbitalManifest, type StdEsignFlowSignatureSessionOrbitalParams, type StdEsignRequestConfig, StdEsignRequestESignRequestOrbitalManifest, type StdEsignRequestESignRequestOrbitalParams, type StdEsignRequestParams, type StdEventLogApplyFilterPayload, type StdEventLogConfig, type StdEventLogEventKey, type StdEventLogEventLogLoadFailedPayload, type StdEventLogEventLogLoadedPayload, StdEventLogEventLogOrbitalManifest, type StdEventLogEventLogOrbitalParams, type StdEventLogEventLogSaveFailedPayload, type StdEventLogEventLogSavedPayload, type StdEventLogParams, type StdEventLogSaveBackfillPayload, type StdExportConfig, StdExportExportOrbitalManifest, type StdExportExportOrbitalParams, type StdExportParams, type StdFileStoreArchiveFilePayload, type StdFileStoreConfig, type StdFileStoreDownloadFilePayload, type StdFileStoreEventKey, type StdFileStoreOpenFilePayload, type StdFileStoreParams, type StdFileStoreReorderPayload, type StdFileStoreStoredFileLoadFailedPayload, type StdFileStoreStoredFileLoadedPayload, StdFileStoreStoredFileOrbitalManifest, type StdFileStoreStoredFileOrbitalParams, type StdFilterConfig, type StdFilterEventKey, type StdFilterFilterPayload, StdFilterFilterTargetOrbitalManifest, type StdFilterFilterTargetOrbitalParams, type StdFilterParams, type StdFormAdvancedConfig, type StdFormAdvancedEventKey, type StdFormAdvancedFormEntryLoadFailedPayload, type StdFormAdvancedFormEntryLoadedPayload, StdFormAdvancedFormEntryOrbitalManifest, type StdFormAdvancedFormEntryOrbitalParams, type StdFormAdvancedFormEntrySaveFailedPayload, type StdFormAdvancedFormEntrySavedPayload, type StdFormAdvancedParams, type StdFxParticlesConfig, type StdFxParticlesEventKey, type StdFxParticlesParams, StdGalleryGalleryItemOrbitalManifest, type StdGalleryGalleryItemOrbitalParams, type StdGalleryParams, type StdGameClockConfig, type StdGameClockEventKey, StdGameClockGameClockOrbitalManifest, type StdGameClockGameClockOrbitalParams, type StdGameClockGameClockTickedPayload, type StdGameClockParams, type StdGatherBurstPayload, type StdGatherConfig, type StdGatherEventKey, type StdGatherParams, type StdGatherResourcesPayload, type StdGeosearchConfig, type StdGeosearchEventKey, type StdGeosearchGeoSearchPayload, StdGeosearchGeoSearchResultOrbitalManifest, type StdGeosearchGeoSearchResultOrbitalParams, type StdGeosearchParams, type StdGoldConfig, type StdGoldEventKey, type StdGoldGoldChangedPayload, type StdGoldParams, type StdGraphBuilderConfig, type StdGraphBuilderEventKey, StdGraphBuilderGraphBuilderOrbitalManifest, type StdGraphBuilderGraphBuilderOrbitalParams, type StdGraphBuilderGraphReadyPayload, type StdGraphBuilderParams, type StdGraphsConfig, type StdGraphsEventKey, StdGraphsGraphItemOrbitalManifest, type StdGraphsGraphItemOrbitalParams, type StdGraphsParams, type StdGridTacticsBurstPayload, type StdGridTacticsConfig, type StdGridTacticsEventKey, type StdGridTacticsParams, type StdGridTacticsUnitsChangedPayload, type StdHeroNavConfig, type StdHeroNavEventKey, type StdHeroNavHeroSteppedPayload, type StdHeroNavParams, type StdImageUploadMultiConfig, type StdImageUploadMultiEventKey, type StdImageUploadMultiParams, type StdImageUploadMultiUploadPayload, type StdImageUploadMultiUploadedImageCreatedPayload, type StdImageUploadMultiUploadedImageDeleteFailedPayload, type StdImageUploadMultiUploadedImageDeletedPayload, type StdImageUploadMultiUploadedImageLoadFailedPayload, type StdImageUploadMultiUploadedImageLoadedPayload, StdImageUploadMultiUploadedImageOrbitalManifest, type StdImageUploadMultiUploadedImageOrbitalParams, type StdImageUploadMultiUploadedImageUploadFailedPayload, type StdImportConfig, type StdImportParams, type StdKnowledgeTracingCaptureLabelPayload, type StdKnowledgeTracingEventKey, StdKnowledgeTracingKnowledgeTracingOrbitalManifest, type StdKnowledgeTracingKnowledgeTracingOrbitalParams, type StdKnowledgeTracingListenKey, type StdKnowledgeTracingObservationMadePayload, type StdKnowledgeTracingParams, type StdLearnArrangementArrangementCheckedPayload, type StdLearnArrangementConfig, type StdLearnArrangementEventKey, type StdLearnArrangementParams, type StdLearnClassifyClassifyUpdatedPayload, type StdLearnClassifyConfig, type StdLearnClassifyEventKey, type StdLearnClassifyParams, type StdLearnCompareComparisonChangedPayload, type StdLearnCompareConfig, type StdLearnCompareEventKey, type StdLearnCompareParams, type StdLearnCoupledSimCoefsChangedPayload, type StdLearnCoupledSimConfig, type StdLearnCoupledSimEventKey, type StdLearnCoupledSimParams, type StdLearnCoupledSimRunToggledPayload, type StdLearnCoupledSimShockAppliedPayload, type StdLearnCoupledSimSimResetPayload, type StdLearnDerivationConfig, type StdLearnDerivationDerivationUpdatedPayload, type StdLearnDerivationEventKey, type StdLearnDerivationParams, type StdLearnDiagramConfig, type StdLearnDiagramEventKey, type StdLearnDiagramParams, type StdLearnDiagramPartSelectedPayload, type StdLearnDoserConfig, type StdLearnDoserDoseAddedPayload, type StdLearnDoserDoserUpdatedPayload, type StdLearnDoserEventKey, type StdLearnDoserParams, type StdLearnEstimateConfig, type StdLearnEstimateEstimateJudgedPayload, type StdLearnEstimateEventKey, type StdLearnEstimateParams, type StdLearnEstimatePromptAdvancedPayload, type StdLearnEstimateRoundRestartedPayload, type StdLearnGoalSeekConfig, type StdLearnGoalSeekEventKey, type StdLearnGoalSeekGoalCheckedPayload, type StdLearnGoalSeekGoalResetPayload, type StdLearnGoalSeekParams, type StdLearnGoalSeekParamsChangedPayload, type StdLearnGridSimCellToggledPayload, type StdLearnGridSimConfig, type StdLearnGridSimEventKey, type StdLearnGridSimGridResetPayload, type StdLearnGridSimGridSteppedPayload, type StdLearnGridSimParams, type StdLearnGridSimRunToggledPayload, type StdLearnHotspotConfig, type StdLearnHotspotEventKey, type StdLearnHotspotParams, type StdLearnHotspotPromptAdvancedPayload, type StdLearnHotspotRoundRestartedPayload, type StdLearnHotspotTapJudgedPayload, type StdLearnLiveSimConfig, type StdLearnLiveSimEventKey, type StdLearnLiveSimParams, type StdLearnLiveSimRunToggledPayload, type StdLearnLiveSimSimResetPayload, type StdLearnMeasureConfig, type StdLearnMeasureEventKey, type StdLearnMeasureMeasureResetPayload, type StdLearnMeasureParams, type StdLearnMeasureProbeRecordedPayload, type StdLearnMeasureRunToggledPayload, type StdLearnParamExplorerConfig, type StdLearnParamExplorerEventKey, type StdLearnParamExplorerParams, type StdLearnParamExplorerParamsChangedPayload, type StdLearnPerturbConfig, type StdLearnPerturbEventKey, type StdLearnPerturbParams, type StdLearnPerturbRateChangedPayload, type StdLearnPerturbRunToggledPayload, type StdLearnPerturbSetpointChangedPayload, type StdLearnPerturbShockAppliedPayload, type StdLearnPerturbSimResetPayload, type StdLearnPredictConfig, type StdLearnPredictEventKey, type StdLearnPredictParams, type StdLearnPredictPredictionCommittedPayload, type StdLearnPredictRoundRestartedPayload, type StdLearnPredictScenarioAdvancedPayload, type StdLearnSampleAccumulatorAccumulatorResetPayload, type StdLearnSampleAccumulatorConfig, type StdLearnSampleAccumulatorEventKey, type StdLearnSampleAccumulatorParams, type StdLearnSampleAccumulatorSamplesDrawnPayload, type StdLearnSandboxConfig, type StdLearnSandboxEventKey, type StdLearnSandboxParams, type StdLearnSandboxSystemChangedPayload, type StdLearnScatterFitConfig, type StdLearnScatterFitEventKey, type StdLearnScatterFitLearnScatterFitUpdatedPayload, type StdLearnScatterFitParams, type StdLearnScenarioChoiceMadePayload, type StdLearnScenarioConfig, type StdLearnScenarioEventKey, type StdLearnScenarioParams, type StdLearnScenarioScenarioRestartedPayload, type StdLearnSim3dConfig, type StdLearnSim3dEventKey, type StdLearnSim3dParams, type StdLearnSim3dSim3dTickPayload, type StdLearnSim3dSim3dUpdatedPayload, type StdLearnSpeedDrillAnswerJudgedPayload, type StdLearnSpeedDrillConfig, type StdLearnSpeedDrillEventKey, type StdLearnSpeedDrillParams, type StdLearnSpeedDrillPromptAdvancedPayload, type StdLearnSpeedDrillRoundRestartedPayload, type StdLearnStepperConfig, type StdLearnStepperEventKey, type StdLearnStepperParams, type StdLearnStepperStepperAdvancedPayload, type StdLearnTour3dConfig, type StdLearnTour3dEventKey, type StdLearnTour3dParams, type StdLearnTour3dTour3dUpdatedPayload, type StdLearnTracePlayerConfig, type StdLearnTracePlayerEventKey, type StdLearnTracePlayerFrameAdvancedPayload, type StdLearnTracePlayerParams, type StdLearnTracePlayerTraceDonePayload, type StdLearnTransportConfig, type StdLearnTransportEventKey, type StdLearnTransportLearnStepPayload, type StdLearnTransportLearnUpdatedPayload, type StdLearnTransportParams, type StdLearnTreeConfig, type StdLearnTreeEventKey, type StdLearnTreeParams, type StdLearnTreeTreeUpdatedPayload, type StdLifecycleConfig, type StdLifecycleEventKey, StdLifecycleLifecycleOrbitalManifest, type StdLifecycleLifecycleOrbitalParams, type StdLifecycleLifecycleSteppedPayload, type StdLifecycleLifecycleTransitionedPayload, type StdLifecycleParams, type StdLifecycleScanFailedPayload, type StdLifecycleScanRecordsLoadedPayload, type StdListDeletePayload, type StdListEditPayload, type StdListEventKey, type StdListListItemLoadFailedPayload, type StdListListItemLoadedPayload, StdListListItemOrbitalManifest, type StdListListItemOrbitalParams, type StdListListenKey, type StdListParams, type StdMarketBoard3dConfig, StdMarketBoard3dMarketBoard3DOrbitalManifest, type StdMarketBoard3dMarketBoard3DOrbitalParams, type StdMarketBoard3dParams, type StdMarketFlowConfig, type StdMarketFlowEventKey, type StdMarketFlowGameEndPayload, type StdMarketFlowParams, type StdMarketingArticleConfig, type StdMarketingArticleParams, type StdMarketingCtaConfig, type StdMarketingCtaCtaPrimaryPayload, type StdMarketingCtaCtaSecondaryPayload, type StdMarketingCtaEventKey, type StdMarketingCtaParams, type StdMarketingFeaturesConfig, type StdMarketingFeaturesEventKey, type StdMarketingFeaturesFeatureClickPayload, type StdMarketingFeaturesParams, type StdMarketingFooterConfig, type StdMarketingFooterParams, type StdMarketingHeroConfig, type StdMarketingHeroCtaPrimaryPayload, type StdMarketingHeroCtaSecondaryPayload, type StdMarketingHeroEventKey, type StdMarketingHeroParams, type StdMarketingNavConfig, type StdMarketingNavEventKey, type StdMarketingNavNavClickPayload, type StdMarketingNavParams, type StdMarketingPricingConfig, type StdMarketingPricingEventKey, type StdMarketingPricingParams, type StdMarketingPricingPlanSelectPayload, type StdMarketingShowcaseConfig, type StdMarketingShowcaseEventKey, type StdMarketingShowcaseParams, type StdMarketingShowcaseShowcaseClickPayload, type StdMarketingSplitConfig, type StdMarketingSplitParams, type StdMarketingStatsConfig, type StdMarketingStatsParams, type StdMarketingStepsConfig, type StdMarketingStepsParams, type StdMarketingTeamConfig, type StdMarketingTeamParams, type StdMeshAssetArtConfig, type StdMeshAssetArtEventKey, type StdMeshAssetArtParams, type StdMigrationJobCommittedPayload, type StdMigrationJobConfig, type StdMigrationJobDocumentFetchedPayload, type StdMigrationJobDocumentsListedPayload, type StdMigrationJobEventKey, type StdMigrationJobMigrationCallFailedPayload, type StdMigrationJobMigrationCompletedPayload, type StdMigrationJobMigrationDocumentPayload, type StdMigrationJobMigrationFailedPayload, type StdMigrationJobMigrationFetchedPayload, StdMigrationJobMigrationJobOrbitalManifest, type StdMigrationJobMigrationJobOrbitalParams, type StdMigrationJobMigrationReviewReadyPayload, type StdMigrationJobParams, type StdMlClassifyClassifiedPayload, type StdMlClassifyClassifiedRawPayload, type StdMlClassifyClassifyCallFailedPayload, type StdMlClassifyClassifyFailedPayload, type StdMlClassifyConfig, type StdMlClassifyEventKey, StdMlClassifyMlClassifyOrbitalManifest, type StdMlClassifyMlClassifyOrbitalParams, type StdMlClassifyParams, type StdMlExactCheckConfig, type StdMlExactCheckEventKey, type StdMlExactCheckExactMatchedPayload, type StdMlExactCheckExactUnmatchedPayload, StdMlExactCheckMlExactCheckOrbitalManifest, type StdMlExactCheckMlExactCheckOrbitalParams, type StdMlExactCheckParams, type StdMlInferConfig, type StdMlInferEventKey, type StdMlInferInferAbstainedPayload, type StdMlInferInferCallFailedPayload, type StdMlInferInferredPayload, type StdMlInferInferredRawPayload, StdMlInferMlInferOrbitalManifest, type StdMlInferMlInferOrbitalParams, type StdMlInferParams, type StdMlLabelCaptureConfig, type StdMlLabelCaptureEventKey, type StdMlLabelCaptureLabelCapturedPayload, StdMlLabelCaptureMlLabelCaptureOrbitalManifest, type StdMlLabelCaptureMlLabelCaptureOrbitalParams, type StdMlLabelCaptureParams, type StdMlLookupConfig, type StdMlLookupEventKey, type StdMlLookupKeyHitPayload, type StdMlLookupKeyMissPayload, StdMlLookupMlLookupOrbitalManifest, type StdMlLookupMlLookupOrbitalParams, type StdMlLookupParams, type StdMlPosteriorConfig, type StdMlPosteriorEventKey, type StdMlPosteriorEvidenceInsufficientPayload, type StdMlPosteriorMasteryReachedPayload, StdMlPosteriorMlPosteriorOrbitalManifest, type StdMlPosteriorMlPosteriorOrbitalParams, type StdMlPosteriorParams, type StdMlPosteriorRemediationNeededPayload, type StdMlSimilarityConfig, type StdMlSimilarityEmbeddedPayload, type StdMlSimilarityEventKey, StdMlSimilarityMlSimilarityOrbitalManifest, type StdMlSimilarityMlSimilarityOrbitalParams, type StdMlSimilarityParams, type StdMlSimilaritySimilarityAbstainedPayload, type StdMlSimilaritySimilarityMatchedPayload, StdModQueueModQueueItemOrbitalManifest, type StdModQueueModQueueItemOrbitalParams, type StdModQueueParams, type StdModalConfig, type StdModalEventKey, type StdModalModalRecordLoadFailedPayload, type StdModalModalRecordLoadedPayload, StdModalModalRecordOrbitalManifest, type StdModalModalRecordOrbitalParams, type StdModalParams, type StdModalSavePayload, type StdMotionBodyBodyMovedPayload, type StdMotionBodyConfig, type StdMotionBodyEventKey, type StdMotionBodyParams, type StdMultiPartyFlowConfig, type StdMultiPartyFlowEventKey, type StdMultiPartyFlowFlowLoadFailedPayload, type StdMultiPartyFlowFlowLoadedPayload, StdMultiPartyFlowMultiPartyFlowOrbitalManifest, type StdMultiPartyFlowMultiPartyFlowOrbitalParams, type StdMultiPartyFlowParams, type StdMultiPartyFlowPartyConfirmPayload, type StdMultiPartyFlowSubmitCancelPayload, type StdMultiPartyFlowSubmitDisputePayload, type StdNotificationPanelClosePayload, type StdNotificationPanelConfig, type StdNotificationPanelEventKey, type StdNotificationPanelParams, type StdNotifyOnEventConfig, type StdNotifyOnEventEventKey, type StdNotifyOnEventNotificationDispatchedPayload, type StdNotifyOnEventNotifyEmailFailedPayload, type StdNotifyOnEventNotifyEmailSentPayload, StdNotifyOnEventNotifyOnEventOrbitalManifest, type StdNotifyOnEventNotifyOnEventOrbitalParams, type StdNotifyOnEventNotifySmsFailedPayload, type StdNotifyOnEventNotifySmsSentPayload, type StdNotifyOnEventNotifyWebhookFailedPayload, type StdNotifyOnEventNotifyWebhookSentPayload, type StdNotifyOnEventParams, type StdObjectiveBoard3dConfig, StdObjectiveBoard3dObjectiveBoard3DOrbitalManifest, type StdObjectiveBoard3dObjectiveBoard3DOrbitalParams, type StdObjectiveBoard3dParams, type StdObjectiveFlowConfig, type StdObjectiveFlowEventKey, type StdObjectiveFlowGameEndPayload, type StdObjectiveFlowParams, type StdObjectiveReachBurstPayload, type StdObjectiveReachConfig, type StdObjectiveReachEventKey, type StdObjectiveReachParams, type StdObjectiveReachProgressPayload, type StdPaginationConfig, type StdPaginationEventKey, type StdPaginationPagePayload, type StdPaginationPagedItemLoadedPayload, StdPaginationPagedItemOrbitalManifest, type StdPaginationPagedItemOrbitalParams, type StdPaginationParams, type StdPatienceBurstPayload, type StdPatienceConfig, type StdPatienceCustomerLostPayload, type StdPatienceEventKey, type StdPatienceParams, type StdPatienceServiceChangedPayload, type StdProductionConfig, type StdProductionEventKey, type StdProductionParams, type StdProductionSpawnPayload, type StdRateLimiterConfig, type StdRateLimiterParams, StdRateLimiterRateBucketOrbitalManifest, type StdRateLimiterRateBucketOrbitalParams, type StdRatingReviewChangeSortPayload, type StdRatingReviewConfig, type StdRatingReviewEventKey, type StdRatingReviewMarkHelpfulPayload, type StdRatingReviewParams, type StdRatingReviewRateDraftPayload, StdRatingReviewRatingReviewOrbitalManifest, type StdRatingReviewRatingReviewOrbitalParams, type StdRatingReviewReviewSaveFailedPayload, type StdRatingReviewReviewSavedPayload, type StdRatingReviewReviewsLoadFailedPayload, type StdRatingReviewReviewsLoadedPayload, type StdRatingReviewSubmitReviewPayload, type StdRecurrenceConfig, type StdRecurrenceEventKey, type StdRecurrenceOpenExceptionPayload, type StdRecurrenceParams, type StdRecurrenceRecurrenceLoadFailedPayload, type StdRecurrenceRecurrenceLoadedPayload, StdRecurrenceRecurrenceOrbitalManifest, type StdRecurrenceRecurrenceOrbitalParams, type StdRecurrenceRecurrenceSaveFailedPayload, type StdRecurrenceRecurrenceSavedPayload, type StdRecurrenceRescheduleOccurrencePayload, type StdRecurrenceSaveRulePayload, type StdRecurrenceSkipOccurrencePayload, type StdRelatedConfig, type StdRelatedEventKey, type StdRelatedParams, type StdRelatedRelatedItemLoadFailedPayload, type StdRelatedRelatedItemLoadedPayload, StdRelatedRelatedItemOrbitalManifest, type StdRelatedRelatedItemOrbitalParams, type StdReminderSchedulerConfig, type StdReminderSchedulerEventKey, type StdReminderSchedulerParams, type StdReminderSchedulerReminderDuePayload, StdReminderSchedulerReminderSchedulerOrbitalManifest, type StdReminderSchedulerReminderSchedulerOrbitalParams, type StdReminderSchedulerReminderSteppedPayload, type StdReminderSchedulerScanFailedPayload, type StdReminderSchedulerScanRecordsLoadedPayload, type StdRichEditorBlocksChangePayload, type StdRichEditorConfig, type StdRichEditorDocumentLoadFailedPayload, type StdRichEditorDocumentLoadedPayload, StdRichEditorDocumentOrbitalManifest, type StdRichEditorDocumentOrbitalParams, type StdRichEditorDocumentPublishedPayload, type StdRichEditorDocumentSaveFailedPayload, type StdRichEditorDocumentSavedPayload, type StdRichEditorEventKey, type StdRichEditorOpenPayload, type StdRichEditorParams, type StdRichEditorPublishPayload, type StdRichEditorSavePayload, type StdRoundFlowConfig, type StdRoundFlowEventKey, type StdRoundFlowGameEndPayload, type StdRoundFlowParams, type StdRowAccessControlConfig, type StdRowAccessControlEventKey, type StdRowAccessControlParams, StdRowAccessControlRowAccessControlOrbitalManifest, type StdRowAccessControlRowAccessControlOrbitalParams, type StdRowAccessControlRowsFilteredPayload, type StdSavedSearchChangeFrequencyPayload, type StdSavedSearchConfig, type StdSavedSearchDeletePayload, type StdSavedSearchEditPayload, type StdSavedSearchEventKey, type StdSavedSearchParams, type StdSavedSearchRenamePayload, type StdSavedSearchSavedSearchDeletedPayload, type StdSavedSearchSavedSearchLoadFailedPayload, type StdSavedSearchSavedSearchLoadedPayload, StdSavedSearchSavedSearchOrbitalManifest, type StdSavedSearchSavedSearchOrbitalParams, type StdSavedSearchSavedSearchUpdatedPayload, type StdSavedSearchToggleAlertPayload, type StdScatterConfig, type StdScatterEventKey, type StdScatterParams, StdScatterScatterItemOrbitalManifest, type StdScatterScatterItemOrbitalParams, type StdScoreConfig, type StdScoreEventKey, type StdScoreParams, type StdSearchConfig, type StdSearchEventKey, type StdSearchParams, type StdSearchSearchPayload, StdSearchSearchResultOrbitalManifest, type StdSearchSearchResultOrbitalParams, type StdSelectionConfig, type StdSelectionEventKey, type StdSelectionParams, type StdSelectionSelectableItemLoadFailedPayload, type StdSelectionSelectableItemLoadedPayload, StdSelectionSelectableItemOrbitalManifest, type StdSelectionSelectableItemOrbitalParams, type StdSignatureCaptureChangePayload, type StdSignatureCaptureConfig, type StdSignatureCaptureEventKey, type StdSignatureCaptureParams, StdSignatureCaptureSignatureCaptureOrbitalManifest, type StdSignatureCaptureSignatureCaptureOrbitalParams, type StdSignatureCaptureSignatureLoadFailedPayload, type StdSignatureCaptureSignatureLoadedPayload, type StdSignatureCaptureSignatureSubmitFailedPayload, type StdSignatureCaptureSignatureSubmittedPayload, type StdSignatureCaptureSubmitPayload, type StdStatRowsConfig, type StdStatRowsEventKey, type StdStatRowsParams, type StdStatsConfig, type StdStatsEventKey, type StdStatsParams, StdStatsStatsItemOrbitalManifest, type StdStatsStatsItemOrbitalParams, type StdStatusLifecycleConfig, type StdStatusLifecycleControlChangeStatusRequestedPayload, type StdStatusLifecycleControlConfig, type StdStatusLifecycleControlEventKey, type StdStatusLifecycleControlParams, StdStatusLifecycleControlStatusLifecycleControlOrbitalManifest, type StdStatusLifecycleControlStatusLifecycleControlOrbitalParams, type StdStatusLifecycleControlTransitionRequestedPayload, type StdStatusLifecycleEventKey, type StdStatusLifecycleParams, type StdStatusLifecycleStatusChangeFailedPayload, type StdStatusLifecycleStatusChangedPayload, StdStatusLifecycleStatusLifecycleOrbitalManifest, type StdStatusLifecycleStatusLifecycleOrbitalParams, type StdStepFlowAdvancePayload, type StdStepFlowBackPayload, type StdStepFlowConfig, type StdStepFlowEscalatePayload, type StdStepFlowEventKey, type StdStepFlowParams, type StdStepFlowRejectPayload, type StdStepFlowRestartPayload, StdStepFlowStepFlowOrbitalManifest, type StdStepFlowStepFlowOrbitalParams, type StdStepFlowStepItemsLoadFailedPayload, type StdStepFlowStepItemsLoadedPayload, type StdSurvivalBoard3dConfig, type StdSurvivalBoard3dParams, StdSurvivalBoard3dSurvivalBoard3DOrbitalManifest, type StdSurvivalBoard3dSurvivalBoard3DOrbitalParams, type StdSurvivalFlowConfig, type StdSurvivalFlowEventKey, type StdSurvivalFlowGameEndPayload, type StdSurvivalFlowParams, type StdSvgAssetArtConfig, type StdSvgAssetArtEventKey, type StdSvgAssetArtParams, type StdTabsConfig, type StdTabsEventKey, type StdTabsParams, type StdTabsTabChangedPayload, StdTabsTabsItemOrbitalManifest, type StdTabsTabsItemOrbitalParams, type StdTacticsBoard2dConfig, type StdTacticsBoard2dParams, StdTacticsBoard2dTacticsBoard2DOrbitalManifest, type StdTacticsBoard2dTacticsBoard2DOrbitalParams, type StdTacticsBoard3dConfig, type StdTacticsBoard3dParams, StdTacticsBoard3dTacticsBoard3DOrbitalManifest, type StdTacticsBoard3dTacticsBoard3DOrbitalParams, type StdTagTaxonomyConfig, type StdTagTaxonomyEventKey, type StdTagTaxonomyParams, type StdTagTaxonomySelectTagPayload, type StdTagTaxonomyTagLoadFailedPayload, type StdTagTaxonomyTagLoadedPayload, type StdTagTaxonomyTagSelectedPayload, StdTagTaxonomyTagTaxonomyOrbitalManifest, type StdTagTaxonomyTagTaxonomyOrbitalParams, type StdThreadConfig, type StdThreadEditReplyPayload, type StdThreadEventKey, type StdThreadParams, type StdThreadReplyPayload, type StdThreadSelectPayload, type StdThreadSubmitReplyPayload, type StdThreadThreadPostCreateFailedPayload, type StdThreadThreadPostCreatedPayload, type StdThreadThreadPostLoadFailedPayload, type StdThreadThreadPostLoadedPayload, StdThreadThreadPostOrbitalManifest, type StdThreadThreadPostOrbitalParams, type StdTokenizerConfig, type StdTokenizerEventKey, StdTokenizerMlTokenizerOrbitalManifest, type StdTokenizerMlTokenizerOrbitalParams, type StdTokenizerParams, type StdTokenizerTokenizedPayload, type StdUiAccordionConfig, type StdUiAccordionEventKey, type StdUiAccordionItemTogglePayload, type StdUiAccordionParams, type StdUiAccordionTogglePayload, type StdUiActionPaletteConfig, type StdUiActionPaletteEventKey, type StdUiActionPaletteParams, type StdUiActionTileConfig, type StdUiActionTileEventKey, type StdUiActionTileParams, type StdUiActivationBlockConfig, type StdUiActivationBlockEventKey, type StdUiActivationBlockParams, type StdUiAlertClosePayload, type StdUiAlertConfig, type StdUiAlertDismissPayload, type StdUiAlertEventKey, type StdUiAlertParams, type StdUiAlgoGraphCanvasConfig, type StdUiAlgoGraphCanvasEventKey, type StdUiAlgoGraphCanvasNodeClickPayload, type StdUiAlgoGraphCanvasParams, type StdUiAlgoGraphCanvasShapeClickPayload, type StdUiAlgorithmCanvasConfig, type StdUiAlgorithmCanvasEventKey, type StdUiAlgorithmCanvasParams, type StdUiAlgorithmCanvasShapeClickPayload, type StdUiAnimatedCounterConfig, type StdUiAnimatedCounterEventKey, type StdUiAnimatedCounterParams, type StdUiAnimatedGraphicConfig, type StdUiAnimatedGraphicEventKey, type StdUiAnimatedGraphicParams, type StdUiAnimatedRevealConfig, type StdUiAnimatedRevealEventKey, type StdUiAnimatedRevealParams, type StdUiArticleSectionConfig, type StdUiArticleSectionEventKey, type StdUiArticleSectionParams, type StdUiAsideConfig, type StdUiAsideEventKey, type StdUiAsideParams, type StdUiAtlasImageConfig, type StdUiAtlasImageEventKey, type StdUiAtlasImageParams, type StdUiAtlasPanelConfig, type StdUiAtlasPanelEventKey, type StdUiAtlasPanelParams, type StdUiAvatarActionPayload, type StdUiAvatarClickPayload, type StdUiAvatarConfig, type StdUiAvatarEventKey, type StdUiAvatarParams, type StdUiBadgeConfig, type StdUiBadgeEventKey, type StdUiBadgeParams, type StdUiBadgeRemovePayload, type StdUiBehaviorViewConfig, type StdUiBehaviorViewEventKey, type StdUiBehaviorViewParams, type StdUiBiologyCanvasConfig, type StdUiBiologyCanvasEventKey, type StdUiBiologyCanvasParams, type StdUiBiologyCanvasShapeClickPayload, type StdUiBloomQuizBlockConfig, type StdUiBloomQuizBlockEventKey, type StdUiBloomQuizBlockParams, type StdUiBookChapterViewBookChapterViewLoadedPayload, StdUiBookChapterViewBookChapterViewOrbitalManifest, type StdUiBookChapterViewBookChapterViewOrbitalParams, type StdUiBookChapterViewConfig, type StdUiBookChapterViewEventKey, type StdUiBookChapterViewParams, StdUiBookCoverPageBookCoverPageOrbitalManifest, type StdUiBookCoverPageBookCoverPageOrbitalParams, type StdUiBookCoverPageConfig, type StdUiBookCoverPageEventKey, type StdUiBookCoverPageParams, StdUiBookNavBarBookNavBarOrbitalManifest, type StdUiBookNavBarBookNavBarOrbitalParams, type StdUiBookNavBarConfig, type StdUiBookNavBarEventKey, type StdUiBookNavBarParams, type StdUiBookTableOfContentsBookTableOfContentsLoadedPayload, StdUiBookTableOfContentsBookTableOfContentsOrbitalManifest, type StdUiBookTableOfContentsBookTableOfContentsOrbitalParams, type StdUiBookTableOfContentsConfig, type StdUiBookTableOfContentsEventKey, type StdUiBookTableOfContentsParams, type StdUiBookViewerBookViewerLoadedPayload, StdUiBookViewerBookViewerOrbitalManifest, type StdUiBookViewerBookViewerOrbitalParams, type StdUiBookViewerConfig, type StdUiBookViewerEventKey, type StdUiBookViewerParams, type StdUiBoxActionPayload, type StdUiBoxConfig, type StdUiBoxEventKey, type StdUiBoxHoverPayload, type StdUiBoxParams, type StdUiBranchingLogicBuilderConfig, type StdUiBranchingLogicBuilderEventKey, type StdUiBranchingLogicBuilderParams, type StdUiBranchingLogicBuilderRulesChangePayload, type StdUiBreadcrumbConfig, type StdUiBreadcrumbEventKey, type StdUiBreadcrumbParams, type StdUiButtonActionPayload, type StdUiButtonConfig, type StdUiButtonEventKey, type StdUiButtonParams, type StdUiCalendarGridCalendarGridLoadedPayload, type StdUiCalendarGridConfig, type StdUiCalendarGridDayClickPayload, type StdUiCalendarGridEventClickPayload, type StdUiCalendarGridEventKey, type StdUiCalendarGridLongPressPayload, type StdUiCalendarGridParams, type StdUiCalendarGridSlotClickPayload, type StdUiCalendarGridSwipeLeftPayload, type StdUiCalendarGridSwipeRightPayload, type StdUiCanvas2dConfig, type StdUiCanvas2dEventKey, type StdUiCanvas2dParams, type StdUiCanvas2dTileClickPayload, type StdUiCanvas2dTileHoverPayload, type StdUiCanvas2dTileLeavePayload, type StdUiCanvas2dUnitClickPayload, type StdUiCanvasConfig, type StdUiCanvasEventKey, type StdUiCanvasFeatureClickPayload, type StdUiCanvasParams, type StdUiCanvasTileClickPayload, type StdUiCanvasTileHoverPayload, type StdUiCanvasTileLeavePayload, type StdUiCanvasUnitClickPayload, type StdUiCardActionPayload, type StdUiCardConfig, type StdUiCardEventKey, type StdUiCardParams, type StdUiCarouselConfig, type StdUiCarouselEventKey, type StdUiCarouselParams, type StdUiCarouselSlideChangePayload, type StdUiCaseStudyCardConfig, type StdUiCaseStudyCardEventKey, type StdUiCaseStudyCardParams, type StdUiCaseStudyOrganismCaseStudyOrganismLoadedPayload, StdUiCaseStudyOrganismCaseStudyOrganismOrbitalManifest, type StdUiCaseStudyOrganismCaseStudyOrganismOrbitalParams, type StdUiCaseStudyOrganismConfig, type StdUiCaseStudyOrganismEventKey, type StdUiCaseStudyOrganismParams, type StdUiCenterConfig, type StdUiCenterEventKey, type StdUiCenterParams, type StdUiChartConfig, type StdUiChartEventKey, type StdUiChartLegendConfig, type StdUiChartLegendEventKey, type StdUiChartLegendParams, type StdUiChartParams, StdUiChatBarChatBarOrbitalManifest, type StdUiChatBarChatBarOrbitalParams, type StdUiChatBarConfig, type StdUiChatBarEventKey, type StdUiChatBarParams, type StdUiCheckboxChangePayload, type StdUiCheckboxConfig, type StdUiCheckboxEventKey, type StdUiCheckboxParams, type StdUiChemistryCanvasConfig, type StdUiChemistryCanvasEventKey, type StdUiChemistryCanvasParams, type StdUiChemistryCanvasShapeClickPayload, type StdUiChoiceButtonActionPayload, type StdUiChoiceButtonClickPayload, type StdUiChoiceButtonConfig, type StdUiChoiceButtonEventKey, type StdUiChoiceButtonParams, type StdUiCodeBlockChangePayload, type StdUiCodeBlockConfig, type StdUiCodeBlockEventKey, type StdUiCodeBlockParams, StdUiCodeRunnerPanelCodeRunnerPanelOrbitalManifest, type StdUiCodeRunnerPanelCodeRunnerPanelOrbitalParams, type StdUiCodeRunnerPanelConfig, type StdUiCodeRunnerPanelEventKey, type StdUiCodeRunnerPanelParams, type StdUiCommunityLinksConfig, type StdUiCommunityLinksEventKey, type StdUiCommunityLinksParams, type StdUiConditionalWrapperConfig, type StdUiConditionalWrapperEventKey, type StdUiConditionalWrapperParams, type StdUiConfettiEffectConfig, type StdUiConfettiEffectEventKey, type StdUiConfettiEffectParams, type StdUiConfirmDialogClosePayload, type StdUiConfirmDialogConfig, type StdUiConfirmDialogConfirmPayload, type StdUiConfirmDialogEventKey, type StdUiConfirmDialogOpenPayload, type StdUiConfirmDialogParams, type StdUiConnectionBlockConfig, type StdUiConnectionBlockEventKey, type StdUiConnectionBlockParams, type StdUiContainerConfig, type StdUiContainerEventKey, type StdUiContainerParams, type StdUiContentRendererConfig, type StdUiContentRendererEventKey, type StdUiContentRendererParams, type StdUiContentSectionConfig, type StdUiContentSectionEventKey, type StdUiContentSectionParams, type StdUiControlButtonConfig, type StdUiControlButtonEventKey, type StdUiControlButtonParams, type StdUiControlButtonPressPayload, type StdUiControlButtonReleasePayload, type StdUiControlGridActionPayload, type StdUiControlGridConfig, type StdUiControlGridDirectionPayload, type StdUiControlGridEventKey, type StdUiControlGridParams, type StdUiCtaBannerConfig, type StdUiCtaBannerEventKey, type StdUiCtaBannerParams, type StdUiDashboardGridConfig, StdUiDashboardGridDashboardGridOrbitalManifest, type StdUiDashboardGridDashboardGridOrbitalParams, type StdUiDashboardGridEventKey, type StdUiDashboardGridParams, type StdUiDataGridConfig, type StdUiDataGridDataGridLoadedPayload, type StdUiDataGridEventKey, type StdUiDataGridLoadMorePayload, type StdUiDataGridParams, type StdUiDataGridSelectionPayload, type StdUiDataGridViewPayload, type StdUiDataListConfig, type StdUiDataListDataListLoadedPayload, type StdUiDataListEventKey, type StdUiDataListItemClickPayload, type StdUiDataListLoadMorePayload, type StdUiDataListLongPressPayload, type StdUiDataListParams, type StdUiDataListReorderPayload, type StdUiDataListSwipeLeftPayload, type StdUiDataListSwipeRightPayload, type StdUiDataListViewPayload, type StdUiDateRangePickerChangePayload, type StdUiDateRangePickerConfig, type StdUiDateRangePickerEventKey, type StdUiDateRangePickerEventPayload, type StdUiDateRangePickerParams, type StdUiDateRangeSelectorConfig, type StdUiDateRangeSelectorEventKey, type StdUiDateRangeSelectorParams, type StdUiDateRangeSelectorSelectPayload, type StdUiDayCellClickPayload, type StdUiDayCellConfig, type StdUiDayCellEventKey, type StdUiDayCellParams, type StdUiDetailPanelConfig, type StdUiDetailPanelDetailPanelLoadedPayload, StdUiDetailPanelDetailPanelOrbitalManifest, type StdUiDetailPanelDetailPanelOrbitalParams, type StdUiDetailPanelEventKey, type StdUiDetailPanelParams, type StdUiDialogConfig, type StdUiDialogEventKey, type StdUiDialogParams, type StdUiDialogueBubbleConfig, type StdUiDialogueBubbleEventKey, type StdUiDialogueBubbleParams, type StdUiDividerConfig, type StdUiDividerEventKey, type StdUiDividerParams, type StdUiDocBreadcrumbConfig, type StdUiDocBreadcrumbEventKey, type StdUiDocBreadcrumbParams, type StdUiDocPaginationConfig, type StdUiDocPaginationEventKey, type StdUiDocPaginationParams, type StdUiDocSearchConfig, type StdUiDocSearchEventKey, type StdUiDocSearchParams, type StdUiDocSidebarConfig, type StdUiDocSidebarEventKey, type StdUiDocSidebarParams, type StdUiDocTocConfig, type StdUiDocTocEventKey, type StdUiDocTocParams, type StdUiDocumentViewerConfig, type StdUiDocumentViewerEventKey, type StdUiDocumentViewerParams, type StdUiDrawGroupConfig, type StdUiDrawGroupEventKey, type StdUiDrawGroupParams, type StdUiDrawMeshConfig, type StdUiDrawMeshEventKey, type StdUiDrawMeshParams, type StdUiDrawShapeConfig, type StdUiDrawShapeEventKey, type StdUiDrawShapeLayerConfig, type StdUiDrawShapeLayerEventKey, type StdUiDrawShapeLayerParams, type StdUiDrawShapeParams, type StdUiDrawSpriteConfig, type StdUiDrawSpriteEventKey, type StdUiDrawSpriteLayerConfig, type StdUiDrawSpriteLayerEventKey, type StdUiDrawSpriteLayerParams, type StdUiDrawSpriteParams, type StdUiDrawTextConfig, type StdUiDrawTextEventKey, type StdUiDrawTextLayerConfig, type StdUiDrawTextLayerEventKey, type StdUiDrawTextLayerParams, type StdUiDrawTextParams, type StdUiDrawerClosePayload, type StdUiDrawerConfig, type StdUiDrawerEventKey, type StdUiDrawerOpenPayload, type StdUiDrawerParams, type StdUiDrawerSlotConfig, StdUiDrawerSlotDrawerSlotOrbitalManifest, type StdUiDrawerSlotDrawerSlotOrbitalParams, type StdUiDrawerSlotEventKey, type StdUiDrawerSlotParams, type StdUiEdgeDecorationConfig, type StdUiEdgeDecorationEventKey, type StdUiEdgeDecorationParams, type StdUiEmojiPickerConfig, type StdUiEmojiPickerEventKey, type StdUiEmojiPickerParams, type StdUiEmojiPickerPickPayload, type StdUiEmptyStateActionPayload, type StdUiEmptyStateConfig, type StdUiEmptyStateEventKey, type StdUiEmptyStateParams, type StdUiEntityCardsConfig, type StdUiEntityCardsEntityCardsLoadedPayload, StdUiEntityCardsEntityCardsOrbitalManifest, type StdUiEntityCardsEntityCardsOrbitalParams, type StdUiEntityCardsEventKey, type StdUiEntityCardsParams, type StdUiEntityCardsViewPayload, type StdUiEntityListConfig, type StdUiEntityListEntityListLoadedPayload, StdUiEntityListEntityListOrbitalManifest, type StdUiEntityListEntityListOrbitalParams, type StdUiEntityListEventKey, type StdUiEntityListItemActionsPayload, type StdUiEntityListParams, type StdUiEntityListViewPayload, type StdUiEntityTableConfig, type StdUiEntityTableEntityTableLoadedPayload, StdUiEntityTableEntityTableOrbitalManifest, type StdUiEntityTableEntityTableOrbitalParams, type StdUiEntityTableEventKey, type StdUiEntityTableParams, type StdUiEntityTableViewPayload, type StdUiErrorBoundaryConfig, type StdUiErrorBoundaryEventKey, type StdUiErrorBoundaryParams, type StdUiErrorStateConfig, type StdUiErrorStateEventKey, type StdUiErrorStateParams, type StdUiErrorStateRetryPayload, type StdUiFeatureCardConfig, type StdUiFeatureCardEventKey, type StdUiFeatureCardParams, type StdUiFeatureGridConfig, type StdUiFeatureGridEventKey, type StdUiFeatureGridOrganismConfig, type StdUiFeatureGridOrganismEventKey, type StdUiFeatureGridOrganismFeatureGridOrganismLoadedPayload, StdUiFeatureGridOrganismFeatureGridOrganismOrbitalManifest, type StdUiFeatureGridOrganismFeatureGridOrganismOrbitalParams, type StdUiFeatureGridOrganismParams, type StdUiFeatureGridParams, type StdUiFileTreeConfig, type StdUiFileTreeEventKey, type StdUiFileTreeFileSelectPayload, type StdUiFileTreeParams, type StdUiFilterGroupClearAllPayload, type StdUiFilterGroupClearPayload, type StdUiFilterGroupConfig, type StdUiFilterGroupEventKey, type StdUiFilterGroupEventPayload, type StdUiFilterGroupFilterChangePayload, type StdUiFilterGroupParams, type StdUiFilterPillClickPayload, type StdUiFilterPillConfig, type StdUiFilterPillEventKey, type StdUiFilterPillParams, type StdUiFilterPillRemovePayload, type StdUiFlexConfig, type StdUiFlexEventKey, type StdUiFlexParams, type StdUiFlipCardConfig, type StdUiFlipCardEventKey, type StdUiFlipCardFlipPayload, type StdUiFlipCardParams, type StdUiFlipContainerClickPayload, type StdUiFlipContainerConfig, type StdUiFlipContainerEventKey, type StdUiFlipContainerParams, type StdUiFloatingActionButtonActionPayload, type StdUiFloatingActionButtonClickPayload, type StdUiFloatingActionButtonConfig, type StdUiFloatingActionButtonEventKey, type StdUiFloatingActionButtonParams, type StdUiFormActionsConfig, type StdUiFormActionsEventKey, type StdUiFormActionsParams, type StdUiFormCancelPayload, type StdUiFormConfig, type StdUiFormEventKey, type StdUiFormFieldChangePayload, type StdUiFormFieldConfig, type StdUiFormFieldEventKey, type StdUiFormFieldParams, type StdUiFormFormLoadedPayload, StdUiFormFormOrbitalManifest, type StdUiFormFormOrbitalParams, type StdUiFormLayoutConfig, type StdUiFormLayoutEventKey, type StdUiFormLayoutParams, type StdUiFormParams, type StdUiFormSectionCancelPayload, type StdUiFormSectionConfig, type StdUiFormSectionEventKey, type StdUiFormSectionFieldChangePayload, type StdUiFormSectionFormSectionLoadedPayload, StdUiFormSectionFormSectionOrbitalManifest, type StdUiFormSectionFormSectionOrbitalParams, type StdUiFormSectionHeaderConfig, type StdUiFormSectionHeaderEventKey, type StdUiFormSectionHeaderParams, type StdUiFormSectionHeaderTogglePayload, type StdUiFormSectionParams, type StdUiFormSectionSubmitPayload, type StdUiFormSubmitPayload, type StdUiGameAudioToggleConfig, type StdUiGameAudioToggleEventKey, type StdUiGameAudioToggleParams, type StdUiGameHudConfig, type StdUiGameHudEventKey, type StdUiGameHudParams, type StdUiGameIconConfig, type StdUiGameIconEventKey, type StdUiGameIconParams, type StdUiGameMenuConfig, type StdUiGameMenuEventKey, type StdUiGameMenuParams, type StdUiGameMenuSelectPayload, type StdUiGeometricPatternConfig, type StdUiGeometricPatternEventKey, type StdUiGeometricPatternParams, type StdUiGradientDividerConfig, type StdUiGradientDividerEventKey, type StdUiGradientDividerParams, type StdUiGraphCanvasBadgeClickPayload, type StdUiGraphCanvasConfig, type StdUiGraphCanvasEventKey, type StdUiGraphCanvasMarkClickPayload, type StdUiGraphCanvasNodeClickPayload, type StdUiGraphCanvasNodeDoubleClickPayload, type StdUiGraphCanvasParams, type StdUiGraphViewConfig, type StdUiGraphViewEventKey, type StdUiGraphViewNodeClickPayload, type StdUiGraphViewNodeHoverPayload, type StdUiGraphViewParams, type StdUiGridConfig, type StdUiGridEventKey, type StdUiGridParams, type StdUiHeaderConfig, type StdUiHeaderEventKey, type StdUiHeaderLogoClickPayload, type StdUiHeaderMenuTogglePayload, type StdUiHeaderParams, type StdUiHeaderSearchPayload, type StdUiHeaderUserClickPayload, type StdUiHealthBarConfig, type StdUiHealthBarEventKey, type StdUiHealthBarParams, type StdUiHeroOrganismConfig, type StdUiHeroOrganismEventKey, type StdUiHeroOrganismHeroOrganismLoadedPayload, StdUiHeroOrganismHeroOrganismOrbitalManifest, type StdUiHeroOrganismHeroOrganismOrbitalParams, type StdUiHeroOrganismParams, type StdUiHeroSectionConfig, type StdUiHeroSectionEventKey, type StdUiHeroSectionParams, type StdUiHstackActionPayload, type StdUiHstackConfig, type StdUiHstackEventKey, type StdUiHstackParams, type StdUiIconConfig, type StdUiIconEventKey, type StdUiIconParams, type StdUiImportPreviewTreeCancelPayload, type StdUiImportPreviewTreeConfig, type StdUiImportPreviewTreeConfirmPayload, type StdUiImportPreviewTreeEventKey, type StdUiImportPreviewTreeParams, type StdUiImportProgressConfig, type StdUiImportProgressEventKey, type StdUiImportProgressParams, type StdUiImportSourcePickerConfig, type StdUiImportSourcePickerEventKey, type StdUiImportSourcePickerParams, type StdUiImportSourcePickerSelectPayload, type StdUiInfiniteScrollSentinelConfig, type StdUiInfiniteScrollSentinelEventKey, type StdUiInfiniteScrollSentinelLoadMorePayload, type StdUiInfiniteScrollSentinelParams, type StdUiInputActionPayload, type StdUiInputChangePayload, type StdUiInputClearPayload, type StdUiInputConfig, type StdUiInputEventKey, type StdUiInputGroupActionPayload, type StdUiInputGroupChangePayload, type StdUiInputGroupClearPayload, type StdUiInputGroupConfig, type StdUiInputGroupEventKey, type StdUiInputGroupParams, type StdUiInputParams, type StdUiInstallBoxConfig, type StdUiInstallBoxEventKey, type StdUiInstallBoxParams, type StdUiJazariStateMachineConfig, type StdUiJazariStateMachineEventKey, type StdUiJazariStateMachineParams, type StdUiLabelConfig, type StdUiLabelEventKey, type StdUiLabelParams, type StdUiLawReferenceTooltipConfig, type StdUiLawReferenceTooltipEventKey, type StdUiLawReferenceTooltipParams, type StdUiLearningCanvasConfig, type StdUiLearningCanvasEventKey, type StdUiLearningCanvasParams, type StdUiLearningCanvasShapeClickPayload, type StdUiLearningCanvasShapeHoverPayload, type StdUiLightboxClosePayload, type StdUiLightboxConfig, type StdUiLightboxEventKey, type StdUiLightboxIndexChangePayload, type StdUiLightboxOpenPayload, type StdUiLightboxParams, type StdUiLikertScaleChangePayload, type StdUiLikertScaleConfig, type StdUiLikertScaleEventKey, type StdUiLikertScaleParams, type StdUiLineChartConfig, type StdUiLineChartEventKey, type StdUiLineChartParams, type StdUiLoadingStateConfig, type StdUiLoadingStateEventKey, type StdUiLoadingStateParams, type StdUiMapViewConfig, type StdUiMapViewEventKey, type StdUiMapViewMapClickPayload, type StdUiMapViewMarkerClickPayload, type StdUiMapViewParams, type StdUiMarkdownContentConfig, type StdUiMarkdownContentEventKey, type StdUiMarkdownContentParams, type StdUiMarketingFooterConfig, type StdUiMarketingFooterEventKey, type StdUiMarketingFooterParams, type StdUiMarketingStatCardConfig, type StdUiMarketingStatCardEventKey, type StdUiMarketingStatCardParams, type StdUiMasterDetailConfig, type StdUiMasterDetailEventKey, type StdUiMasterDetailLayoutConfig, type StdUiMasterDetailLayoutEventKey, StdUiMasterDetailLayoutMasterDetailLayoutOrbitalManifest, type StdUiMasterDetailLayoutMasterDetailLayoutOrbitalParams, type StdUiMasterDetailLayoutParams, type StdUiMasterDetailMasterDetailLoadedPayload, StdUiMasterDetailMasterDetailOrbitalManifest, type StdUiMasterDetailMasterDetailOrbitalParams, type StdUiMasterDetailParams, type StdUiMathCanvasConfig, type StdUiMathCanvasEventKey, type StdUiMathCanvasParams, type StdUiMathCanvasShapeClickPayload, type StdUiMatrixQuestionChangePayload, type StdUiMatrixQuestionConfig, type StdUiMatrixQuestionEventKey, type StdUiMatrixQuestionParams, type StdUiMediaGalleryConfig, type StdUiMediaGalleryEventKey, type StdUiMediaGalleryMediaGalleryLoadedPayload, StdUiMediaGalleryMediaGalleryOrbitalManifest, type StdUiMediaGalleryMediaGalleryOrbitalParams, type StdUiMediaGalleryParams, type StdUiMediaGallerySelectionPayload, type StdUiMenuConfig, type StdUiMenuEventKey, type StdUiMenuParams, type StdUiMeterConfig, type StdUiMeterEventKey, type StdUiMeterParams, type StdUiModalClosePayload, type StdUiModalConfig, type StdUiModalEventKey, type StdUiModalExitedPayload, type StdUiModalOpenPayload, type StdUiModalParams, type StdUiModalSlotConfig, type StdUiModalSlotEventKey, StdUiModalSlotModalSlotOrbitalManifest, type StdUiModalSlotModalSlotOrbitalParams, type StdUiModalSlotParams, type StdUiModuleCardConfig, type StdUiModuleCardEventKey, type StdUiModuleCardParams, type StdUiNavigationConfig, type StdUiNavigationEventKey, type StdUiNavigationParams, type StdUiNotificationActionPayload, type StdUiNotificationConfig, type StdUiNotificationDismissPayload, type StdUiNotificationEventKey, type StdUiNotificationParams, type StdUiNumberStepperActionPayload, type StdUiNumberStepperChangePayload, type StdUiNumberStepperConfig, type StdUiNumberStepperEventKey, type StdUiNumberStepperParams, type StdUiOptionConstraintGroupChangePayload, type StdUiOptionConstraintGroupConfig, type StdUiOptionConstraintGroupEventKey, type StdUiOptionConstraintGroupParams, type StdUiOrbitalVisualizationClickPayload, type StdUiOrbitalVisualizationConfig, type StdUiOrbitalVisualizationEventKey, type StdUiOrbitalVisualizationParams, type StdUiOverlayActionPayload, type StdUiOverlayConfig, type StdUiOverlayEventKey, type StdUiOverlayParams, type StdUiPageHeaderBackPayload, type StdUiPageHeaderConfig, type StdUiPageHeaderEventKey, type StdUiPageHeaderParams, type StdUiPageHeaderTabChangePayload, type StdUiPageTransitionConfig, type StdUiPageTransitionEventKey, type StdUiPageTransitionParams, type StdUiPaginationConfig, type StdUiPaginationEventKey, type StdUiPaginationPageChangePayload, type StdUiPaginationPageSizeChangePayload, type StdUiPaginationParams, type StdUiPatternTileConfig, type StdUiPatternTileEventKey, type StdUiPatternTileParams, type StdUiPhysicsCanvasConfig, type StdUiPhysicsCanvasEventKey, type StdUiPhysicsCanvasParams, type StdUiPhysicsCanvasShapeClickPayload, type StdUiPopoverConfig, type StdUiPopoverEventKey, type StdUiPopoverOpenChangePayload, type StdUiPopoverParams, type StdUiPositionedCanvasConfig, type StdUiPositionedCanvasEventKey, type StdUiPositionedCanvasMovePayload, type StdUiPositionedCanvasParams, type StdUiPositionedCanvasPositionedCanvasLoadedPayload, type StdUiPositionedCanvasSelectPayload, type StdUiPresenceConfig, type StdUiPresenceEventKey, type StdUiPresenceParams, type StdUiPricingCardConfig, type StdUiPricingCardEventKey, type StdUiPricingCardParams, type StdUiPricingGridConfig, type StdUiPricingGridEventKey, type StdUiPricingGridParams, type StdUiPricingOrganismConfig, type StdUiPricingOrganismEventKey, type StdUiPricingOrganismParams, type StdUiPricingOrganismPricingOrganismLoadedPayload, StdUiPricingOrganismPricingOrganismOrbitalManifest, type StdUiPricingOrganismPricingOrganismOrbitalParams, type StdUiProgressBarConfig, type StdUiProgressBarEventKey, type StdUiProgressBarParams, type StdUiProgressDotsConfig, type StdUiProgressDotsDotClickPayload, type StdUiProgressDotsEventKey, type StdUiProgressDotsParams, type StdUiPullQuoteConfig, type StdUiPullQuoteEventKey, type StdUiPullQuoteParams, type StdUiPullToRefreshConfig, type StdUiPullToRefreshEventKey, type StdUiPullToRefreshParams, type StdUiPullToRefreshRefreshPayload, type StdUiQrScannerConfig, type StdUiQrScannerEventKey, type StdUiQrScannerParams, type StdUiQrScannerScanPayload, type StdUiQuizBlockConfig, type StdUiQuizBlockEventKey, type StdUiQuizBlockParams, type StdUiRadioActionPayload, type StdUiRadioConfig, type StdUiRadioEventKey, type StdUiRadioParams, type StdUiRangeSliderActionPayload, type StdUiRangeSliderChangePayload, type StdUiRangeSliderConfig, type StdUiRangeSliderEventKey, type StdUiRangeSliderParams, type StdUiReflectionBlockConfig, type StdUiReflectionBlockEventKey, type StdUiReflectionBlockParams, type StdUiRelationSelectChangePayload, type StdUiRelationSelectConfig, type StdUiRelationSelectEventKey, type StdUiRelationSelectParams, type StdUiRepeatableFormSectionAddPayload, type StdUiRepeatableFormSectionConfig, type StdUiRepeatableFormSectionEventKey, type StdUiRepeatableFormSectionParams, type StdUiRepeatableFormSectionRemovePayload, type StdUiRepeatableFormSectionReorderPayload, type StdUiReplyTreeConfig, type StdUiReplyTreeContinueThreadPayload, type StdUiReplyTreeEventKey, type StdUiReplyTreeFlagPayload, type StdUiReplyTreeParams, type StdUiReplyTreeReplyPayload, type StdUiReplyTreeReplyTreeLoadedPayload, type StdUiReplyTreeVotePayload, type StdUiRichBlockEditorChangePayload, type StdUiRichBlockEditorConfig, type StdUiRichBlockEditorEventKey, type StdUiRichBlockEditorParams, type StdUiRichBlockEditorRichBlockEditorLoadedPayload, type StdUiRuntimeDebuggerConfig, type StdUiRuntimeDebuggerEventKey, type StdUiRuntimeDebuggerParams, StdUiRuntimeDebuggerRuntimeDebuggerOrbitalManifest, type StdUiRuntimeDebuggerRuntimeDebuggerOrbitalParams, type StdUiScaledDiagramConfig, type StdUiScaledDiagramEventKey, type StdUiScaledDiagramParams, type StdUiScoreDisplayConfig, type StdUiScoreDisplayEventKey, type StdUiScoreDisplayParams, type StdUiSearchInputConfig, type StdUiSearchInputEventKey, type StdUiSearchInputEventPayload, type StdUiSearchInputParams, type StdUiSearchInputSearchPayload, type StdUiSectionConfig, type StdUiSectionEventKey, type StdUiSectionHeaderConfig, type StdUiSectionHeaderEventKey, type StdUiSectionHeaderParams, type StdUiSectionParams, type StdUiSegmentRendererConfig, type StdUiSegmentRendererEventKey, type StdUiSegmentRendererParams, StdUiSegmentRendererSegmentRendererOrbitalManifest, type StdUiSegmentRendererSegmentRendererOrbitalParams, type StdUiSelectActionPayload, type StdUiSelectChangePayload, type StdUiSelectConfig, type StdUiSelectEventKey, type StdUiSelectParams, type StdUiSelectValueChangePayload, type StdUiSequenceBarConfig, type StdUiSequenceBarEventKey, type StdUiSequenceBarParams, type StdUiSequenceBarSlotDropPayload, type StdUiSequenceBarSlotRemovePayload, type StdUiServiceCatalogConfig, type StdUiServiceCatalogEventKey, type StdUiServiceCatalogParams, type StdUiShowcaseCardConfig, type StdUiShowcaseCardEventKey, type StdUiShowcaseCardParams, type StdUiShowcaseOrganismConfig, type StdUiShowcaseOrganismEventKey, type StdUiShowcaseOrganismParams, type StdUiShowcaseOrganismShowcaseOrganismLoadedPayload, StdUiShowcaseOrganismShowcaseOrganismOrbitalManifest, type StdUiShowcaseOrganismShowcaseOrganismOrbitalParams, type StdUiSidePanelClosePayload, type StdUiSidePanelConfig, type StdUiSidePanelEventKey, type StdUiSidePanelOpenPayload, type StdUiSidePanelParams, type StdUiSidebarClosePayload, type StdUiSidebarCollapseChangePayload, type StdUiSidebarConfig, type StdUiSidebarEventKey, type StdUiSidebarLogoClickPayload, type StdUiSidebarParams, type StdUiSignaturePadChangePayload, type StdUiSignaturePadClearPayload, type StdUiSignaturePadConfig, type StdUiSignaturePadEventKey, type StdUiSignaturePadParams, type StdUiSignaturePadSignPayload, type StdUiSimpleGridConfig, type StdUiSimpleGridEventKey, type StdUiSimpleGridParams, type StdUiSkeletonConfig, type StdUiSkeletonEventKey, type StdUiSkeletonParams, type StdUiSocialProofConfig, type StdUiSocialProofEventKey, type StdUiSocialProofParams, type StdUiSortableListConfig, type StdUiSortableListEventKey, type StdUiSortableListParams, type StdUiSortableListReorderPayload, type StdUiSortableListSortableListLoadedPayload, type StdUiSpacerConfig, type StdUiSpacerEventKey, type StdUiSpacerParams, type StdUiSparklineConfig, type StdUiSparklineEventKey, type StdUiSparklineParams, type StdUiSpinnerConfig, type StdUiSpinnerEventKey, type StdUiSpinnerParams, type StdUiSplitConfig, type StdUiSplitEventKey, type StdUiSplitPaneConfig, type StdUiSplitPaneEventKey, type StdUiSplitPaneParams, StdUiSplitPaneSplitPaneOrbitalManifest, type StdUiSplitPaneSplitPaneOrbitalParams, type StdUiSplitParams, type StdUiSplitSectionConfig, type StdUiSplitSectionEventKey, type StdUiSplitSectionParams, type StdUiStackActionPayload, type StdUiStackConfig, type StdUiStackEventKey, type StdUiStackParams, type StdUiStarRatingActionPayload, type StdUiStarRatingChangePayload, type StdUiStarRatingConfig, type StdUiStarRatingEventKey, type StdUiStarRatingParams, type StdUiStatBadgeConfig, type StdUiStatBadgeEventKey, type StdUiStatBadgeParams, type StdUiStatCardConfig, type StdUiStatCardEventKey, type StdUiStatCardParams, type StdUiStatCardStatCardLoadedPayload, StdUiStatCardStatCardOrbitalManifest, type StdUiStatCardStatCardOrbitalParams, type StdUiStatDisplayConfig, type StdUiStatDisplayEventKey, type StdUiStatDisplayParams, type StdUiStateGraphConfig, type StdUiStateGraphEventKey, type StdUiStateGraphNodeClickPayload, type StdUiStateGraphParams, type StdUiStateJsonViewConfig, type StdUiStateJsonViewEventKey, type StdUiStateJsonViewParams, type StdUiStateMachineViewConfig, type StdUiStateMachineViewEventKey, type StdUiStateMachineViewParams, StdUiStateMachineViewStateMachineViewOrbitalManifest, type StdUiStateMachineViewStateMachineViewOrbitalParams, type StdUiStatsGridConfig, type StdUiStatsGridEventKey, type StdUiStatsGridParams, type StdUiStatsOrganismConfig, type StdUiStatsOrganismEventKey, type StdUiStatsOrganismParams, type StdUiStatsOrganismStatsOrganismLoadedPayload, StdUiStatsOrganismStatsOrganismOrbitalManifest, type StdUiStatsOrganismStatsOrganismOrbitalParams, type StdUiStatusDotConfig, type StdUiStatusDotEventKey, type StdUiStatusDotParams, type StdUiStepFlowConfig, type StdUiStepFlowEventKey, type StdUiStepFlowOrganismConfig, type StdUiStepFlowOrganismEventKey, type StdUiStepFlowOrganismParams, type StdUiStepFlowOrganismStepFlowOrganismLoadedPayload, StdUiStepFlowOrganismStepFlowOrganismOrbitalManifest, type StdUiStepFlowOrganismStepFlowOrganismOrbitalParams, type StdUiStepFlowParams, type StdUiSubagentTracePanelClosePayload, type StdUiSubagentTracePanelConfig, type StdUiSubagentTracePanelEventKey, type StdUiSubagentTracePanelOpenPayload, type StdUiSubagentTracePanelParams, StdUiSubagentTracePanelSubagentTracePanelOrbitalManifest, type StdUiSubagentTracePanelSubagentTracePanelOrbitalParams, type StdUiSvgBranchConfig, type StdUiSvgBranchEventKey, type StdUiSvgBranchParams, type StdUiSvgConnectionConfig, type StdUiSvgConnectionEventKey, type StdUiSvgConnectionParams, type StdUiSvgFlowConfig, type StdUiSvgFlowEventKey, type StdUiSvgFlowParams, type StdUiSvgGridConfig, type StdUiSvgGridEventKey, type StdUiSvgGridParams, type StdUiSvgLobeConfig, type StdUiSvgLobeEventKey, type StdUiSvgLobeParams, type StdUiSvgMeshConfig, type StdUiSvgMeshEventKey, type StdUiSvgMeshParams, type StdUiSvgMorphConfig, type StdUiSvgMorphEventKey, type StdUiSvgMorphParams, type StdUiSvgNodeConfig, type StdUiSvgNodeEventKey, type StdUiSvgNodeParams, type StdUiSvgPulseConfig, type StdUiSvgPulseEventKey, type StdUiSvgPulseParams, type StdUiSvgRingConfig, type StdUiSvgRingEventKey, type StdUiSvgRingParams, type StdUiSvgShieldConfig, type StdUiSvgShieldEventKey, type StdUiSvgShieldParams, type StdUiSvgStackConfig, type StdUiSvgStackEventKey, type StdUiSvgStackParams, type StdUiSwipeableRowConfig, type StdUiSwipeableRowEventKey, type StdUiSwipeableRowParams, type StdUiSwitchChangePayload, type StdUiSwitchConfig, type StdUiSwitchEventKey, type StdUiSwitchParams, type StdUiTabbedContainerConfig, type StdUiTabbedContainerEventKey, type StdUiTabbedContainerParams, type StdUiTabbedContainerTabChangePayload, StdUiTabbedContainerTabbedContainerOrbitalManifest, type StdUiTabbedContainerTabbedContainerOrbitalParams, type StdUiTableViewConfig, type StdUiTableViewEventKey, type StdUiTableViewParams, type StdUiTableViewSelectPayload, type StdUiTableViewSortPayload, type StdUiTableViewTableViewLoadedPayload, type StdUiTableViewViewPayload, type StdUiTabsConfig, type StdUiTabsEventKey, type StdUiTabsParams, type StdUiTabsTabChangePayload, type StdUiTagCloudConfig, type StdUiTagCloudEventKey, type StdUiTagCloudParams, type StdUiTagInputAddPayload, type StdUiTagInputChangePayload, type StdUiTagInputConfig, type StdUiTagInputEventKey, type StdUiTagInputParams, type StdUiTagInputRemovePayload, type StdUiTeamCardConfig, type StdUiTeamCardEventKey, type StdUiTeamCardParams, type StdUiTeamOrganismConfig, type StdUiTeamOrganismEventKey, type StdUiTeamOrganismParams, type StdUiTeamOrganismTeamOrganismLoadedPayload, StdUiTeamOrganismTeamOrganismOrbitalManifest, type StdUiTeamOrganismTeamOrganismOrbitalParams, type StdUiTextHighlightActionPayload, type StdUiTextHighlightClickPayload, type StdUiTextHighlightConfig, type StdUiTextHighlightEventKey, type StdUiTextHighlightHoverPayload, type StdUiTextHighlightMouseEnterPayload, type StdUiTextHighlightMouseLeavePayload, type StdUiTextHighlightParams, type StdUiTextareaActionPayload, type StdUiTextareaChangePayload, type StdUiTextareaConfig, type StdUiTextareaEventKey, type StdUiTextareaParams, type StdUiThemeToggleConfig, type StdUiThemeToggleEventKey, type StdUiThemeToggleParams, type StdUiTimeSlotCellClickPayload, type StdUiTimeSlotCellConfig, type StdUiTimeSlotCellEventKey, type StdUiTimeSlotCellParams, type StdUiTimelineConfig, type StdUiTimelineEventKey, type StdUiTimelineParams, type StdUiTimelineTimelineLoadedPayload, StdUiTimelineTimelineOrbitalManifest, type StdUiTimelineTimelineOrbitalParams, type StdUiTimelineViewPayload, type StdUiTimerDisplayConfig, type StdUiTimerDisplayEventKey, type StdUiTimerDisplayParams, StdUiTimerDisplayTimerDisplayOrbitalManifest, type StdUiTimerDisplayTimerDisplayOrbitalParams, type StdUiToastSlotConfig, type StdUiToastSlotEventKey, type StdUiToastSlotParams, StdUiToastSlotToastSlotOrbitalManifest, type StdUiToastSlotToastSlotOrbitalParams, type StdUiTooltipConfig, type StdUiTooltipEventKey, type StdUiTooltipParams, type StdUiTraitFrameConfig, type StdUiTraitFrameEventKey, type StdUiTraitFrameParams, type StdUiTraitSlotClickPayload, type StdUiTraitSlotConfig, type StdUiTraitSlotDragStartPayload, type StdUiTraitSlotDropPayload, type StdUiTraitSlotEventKey, type StdUiTraitSlotItemDropPayload, type StdUiTraitSlotParams, type StdUiTraitSlotRemovePayload, type StdUiTrendIndicatorConfig, type StdUiTrendIndicatorEventKey, type StdUiTrendIndicatorParams, type StdUiTypewriterTextCompletePayload, type StdUiTypewriterTextConfig, type StdUiTypewriterTextEventKey, type StdUiTypewriterTextParams, type StdUiTypographyConfig, type StdUiTypographyEventKey, type StdUiTypographyParams, type StdUiUiSlotRendererConfig, type StdUiUiSlotRendererEventKey, type StdUiUiSlotRendererParams, StdUiUiSlotRendererUiSlotRendererOrbitalManifest, type StdUiUiSlotRendererUiSlotRendererOrbitalParams, type StdUiUploadDropZoneActionPayload, type StdUiUploadDropZoneConfig, type StdUiUploadDropZoneEventKey, type StdUiUploadDropZoneParams, type StdUiVersionDiffConfig, type StdUiVersionDiffEventKey, type StdUiVersionDiffParams, type StdUiVersionDiffRevertPayload, type StdUiVersionDiffSelectAfterPayload, type StdUiVersionDiffSelectBeforePayload, type StdUiViolationAlertConfig, type StdUiViolationAlertDismissPayload, type StdUiViolationAlertEventKey, type StdUiViolationAlertNavigateToFieldPayload, type StdUiViolationAlertParams, type StdUiVoteStackConfig, type StdUiVoteStackEventKey, type StdUiVoteStackParams, type StdUiVoteStackVotePayload, type StdUiVstackActionPayload, type StdUiVstackConfig, type StdUiVstackEventKey, type StdUiVstackParams, type StdUiWizardContainerBackPayload, type StdUiWizardContainerCompletePayload, type StdUiWizardContainerConfig, type StdUiWizardContainerEventKey, type StdUiWizardContainerNextPayload, type StdUiWizardContainerParams, type StdUiWizardContainerStepChangePayload, type StdUiWizardNavigationBackClickPayload, type StdUiWizardNavigationBackPayload, type StdUiWizardNavigationCompleteClickPayload, type StdUiWizardNavigationCompletePayload, type StdUiWizardNavigationConfig, type StdUiWizardNavigationEventKey, type StdUiWizardNavigationNextClickPayload, type StdUiWizardNavigationNextPayload, type StdUiWizardNavigationParams, type StdUiWizardProgressConfig, type StdUiWizardProgressEventKey, type StdUiWizardProgressParams, type StdUiWizardProgressStepClickPayload, type StdVersionHistoryComparePayload, type StdVersionHistoryConfig, type StdVersionHistoryEventKey, type StdVersionHistoryOpenRevisionPayload, type StdVersionHistoryParams, type StdVersionHistoryRevisionLoadFailedPayload, type StdVersionHistoryRevisionLoadedPayload, StdVersionHistoryRevisionOrbitalManifest, type StdVersionHistoryRevisionOrbitalParams, type StdVersionHistoryRevisionRollbackFailedPayload, type StdVersionHistoryRevisionRolledBackPayload, type StdVersionHistoryRollbackPayload, type StdVoteConfig, type StdVoteEventKey, type StdVoteParams, type StdVoteVoteCastFailedPayload, type StdVoteVoteCastedPayload, type StdVoteVoteLoadFailedPayload, type StdVoteVoteLoadedPayload, StdVoteVoteOrbitalManifest, type StdVoteVoteOrbitalParams, type StdVoteVotePayload, type StdWeightValidatorConfig, type StdWeightValidatorEventKey, StdWeightValidatorMlWeightValidatorOrbitalManifest, type StdWeightValidatorMlWeightValidatorOrbitalParams, type StdWeightValidatorParams, type StdWeightValidatorWeightsAcceptedPayload, type StdWeightValidatorWeightsRejectedPayload, type StdWizardAdvancePayload, type StdWizardCancelPayload, type StdWizardConfig, type StdWizardEventKey, type StdWizardParams, type StdWizardWizardLoadFailedPayload, type StdWizardWizardLoadedPayload, StdWizardWizardOrbitalManifest, type StdWizardWizardOrbitalParams, type StdWizardWizardSaveFailedPayload, type StdWizardWizardSavedPayload, type StdWorldmapBoard2dConfig, type StdWorldmapBoard2dParams, StdWorldmapBoard2dWorldMapBoard2DOrbitalManifest, type StdWorldmapBoard2dWorldMapBoard2DOrbitalParams, type StdXpConfig, type StdXpEventKey, type StdXpHealPayload, type StdXpParams, dispatchOrbitalFactory, getOrbitalFactoryManifest, isStdAgentBuilderAgentBuilderOrbitalParams, isStdAgentCompletionAgentCompletionOrbitalParams, isStdAgentContextAgentContextOrbitalParams, isStdAgentFixLoopAgentFixLoopOrbitalParams, isStdAgentMemoryAgentMemoryOrbitalParams, isStdAgentPlannerAgentPlannerOrbitalParams, isStdAgentRabitCoordinatorOrbitalParams, isStdAgentRabitOrbitalProcessOrbitalParams, isStdAgentSessionAgentSessionOrbitalParams, isStdAgentToolCallAgentToolCallOrbitalParams, isStdAgentToolLoopAgentToolLoopOrbitalParams, isStdAgentTraceAgentTraceOrbitalParams, isStdAnimTickAnimTickOrbitalParams, isStdAppLayoutAppLayoutOrbitalParams, isStdAppSearchAppSearchOrbitalParams, isStdApprovalGateApprovalGateOrbitalParams, isStdArcadeBoard3dArcadeBoard3DFrameOrbitalParams, isStdAuditCaptureAuditCaptureOrbitalParams, isStdBillableHourBillableHourOrbitalParams, isStdBoardBoardOrbitalParams, isStdBrowseBrowseItemOrbitalParams, isStdCacheAsideCacheEntryOrbitalParams, isStdCalendarCalendarEventOrbitalParams, isStdCascadeOnDeleteCascadeOnDeleteOrbitalParams, isStdCircuitBreakerServiceNodeOrbitalParams, isStdConfirmationConfirmActionOrbitalParams, isStdCooldownCooldownOrbitalParams, isStdCrewBoard2dCrewBoard2DOrbitalParams, isStdCrossReferenceCrossReferenceOrbitalParams, isStdDashboardGridEmbeddedDashboardGridEmbeddedOrbitalParams, isStdDataCollectorMlDataCollectorOrbitalParams, isStdDataErasureDataErasureOrbitalParams, isStdDateRangeDateRangeOrbitalParams, isStdDungeonBoard2dDungeonBoard2DOrbitalParams, isStdEscalatingDecisionEscalatingDecisionOrbitalParams, isStdEsignFlowSignatureSessionOrbitalParams, isStdEsignRequestESignRequestOrbitalParams, isStdEventLogEventLogOrbitalParams, isStdExportExportOrbitalParams, isStdFileStoreStoredFileOrbitalParams, isStdFilterFilterTargetOrbitalParams, isStdFormAdvancedFormEntryOrbitalParams, isStdGalleryGalleryItemOrbitalParams, isStdGameClockGameClockOrbitalParams, isStdGeosearchGeoSearchResultOrbitalParams, isStdGraphBuilderGraphBuilderOrbitalParams, isStdGraphsGraphItemOrbitalParams, isStdImageUploadMultiUploadedImageOrbitalParams, isStdKnowledgeTracingKnowledgeTracingOrbitalParams, isStdLifecycleLifecycleOrbitalParams, isStdListListItemOrbitalParams, isStdMarketBoard3dMarketBoard3DOrbitalParams, isStdMigrationJobMigrationJobOrbitalParams, isStdMlClassifyMlClassifyOrbitalParams, isStdMlExactCheckMlExactCheckOrbitalParams, isStdMlInferMlInferOrbitalParams, isStdMlLabelCaptureMlLabelCaptureOrbitalParams, isStdMlLookupMlLookupOrbitalParams, isStdMlPosteriorMlPosteriorOrbitalParams, isStdMlSimilarityMlSimilarityOrbitalParams, isStdModQueueModQueueItemOrbitalParams, isStdModalModalRecordOrbitalParams, isStdMultiPartyFlowMultiPartyFlowOrbitalParams, isStdNotifyOnEventNotifyOnEventOrbitalParams, isStdObjectiveBoard3dObjectiveBoard3DOrbitalParams, isStdPaginationPagedItemOrbitalParams, isStdRateLimiterRateBucketOrbitalParams, isStdRatingReviewRatingReviewOrbitalParams, isStdRecurrenceRecurrenceOrbitalParams, isStdRelatedRelatedItemOrbitalParams, isStdReminderSchedulerReminderSchedulerOrbitalParams, isStdRichEditorDocumentOrbitalParams, isStdRowAccessControlRowAccessControlOrbitalParams, isStdSavedSearchSavedSearchOrbitalParams, isStdScatterScatterItemOrbitalParams, isStdSearchSearchResultOrbitalParams, isStdSelectionSelectableItemOrbitalParams, isStdSignatureCaptureSignatureCaptureOrbitalParams, isStdStatsStatsItemOrbitalParams, isStdStatusLifecycleControlStatusLifecycleControlOrbitalParams, isStdStatusLifecycleStatusLifecycleOrbitalParams, isStdStepFlowStepFlowOrbitalParams, isStdSurvivalBoard3dSurvivalBoard3DOrbitalParams, isStdTabsTabsItemOrbitalParams, isStdTacticsBoard2dTacticsBoard2DOrbitalParams, isStdTacticsBoard3dTacticsBoard3DOrbitalParams, isStdTagTaxonomyTagTaxonomyOrbitalParams, isStdThreadThreadPostOrbitalParams, isStdTokenizerMlTokenizerOrbitalParams, isStdUiBookChapterViewBookChapterViewOrbitalParams, isStdUiBookCoverPageBookCoverPageOrbitalParams, isStdUiBookNavBarBookNavBarOrbitalParams, isStdUiBookTableOfContentsBookTableOfContentsOrbitalParams, isStdUiBookViewerBookViewerOrbitalParams, isStdUiCaseStudyOrganismCaseStudyOrganismOrbitalParams, isStdUiChatBarChatBarOrbitalParams, isStdUiCodeRunnerPanelCodeRunnerPanelOrbitalParams, isStdUiDashboardGridDashboardGridOrbitalParams, isStdUiDetailPanelDetailPanelOrbitalParams, isStdUiDrawerSlotDrawerSlotOrbitalParams, isStdUiEntityCardsEntityCardsOrbitalParams, isStdUiEntityListEntityListOrbitalParams, isStdUiEntityTableEntityTableOrbitalParams, isStdUiFeatureGridOrganismFeatureGridOrganismOrbitalParams, isStdUiFormFormOrbitalParams, isStdUiFormSectionFormSectionOrbitalParams, isStdUiHeroOrganismHeroOrganismOrbitalParams, isStdUiMasterDetailLayoutMasterDetailLayoutOrbitalParams, isStdUiMasterDetailMasterDetailOrbitalParams, isStdUiMediaGalleryMediaGalleryOrbitalParams, isStdUiModalSlotModalSlotOrbitalParams, isStdUiPricingOrganismPricingOrganismOrbitalParams, isStdUiRuntimeDebuggerRuntimeDebuggerOrbitalParams, isStdUiSegmentRendererSegmentRendererOrbitalParams, isStdUiShowcaseOrganismShowcaseOrganismOrbitalParams, isStdUiSplitPaneSplitPaneOrbitalParams, isStdUiStatCardStatCardOrbitalParams, isStdUiStateMachineViewStateMachineViewOrbitalParams, isStdUiStatsOrganismStatsOrganismOrbitalParams, isStdUiStepFlowOrganismStepFlowOrganismOrbitalParams, isStdUiSubagentTracePanelSubagentTracePanelOrbitalParams, isStdUiTabbedContainerTabbedContainerOrbitalParams, isStdUiTeamOrganismTeamOrganismOrbitalParams, isStdUiTimelineTimelineOrbitalParams, isStdUiTimerDisplayTimerDisplayOrbitalParams, isStdUiToastSlotToastSlotOrbitalParams, isStdUiUiSlotRendererUiSlotRendererOrbitalParams, isStdVersionHistoryRevisionOrbitalParams, isStdVoteVoteOrbitalParams, isStdWeightValidatorMlWeightValidatorOrbitalParams, isStdWizardWizardOrbitalParams, isStdWorldmapBoard2dWorldMapBoard2DOrbitalParams, listOrganismOrbitalManifests, stdAgentBuilder, stdAgentBuilderAgentBuilderOrbital, stdAgentCompletion, stdAgentCompletionAgentCompletionOrbital, stdAgentCompletionCompletionGenerationTrait, stdAgentCompletionCompletionReadyTrait, stdAgentCompletionPage, stdAgentContext, stdAgentContextAgentContextOrbital, stdAgentContextContextCompactorTrait, stdAgentContextContextCounterTrait, stdAgentContextContextListenerTrait, stdAgentContextPage, stdAgentFixLoop, stdAgentFixLoopAgentFixLoopOrbital, stdAgentFixLoopFixLoopExecutionTrait, stdAgentFixLoopFixLoopListenerTrait, stdAgentFixLoopPage, stdAgentMemory, stdAgentMemoryAgentMemoryOrbital, stdAgentMemoryMemoryListenerTrait, stdAgentMemoryMemoryRecallTrait, stdAgentMemoryMemoryStoreTrait, stdAgentMemoryPage, stdAgentPlanner, stdAgentPlannerAgentPlannerOrbital, stdAgentPlannerPage, stdAgentPlannerPlannerExecutionTrait, stdAgentPlannerPlannerListenerTrait, stdAgentRabit, stdAgentRabitCoordinatorOrbital, stdAgentRabitOrbitalProcessOrbital, stdAgentSession, stdAgentSessionAgentSessionOrbital, stdAgentSessionPage, stdAgentSessionSessionListenerTrait, stdAgentSessionSessionReaderTrait, stdAgentSessionSessionWriterTrait, stdAgentToolCall, stdAgentToolCallAgentToolCallOrbital, stdAgentToolCallPage, stdAgentToolCallToolCallExecutionTrait, stdAgentToolCallToolCallReadyTrait, stdAgentToolLoop, stdAgentToolLoopAgentToolLoopOrbital, stdAgentToolLoopPage, stdAgentToolLoopToolLoopExecutionTrait, stdAgentToolLoopToolLoopListenerTrait, stdAgentTrace, stdAgentTraceAgentTraceOrbital, stdAgentTracePage, stdAgentTraceTraceEmitterTrait, stdAgentTraceTraceListenerTrait, stdAnimTick, stdAnimTickAnimTickOrbital, stdAnimTickPage, stdAnimTickTrait, stdAppLayout, stdAppLayoutAppLayoutOrbital, stdAppLayoutPage, stdAppLayoutTrait, stdAppSearch, stdAppSearchAppSearchIdleHintTrait, stdAppSearchAppSearchOrbital, stdAppSearchAppSearchTrait, stdAppSearchPage, stdApprovalGate, stdApprovalGateApprovalDividerTrait, stdApprovalGateApprovalGateOrbital, stdApprovalGateApprovalGateReviewTrait, stdApprovalGateApprovalQueueTitleTrait, stdApprovalGateCloseButtonTrait, stdApprovalGateErrorAlertTrait, stdApprovalGateErrorSpinnerTrait, stdApprovalGateLoadingSpinnerTrait, stdApprovalGateLoadingTextTrait, stdApprovalGatePage, stdApprovalGateShieldCheckIconTrait, stdArcadeBoard3d, stdArcadeBoard3dArcadeBoard3DFrameOrbital, stdArcadeFlow, stdArcadeFlowPage, stdArcadeFlowTrait, stdArcadePlay, stdArcadePlayPage, stdArcadePlayTrait, stdAuditCapture, stdAuditCaptureAuditCaptureOrbital, stdAuditCapturePage, stdAuditCaptureTrait, stdBillableHour, stdBillableHourBillableHourOrbital, stdBillableHourBillableHourTimesheetTrait, stdBillableHourDenseHoursTableTrait, stdBillableHourPage, stdBoard, stdBoardBoardOrbital, stdBoardPage, stdBoardTrait, stdBrowse, stdBrowseBrowseItemBrowseTrait, stdBrowseBrowseItemOrbital, stdBrowseDataGrid1Trait, stdBrowseDenseTableViewTrait, stdBrowseMasterListViewTrait, stdBrowsePage, stdCacheAside, stdCacheAsideCacheEntryCacheManagerTrait, stdCacheAsideCacheEntryOrbital, stdCacheAsideFetchButtonTrait, stdCacheAsideInlineAlertRender22Trait, stdCacheAsideInlineBadgeRender13Trait, stdCacheAsideInlineDividerRender10Trait, stdCacheAsideInlineDividerRender21Trait, stdCacheAsideInlineDividerRender3Trait, stdCacheAsideInlineEmptyStateRender26Trait, stdCacheAsideInlineEmptyStateRender4Trait, stdCacheAsideInlineIconRender11Trait, stdCacheAsideInlineIconRender15Trait, stdCacheAsideInlineIconRender18Trait, stdCacheAsideInlineIconRender1Trait, stdCacheAsideInlineIconRender7Trait, stdCacheAsideInlineSpinnerRender23Trait, stdCacheAsideInlineSpinnerRender24Trait, stdCacheAsideInlineSpinnerRender25Trait, stdCacheAsideInlineSpinnerRender27Trait, stdCacheAsideInlineSpinnerRender5Trait, stdCacheAsideInlineStatusDotRender20Trait, stdCacheAsideInlineStatusDotRender9Trait, stdCacheAsideInlineTypographyRender12Trait, stdCacheAsideInlineTypographyRender14Trait, stdCacheAsideInlineTypographyRender16Trait, stdCacheAsideInlineTypographyRender17Trait, stdCacheAsideInlineTypographyRender19Trait, stdCacheAsideInlineTypographyRender2Trait, stdCacheAsideInlineTypographyRender6Trait, stdCacheAsideInlineTypographyRender8Trait, stdCacheAsideInvalidateButtonTrait, stdCacheAsidePage, stdCacheAsideRefreshButtonTrait, stdCacheAsideRetryButtonTrait, stdCalendar, stdCalendarCalendarEventOrbital, stdCalendarPage, stdCalendarTrait, stdCascadeOnDelete, stdCascadeOnDeleteCascadeOnDeleteOrbital, stdCascadeOnDeletePage, stdCascadeOnDeleteTrait, stdChaseAi, stdChaseAiPage, stdChaseAiTrait, stdCircuitBreaker, stdCircuitBreakerActivityIconTrait, stdCircuitBreakerAlertTriangleIconTrait, stdCircuitBreakerCircuitDividerTrait, stdCircuitBreakerClosedStatusDotTrait, stdCircuitBreakerErrorAlertTrait, stdCircuitBreakerFailuresMeterTrait, stdCircuitBreakerFailuresStatTrait, stdCircuitBreakerHalfOpenStatusDotTrait, stdCircuitBreakerOpenStatusDotTrait, stdCircuitBreakerPage, stdCircuitBreakerResetButtonTrait, stdCircuitBreakerServiceNodeCircuitBreakerTrait, stdCircuitBreakerServiceNodeLabelTrait, stdCircuitBreakerServiceNodeOrbital, stdCircuitBreakerShieldIconTrait, stdCircuitBreakerStatsGridTrait, stdCircuitBreakerSuccessAlertTrait, stdCircuitBreakerSuccessesStatTrait, stdCircuitBreakerWarningAlertTrait, stdConfirmation, stdConfirmationConfirmActionOrbital, stdConfirmationPage, stdConfirmationTrait, stdCooldown, stdCooldownCooldownOrbital, stdCooldownPage, stdCooldownTrait, stdCrewBoard2d, stdCrewBoard2dCrewBoard2DOrbital, stdCrossReference, stdCrossReferenceCrossReferenceOrbital, stdCrossReferencePage, stdCrossReferenceTrait, stdDashboardGridEmbedded, stdDashboardGridEmbeddedDashboardGridEmbeddedOrbital, stdDashboardGridEmbeddedDashboardGridEmbeddedTrait, stdDashboardGridEmbeddedEmptyTileTrait, stdDashboardGridEmbeddedPage, stdDashboardGridEmbeddedSimpleGrid1Trait, stdDataCollector, stdDataCollectorMlDataCollectorOrbital, stdDataCollectorPage, stdDataCollectorTrait, stdDataErasure, stdDataErasureCloseButtonTrait, stdDataErasureDataErasureOrbital, stdDataErasureErasureDividerTrait, stdDataErasureErasureRequestsTitleTrait, stdDataErasureErasureWorkflowTrait, stdDataErasureErrorAlertTrait, stdDataErasureErrorSpinnerTrait, stdDataErasureLoadingSpinnerTrait, stdDataErasureLoadingTextTrait, stdDataErasurePage, stdDataErasureTrash2IconTrait, stdDateRange, stdDateRangeDateRangeOrbital, stdDateRangePage, stdDateRangeTrait, stdDungeonBoard2d, stdDungeonBoard2dDungeonBoard2DOrbital, stdDungeonCombat, stdDungeonCombatPage, stdDungeonCombatTrait, stdEscalatingDecision, stdEscalatingDecisionEscalatingDecisionOrbital, stdEsignFlow, stdEsignFlowPage, stdEsignFlowSignatureSessionBrowseTrait, stdEsignFlowSignatureSessionCreateTrait, stdEsignFlowSignatureSessionDeleteTrait, stdEsignFlowSignatureSessionOrbital, stdEsignFlowSignatureSessionPersistorTrait, stdEsignRequest, stdEsignRequestESignRequestOrbital, stdEsignRequestESignRequestSigningTrait, stdEsignRequestErrorAlertTrait, stdEsignRequestPage, stdEsignRequestRequestDataGridTrait, stdEsignRequestTitleHeadingTrait, stdEventLog, stdEventLogEventLogOrbital, stdEventLogPage, stdEventLogTrait, stdExport, stdExportButton1Trait, stdExportExportMenuTrait, stdExportExportOrbital, stdExportMenu1Trait, stdExportPage, stdFileStore, stdFileStorePage, stdFileStoreStoredFileOrbital, stdFileStoreTrait, stdFilter, stdFilterFilterTargetOrbital, stdFilterPage, stdFilterTrait, stdFormAdvanced, stdFormAdvancedFormEntryOrbital, stdFormAdvancedPage, stdFormAdvancedTrait, stdFxParticles, stdFxParticlesPage, stdFxParticlesTrait, stdGallery, stdGalleryErrorAlertTrait, stdGalleryGalleryIconTrait, stdGalleryGalleryItemGalleryTrait, stdGalleryGalleryItemOrbital, stdGalleryLoadingCaptionTrait, stdGalleryLoadingSpinnerTrait, stdGalleryMediaGalleryGridTrait, stdGalleryPage, stdGalleryReloadCaptionTrait, stdGalleryReloadSpinnerTrait, stdGalleryRetrySpinnerTrait, stdGalleryTitleDividerTrait, stdGameClock, stdGameClockGameClockOrbital, stdGameClockPage, stdGameClockTrait, stdGather, stdGatherPage, stdGatherTrait, stdGeosearch, stdGeosearchGeoSearchResultOrbital, stdGeosearchPage, stdGeosearchTrait, stdGold, stdGoldPage, stdGoldTrait, stdGraphBuilder, stdGraphBuilderGraphBuilderOrbital, stdGraphBuilderPage, stdGraphBuilderTrait, stdGraphs, stdGraphsGraphItemOrbital, stdGraphsPage, stdGraphsTrait, stdGridTactics, stdGridTacticsPage, stdGridTacticsTrait, stdHeroNav, stdHeroNavPage, stdHeroNavTrait, stdImageUploadMulti, stdImageUploadMultiPage, stdImageUploadMultiTrait, stdImageUploadMultiUploadedImageOrbital, stdImport, stdImportButton1Trait, stdImportImportMenuTrait, stdImportMenu1Trait, stdImportPage, stdKnowledgeTracing, stdKnowledgeTracingKnowledgeTracingOrbital, stdLearnArrangement, stdLearnArrangementPage, stdLearnArrangementTrait, stdLearnClassify, stdLearnClassifyPage, stdLearnClassifyTrait, stdLearnCompare, stdLearnComparePage, stdLearnCompareTrait, stdLearnCoupledSim, stdLearnCoupledSimPage, stdLearnCoupledSimTrait, stdLearnDerivation, stdLearnDerivationPage, stdLearnDerivationTrait, stdLearnDiagram, stdLearnDiagramPage, stdLearnDiagramTrait, stdLearnDoser, stdLearnDoserPage, stdLearnDoserTrait, stdLearnEstimate, stdLearnEstimatePage, stdLearnEstimateTrait, stdLearnGoalSeek, stdLearnGoalSeekPage, stdLearnGoalSeekTrait, stdLearnGridSim, stdLearnGridSimPage, stdLearnGridSimTrait, stdLearnHotspot, stdLearnHotspotPage, stdLearnHotspotTrait, stdLearnLiveSim, stdLearnLiveSimPage, stdLearnLiveSimTrait, stdLearnMeasure, stdLearnMeasurePage, stdLearnMeasureTrait, stdLearnParamExplorer, stdLearnParamExplorerPage, stdLearnParamExplorerTrait, stdLearnPerturb, stdLearnPerturbPage, stdLearnPerturbTrait, stdLearnPredict, stdLearnPredictPage, stdLearnPredictTrait, stdLearnSampleAccumulator, stdLearnSampleAccumulatorPage, stdLearnSampleAccumulatorTrait, stdLearnSandbox, stdLearnSandboxPage, stdLearnSandboxTrait, stdLearnScatterFit, stdLearnScatterFitPage, stdLearnScatterFitTrait, stdLearnScenario, stdLearnScenarioPage, stdLearnScenarioTrait, stdLearnSim3d, stdLearnSim3dPage, stdLearnSim3dTrait, stdLearnSpeedDrill, stdLearnSpeedDrillPage, stdLearnSpeedDrillTrait, stdLearnStepper, stdLearnStepperPage, stdLearnStepperTrait, stdLearnTour3d, stdLearnTour3dPage, stdLearnTour3dTrait, stdLearnTracePlayer, stdLearnTracePlayerPage, stdLearnTracePlayerTrait, stdLearnTransport, stdLearnTransportPage, stdLearnTransportTrait, stdLearnTree, stdLearnTreePage, stdLearnTreeTrait, stdLifecycle, stdLifecycleLifecycleOrbital, stdLifecyclePage, stdLifecycleTrait, stdList, stdListListItemBrowseTrait, stdListListItemCreateTrait, stdListListItemDeleteTrait, stdListListItemEditTrait, stdListListItemOrbital, stdListListItemPersistorTrait, stdListPage, stdMarketBoard3d, stdMarketBoard3dMarketBoard3DOrbital, stdMarketFlow, stdMarketFlowPage, stdMarketFlowTrait, stdMarketingArticle, stdMarketingArticlePage, stdMarketingArticleTrait, stdMarketingCta, stdMarketingCtaPage, stdMarketingCtaTrait, stdMarketingFeatures, stdMarketingFeaturesPage, stdMarketingFeaturesTrait, stdMarketingFooter, stdMarketingFooterPage, stdMarketingFooterTrait, stdMarketingHero, stdMarketingHeroPage, stdMarketingHeroTrait, stdMarketingNav, stdMarketingNavPage, stdMarketingNavTrait, stdMarketingPricing, stdMarketingPricingPage, stdMarketingPricingTrait, stdMarketingShowcase, stdMarketingShowcasePage, stdMarketingShowcaseTrait, stdMarketingSplit, stdMarketingSplitPage, stdMarketingSplitTrait, stdMarketingStats, stdMarketingStatsPage, stdMarketingStatsTrait, stdMarketingSteps, stdMarketingStepsPage, stdMarketingStepsTrait, stdMarketingTeam, stdMarketingTeamPage, stdMarketingTeamTrait, stdMeshAssetArt, stdMeshAssetArtPage, stdMeshAssetArtTrait, stdMigrationJob, stdMigrationJobMigrationJobOrbital, stdMigrationJobPage, stdMigrationJobTrait, stdMlClassify, stdMlClassifyMlClassifyOrbital, stdMlClassifyPage, stdMlClassifyTrait, stdMlExactCheck, stdMlExactCheckMlExactCheckOrbital, stdMlExactCheckPage, stdMlExactCheckTrait, stdMlInfer, stdMlInferMlInferOrbital, stdMlInferPage, stdMlInferTrait, stdMlLabelCapture, stdMlLabelCaptureMlLabelCaptureOrbital, stdMlLabelCapturePage, stdMlLabelCaptureTrait, stdMlLookup, stdMlLookupMlLookupOrbital, stdMlLookupPage, stdMlLookupTrait, stdMlPosterior, stdMlPosteriorMlPosteriorOrbital, stdMlPosteriorPage, stdMlPosteriorTrait, stdMlSimilarity, stdMlSimilarityMlSimilarityOrbital, stdMlSimilarityPage, stdMlSimilarityTrait, stdModQueue, stdModQueueCloseButtonTrait, stdModQueueErrorAlertTrait, stdModQueueErrorSpinnerTrait, stdModQueueLoadingSpinnerTrait, stdModQueueLoadingTextTrait, stdModQueueModQueueDividerTrait, stdModQueueModQueueItemOrbital, stdModQueueModQueueItemReviewTrait, stdModQueueModQueueTitleTrait, stdModQueuePage, stdModQueueShieldAlertIconTrait, stdModal, stdModalModalRecordOrbital, stdModalPage, stdModalTrait, stdMotionBody, stdMotionBodyPage, stdMotionBodyTrait, stdMultiPartyFlow, stdMultiPartyFlowMultiPartyFlowOrbital, stdMultiPartyFlowPage, stdMultiPartyFlowTrait, stdNotificationPanel, stdNotificationPanelPage, stdNotificationPanelTrait, stdNotifyOnEvent, stdNotifyOnEventNotifyOnEventOrbital, stdNotifyOnEventPage, stdNotifyOnEventTrait, stdObjectiveBoard3d, stdObjectiveBoard3dObjectiveBoard3DOrbital, stdObjectiveFlow, stdObjectiveFlowPage, stdObjectiveFlowTrait, stdObjectiveReach, stdObjectiveReachPage, stdObjectiveReachTrait, stdPagination, stdPaginationPage, stdPaginationPagedItemOrbital, stdPaginationTrait, stdPatience, stdPatiencePage, stdPatienceTrait, stdProduction, stdProductionPage, stdProductionTrait, stdRateLimiter, stdRateLimiterCountMeterTrait, stdRateLimiterCountProgressBarTrait, stdRateLimiterOpenStatusDotTrait, stdRateLimiterPage, stdRateLimiterRateBucketDividerTrait, stdRateLimiterRateBucketOrbital, stdRateLimiterRateBucketRateLimiterTrait, stdRateLimiterRateBucketTitleTrait, stdRateLimiterRateLimitAlertTrait, stdRateLimiterRequestButtonTrait, stdRateLimiterRequestsStatTrait, stdRateLimiterResetButtonTrait, stdRateLimiterResetPrimaryButtonTrait, stdRateLimiterShieldIconTrait, stdRateLimiterStatsGridTrait, stdRateLimiterThrottledStatusDotTrait, stdRateLimiterWindowStatTrait, stdRatingReview, stdRatingReviewRatingReviewBoardTrait, stdRatingReviewRatingReviewOrbital, stdRatingReviewRatingReviewPagePage, stdRatingReviewRatingReviewSubmitPagePage, stdRatingReviewRatingReviewSubmitTrait, stdRecurrence, stdRecurrencePage, stdRecurrenceRecurrenceOrbital, stdRecurrenceTrait, stdRelated, stdRelatedPage, stdRelatedRelatedItemOrbital, stdRelatedTrait, stdReminderScheduler, stdReminderSchedulerPage, stdReminderSchedulerReminderSchedulerOrbital, stdReminderSchedulerTrait, stdRichEditor, stdRichEditorDocumentOrbital, stdRichEditorPage, stdRichEditorTrait, stdRoundFlow, stdRoundFlowPage, stdRoundFlowTrait, stdRowAccessControl, stdRowAccessControlPage, stdRowAccessControlRowAccessControlOrbital, stdRowAccessControlTrait, stdSavedSearch, stdSavedSearchPage, stdSavedSearchSavedSearchOrbital, stdSavedSearchTrait, stdScatter, stdScatterPage, stdScatterScatterItemOrbital, stdScatterTrait, stdScore, stdScorePage, stdScoreTrait, stdSearch, stdSearchPage, stdSearchSearchResultOrbital, stdSearchTrait, stdSelection, stdSelectionPage, stdSelectionSelectableItemOrbital, stdSelectionTrait, stdSignatureCapture, stdSignatureCapturePage, stdSignatureCaptureSignatureCaptureOrbital, stdSignatureCaptureTrait, stdStatRows, stdStatRowsPage, stdStatRowsTrait, stdStats, stdStatsPage, stdStatsStatsItemOrbital, stdStatsTrait, stdStatusLifecycle, stdStatusLifecycleControl, stdStatusLifecycleControlStatusLifecycleControlOrbital, stdStatusLifecyclePage, stdStatusLifecycleStatusLifecycleOrbital, stdStatusLifecycleTrait, stdStepFlow, stdStepFlowPage, stdStepFlowStepFlowOrbital, stdStepFlowTrait, stdSurvivalBoard3d, stdSurvivalBoard3dSurvivalBoard3DOrbital, stdSurvivalFlow, stdSurvivalFlowPage, stdSurvivalFlowTrait, stdSvgAssetArt, stdSvgAssetArtPage, stdSvgAssetArtTrait, stdTabs, stdTabsPage, stdTabsTabsItemOrbital, stdTabsTrait, stdTacticsBoard2d, stdTacticsBoard2dTacticsBoard2DOrbital, stdTacticsBoard3d, stdTacticsBoard3dTacticsBoard3DOrbital, stdTagTaxonomy, stdTagTaxonomyPage, stdTagTaxonomyTagTaxonomyOrbital, stdTagTaxonomyTrait, stdThread, stdThreadPage, stdThreadThreadPostOrbital, stdThreadTrait, stdTokenizer, stdTokenizerMlTokenizerOrbital, stdTokenizerPage, stdTokenizerTrait, stdUiAccordion, stdUiAccordionPage, stdUiAccordionTrait, stdUiActionPalette, stdUiActionPalettePage, stdUiActionPaletteTrait, stdUiActionTile, stdUiActionTilePage, stdUiActionTileTrait, stdUiActivationBlock, stdUiActivationBlockPage, stdUiActivationBlockTrait, stdUiAlert, stdUiAlertPage, stdUiAlertTrait, stdUiAlgoGraphCanvas, stdUiAlgoGraphCanvasPage, stdUiAlgoGraphCanvasTrait, stdUiAlgorithmCanvas, stdUiAlgorithmCanvasPage, stdUiAlgorithmCanvasTrait, stdUiAnimatedCounter, stdUiAnimatedCounterPage, stdUiAnimatedCounterTrait, stdUiAnimatedGraphic, stdUiAnimatedGraphicPage, stdUiAnimatedGraphicTrait, stdUiAnimatedReveal, stdUiAnimatedRevealPage, stdUiAnimatedRevealTrait, stdUiArticleSection, stdUiArticleSectionPage, stdUiArticleSectionTrait, stdUiAside, stdUiAsidePage, stdUiAsideTrait, stdUiAtlasImage, stdUiAtlasImagePage, stdUiAtlasImageTrait, stdUiAtlasPanel, stdUiAtlasPanelPage, stdUiAtlasPanelTrait, stdUiAvatar, stdUiAvatarPage, stdUiAvatarTrait, stdUiBadge, stdUiBadgePage, stdUiBadgeTrait, stdUiBehaviorView, stdUiBehaviorViewPage, stdUiBehaviorViewTrait, stdUiBiologyCanvas, stdUiBiologyCanvasPage, stdUiBiologyCanvasTrait, stdUiBloomQuizBlock, stdUiBloomQuizBlockPage, stdUiBloomQuizBlockTrait, stdUiBookChapterView, stdUiBookChapterViewBookChapterViewOrbital, stdUiBookCoverPage, stdUiBookCoverPageBookCoverPageOrbital, stdUiBookNavBar, stdUiBookNavBarBookNavBarOrbital, stdUiBookTableOfContents, stdUiBookTableOfContentsBookTableOfContentsOrbital, stdUiBookViewer, stdUiBookViewerBookViewerOrbital, stdUiBox, stdUiBoxPage, stdUiBoxTrait, stdUiBranchingLogicBuilder, stdUiBranchingLogicBuilderPage, stdUiBranchingLogicBuilderTrait, stdUiBreadcrumb, stdUiBreadcrumbPage, stdUiBreadcrumbTrait, stdUiButton, stdUiButtonPage, stdUiButtonTrait, stdUiCalendarGrid, stdUiCalendarGridPage, stdUiCalendarGridTrait, stdUiCanvas, stdUiCanvas2d, stdUiCanvas2dPage, stdUiCanvas2dTrait, stdUiCanvasPage, stdUiCanvasTrait, stdUiCard, stdUiCardPage, stdUiCardTrait, stdUiCarousel, stdUiCarouselPage, stdUiCarouselTrait, stdUiCaseStudyCard, stdUiCaseStudyCardPage, stdUiCaseStudyCardTrait, stdUiCaseStudyOrganism, stdUiCaseStudyOrganismCaseStudyOrganismOrbital, stdUiCenter, stdUiCenterPage, stdUiCenterTrait, stdUiChart, stdUiChartLegend, stdUiChartLegendPage, stdUiChartLegendTrait, stdUiChartPage, stdUiChartTrait, stdUiChatBar, stdUiChatBarChatBarOrbital, stdUiCheckbox, stdUiCheckboxPage, stdUiCheckboxTrait, stdUiChemistryCanvas, stdUiChemistryCanvasPage, stdUiChemistryCanvasTrait, stdUiChoiceButton, stdUiChoiceButtonPage, stdUiChoiceButtonTrait, stdUiCodeBlock, stdUiCodeBlockPage, stdUiCodeBlockTrait, stdUiCodeRunnerPanel, stdUiCodeRunnerPanelCodeRunnerPanelOrbital, stdUiCommunityLinks, stdUiCommunityLinksPage, stdUiCommunityLinksTrait, stdUiConditionalWrapper, stdUiConditionalWrapperPage, stdUiConditionalWrapperTrait, stdUiConfettiEffect, stdUiConfettiEffectPage, stdUiConfettiEffectTrait, stdUiConfirmDialog, stdUiConfirmDialogPage, stdUiConfirmDialogTrait, stdUiConnectionBlock, stdUiConnectionBlockPage, stdUiConnectionBlockTrait, stdUiContainer, stdUiContainerPage, stdUiContainerTrait, stdUiContentRenderer, stdUiContentRendererPage, stdUiContentRendererTrait, stdUiContentSection, stdUiContentSectionPage, stdUiContentSectionTrait, stdUiControlButton, stdUiControlButtonPage, stdUiControlButtonTrait, stdUiControlGrid, stdUiControlGridPage, stdUiControlGridTrait, stdUiCtaBanner, stdUiCtaBannerPage, stdUiCtaBannerTrait, stdUiDashboardGrid, stdUiDashboardGridDashboardGridOrbital, stdUiDataGrid, stdUiDataGridPage, stdUiDataGridTrait, stdUiDataList, stdUiDataListPage, stdUiDataListTrait, stdUiDateRangePicker, stdUiDateRangePickerPage, stdUiDateRangePickerTrait, stdUiDateRangeSelector, stdUiDateRangeSelectorPage, stdUiDateRangeSelectorTrait, stdUiDayCell, stdUiDayCellPage, stdUiDayCellTrait, stdUiDetailPanel, stdUiDetailPanelDetailPanelOrbital, stdUiDialog, stdUiDialogPage, stdUiDialogTrait, stdUiDialogueBubble, stdUiDialogueBubblePage, stdUiDialogueBubbleTrait, stdUiDivider, stdUiDividerPage, stdUiDividerTrait, stdUiDocBreadcrumb, stdUiDocBreadcrumbPage, stdUiDocBreadcrumbTrait, stdUiDocPagination, stdUiDocPaginationPage, stdUiDocPaginationTrait, stdUiDocSearch, stdUiDocSearchPage, stdUiDocSearchTrait, stdUiDocSidebar, stdUiDocSidebarPage, stdUiDocSidebarTrait, stdUiDocToc, stdUiDocTocPage, stdUiDocTocTrait, stdUiDocumentViewer, stdUiDocumentViewerPage, stdUiDocumentViewerTrait, stdUiDrawGroup, stdUiDrawGroupPage, stdUiDrawGroupTrait, stdUiDrawMesh, stdUiDrawMeshPage, stdUiDrawMeshTrait, stdUiDrawShape, stdUiDrawShapeLayer, stdUiDrawShapeLayerPage, stdUiDrawShapeLayerTrait, stdUiDrawShapePage, stdUiDrawShapeTrait, stdUiDrawSprite, stdUiDrawSpriteLayer, stdUiDrawSpriteLayerPage, stdUiDrawSpriteLayerTrait, stdUiDrawSpritePage, stdUiDrawSpriteTrait, stdUiDrawText, stdUiDrawTextLayer, stdUiDrawTextLayerPage, stdUiDrawTextLayerTrait, stdUiDrawTextPage, stdUiDrawTextTrait, stdUiDrawer, stdUiDrawerPage, stdUiDrawerSlot, stdUiDrawerSlotDrawerSlotOrbital, stdUiDrawerTrait, stdUiEdgeDecoration, stdUiEdgeDecorationPage, stdUiEdgeDecorationTrait, stdUiEmojiPicker, stdUiEmojiPickerPage, stdUiEmojiPickerTrait, stdUiEmptyState, stdUiEmptyStatePage, stdUiEmptyStateTrait, stdUiEntityCards, stdUiEntityCardsEntityCardsOrbital, stdUiEntityList, stdUiEntityListEntityListOrbital, stdUiEntityTable, stdUiEntityTableEntityTableOrbital, stdUiErrorBoundary, stdUiErrorBoundaryPage, stdUiErrorBoundaryTrait, stdUiErrorState, stdUiErrorStatePage, stdUiErrorStateTrait, stdUiFeatureCard, stdUiFeatureCardPage, stdUiFeatureCardTrait, stdUiFeatureGrid, stdUiFeatureGridOrganism, stdUiFeatureGridOrganismFeatureGridOrganismOrbital, stdUiFeatureGridPage, stdUiFeatureGridTrait, stdUiFileTree, stdUiFileTreePage, stdUiFileTreeTrait, stdUiFilterGroup, stdUiFilterGroupPage, stdUiFilterGroupTrait, stdUiFilterPill, stdUiFilterPillPage, stdUiFilterPillTrait, stdUiFlex, stdUiFlexPage, stdUiFlexTrait, stdUiFlipCard, stdUiFlipCardPage, stdUiFlipCardTrait, stdUiFlipContainer, stdUiFlipContainerPage, stdUiFlipContainerTrait, stdUiFloatingActionButton, stdUiFloatingActionButtonPage, stdUiFloatingActionButtonTrait, stdUiForm, stdUiFormActions, stdUiFormActionsPage, stdUiFormActionsTrait, stdUiFormField, stdUiFormFieldPage, stdUiFormFieldTrait, stdUiFormFormOrbital, stdUiFormLayout, stdUiFormLayoutPage, stdUiFormLayoutTrait, stdUiFormSection, stdUiFormSectionFormSectionOrbital, stdUiFormSectionHeader, stdUiFormSectionHeaderPage, stdUiFormSectionHeaderTrait, stdUiGameAudioToggle, stdUiGameAudioTogglePage, stdUiGameAudioToggleTrait, stdUiGameHud, stdUiGameHudPage, stdUiGameHudTrait, stdUiGameIcon, stdUiGameIconPage, stdUiGameIconTrait, stdUiGameMenu, stdUiGameMenuPage, stdUiGameMenuTrait, stdUiGeometricPattern, stdUiGeometricPatternPage, stdUiGeometricPatternTrait, stdUiGradientDivider, stdUiGradientDividerPage, stdUiGradientDividerTrait, stdUiGraphCanvas, stdUiGraphCanvasPage, stdUiGraphCanvasTrait, stdUiGraphView, stdUiGraphViewPage, stdUiGraphViewTrait, stdUiGrid, stdUiGridPage, stdUiGridTrait, stdUiHeader, stdUiHeaderPage, stdUiHeaderTrait, stdUiHealthBar, stdUiHealthBarPage, stdUiHealthBarTrait, stdUiHeroOrganism, stdUiHeroOrganismHeroOrganismOrbital, stdUiHeroSection, stdUiHeroSectionPage, stdUiHeroSectionTrait, stdUiHstack, stdUiHstackPage, stdUiHstackTrait, stdUiIcon, stdUiIconPage, stdUiIconTrait, stdUiImportPreviewTree, stdUiImportPreviewTreePage, stdUiImportPreviewTreeTrait, stdUiImportProgress, stdUiImportProgressPage, stdUiImportProgressTrait, stdUiImportSourcePicker, stdUiImportSourcePickerPage, stdUiImportSourcePickerTrait, stdUiInfiniteScrollSentinel, stdUiInfiniteScrollSentinelPage, stdUiInfiniteScrollSentinelTrait, stdUiInput, stdUiInputGroup, stdUiInputGroupPage, stdUiInputGroupTrait, stdUiInputPage, stdUiInputTrait, stdUiInstallBox, stdUiInstallBoxPage, stdUiInstallBoxTrait, stdUiJazariStateMachine, stdUiJazariStateMachinePage, stdUiJazariStateMachineTrait, stdUiLabel, stdUiLabelPage, stdUiLabelTrait, stdUiLawReferenceTooltip, stdUiLawReferenceTooltipPage, stdUiLawReferenceTooltipTrait, stdUiLearningCanvas, stdUiLearningCanvasPage, stdUiLearningCanvasTrait, stdUiLightbox, stdUiLightboxPage, stdUiLightboxTrait, stdUiLikertScale, stdUiLikertScalePage, stdUiLikertScaleTrait, stdUiLineChart, stdUiLineChartPage, stdUiLineChartTrait, stdUiLoadingState, stdUiLoadingStatePage, stdUiLoadingStateTrait, stdUiMapView, stdUiMapViewPage, stdUiMapViewTrait, stdUiMarkdownContent, stdUiMarkdownContentPage, stdUiMarkdownContentTrait, stdUiMarketingFooter, stdUiMarketingFooterPage, stdUiMarketingFooterTrait, stdUiMarketingStatCard, stdUiMarketingStatCardPage, stdUiMarketingStatCardTrait, stdUiMasterDetail, stdUiMasterDetailLayout, stdUiMasterDetailLayoutMasterDetailLayoutOrbital, stdUiMasterDetailMasterDetailOrbital, stdUiMathCanvas, stdUiMathCanvasPage, stdUiMathCanvasTrait, stdUiMatrixQuestion, stdUiMatrixQuestionPage, stdUiMatrixQuestionTrait, stdUiMediaGallery, stdUiMediaGalleryMediaGalleryOrbital, stdUiMenu, stdUiMenuPage, stdUiMenuTrait, stdUiMeter, stdUiMeterPage, stdUiMeterTrait, stdUiModal, stdUiModalPage, stdUiModalSlot, stdUiModalSlotModalSlotOrbital, stdUiModalTrait, stdUiModuleCard, stdUiModuleCardPage, stdUiModuleCardTrait, stdUiNavigation, stdUiNavigationPage, stdUiNavigationTrait, stdUiNotification, stdUiNotificationPage, stdUiNotificationTrait, stdUiNumberStepper, stdUiNumberStepperPage, stdUiNumberStepperTrait, stdUiOptionConstraintGroup, stdUiOptionConstraintGroupPage, stdUiOptionConstraintGroupTrait, stdUiOrbitalVisualization, stdUiOrbitalVisualizationPage, stdUiOrbitalVisualizationTrait, stdUiOverlay, stdUiOverlayPage, stdUiOverlayTrait, stdUiPageHeader, stdUiPageHeaderPage, stdUiPageHeaderTrait, stdUiPageTransition, stdUiPageTransitionPage, stdUiPageTransitionTrait, stdUiPagination, stdUiPaginationPage, stdUiPaginationTrait, stdUiPatternTile, stdUiPatternTilePage, stdUiPatternTileTrait, stdUiPhysicsCanvas, stdUiPhysicsCanvasPage, stdUiPhysicsCanvasTrait, stdUiPopover, stdUiPopoverPage, stdUiPopoverTrait, stdUiPositionedCanvas, stdUiPositionedCanvasPage, stdUiPositionedCanvasTrait, stdUiPresence, stdUiPresencePage, stdUiPresenceTrait, stdUiPricingCard, stdUiPricingCardPage, stdUiPricingCardTrait, stdUiPricingGrid, stdUiPricingGridPage, stdUiPricingGridTrait, stdUiPricingOrganism, stdUiPricingOrganismPricingOrganismOrbital, stdUiProgressBar, stdUiProgressBarPage, stdUiProgressBarTrait, stdUiProgressDots, stdUiProgressDotsPage, stdUiProgressDotsTrait, stdUiPullQuote, stdUiPullQuotePage, stdUiPullQuoteTrait, stdUiPullToRefresh, stdUiPullToRefreshPage, stdUiPullToRefreshTrait, stdUiQrScanner, stdUiQrScannerPage, stdUiQrScannerTrait, stdUiQuizBlock, stdUiQuizBlockPage, stdUiQuizBlockTrait, stdUiRadio, stdUiRadioPage, stdUiRadioTrait, stdUiRangeSlider, stdUiRangeSliderPage, stdUiRangeSliderTrait, stdUiReflectionBlock, stdUiReflectionBlockPage, stdUiReflectionBlockTrait, stdUiRelationSelect, stdUiRelationSelectPage, stdUiRelationSelectTrait, stdUiRepeatableFormSection, stdUiRepeatableFormSectionPage, stdUiRepeatableFormSectionTrait, stdUiReplyTree, stdUiReplyTreePage, stdUiReplyTreeTrait, stdUiRichBlockEditor, stdUiRichBlockEditorPage, stdUiRichBlockEditorTrait, stdUiRuntimeDebugger, stdUiRuntimeDebuggerRuntimeDebuggerOrbital, stdUiScaledDiagram, stdUiScaledDiagramPage, stdUiScaledDiagramTrait, stdUiScoreDisplay, stdUiScoreDisplayPage, stdUiScoreDisplayTrait, stdUiSearchInput, stdUiSearchInputPage, stdUiSearchInputTrait, stdUiSection, stdUiSectionHeader, stdUiSectionHeaderPage, stdUiSectionHeaderTrait, stdUiSectionPage, stdUiSectionTrait, stdUiSegmentRenderer, stdUiSegmentRendererSegmentRendererOrbital, stdUiSelect, stdUiSelectPage, stdUiSelectTrait, stdUiSequenceBar, stdUiSequenceBarPage, stdUiSequenceBarTrait, stdUiServiceCatalog, stdUiServiceCatalogPage, stdUiServiceCatalogTrait, stdUiShowcaseCard, stdUiShowcaseCardPage, stdUiShowcaseCardTrait, stdUiShowcaseOrganism, stdUiShowcaseOrganismShowcaseOrganismOrbital, stdUiSidePanel, stdUiSidePanelPage, stdUiSidePanelTrait, stdUiSidebar, stdUiSidebarPage, stdUiSidebarTrait, stdUiSignaturePad, stdUiSignaturePadPage, stdUiSignaturePadTrait, stdUiSimpleGrid, stdUiSimpleGridPage, stdUiSimpleGridTrait, stdUiSkeleton, stdUiSkeletonPage, stdUiSkeletonTrait, stdUiSocialProof, stdUiSocialProofPage, stdUiSocialProofTrait, stdUiSortableList, stdUiSortableListPage, stdUiSortableListTrait, stdUiSpacer, stdUiSpacerPage, stdUiSpacerTrait, stdUiSparkline, stdUiSparklinePage, stdUiSparklineTrait, stdUiSpinner, stdUiSpinnerPage, stdUiSpinnerTrait, stdUiSplit, stdUiSplitPage, stdUiSplitPane, stdUiSplitPaneSplitPaneOrbital, stdUiSplitSection, stdUiSplitSectionPage, stdUiSplitSectionTrait, stdUiSplitTrait, stdUiStack, stdUiStackPage, stdUiStackTrait, stdUiStarRating, stdUiStarRatingPage, stdUiStarRatingTrait, stdUiStatBadge, stdUiStatBadgePage, stdUiStatBadgeTrait, stdUiStatCard, stdUiStatCardStatCardOrbital, stdUiStatDisplay, stdUiStatDisplayPage, stdUiStatDisplayTrait, stdUiStateGraph, stdUiStateGraphPage, stdUiStateGraphTrait, stdUiStateJsonView, stdUiStateJsonViewPage, stdUiStateJsonViewTrait, stdUiStateMachineView, stdUiStateMachineViewStateMachineViewOrbital, stdUiStatsGrid, stdUiStatsGridPage, stdUiStatsGridTrait, stdUiStatsOrganism, stdUiStatsOrganismStatsOrganismOrbital, stdUiStatusDot, stdUiStatusDotPage, stdUiStatusDotTrait, stdUiStepFlow, stdUiStepFlowOrganism, stdUiStepFlowOrganismStepFlowOrganismOrbital, stdUiStepFlowPage, stdUiStepFlowTrait, stdUiSubagentTracePanel, stdUiSubagentTracePanelSubagentTracePanelOrbital, stdUiSvgBranch, stdUiSvgBranchPage, stdUiSvgBranchTrait, stdUiSvgConnection, stdUiSvgConnectionPage, stdUiSvgConnectionTrait, stdUiSvgFlow, stdUiSvgFlowPage, stdUiSvgFlowTrait, stdUiSvgGrid, stdUiSvgGridPage, stdUiSvgGridTrait, stdUiSvgLobe, stdUiSvgLobePage, stdUiSvgLobeTrait, stdUiSvgMesh, stdUiSvgMeshPage, stdUiSvgMeshTrait, stdUiSvgMorph, stdUiSvgMorphPage, stdUiSvgMorphTrait, stdUiSvgNode, stdUiSvgNodePage, stdUiSvgNodeTrait, stdUiSvgPulse, stdUiSvgPulsePage, stdUiSvgPulseTrait, stdUiSvgRing, stdUiSvgRingPage, stdUiSvgRingTrait, stdUiSvgShield, stdUiSvgShieldPage, stdUiSvgShieldTrait, stdUiSvgStack, stdUiSvgStackPage, stdUiSvgStackTrait, stdUiSwipeableRow, stdUiSwipeableRowPage, stdUiSwipeableRowTrait, stdUiSwitch, stdUiSwitchPage, stdUiSwitchTrait, stdUiTabbedContainer, stdUiTabbedContainerTabbedContainerOrbital, stdUiTableView, stdUiTableViewPage, stdUiTableViewTrait, stdUiTabs, stdUiTabsPage, stdUiTabsTrait, stdUiTagCloud, stdUiTagCloudPage, stdUiTagCloudTrait, stdUiTagInput, stdUiTagInputPage, stdUiTagInputTrait, stdUiTeamCard, stdUiTeamCardPage, stdUiTeamCardTrait, stdUiTeamOrganism, stdUiTeamOrganismTeamOrganismOrbital, stdUiTextHighlight, stdUiTextHighlightPage, stdUiTextHighlightTrait, stdUiTextarea, stdUiTextareaPage, stdUiTextareaTrait, stdUiThemeToggle, stdUiThemeTogglePage, stdUiThemeToggleTrait, stdUiTimeSlotCell, stdUiTimeSlotCellPage, stdUiTimeSlotCellTrait, stdUiTimeline, stdUiTimelineTimelineOrbital, stdUiTimerDisplay, stdUiTimerDisplayPage, stdUiTimerDisplayTimerDisplayOrbital, stdUiTimerDisplayTrait, stdUiToastSlot, stdUiToastSlotToastSlotOrbital, stdUiTooltip, stdUiTooltipPage, stdUiTooltipTrait, stdUiTraitFrame, stdUiTraitFramePage, stdUiTraitFrameTrait, stdUiTraitSlot, stdUiTraitSlotPage, stdUiTraitSlotTrait, stdUiTrendIndicator, stdUiTrendIndicatorPage, stdUiTrendIndicatorTrait, stdUiTypewriterText, stdUiTypewriterTextPage, stdUiTypewriterTextTrait, stdUiTypography, stdUiTypographyPage, stdUiTypographyTrait, stdUiUiSlotRenderer, stdUiUiSlotRendererUiSlotRendererOrbital, stdUiUploadDropZone, stdUiUploadDropZonePage, stdUiUploadDropZoneTrait, stdUiVersionDiff, stdUiVersionDiffPage, stdUiVersionDiffTrait, stdUiViolationAlert, stdUiViolationAlertPage, stdUiViolationAlertTrait, stdUiVoteStack, stdUiVoteStackPage, stdUiVoteStackTrait, stdUiVstack, stdUiVstackPage, stdUiVstackTrait, stdUiWizardContainer, stdUiWizardContainerPage, stdUiWizardContainerTrait, stdUiWizardNavigation, stdUiWizardNavigationPage, stdUiWizardNavigationTrait, stdUiWizardProgress, stdUiWizardProgressPage, stdUiWizardProgressTrait, stdVersionHistory, stdVersionHistoryPage, stdVersionHistoryRevisionOrbital, stdVersionHistoryTrait, stdVote, stdVotePage, stdVoteTrait, stdVoteVoteOrbital, stdWeightValidator, stdWeightValidatorMlWeightValidatorOrbital, stdWeightValidatorPage, stdWeightValidatorTrait, stdWizard, stdWizardPage, stdWizardTrait, stdWizardWizardOrbital, stdWorldmapBoard2d, stdWorldmapBoard2dWorldMapBoard2DOrbital, stdXp, stdXpPage, stdXpTrait };
|
|
45644
|
+
export { StdAgentBuilderAgentBuilderOrbitalManifest, type StdAgentBuilderAgentBuilderOrbitalParams, type StdAgentBuilderBuildCompletePayload, type StdAgentBuilderEventKey, type StdAgentBuilderParams, type StdAgentBuilderPlannedPayload, StdAgentCompletionAgentCompletionOrbitalManifest, type StdAgentCompletionAgentCompletionOrbitalParams, type StdAgentCompletionCompletedPayload, type StdAgentCompletionEventKey, type StdAgentCompletionGeneratedPayload, type StdAgentCompletionParams, StdAgentContextAgentContextOrbitalManifest, type StdAgentContextAgentContextOrbitalParams, type StdAgentContextCountedPayload, type StdAgentContextEventKey, type StdAgentContextParams, type StdAgentContextTokenCountedPayload, StdAgentFixLoopAgentFixLoopOrbitalManifest, type StdAgentFixLoopAgentFixLoopOrbitalParams, type StdAgentFixLoopEventKey, type StdAgentFixLoopFixAppliedPayload, type StdAgentFixLoopParams, type StdAgentFixLoopPromptGeneratedPayload, StdAgentMemoryAgentMemoryOrbitalManifest, type StdAgentMemoryAgentMemoryOrbitalParams, type StdAgentMemoryEventKey, type StdAgentMemoryParams, type StdAgentMemoryRecallCompletePayload, type StdAgentMemoryRecalledPayload, StdAgentPlannerAgentPlannerOrbitalManifest, type StdAgentPlannerAgentPlannerOrbitalParams, type StdAgentPlannerEventKey, type StdAgentPlannerMemoriesRecalledPayload, type StdAgentPlannerParams, type StdAgentPlannerPlanGeneratedPayload, type StdAgentPlannerPlannedPayload, type StdAgentRabitComposedPayload, StdAgentRabitCoordinatorOrbitalManifest, type StdAgentRabitCoordinatorOrbitalParams, type StdAgentRabitDispatchedPayload, type StdAgentRabitEventKey, StdAgentRabitOrbitalProcessOrbitalManifest, type StdAgentRabitOrbitalProcessOrbitalParams, type StdAgentRabitParams, type StdAgentRabitPlannedPayload, type StdAgentRabitRabitDonePayload, StdAgentSessionAgentSessionOrbitalManifest, type StdAgentSessionAgentSessionOrbitalParams, type StdAgentSessionEventKey, type StdAgentSessionHistoryLoadedPayload, type StdAgentSessionParams, type StdAgentSessionSpecLoadedPayload, type StdAgentSessionSpecReadPayload, StdAgentToolCallAgentToolCallOrbitalManifest, type StdAgentToolCallAgentToolCallOrbitalParams, type StdAgentToolCallEventKey, type StdAgentToolCallParams, type StdAgentToolCallToolsCalledPayload, StdAgentToolLoopAgentToolLoopOrbitalManifest, type StdAgentToolLoopAgentToolLoopOrbitalParams, type StdAgentToolLoopEventKey, type StdAgentToolLoopLoopStepPayload, type StdAgentToolLoopParams, type StdAgentToolLoopToolsCalled1Payload, type StdAgentToolLoopToolsCalled2Payload, StdAgentTraceAgentTraceOrbitalManifest, type StdAgentTraceAgentTraceOrbitalParams, type StdAgentTraceEventKey, type StdAgentTraceParams, StdAnimTickAnimTickOrbitalManifest, type StdAnimTickAnimTickOrbitalParams, type StdAnimTickConfig, type StdAnimTickEventKey, type StdAnimTickParams, StdAppLayoutAppLayoutOrbitalManifest, type StdAppLayoutAppLayoutOrbitalParams, type StdAppLayoutAppLayoutStateLoadFailedPayload, type StdAppLayoutAppLayoutStateLoadedPayload, type StdAppLayoutConfig, type StdAppLayoutEventKey, type StdAppLayoutNotifyClickPayload, type StdAppLayoutParams, type StdAppLayoutSearchPayload, StdAppSearchAppSearchOrbitalManifest, type StdAppSearchAppSearchOrbitalParams, type StdAppSearchEventKey, type StdAppSearchParams, StdApprovalGateApprovalGateOrbitalManifest, type StdApprovalGateApprovalGateOrbitalParams, type StdApprovalGateParams, StdArcadeBoard3dArcadeBoard3DFrameOrbitalManifest, type StdArcadeBoard3dArcadeBoard3DFrameOrbitalParams, type StdArcadeBoard3dConfig, type StdArcadeBoard3dParams, type StdArcadeFlowConfig, type StdArcadeFlowEventKey, type StdArcadeFlowGameEndPayload, type StdArcadeFlowParams, type StdArcadePlayBurstPayload, type StdArcadePlayConfig, type StdArcadePlayEventKey, type StdArcadePlayParams, type StdArcadePlayScoreChangedPayload, StdAuditCaptureAuditCaptureOrbitalManifest, type StdAuditCaptureAuditCaptureOrbitalParams, type StdAuditCaptureAuditRecordedPayload, type StdAuditCaptureConfig, type StdAuditCaptureEventKey, type StdAuditCaptureParams, StdBillableHourBillableHourOrbitalManifest, type StdBillableHourBillableHourOrbitalParams, type StdBillableHourConfig, type StdBillableHourListenKey, type StdBillableHourParams, type StdBoardBoardItemsLoadFailedPayload, type StdBoardBoardItemsLoadedPayload, type StdBoardBoardItemsSaveFailedPayload, type StdBoardBoardItemsSavedPayload, StdBoardBoardOrbitalManifest, type StdBoardBoardOrbitalParams, type StdBoardConfig, type StdBoardDeleteCardPayload, type StdBoardEditCardPayload, type StdBoardEventKey, type StdBoardMoveCardPayload, type StdBoardOpenCardPayload, type StdBoardParams, type StdBoardReorderCardPayload, type StdBoardSaveCardPayload, StdBrowseBrowseItemOrbitalManifest, type StdBrowseBrowseItemOrbitalParams, type StdBrowseConfig, type StdBrowseListenKey, type StdBrowseParams, StdCacheAsideCacheEntryOrbitalManifest, type StdCacheAsideCacheEntryOrbitalParams, type StdCacheAsideConfig, type StdCacheAsideParams, type StdCalendarCalendarEventLoadFailedPayload, type StdCalendarCalendarEventLoadedPayload, StdCalendarCalendarEventOrbitalManifest, type StdCalendarCalendarEventOrbitalParams, type StdCalendarConfig, type StdCalendarEventKey, type StdCalendarParams, type StdCalendarPayload, type StdCascadeOnDeleteCascadeCompletedPayload, type StdCascadeOnDeleteCascadeFailedPayload, StdCascadeOnDeleteCascadeOnDeleteOrbitalManifest, type StdCascadeOnDeleteCascadeOnDeleteOrbitalParams, type StdCascadeOnDeleteCascadeRowDeletedPayload, type StdCascadeOnDeleteCascadeSteppedPayload, type StdCascadeOnDeleteConfig, type StdCascadeOnDeleteDepsLoadedPayload, type StdCascadeOnDeleteEventKey, type StdCascadeOnDeleteParams, type StdChaseAiBurstPayload, type StdChaseAiConfig, type StdChaseAiEventKey, type StdChaseAiParams, type StdChaseAiUnitsChangedPayload, type StdCircuitBreakerConfig, type StdCircuitBreakerParams, StdCircuitBreakerServiceNodeOrbitalManifest, type StdCircuitBreakerServiceNodeOrbitalParams, type StdConfirmationConfig, type StdConfirmationConfirmActionLoadFailedPayload, type StdConfirmationConfirmActionLoadedPayload, StdConfirmationConfirmActionOrbitalManifest, type StdConfirmationConfirmActionOrbitalParams, type StdConfirmationConfirmPayload, type StdConfirmationEventKey, type StdConfirmationParams, type StdCooldownConfig, StdCooldownCooldownOrbitalManifest, type StdCooldownCooldownOrbitalParams, type StdCooldownCooldownReadyPayload, type StdCooldownEventKey, type StdCooldownParams, type StdCrewBoard2dConfig, StdCrewBoard2dCrewBoard2DOrbitalManifest, type StdCrewBoard2dCrewBoard2DOrbitalParams, type StdCrewBoard2dParams, StdCrossReferenceCrossReferenceOrbitalManifest, type StdCrossReferenceCrossReferenceOrbitalParams, type StdCrossReferenceEventKey, type StdCrossReferenceLinkCreatedPayload, type StdCrossReferenceLinkOpFailedPayload, type StdCrossReferenceLinkRemovedPayload, type StdCrossReferenceLinksFetchedPayload, type StdCrossReferenceLinksLoadedPayload, type StdCrossReferenceParams, type StdDashboardGridEmbeddedConfig, StdDashboardGridEmbeddedDashboardGridEmbeddedOrbitalManifest, type StdDashboardGridEmbeddedDashboardGridEmbeddedOrbitalParams, type StdDashboardGridEmbeddedParams, type StdDataCollectorBufferReadyPayload, type StdDataCollectorConfig, type StdDataCollectorEventKey, StdDataCollectorMlDataCollectorOrbitalManifest, type StdDataCollectorMlDataCollectorOrbitalParams, type StdDataCollectorParams, StdDataErasureDataErasureOrbitalManifest, type StdDataErasureDataErasureOrbitalParams, type StdDataErasureParams, type StdDateRangeConfig, type StdDateRangeDateRangeChangedPayload, StdDateRangeDateRangeOrbitalManifest, type StdDateRangeDateRangeOrbitalParams, type StdDateRangeEventKey, type StdDateRangeParams, type StdDetailLayoutConfig, type StdDetailLayoutEventKey, type StdDetailLayoutParams, type StdDungeonBoard2dConfig, StdDungeonBoard2dDungeonBoard2DOrbitalManifest, type StdDungeonBoard2dDungeonBoard2DOrbitalParams, type StdDungeonBoard2dParams, type StdDungeonCombatBurstPayload, type StdDungeonCombatConfig, type StdDungeonCombatDefeatedPayload, type StdDungeonCombatEventKey, type StdDungeonCombatParams, StdEscalatingDecisionEscalatingDecisionOrbitalManifest, type StdEscalatingDecisionEscalatingDecisionOrbitalParams, type StdEscalatingDecisionEventKey, type StdEscalatingDecisionParams, type StdEscalatingDecisionRunExactPayload, type StdEsignFlowEventKey, type StdEsignFlowListenKey, type StdEsignFlowParams, type StdEsignFlowRequestDeletePayload, type StdEsignFlowResendRequestPayload, type StdEsignFlowSignatureSessionLoadFailedPayload, type StdEsignFlowSignatureSessionLoadedPayload, StdEsignFlowSignatureSessionOrbitalManifest, type StdEsignFlowSignatureSessionOrbitalParams, type StdEsignRequestConfig, StdEsignRequestESignRequestOrbitalManifest, type StdEsignRequestESignRequestOrbitalParams, type StdEsignRequestParams, type StdEventLogApplyFilterPayload, type StdEventLogConfig, type StdEventLogEventKey, type StdEventLogEventLogLoadFailedPayload, type StdEventLogEventLogLoadedPayload, StdEventLogEventLogOrbitalManifest, type StdEventLogEventLogOrbitalParams, type StdEventLogEventLogSaveFailedPayload, type StdEventLogEventLogSavedPayload, type StdEventLogParams, type StdEventLogSaveBackfillPayload, type StdExportConfig, StdExportExportOrbitalManifest, type StdExportExportOrbitalParams, type StdExportParams, type StdFileStoreArchiveFilePayload, type StdFileStoreConfig, type StdFileStoreDownloadFilePayload, type StdFileStoreEventKey, type StdFileStoreOpenFilePayload, type StdFileStoreParams, type StdFileStoreReorderPayload, type StdFileStoreStoredFileLoadFailedPayload, type StdFileStoreStoredFileLoadedPayload, StdFileStoreStoredFileOrbitalManifest, type StdFileStoreStoredFileOrbitalParams, type StdFilterConfig, type StdFilterEventKey, type StdFilterFilterPayload, StdFilterFilterTargetOrbitalManifest, type StdFilterFilterTargetOrbitalParams, type StdFilterParams, type StdFormAdvancedConfig, type StdFormAdvancedEventKey, type StdFormAdvancedFormEntryLoadFailedPayload, type StdFormAdvancedFormEntryLoadedPayload, StdFormAdvancedFormEntryOrbitalManifest, type StdFormAdvancedFormEntryOrbitalParams, type StdFormAdvancedFormEntrySaveFailedPayload, type StdFormAdvancedFormEntrySavedPayload, type StdFormAdvancedParams, type StdFxParticlesConfig, type StdFxParticlesEventKey, type StdFxParticlesParams, StdGalleryGalleryItemOrbitalManifest, type StdGalleryGalleryItemOrbitalParams, type StdGalleryParams, type StdGameClockConfig, type StdGameClockEventKey, StdGameClockGameClockOrbitalManifest, type StdGameClockGameClockOrbitalParams, type StdGameClockGameClockTickedPayload, type StdGameClockParams, type StdGatherBurstPayload, type StdGatherConfig, type StdGatherEventKey, type StdGatherParams, type StdGatherResourcesPayload, type StdGeosearchConfig, type StdGeosearchEventKey, type StdGeosearchGeoSearchPayload, StdGeosearchGeoSearchResultOrbitalManifest, type StdGeosearchGeoSearchResultOrbitalParams, type StdGeosearchParams, type StdGoldConfig, type StdGoldEventKey, type StdGoldGoldChangedPayload, type StdGoldParams, type StdGraphBuilderConfig, type StdGraphBuilderEventKey, StdGraphBuilderGraphBuilderOrbitalManifest, type StdGraphBuilderGraphBuilderOrbitalParams, type StdGraphBuilderGraphReadyPayload, type StdGraphBuilderParams, type StdGraphsConfig, type StdGraphsEventKey, StdGraphsGraphItemOrbitalManifest, type StdGraphsGraphItemOrbitalParams, type StdGraphsParams, type StdGridTacticsBurstPayload, type StdGridTacticsConfig, type StdGridTacticsEventKey, type StdGridTacticsParams, type StdGridTacticsUnitsChangedPayload, type StdHeroNavConfig, type StdHeroNavEventKey, type StdHeroNavHeroSteppedPayload, type StdHeroNavParams, type StdImageUploadMultiConfig, type StdImageUploadMultiEventKey, type StdImageUploadMultiParams, type StdImageUploadMultiUploadPayload, type StdImageUploadMultiUploadedImageCreatedPayload, type StdImageUploadMultiUploadedImageDeleteFailedPayload, type StdImageUploadMultiUploadedImageDeletedPayload, type StdImageUploadMultiUploadedImageLoadFailedPayload, type StdImageUploadMultiUploadedImageLoadedPayload, StdImageUploadMultiUploadedImageOrbitalManifest, type StdImageUploadMultiUploadedImageOrbitalParams, type StdImageUploadMultiUploadedImageUploadFailedPayload, type StdImportConfig, type StdImportParams, type StdKnowledgeTracingCaptureLabelPayload, type StdKnowledgeTracingEventKey, StdKnowledgeTracingKnowledgeTracingOrbitalManifest, type StdKnowledgeTracingKnowledgeTracingOrbitalParams, type StdKnowledgeTracingListenKey, type StdKnowledgeTracingObservationMadePayload, type StdKnowledgeTracingParams, type StdLearnArrangementArrangementCheckedPayload, type StdLearnArrangementConfig, type StdLearnArrangementEventKey, type StdLearnArrangementLearnRoundCompletePayload, type StdLearnArrangementParams, type StdLearnClassifyClassifyUpdatedPayload, type StdLearnClassifyConfig, type StdLearnClassifyEventKey, type StdLearnClassifyLearnRoundCompletePayload, type StdLearnClassifyParams, type StdLearnCompareComparisonChangedPayload, type StdLearnCompareConfig, type StdLearnCompareEventKey, type StdLearnCompareParams, type StdLearnCoupledSimCoefsChangedPayload, type StdLearnCoupledSimConfig, type StdLearnCoupledSimEventKey, type StdLearnCoupledSimParams, type StdLearnCoupledSimRunToggledPayload, type StdLearnCoupledSimShockAppliedPayload, type StdLearnCoupledSimSimResetPayload, type StdLearnDerivationConfig, type StdLearnDerivationDerivationUpdatedPayload, type StdLearnDerivationEventKey, type StdLearnDerivationLearnRoundCompletePayload, type StdLearnDerivationParams, type StdLearnDiagramConfig, type StdLearnDiagramEventKey, type StdLearnDiagramParams, type StdLearnDiagramPartSelectedPayload, type StdLearnDoserConfig, type StdLearnDoserDoseAddedPayload, type StdLearnDoserDoserUpdatedPayload, type StdLearnDoserEventKey, type StdLearnDoserLearnRoundCompletePayload, type StdLearnDoserParams, type StdLearnEstimateConfig, type StdLearnEstimateEstimateJudgedPayload, type StdLearnEstimateEventKey, type StdLearnEstimateLearnRoundCompletePayload, type StdLearnEstimateParams, type StdLearnEstimatePromptAdvancedPayload, type StdLearnEstimateRoundRestartedPayload, type StdLearnFxCuesBurstPayload, type StdLearnFxCuesConfig, type StdLearnFxCuesEventKey, type StdLearnFxCuesParams, type StdLearnGoalSeekConfig, type StdLearnGoalSeekEventKey, type StdLearnGoalSeekGoalCheckedPayload, type StdLearnGoalSeekGoalResetPayload, type StdLearnGoalSeekLearnRoundCompletePayload, type StdLearnGoalSeekParams, type StdLearnGoalSeekParamsChangedPayload, type StdLearnGridSimCellToggledPayload, type StdLearnGridSimConfig, type StdLearnGridSimEventKey, type StdLearnGridSimGridResetPayload, type StdLearnGridSimGridSteppedPayload, type StdLearnGridSimParams, type StdLearnGridSimRunToggledPayload, type StdLearnHotspotConfig, type StdLearnHotspotEventKey, type StdLearnHotspotLearnRoundCompletePayload, type StdLearnHotspotParams, type StdLearnHotspotPromptAdvancedPayload, type StdLearnHotspotRoundRestartedPayload, type StdLearnHotspotTapJudgedPayload, type StdLearnLiveSimConfig, type StdLearnLiveSimEventKey, type StdLearnLiveSimParams, type StdLearnLiveSimRunToggledPayload, type StdLearnLiveSimSimResetPayload, type StdLearnMeasureConfig, type StdLearnMeasureEventKey, type StdLearnMeasureMeasureResetPayload, type StdLearnMeasureParams, type StdLearnMeasureProbeRecordedPayload, type StdLearnMeasureRunToggledPayload, type StdLearnParamExplorerConfig, type StdLearnParamExplorerEventKey, type StdLearnParamExplorerParams, type StdLearnParamExplorerParamsChangedPayload, type StdLearnPerturbConfig, type StdLearnPerturbEventKey, type StdLearnPerturbParams, type StdLearnPerturbRateChangedPayload, type StdLearnPerturbRunToggledPayload, type StdLearnPerturbSetpointChangedPayload, type StdLearnPerturbShockAppliedPayload, type StdLearnPerturbSimResetPayload, type StdLearnPredictConfig, type StdLearnPredictEventKey, type StdLearnPredictLearnRoundCompletePayload, type StdLearnPredictParams, type StdLearnPredictPredictionCommittedPayload, type StdLearnPredictRoundRestartedPayload, type StdLearnPredictScenarioAdvancedPayload, type StdLearnSampleAccumulatorAccumulatorResetPayload, type StdLearnSampleAccumulatorConfig, type StdLearnSampleAccumulatorEventKey, type StdLearnSampleAccumulatorParams, type StdLearnSampleAccumulatorSamplesDrawnPayload, type StdLearnSandboxConfig, type StdLearnSandboxEventKey, type StdLearnSandboxParams, type StdLearnSandboxSystemChangedPayload, type StdLearnScatterFitConfig, type StdLearnScatterFitEventKey, type StdLearnScatterFitLearnRoundCompletePayload, type StdLearnScatterFitLearnScatterFitUpdatedPayload, type StdLearnScatterFitParams, type StdLearnScenarioChoiceMadePayload, type StdLearnScenarioConfig, type StdLearnScenarioEventKey, type StdLearnScenarioParams, type StdLearnScenarioScenarioRestartedPayload, type StdLearnSim3dConfig, type StdLearnSim3dEventKey, type StdLearnSim3dParams, type StdLearnSim3dSim3dTickPayload, type StdLearnSim3dSim3dUpdatedPayload, type StdLearnSpeedDrillAnswerJudgedPayload, type StdLearnSpeedDrillConfig, type StdLearnSpeedDrillEventKey, type StdLearnSpeedDrillLearnRoundCompletePayload, type StdLearnSpeedDrillParams, type StdLearnSpeedDrillPromptAdvancedPayload, type StdLearnSpeedDrillRoundRestartedPayload, type StdLearnStepperConfig, type StdLearnStepperEventKey, type StdLearnStepperParams, type StdLearnStepperStepperAdvancedPayload, type StdLearnTour3dConfig, type StdLearnTour3dEventKey, type StdLearnTour3dLearnRoundCompletePayload, type StdLearnTour3dParams, type StdLearnTour3dTour3dUpdatedPayload, type StdLearnTracePlayerConfig, type StdLearnTracePlayerEventKey, type StdLearnTracePlayerFrameAdvancedPayload, type StdLearnTracePlayerParams, type StdLearnTracePlayerTraceDonePayload, type StdLearnTransportConfig, type StdLearnTransportEventKey, type StdLearnTransportLearnStepPayload, type StdLearnTransportLearnUpdatedPayload, type StdLearnTransportParams, type StdLearnTreeConfig, type StdLearnTreeEventKey, type StdLearnTreeParams, type StdLearnTreeTreeUpdatedPayload, type StdLifecycleConfig, type StdLifecycleEventKey, StdLifecycleLifecycleOrbitalManifest, type StdLifecycleLifecycleOrbitalParams, type StdLifecycleLifecycleSteppedPayload, type StdLifecycleLifecycleTransitionedPayload, type StdLifecycleParams, type StdLifecycleScanFailedPayload, type StdLifecycleScanRecordsLoadedPayload, type StdListDeletePayload, type StdListEditPayload, type StdListEventKey, type StdListListItemLoadFailedPayload, type StdListListItemLoadedPayload, StdListListItemOrbitalManifest, type StdListListItemOrbitalParams, type StdListListenKey, type StdListParams, type StdMarketBoard3dConfig, StdMarketBoard3dMarketBoard3DOrbitalManifest, type StdMarketBoard3dMarketBoard3DOrbitalParams, type StdMarketBoard3dParams, type StdMarketFlowConfig, type StdMarketFlowEventKey, type StdMarketFlowGameEndPayload, type StdMarketFlowParams, type StdMarketingArticleConfig, type StdMarketingArticleParams, type StdMarketingCtaConfig, type StdMarketingCtaCtaPrimaryPayload, type StdMarketingCtaCtaSecondaryPayload, type StdMarketingCtaEventKey, type StdMarketingCtaParams, type StdMarketingFeaturesConfig, type StdMarketingFeaturesEventKey, type StdMarketingFeaturesFeatureClickPayload, type StdMarketingFeaturesParams, type StdMarketingFooterConfig, type StdMarketingFooterParams, type StdMarketingHeroConfig, type StdMarketingHeroCtaPrimaryPayload, type StdMarketingHeroCtaSecondaryPayload, type StdMarketingHeroEventKey, type StdMarketingHeroParams, type StdMarketingNavConfig, type StdMarketingNavEventKey, type StdMarketingNavNavClickPayload, type StdMarketingNavParams, type StdMarketingPricingConfig, type StdMarketingPricingEventKey, type StdMarketingPricingParams, type StdMarketingPricingPlanSelectPayload, type StdMarketingShowcaseConfig, type StdMarketingShowcaseEventKey, type StdMarketingShowcaseParams, type StdMarketingShowcaseShowcaseClickPayload, type StdMarketingSplitConfig, type StdMarketingSplitParams, type StdMarketingStatsConfig, type StdMarketingStatsParams, type StdMarketingStepsConfig, type StdMarketingStepsParams, type StdMarketingTeamConfig, type StdMarketingTeamParams, type StdMeshAssetArtConfig, type StdMeshAssetArtEventKey, type StdMeshAssetArtParams, type StdMigrationJobCommittedPayload, type StdMigrationJobConfig, type StdMigrationJobDocumentFetchedPayload, type StdMigrationJobDocumentsListedPayload, type StdMigrationJobEventKey, type StdMigrationJobMigrationCallFailedPayload, type StdMigrationJobMigrationCompletedPayload, type StdMigrationJobMigrationDocumentPayload, type StdMigrationJobMigrationFailedPayload, type StdMigrationJobMigrationFetchedPayload, StdMigrationJobMigrationJobOrbitalManifest, type StdMigrationJobMigrationJobOrbitalParams, type StdMigrationJobMigrationReviewReadyPayload, type StdMigrationJobParams, type StdMlClassifyClassifiedPayload, type StdMlClassifyClassifiedRawPayload, type StdMlClassifyClassifyCallFailedPayload, type StdMlClassifyClassifyFailedPayload, type StdMlClassifyConfig, type StdMlClassifyEventKey, StdMlClassifyMlClassifyOrbitalManifest, type StdMlClassifyMlClassifyOrbitalParams, type StdMlClassifyParams, type StdMlExactCheckConfig, type StdMlExactCheckEventKey, type StdMlExactCheckExactMatchedPayload, type StdMlExactCheckExactUnmatchedPayload, StdMlExactCheckMlExactCheckOrbitalManifest, type StdMlExactCheckMlExactCheckOrbitalParams, type StdMlExactCheckParams, type StdMlInferConfig, type StdMlInferEventKey, type StdMlInferInferAbstainedPayload, type StdMlInferInferCallFailedPayload, type StdMlInferInferredPayload, type StdMlInferInferredRawPayload, StdMlInferMlInferOrbitalManifest, type StdMlInferMlInferOrbitalParams, type StdMlInferParams, type StdMlLabelCaptureConfig, type StdMlLabelCaptureEventKey, type StdMlLabelCaptureLabelCapturedPayload, StdMlLabelCaptureMlLabelCaptureOrbitalManifest, type StdMlLabelCaptureMlLabelCaptureOrbitalParams, type StdMlLabelCaptureParams, type StdMlLookupConfig, type StdMlLookupEventKey, type StdMlLookupKeyHitPayload, type StdMlLookupKeyMissPayload, StdMlLookupMlLookupOrbitalManifest, type StdMlLookupMlLookupOrbitalParams, type StdMlLookupParams, type StdMlPosteriorConfig, type StdMlPosteriorEventKey, type StdMlPosteriorEvidenceInsufficientPayload, type StdMlPosteriorMasteryReachedPayload, StdMlPosteriorMlPosteriorOrbitalManifest, type StdMlPosteriorMlPosteriorOrbitalParams, type StdMlPosteriorParams, type StdMlPosteriorRemediationNeededPayload, type StdMlSimilarityConfig, type StdMlSimilarityEmbeddedPayload, type StdMlSimilarityEventKey, StdMlSimilarityMlSimilarityOrbitalManifest, type StdMlSimilarityMlSimilarityOrbitalParams, type StdMlSimilarityParams, type StdMlSimilaritySimilarityAbstainedPayload, type StdMlSimilaritySimilarityMatchedPayload, StdModQueueModQueueItemOrbitalManifest, type StdModQueueModQueueItemOrbitalParams, type StdModQueueParams, type StdModalConfig, type StdModalEventKey, type StdModalModalRecordLoadFailedPayload, type StdModalModalRecordLoadedPayload, StdModalModalRecordOrbitalManifest, type StdModalModalRecordOrbitalParams, type StdModalParams, type StdModalSavePayload, type StdMotionBodyBodyMovedPayload, type StdMotionBodyConfig, type StdMotionBodyEventKey, type StdMotionBodyParams, type StdMultiPartyFlowConfig, type StdMultiPartyFlowEventKey, type StdMultiPartyFlowFlowLoadFailedPayload, type StdMultiPartyFlowFlowLoadedPayload, StdMultiPartyFlowMultiPartyFlowOrbitalManifest, type StdMultiPartyFlowMultiPartyFlowOrbitalParams, type StdMultiPartyFlowParams, type StdMultiPartyFlowPartyConfirmPayload, type StdMultiPartyFlowSubmitCancelPayload, type StdMultiPartyFlowSubmitDisputePayload, type StdNotificationPanelClosePayload, type StdNotificationPanelConfig, type StdNotificationPanelEventKey, type StdNotificationPanelParams, type StdNotifyOnEventConfig, type StdNotifyOnEventEventKey, type StdNotifyOnEventNotificationDispatchedPayload, type StdNotifyOnEventNotifyEmailFailedPayload, type StdNotifyOnEventNotifyEmailSentPayload, StdNotifyOnEventNotifyOnEventOrbitalManifest, type StdNotifyOnEventNotifyOnEventOrbitalParams, type StdNotifyOnEventNotifySmsFailedPayload, type StdNotifyOnEventNotifySmsSentPayload, type StdNotifyOnEventNotifyWebhookFailedPayload, type StdNotifyOnEventNotifyWebhookSentPayload, type StdNotifyOnEventParams, type StdObjectiveBoard3dConfig, StdObjectiveBoard3dObjectiveBoard3DOrbitalManifest, type StdObjectiveBoard3dObjectiveBoard3DOrbitalParams, type StdObjectiveBoard3dParams, type StdObjectiveFlowConfig, type StdObjectiveFlowEventKey, type StdObjectiveFlowGameEndPayload, type StdObjectiveFlowParams, type StdObjectiveReachBurstPayload, type StdObjectiveReachConfig, type StdObjectiveReachEventKey, type StdObjectiveReachParams, type StdObjectiveReachProgressPayload, type StdPaginationConfig, type StdPaginationEventKey, type StdPaginationPagePayload, type StdPaginationPagedItemLoadedPayload, StdPaginationPagedItemOrbitalManifest, type StdPaginationPagedItemOrbitalParams, type StdPaginationParams, type StdPatienceBurstPayload, type StdPatienceConfig, type StdPatienceCustomerLostPayload, type StdPatienceEventKey, type StdPatienceParams, type StdPatienceServiceChangedPayload, type StdPlatformerBoard2dConfig, type StdPlatformerBoard2dParams, StdPlatformerBoard2dPlatformerBoard2DOrbitalManifest, type StdPlatformerBoard2dPlatformerBoard2DOrbitalParams, type StdPlatformerBodyBodyFellPayload, type StdPlatformerBodyBodyGoalPayload, type StdPlatformerBodyBodyHazardPayload, type StdPlatformerBodyBodyJumpedPayload, type StdPlatformerBodyBodyLandedPayload, type StdPlatformerBodyBodyMovedPayload, type StdPlatformerBodyBodySkateEndPayload, type StdPlatformerBodyBodySkateStartPayload, type StdPlatformerBodyConfig, type StdPlatformerBodyEventKey, type StdPlatformerBodyParams, type StdProductionConfig, type StdProductionEventKey, type StdProductionParams, type StdProductionSpawnPayload, type StdRateLimiterConfig, type StdRateLimiterParams, StdRateLimiterRateBucketOrbitalManifest, type StdRateLimiterRateBucketOrbitalParams, type StdRatingReviewChangeSortPayload, type StdRatingReviewConfig, type StdRatingReviewEventKey, type StdRatingReviewMarkHelpfulPayload, type StdRatingReviewParams, type StdRatingReviewRateDraftPayload, StdRatingReviewRatingReviewOrbitalManifest, type StdRatingReviewRatingReviewOrbitalParams, type StdRatingReviewReviewSaveFailedPayload, type StdRatingReviewReviewSavedPayload, type StdRatingReviewReviewsLoadFailedPayload, type StdRatingReviewReviewsLoadedPayload, type StdRatingReviewSubmitReviewPayload, type StdRecurrenceConfig, type StdRecurrenceEventKey, type StdRecurrenceOpenExceptionPayload, type StdRecurrenceParams, type StdRecurrenceRecurrenceLoadFailedPayload, type StdRecurrenceRecurrenceLoadedPayload, StdRecurrenceRecurrenceOrbitalManifest, type StdRecurrenceRecurrenceOrbitalParams, type StdRecurrenceRecurrenceSaveFailedPayload, type StdRecurrenceRecurrenceSavedPayload, type StdRecurrenceRescheduleOccurrencePayload, type StdRecurrenceSaveRulePayload, type StdRecurrenceSkipOccurrencePayload, type StdRelatedConfig, type StdRelatedEventKey, type StdRelatedParams, type StdRelatedRelatedItemLoadFailedPayload, type StdRelatedRelatedItemLoadedPayload, StdRelatedRelatedItemOrbitalManifest, type StdRelatedRelatedItemOrbitalParams, type StdReminderSchedulerConfig, type StdReminderSchedulerEventKey, type StdReminderSchedulerParams, type StdReminderSchedulerReminderDuePayload, StdReminderSchedulerReminderSchedulerOrbitalManifest, type StdReminderSchedulerReminderSchedulerOrbitalParams, type StdReminderSchedulerReminderSteppedPayload, type StdReminderSchedulerScanFailedPayload, type StdReminderSchedulerScanRecordsLoadedPayload, type StdRichEditorBlocksChangePayload, type StdRichEditorConfig, type StdRichEditorDocumentLoadFailedPayload, type StdRichEditorDocumentLoadedPayload, StdRichEditorDocumentOrbitalManifest, type StdRichEditorDocumentOrbitalParams, type StdRichEditorDocumentPublishedPayload, type StdRichEditorDocumentSaveFailedPayload, type StdRichEditorDocumentSavedPayload, type StdRichEditorEventKey, type StdRichEditorOpenPayload, type StdRichEditorParams, type StdRichEditorPublishPayload, type StdRichEditorSavePayload, type StdRoundFlowConfig, type StdRoundFlowEventKey, type StdRoundFlowGameEndPayload, type StdRoundFlowParams, type StdRowAccessControlConfig, type StdRowAccessControlEventKey, type StdRowAccessControlParams, StdRowAccessControlRowAccessControlOrbitalManifest, type StdRowAccessControlRowAccessControlOrbitalParams, type StdRowAccessControlRowsFilteredPayload, type StdSavedSearchChangeFrequencyPayload, type StdSavedSearchConfig, type StdSavedSearchDeletePayload, type StdSavedSearchEditPayload, type StdSavedSearchEventKey, type StdSavedSearchParams, type StdSavedSearchRenamePayload, type StdSavedSearchSavedSearchDeletedPayload, type StdSavedSearchSavedSearchLoadFailedPayload, type StdSavedSearchSavedSearchLoadedPayload, StdSavedSearchSavedSearchOrbitalManifest, type StdSavedSearchSavedSearchOrbitalParams, type StdSavedSearchSavedSearchUpdatedPayload, type StdSavedSearchToggleAlertPayload, type StdScatterConfig, type StdScatterEventKey, type StdScatterParams, StdScatterScatterItemOrbitalManifest, type StdScatterScatterItemOrbitalParams, type StdScoreConfig, type StdScoreEventKey, type StdScoreParams, type StdSearchConfig, type StdSearchEventKey, type StdSearchParams, type StdSearchSearchPayload, StdSearchSearchResultOrbitalManifest, type StdSearchSearchResultOrbitalParams, type StdSelectionConfig, type StdSelectionEventKey, type StdSelectionParams, type StdSelectionSelectableItemLoadFailedPayload, type StdSelectionSelectableItemLoadedPayload, StdSelectionSelectableItemOrbitalManifest, type StdSelectionSelectableItemOrbitalParams, type StdSignatureCaptureChangePayload, type StdSignatureCaptureConfig, type StdSignatureCaptureEventKey, type StdSignatureCaptureParams, StdSignatureCaptureSignatureCaptureOrbitalManifest, type StdSignatureCaptureSignatureCaptureOrbitalParams, type StdSignatureCaptureSignatureLoadFailedPayload, type StdSignatureCaptureSignatureLoadedPayload, type StdSignatureCaptureSignatureSubmitFailedPayload, type StdSignatureCaptureSignatureSubmittedPayload, type StdSignatureCaptureSubmitPayload, type StdStatRowsConfig, type StdStatRowsEventKey, type StdStatRowsParams, type StdStatsConfig, type StdStatsEventKey, type StdStatsParams, StdStatsStatsItemOrbitalManifest, type StdStatsStatsItemOrbitalParams, type StdStatusLifecycleConfig, type StdStatusLifecycleControlChangeStatusRequestedPayload, type StdStatusLifecycleControlConfig, type StdStatusLifecycleControlEventKey, type StdStatusLifecycleControlParams, StdStatusLifecycleControlStatusLifecycleControlOrbitalManifest, type StdStatusLifecycleControlStatusLifecycleControlOrbitalParams, type StdStatusLifecycleControlTransitionRequestedPayload, type StdStatusLifecycleEventKey, type StdStatusLifecycleParams, type StdStatusLifecycleStatusChangeFailedPayload, type StdStatusLifecycleStatusChangedPayload, StdStatusLifecycleStatusLifecycleOrbitalManifest, type StdStatusLifecycleStatusLifecycleOrbitalParams, type StdStepFlowAdvancePayload, type StdStepFlowBackPayload, type StdStepFlowConfig, type StdStepFlowEscalatePayload, type StdStepFlowEventKey, type StdStepFlowParams, type StdStepFlowRejectPayload, type StdStepFlowRestartPayload, StdStepFlowStepFlowOrbitalManifest, type StdStepFlowStepFlowOrbitalParams, type StdStepFlowStepItemsLoadFailedPayload, type StdStepFlowStepItemsLoadedPayload, type StdSurvivalBoard3dConfig, type StdSurvivalBoard3dParams, StdSurvivalBoard3dSurvivalBoard3DOrbitalManifest, type StdSurvivalBoard3dSurvivalBoard3DOrbitalParams, type StdSurvivalFlowConfig, type StdSurvivalFlowEventKey, type StdSurvivalFlowGameEndPayload, type StdSurvivalFlowParams, type StdSvgAssetArtConfig, type StdSvgAssetArtEventKey, type StdSvgAssetArtParams, type StdTabsConfig, type StdTabsEventKey, type StdTabsParams, type StdTabsTabChangedPayload, StdTabsTabsItemOrbitalManifest, type StdTabsTabsItemOrbitalParams, type StdTacticsBoard2dConfig, type StdTacticsBoard2dParams, StdTacticsBoard2dTacticsBoard2DOrbitalManifest, type StdTacticsBoard2dTacticsBoard2DOrbitalParams, type StdTacticsBoard3dConfig, type StdTacticsBoard3dParams, StdTacticsBoard3dTacticsBoard3DOrbitalManifest, type StdTacticsBoard3dTacticsBoard3DOrbitalParams, type StdTagTaxonomyConfig, type StdTagTaxonomyEventKey, type StdTagTaxonomyParams, type StdTagTaxonomySelectTagPayload, type StdTagTaxonomyTagLoadFailedPayload, type StdTagTaxonomyTagLoadedPayload, type StdTagTaxonomyTagSelectedPayload, StdTagTaxonomyTagTaxonomyOrbitalManifest, type StdTagTaxonomyTagTaxonomyOrbitalParams, type StdThreadConfig, type StdThreadEditReplyPayload, type StdThreadEventKey, type StdThreadParams, type StdThreadReplyPayload, type StdThreadSelectPayload, type StdThreadSubmitReplyPayload, type StdThreadThreadPostCreateFailedPayload, type StdThreadThreadPostCreatedPayload, type StdThreadThreadPostLoadFailedPayload, type StdThreadThreadPostLoadedPayload, StdThreadThreadPostOrbitalManifest, type StdThreadThreadPostOrbitalParams, type StdTokenizerConfig, type StdTokenizerEventKey, StdTokenizerMlTokenizerOrbitalManifest, type StdTokenizerMlTokenizerOrbitalParams, type StdTokenizerParams, type StdTokenizerTokenizedPayload, type StdUiAccordionConfig, type StdUiAccordionEventKey, type StdUiAccordionItemTogglePayload, type StdUiAccordionParams, type StdUiAccordionTogglePayload, type StdUiActionPaletteConfig, type StdUiActionPaletteEventKey, type StdUiActionPaletteParams, type StdUiActionTileConfig, type StdUiActionTileEventKey, type StdUiActionTileParams, type StdUiActivationBlockConfig, type StdUiActivationBlockEventKey, type StdUiActivationBlockParams, type StdUiAlertClosePayload, type StdUiAlertConfig, type StdUiAlertDismissPayload, type StdUiAlertEventKey, type StdUiAlertParams, type StdUiAlgoGraphCanvasConfig, type StdUiAlgoGraphCanvasEventKey, type StdUiAlgoGraphCanvasNodeClickPayload, type StdUiAlgoGraphCanvasParams, type StdUiAlgoGraphCanvasShapeClickPayload, type StdUiAlgorithmCanvasConfig, type StdUiAlgorithmCanvasEventKey, type StdUiAlgorithmCanvasParams, type StdUiAlgorithmCanvasShapeClickPayload, type StdUiAnimatedCounterConfig, type StdUiAnimatedCounterEventKey, type StdUiAnimatedCounterParams, type StdUiAnimatedGraphicConfig, type StdUiAnimatedGraphicEventKey, type StdUiAnimatedGraphicParams, type StdUiAnimatedRevealConfig, type StdUiAnimatedRevealEventKey, type StdUiAnimatedRevealParams, type StdUiArticleSectionConfig, type StdUiArticleSectionEventKey, type StdUiArticleSectionParams, type StdUiAsideConfig, type StdUiAsideEventKey, type StdUiAsideParams, type StdUiAtlasImageConfig, type StdUiAtlasImageEventKey, type StdUiAtlasImageParams, type StdUiAtlasPanelConfig, type StdUiAtlasPanelEventKey, type StdUiAtlasPanelParams, type StdUiAvatarActionPayload, type StdUiAvatarClickPayload, type StdUiAvatarConfig, type StdUiAvatarEventKey, type StdUiAvatarParams, type StdUiBadgeConfig, type StdUiBadgeEventKey, type StdUiBadgeParams, type StdUiBadgeRemovePayload, type StdUiBehaviorViewConfig, type StdUiBehaviorViewEventKey, type StdUiBehaviorViewParams, type StdUiBiologyCanvasConfig, type StdUiBiologyCanvasEventKey, type StdUiBiologyCanvasParams, type StdUiBiologyCanvasShapeClickPayload, type StdUiBloomQuizBlockConfig, type StdUiBloomQuizBlockEventKey, type StdUiBloomQuizBlockParams, type StdUiBookChapterViewBookChapterViewLoadedPayload, StdUiBookChapterViewBookChapterViewOrbitalManifest, type StdUiBookChapterViewBookChapterViewOrbitalParams, type StdUiBookChapterViewConfig, type StdUiBookChapterViewEventKey, type StdUiBookChapterViewParams, StdUiBookCoverPageBookCoverPageOrbitalManifest, type StdUiBookCoverPageBookCoverPageOrbitalParams, type StdUiBookCoverPageConfig, type StdUiBookCoverPageEventKey, type StdUiBookCoverPageParams, StdUiBookNavBarBookNavBarOrbitalManifest, type StdUiBookNavBarBookNavBarOrbitalParams, type StdUiBookNavBarConfig, type StdUiBookNavBarEventKey, type StdUiBookNavBarParams, type StdUiBookTableOfContentsBookTableOfContentsLoadedPayload, StdUiBookTableOfContentsBookTableOfContentsOrbitalManifest, type StdUiBookTableOfContentsBookTableOfContentsOrbitalParams, type StdUiBookTableOfContentsConfig, type StdUiBookTableOfContentsEventKey, type StdUiBookTableOfContentsParams, type StdUiBookViewerBookViewerLoadedPayload, StdUiBookViewerBookViewerOrbitalManifest, type StdUiBookViewerBookViewerOrbitalParams, type StdUiBookViewerConfig, type StdUiBookViewerEventKey, type StdUiBookViewerParams, type StdUiBoxActionPayload, type StdUiBoxConfig, type StdUiBoxEventKey, type StdUiBoxHoverPayload, type StdUiBoxParams, type StdUiBranchingLogicBuilderConfig, type StdUiBranchingLogicBuilderEventKey, type StdUiBranchingLogicBuilderParams, type StdUiBranchingLogicBuilderRulesChangePayload, type StdUiBreadcrumbConfig, type StdUiBreadcrumbEventKey, type StdUiBreadcrumbItemPayload, type StdUiBreadcrumbParams, type StdUiButtonActionPayload, type StdUiButtonConfig, type StdUiButtonEventKey, type StdUiButtonParams, type StdUiCalendarGridCalendarGridLoadedPayload, type StdUiCalendarGridConfig, type StdUiCalendarGridDayClickPayload, type StdUiCalendarGridEventClickPayload, type StdUiCalendarGridEventKey, type StdUiCalendarGridLongPressPayload, type StdUiCalendarGridParams, type StdUiCalendarGridSlotClickPayload, type StdUiCalendarGridSwipeLeftPayload, type StdUiCalendarGridSwipeRightPayload, type StdUiCanvas2dConfig, type StdUiCanvas2dEventKey, type StdUiCanvas2dParams, type StdUiCanvas2dTileClickPayload, type StdUiCanvas2dTileHoverPayload, type StdUiCanvas2dTileLeavePayload, type StdUiCanvas2dUnitClickPayload, type StdUiCanvasConfig, type StdUiCanvasEventKey, type StdUiCanvasFeatureClickPayload, type StdUiCanvasParams, type StdUiCanvasTileClickPayload, type StdUiCanvasTileHoverPayload, type StdUiCanvasTileLeavePayload, type StdUiCanvasUnitClickPayload, type StdUiCardActionPayload, type StdUiCardConfig, type StdUiCardEventKey, type StdUiCardParams, type StdUiCarouselConfig, type StdUiCarouselEventKey, type StdUiCarouselParams, type StdUiCarouselSlideChangePayload, type StdUiCaseStudyCardConfig, type StdUiCaseStudyCardEventKey, type StdUiCaseStudyCardParams, type StdUiCaseStudyOrganismCaseStudyOrganismLoadedPayload, StdUiCaseStudyOrganismCaseStudyOrganismOrbitalManifest, type StdUiCaseStudyOrganismCaseStudyOrganismOrbitalParams, type StdUiCaseStudyOrganismConfig, type StdUiCaseStudyOrganismEventKey, type StdUiCaseStudyOrganismParams, type StdUiCenterConfig, type StdUiCenterEventKey, type StdUiCenterParams, type StdUiChartConfig, type StdUiChartEventKey, type StdUiChartLegendConfig, type StdUiChartLegendEventKey, type StdUiChartLegendParams, type StdUiChartParams, StdUiChatBarChatBarOrbitalManifest, type StdUiChatBarChatBarOrbitalParams, type StdUiChatBarConfig, type StdUiChatBarEventKey, type StdUiChatBarParams, type StdUiCheckboxChangePayload, type StdUiCheckboxConfig, type StdUiCheckboxEventKey, type StdUiCheckboxParams, type StdUiChemistryCanvasConfig, type StdUiChemistryCanvasEventKey, type StdUiChemistryCanvasParams, type StdUiChemistryCanvasShapeClickPayload, type StdUiChoiceButtonActionPayload, type StdUiChoiceButtonClickPayload, type StdUiChoiceButtonConfig, type StdUiChoiceButtonEventKey, type StdUiChoiceButtonParams, type StdUiCodeBlockChangePayload, type StdUiCodeBlockConfig, type StdUiCodeBlockEventKey, type StdUiCodeBlockParams, StdUiCodeRunnerPanelCodeRunnerPanelOrbitalManifest, type StdUiCodeRunnerPanelCodeRunnerPanelOrbitalParams, type StdUiCodeRunnerPanelConfig, type StdUiCodeRunnerPanelEventKey, type StdUiCodeRunnerPanelParams, type StdUiCommunityLinksConfig, type StdUiCommunityLinksEventKey, type StdUiCommunityLinksParams, type StdUiConditionalWrapperConfig, type StdUiConditionalWrapperEventKey, type StdUiConditionalWrapperParams, type StdUiConfettiEffectConfig, type StdUiConfettiEffectEventKey, type StdUiConfettiEffectParams, type StdUiConfirmDialogClosePayload, type StdUiConfirmDialogConfig, type StdUiConfirmDialogConfirmPayload, type StdUiConfirmDialogEventKey, type StdUiConfirmDialogOpenPayload, type StdUiConfirmDialogParams, type StdUiConnectionBlockConfig, type StdUiConnectionBlockEventKey, type StdUiConnectionBlockParams, type StdUiContainerConfig, type StdUiContainerEventKey, type StdUiContainerParams, type StdUiContentRendererConfig, type StdUiContentRendererEventKey, type StdUiContentRendererParams, type StdUiContentSectionConfig, type StdUiContentSectionEventKey, type StdUiContentSectionParams, type StdUiControlButtonConfig, type StdUiControlButtonEventKey, type StdUiControlButtonParams, type StdUiControlButtonPressPayload, type StdUiControlButtonReleasePayload, type StdUiControlGridActionPayload, type StdUiControlGridConfig, type StdUiControlGridDirectionPayload, type StdUiControlGridEventKey, type StdUiControlGridParams, type StdUiCtaBannerConfig, type StdUiCtaBannerEventKey, type StdUiCtaBannerParams, type StdUiDashboardGridConfig, StdUiDashboardGridDashboardGridOrbitalManifest, type StdUiDashboardGridDashboardGridOrbitalParams, type StdUiDashboardGridEventKey, type StdUiDashboardGridParams, type StdUiDataGridConfig, type StdUiDataGridDataGridLoadedPayload, type StdUiDataGridEventKey, type StdUiDataGridLoadMorePayload, type StdUiDataGridParams, type StdUiDataGridSelectionPayload, type StdUiDataGridViewPayload, type StdUiDataListConfig, type StdUiDataListDataListLoadedPayload, type StdUiDataListEventKey, type StdUiDataListItemClickPayload, type StdUiDataListLoadMorePayload, type StdUiDataListLongPressPayload, type StdUiDataListParams, type StdUiDataListReorderPayload, type StdUiDataListSwipeLeftPayload, type StdUiDataListSwipeRightPayload, type StdUiDataListViewPayload, type StdUiDateRangePickerChangePayload, type StdUiDateRangePickerConfig, type StdUiDateRangePickerEventKey, type StdUiDateRangePickerEventPayload, type StdUiDateRangePickerParams, type StdUiDateRangeSelectorConfig, type StdUiDateRangeSelectorEventKey, type StdUiDateRangeSelectorParams, type StdUiDateRangeSelectorSelectPayload, type StdUiDayCellClickPayload, type StdUiDayCellConfig, type StdUiDayCellEventKey, type StdUiDayCellParams, type StdUiDetailPanelConfig, type StdUiDetailPanelDetailPanelLoadedPayload, StdUiDetailPanelDetailPanelOrbitalManifest, type StdUiDetailPanelDetailPanelOrbitalParams, type StdUiDetailPanelEventKey, type StdUiDetailPanelParams, type StdUiDialogConfig, type StdUiDialogEventKey, type StdUiDialogParams, type StdUiDialogueBubbleConfig, type StdUiDialogueBubbleEventKey, type StdUiDialogueBubbleParams, type StdUiDividerConfig, type StdUiDividerEventKey, type StdUiDividerParams, type StdUiDocBreadcrumbConfig, type StdUiDocBreadcrumbEventKey, type StdUiDocBreadcrumbParams, type StdUiDocPaginationConfig, type StdUiDocPaginationEventKey, type StdUiDocPaginationParams, type StdUiDocSearchConfig, type StdUiDocSearchEventKey, type StdUiDocSearchParams, type StdUiDocSidebarConfig, type StdUiDocSidebarEventKey, type StdUiDocSidebarParams, type StdUiDocTocConfig, type StdUiDocTocEventKey, type StdUiDocTocParams, type StdUiDocumentViewerConfig, type StdUiDocumentViewerEventKey, type StdUiDocumentViewerParams, type StdUiDrawFxLayerConfig, type StdUiDrawFxLayerEventKey, type StdUiDrawFxLayerParams, type StdUiDrawGroupConfig, type StdUiDrawGroupEventKey, type StdUiDrawGroupParams, type StdUiDrawMeshConfig, type StdUiDrawMeshEventKey, type StdUiDrawMeshParams, type StdUiDrawShapeConfig, type StdUiDrawShapeEventKey, type StdUiDrawShapeLayerConfig, type StdUiDrawShapeLayerEventKey, type StdUiDrawShapeLayerParams, type StdUiDrawShapeParams, type StdUiDrawSpriteConfig, type StdUiDrawSpriteEventKey, type StdUiDrawSpriteLayerConfig, type StdUiDrawSpriteLayerEventKey, type StdUiDrawSpriteLayerParams, type StdUiDrawSpriteParams, type StdUiDrawTextConfig, type StdUiDrawTextEventKey, type StdUiDrawTextLayerConfig, type StdUiDrawTextLayerEventKey, type StdUiDrawTextLayerParams, type StdUiDrawTextParams, type StdUiDrawerClosePayload, type StdUiDrawerConfig, type StdUiDrawerEventKey, type StdUiDrawerOpenPayload, type StdUiDrawerParams, type StdUiDrawerSlotConfig, StdUiDrawerSlotDrawerSlotOrbitalManifest, type StdUiDrawerSlotDrawerSlotOrbitalParams, type StdUiDrawerSlotEventKey, type StdUiDrawerSlotParams, type StdUiEdgeDecorationConfig, type StdUiEdgeDecorationEventKey, type StdUiEdgeDecorationParams, type StdUiEmojiPickerConfig, type StdUiEmojiPickerEventKey, type StdUiEmojiPickerParams, type StdUiEmojiPickerPickPayload, type StdUiEmptyStateActionPayload, type StdUiEmptyStateConfig, type StdUiEmptyStateEventKey, type StdUiEmptyStateParams, type StdUiEntityCardsConfig, type StdUiEntityCardsEntityCardsLoadedPayload, StdUiEntityCardsEntityCardsOrbitalManifest, type StdUiEntityCardsEntityCardsOrbitalParams, type StdUiEntityCardsEventKey, type StdUiEntityCardsParams, type StdUiEntityCardsViewPayload, type StdUiEntityListConfig, type StdUiEntityListEntityListLoadedPayload, StdUiEntityListEntityListOrbitalManifest, type StdUiEntityListEntityListOrbitalParams, type StdUiEntityListEventKey, type StdUiEntityListItemActionsPayload, type StdUiEntityListParams, type StdUiEntityListViewPayload, type StdUiEntityTableConfig, type StdUiEntityTableEntityTableLoadedPayload, StdUiEntityTableEntityTableOrbitalManifest, type StdUiEntityTableEntityTableOrbitalParams, type StdUiEntityTableEventKey, type StdUiEntityTableParams, type StdUiEntityTableViewPayload, type StdUiErrorBoundaryConfig, type StdUiErrorBoundaryEventKey, type StdUiErrorBoundaryParams, type StdUiErrorStateConfig, type StdUiErrorStateEventKey, type StdUiErrorStateParams, type StdUiErrorStateRetryPayload, type StdUiFeatureCardConfig, type StdUiFeatureCardEventKey, type StdUiFeatureCardParams, type StdUiFeatureGridConfig, type StdUiFeatureGridEventKey, type StdUiFeatureGridOrganismConfig, type StdUiFeatureGridOrganismEventKey, type StdUiFeatureGridOrganismFeatureGridOrganismLoadedPayload, StdUiFeatureGridOrganismFeatureGridOrganismOrbitalManifest, type StdUiFeatureGridOrganismFeatureGridOrganismOrbitalParams, type StdUiFeatureGridOrganismParams, type StdUiFeatureGridParams, type StdUiFileTreeConfig, type StdUiFileTreeEventKey, type StdUiFileTreeFileSelectPayload, type StdUiFileTreeParams, type StdUiFilterGroupClearAllPayload, type StdUiFilterGroupClearPayload, type StdUiFilterGroupConfig, type StdUiFilterGroupEventKey, type StdUiFilterGroupEventPayload, type StdUiFilterGroupFilterChangePayload, type StdUiFilterGroupParams, type StdUiFilterPillClickPayload, type StdUiFilterPillConfig, type StdUiFilterPillEventKey, type StdUiFilterPillParams, type StdUiFilterPillRemovePayload, type StdUiFlexConfig, type StdUiFlexEventKey, type StdUiFlexParams, type StdUiFlipCardConfig, type StdUiFlipCardEventKey, type StdUiFlipCardFlipPayload, type StdUiFlipCardParams, type StdUiFlipContainerClickPayload, type StdUiFlipContainerConfig, type StdUiFlipContainerEventKey, type StdUiFlipContainerParams, type StdUiFloatingActionButtonActionPayload, type StdUiFloatingActionButtonClickPayload, type StdUiFloatingActionButtonConfig, type StdUiFloatingActionButtonEventKey, type StdUiFloatingActionButtonParams, type StdUiFormActionsConfig, type StdUiFormActionsEventKey, type StdUiFormActionsParams, type StdUiFormCancelPayload, type StdUiFormConfig, type StdUiFormEventKey, type StdUiFormFieldChangePayload, type StdUiFormFieldConfig, type StdUiFormFieldEventKey, type StdUiFormFieldParams, type StdUiFormFormLoadedPayload, StdUiFormFormOrbitalManifest, type StdUiFormFormOrbitalParams, type StdUiFormLayoutConfig, type StdUiFormLayoutEventKey, type StdUiFormLayoutParams, type StdUiFormParams, type StdUiFormSectionCancelPayload, type StdUiFormSectionConfig, type StdUiFormSectionEventKey, type StdUiFormSectionFieldChangePayload, type StdUiFormSectionFormSectionLoadedPayload, StdUiFormSectionFormSectionOrbitalManifest, type StdUiFormSectionFormSectionOrbitalParams, type StdUiFormSectionHeaderConfig, type StdUiFormSectionHeaderEventKey, type StdUiFormSectionHeaderParams, type StdUiFormSectionHeaderTogglePayload, type StdUiFormSectionParams, type StdUiFormSectionSubmitPayload, type StdUiFormSubmitPayload, type StdUiFxOverlayConfig, type StdUiFxOverlayEventKey, type StdUiFxOverlayParams, type StdUiGameAudioToggleConfig, type StdUiGameAudioToggleEventKey, type StdUiGameAudioToggleParams, type StdUiGameHudConfig, type StdUiGameHudEventKey, type StdUiGameHudParams, type StdUiGameIconConfig, type StdUiGameIconEventKey, type StdUiGameIconParams, type StdUiGameMenuConfig, type StdUiGameMenuEventKey, type StdUiGameMenuParams, type StdUiGameMenuSelectPayload, type StdUiGeometricPatternConfig, type StdUiGeometricPatternEventKey, type StdUiGeometricPatternParams, type StdUiGradientDividerConfig, type StdUiGradientDividerEventKey, type StdUiGradientDividerParams, type StdUiGraphCanvasBadgeClickPayload, type StdUiGraphCanvasConfig, type StdUiGraphCanvasEventKey, type StdUiGraphCanvasMarkClickPayload, type StdUiGraphCanvasNodeClickPayload, type StdUiGraphCanvasNodeDoubleClickPayload, type StdUiGraphCanvasParams, type StdUiGraphViewConfig, type StdUiGraphViewEventKey, type StdUiGraphViewNodeClickPayload, type StdUiGraphViewNodeHoverPayload, type StdUiGraphViewParams, type StdUiGridConfig, type StdUiGridEventKey, type StdUiGridParams, type StdUiHeaderConfig, type StdUiHeaderEventKey, type StdUiHeaderLogoClickPayload, type StdUiHeaderMenuTogglePayload, type StdUiHeaderParams, type StdUiHeaderSearchPayload, type StdUiHeaderUserClickPayload, type StdUiHealthBarConfig, type StdUiHealthBarEventKey, type StdUiHealthBarParams, type StdUiHeroOrganismConfig, type StdUiHeroOrganismEventKey, type StdUiHeroOrganismHeroOrganismLoadedPayload, StdUiHeroOrganismHeroOrganismOrbitalManifest, type StdUiHeroOrganismHeroOrganismOrbitalParams, type StdUiHeroOrganismParams, type StdUiHeroSectionConfig, type StdUiHeroSectionEventKey, type StdUiHeroSectionParams, type StdUiHstackActionPayload, type StdUiHstackConfig, type StdUiHstackEventKey, type StdUiHstackParams, type StdUiIconConfig, type StdUiIconEventKey, type StdUiIconParams, type StdUiImportPreviewTreeCancelPayload, type StdUiImportPreviewTreeConfig, type StdUiImportPreviewTreeConfirmPayload, type StdUiImportPreviewTreeEventKey, type StdUiImportPreviewTreeParams, type StdUiImportProgressConfig, type StdUiImportProgressEventKey, type StdUiImportProgressParams, type StdUiImportSourcePickerConfig, type StdUiImportSourcePickerEventKey, type StdUiImportSourcePickerParams, type StdUiImportSourcePickerSelectPayload, type StdUiInfiniteScrollSentinelConfig, type StdUiInfiniteScrollSentinelEventKey, type StdUiInfiniteScrollSentinelLoadMorePayload, type StdUiInfiniteScrollSentinelParams, type StdUiInputActionPayload, type StdUiInputChangePayload, type StdUiInputClearPayload, type StdUiInputConfig, type StdUiInputEventKey, type StdUiInputGroupActionPayload, type StdUiInputGroupChangePayload, type StdUiInputGroupClearPayload, type StdUiInputGroupConfig, type StdUiInputGroupEventKey, type StdUiInputGroupParams, type StdUiInputParams, type StdUiInstallBoxConfig, type StdUiInstallBoxEventKey, type StdUiInstallBoxParams, type StdUiJazariStateMachineConfig, type StdUiJazariStateMachineEventKey, type StdUiJazariStateMachineParams, type StdUiLabelConfig, type StdUiLabelEventKey, type StdUiLabelParams, type StdUiLawReferenceTooltipConfig, type StdUiLawReferenceTooltipEventKey, type StdUiLawReferenceTooltipParams, type StdUiLearningCanvasConfig, type StdUiLearningCanvasEventKey, type StdUiLearningCanvasParams, type StdUiLearningCanvasShapeClickPayload, type StdUiLearningCanvasShapeHoverPayload, type StdUiLightboxClosePayload, type StdUiLightboxConfig, type StdUiLightboxEventKey, type StdUiLightboxIndexChangePayload, type StdUiLightboxOpenPayload, type StdUiLightboxParams, type StdUiLikertScaleChangePayload, type StdUiLikertScaleConfig, type StdUiLikertScaleEventKey, type StdUiLikertScaleParams, type StdUiLineChartConfig, type StdUiLineChartEventKey, type StdUiLineChartParams, type StdUiLoadingStateConfig, type StdUiLoadingStateEventKey, type StdUiLoadingStateParams, type StdUiMapViewConfig, type StdUiMapViewEventKey, type StdUiMapViewMapClickPayload, type StdUiMapViewMarkerClickPayload, type StdUiMapViewParams, type StdUiMarkdownContentConfig, type StdUiMarkdownContentEventKey, type StdUiMarkdownContentParams, type StdUiMarketingFooterConfig, type StdUiMarketingFooterEventKey, type StdUiMarketingFooterParams, type StdUiMarketingStatCardConfig, type StdUiMarketingStatCardEventKey, type StdUiMarketingStatCardParams, type StdUiMasterDetailConfig, type StdUiMasterDetailEventKey, type StdUiMasterDetailLayoutConfig, type StdUiMasterDetailLayoutEventKey, StdUiMasterDetailLayoutMasterDetailLayoutOrbitalManifest, type StdUiMasterDetailLayoutMasterDetailLayoutOrbitalParams, type StdUiMasterDetailLayoutParams, type StdUiMasterDetailMasterDetailLoadedPayload, StdUiMasterDetailMasterDetailOrbitalManifest, type StdUiMasterDetailMasterDetailOrbitalParams, type StdUiMasterDetailParams, type StdUiMathCanvasConfig, type StdUiMathCanvasEventKey, type StdUiMathCanvasParams, type StdUiMathCanvasShapeClickPayload, type StdUiMatrixQuestionChangePayload, type StdUiMatrixQuestionConfig, type StdUiMatrixQuestionEventKey, type StdUiMatrixQuestionParams, type StdUiMediaGalleryConfig, type StdUiMediaGalleryEventKey, type StdUiMediaGalleryMediaGalleryLoadedPayload, StdUiMediaGalleryMediaGalleryOrbitalManifest, type StdUiMediaGalleryMediaGalleryOrbitalParams, type StdUiMediaGalleryParams, type StdUiMediaGallerySelectionPayload, type StdUiMenuConfig, type StdUiMenuEventKey, type StdUiMenuParams, type StdUiMeterConfig, type StdUiMeterEventKey, type StdUiMeterParams, type StdUiModalClosePayload, type StdUiModalConfig, type StdUiModalEventKey, type StdUiModalExitedPayload, type StdUiModalOpenPayload, type StdUiModalParams, type StdUiModalSlotConfig, type StdUiModalSlotEventKey, StdUiModalSlotModalSlotOrbitalManifest, type StdUiModalSlotModalSlotOrbitalParams, type StdUiModalSlotParams, type StdUiModuleCardConfig, type StdUiModuleCardEventKey, type StdUiModuleCardParams, type StdUiNavigationConfig, type StdUiNavigationEventKey, type StdUiNavigationParams, type StdUiNotificationActionPayload, type StdUiNotificationConfig, type StdUiNotificationDismissPayload, type StdUiNotificationEventKey, type StdUiNotificationParams, type StdUiNumberStepperActionPayload, type StdUiNumberStepperChangePayload, type StdUiNumberStepperConfig, type StdUiNumberStepperEventKey, type StdUiNumberStepperParams, type StdUiOptionConstraintGroupChangePayload, type StdUiOptionConstraintGroupConfig, type StdUiOptionConstraintGroupEventKey, type StdUiOptionConstraintGroupParams, type StdUiOrbitalVisualizationClickPayload, type StdUiOrbitalVisualizationConfig, type StdUiOrbitalVisualizationEventKey, type StdUiOrbitalVisualizationParams, type StdUiOverlayActionPayload, type StdUiOverlayConfig, type StdUiOverlayEventKey, type StdUiOverlayParams, type StdUiPageHeaderBackPayload, type StdUiPageHeaderConfig, type StdUiPageHeaderEventKey, type StdUiPageHeaderParams, type StdUiPageHeaderTabChangePayload, type StdUiPageTransitionConfig, type StdUiPageTransitionEventKey, type StdUiPageTransitionParams, type StdUiPaginationConfig, type StdUiPaginationEventKey, type StdUiPaginationPageChangePayload, type StdUiPaginationPageSizeChangePayload, type StdUiPaginationParams, type StdUiPatternTileConfig, type StdUiPatternTileEventKey, type StdUiPatternTileParams, type StdUiPhysicsCanvasConfig, type StdUiPhysicsCanvasEventKey, type StdUiPhysicsCanvasParams, type StdUiPhysicsCanvasShapeClickPayload, type StdUiPopoverConfig, type StdUiPopoverEventKey, type StdUiPopoverOpenChangePayload, type StdUiPopoverParams, type StdUiPositionedCanvasConfig, type StdUiPositionedCanvasEventKey, type StdUiPositionedCanvasMovePayload, type StdUiPositionedCanvasParams, type StdUiPositionedCanvasPositionedCanvasLoadedPayload, type StdUiPositionedCanvasSelectPayload, type StdUiPresenceConfig, type StdUiPresenceEventKey, type StdUiPresenceParams, type StdUiPricingCardConfig, type StdUiPricingCardEventKey, type StdUiPricingCardParams, type StdUiPricingGridConfig, type StdUiPricingGridEventKey, type StdUiPricingGridParams, type StdUiPricingOrganismConfig, type StdUiPricingOrganismEventKey, type StdUiPricingOrganismParams, type StdUiPricingOrganismPricingOrganismLoadedPayload, StdUiPricingOrganismPricingOrganismOrbitalManifest, type StdUiPricingOrganismPricingOrganismOrbitalParams, type StdUiProgressBarConfig, type StdUiProgressBarEventKey, type StdUiProgressBarParams, type StdUiProgressDotsConfig, type StdUiProgressDotsDotClickPayload, type StdUiProgressDotsEventKey, type StdUiProgressDotsParams, type StdUiPullQuoteConfig, type StdUiPullQuoteEventKey, type StdUiPullQuoteParams, type StdUiPullToRefreshConfig, type StdUiPullToRefreshEventKey, type StdUiPullToRefreshParams, type StdUiPullToRefreshRefreshPayload, type StdUiQrScannerConfig, type StdUiQrScannerEventKey, type StdUiQrScannerParams, type StdUiQrScannerScanPayload, type StdUiQuizBlockConfig, type StdUiQuizBlockEventKey, type StdUiQuizBlockParams, type StdUiRadioActionPayload, type StdUiRadioConfig, type StdUiRadioEventKey, type StdUiRadioParams, type StdUiRangeSliderActionPayload, type StdUiRangeSliderChangePayload, type StdUiRangeSliderConfig, type StdUiRangeSliderEventKey, type StdUiRangeSliderParams, type StdUiReflectionBlockConfig, type StdUiReflectionBlockEventKey, type StdUiReflectionBlockParams, type StdUiRelationSelectChangePayload, type StdUiRelationSelectConfig, type StdUiRelationSelectEventKey, type StdUiRelationSelectParams, type StdUiRepeatableFormSectionAddPayload, type StdUiRepeatableFormSectionConfig, type StdUiRepeatableFormSectionEventKey, type StdUiRepeatableFormSectionParams, type StdUiRepeatableFormSectionRemovePayload, type StdUiRepeatableFormSectionReorderPayload, type StdUiReplyTreeConfig, type StdUiReplyTreeContinueThreadPayload, type StdUiReplyTreeEventKey, type StdUiReplyTreeFlagPayload, type StdUiReplyTreeParams, type StdUiReplyTreeReplyPayload, type StdUiReplyTreeReplyTreeLoadedPayload, type StdUiReplyTreeVotePayload, type StdUiRichBlockEditorChangePayload, type StdUiRichBlockEditorConfig, type StdUiRichBlockEditorEventKey, type StdUiRichBlockEditorParams, type StdUiRichBlockEditorRichBlockEditorLoadedPayload, type StdUiRuntimeDebuggerConfig, type StdUiRuntimeDebuggerEventKey, type StdUiRuntimeDebuggerParams, StdUiRuntimeDebuggerRuntimeDebuggerOrbitalManifest, type StdUiRuntimeDebuggerRuntimeDebuggerOrbitalParams, type StdUiScaledDiagramConfig, type StdUiScaledDiagramEventKey, type StdUiScaledDiagramParams, type StdUiScoreDisplayConfig, type StdUiScoreDisplayEventKey, type StdUiScoreDisplayParams, type StdUiSearchInputConfig, type StdUiSearchInputEventKey, type StdUiSearchInputEventPayload, type StdUiSearchInputParams, type StdUiSearchInputSearchPayload, type StdUiSectionConfig, type StdUiSectionEventKey, type StdUiSectionHeaderConfig, type StdUiSectionHeaderEventKey, type StdUiSectionHeaderParams, type StdUiSectionParams, type StdUiSegmentRendererConfig, type StdUiSegmentRendererEventKey, type StdUiSegmentRendererParams, StdUiSegmentRendererSegmentRendererOrbitalManifest, type StdUiSegmentRendererSegmentRendererOrbitalParams, type StdUiSelectActionPayload, type StdUiSelectChangePayload, type StdUiSelectConfig, type StdUiSelectEventKey, type StdUiSelectParams, type StdUiSelectValueChangePayload, type StdUiSequenceBarConfig, type StdUiSequenceBarEventKey, type StdUiSequenceBarParams, type StdUiSequenceBarSlotDropPayload, type StdUiSequenceBarSlotRemovePayload, type StdUiServiceCatalogConfig, type StdUiServiceCatalogEventKey, type StdUiServiceCatalogParams, type StdUiShowcaseCardConfig, type StdUiShowcaseCardEventKey, type StdUiShowcaseCardParams, type StdUiShowcaseOrganismConfig, type StdUiShowcaseOrganismEventKey, type StdUiShowcaseOrganismParams, type StdUiShowcaseOrganismShowcaseOrganismLoadedPayload, StdUiShowcaseOrganismShowcaseOrganismOrbitalManifest, type StdUiShowcaseOrganismShowcaseOrganismOrbitalParams, type StdUiSidePanelClosePayload, type StdUiSidePanelConfig, type StdUiSidePanelEventKey, type StdUiSidePanelOpenPayload, type StdUiSidePanelParams, type StdUiSidebarClosePayload, type StdUiSidebarCollapseChangePayload, type StdUiSidebarConfig, type StdUiSidebarEventKey, type StdUiSidebarLogoClickPayload, type StdUiSidebarParams, type StdUiSignaturePadChangePayload, type StdUiSignaturePadClearPayload, type StdUiSignaturePadConfig, type StdUiSignaturePadEventKey, type StdUiSignaturePadParams, type StdUiSignaturePadSignPayload, type StdUiSimpleGridConfig, type StdUiSimpleGridEventKey, type StdUiSimpleGridParams, type StdUiSkeletonConfig, type StdUiSkeletonEventKey, type StdUiSkeletonParams, type StdUiSocialProofConfig, type StdUiSocialProofEventKey, type StdUiSocialProofParams, type StdUiSortableListConfig, type StdUiSortableListEventKey, type StdUiSortableListParams, type StdUiSortableListReorderPayload, type StdUiSortableListSortableListLoadedPayload, type StdUiSpacerConfig, type StdUiSpacerEventKey, type StdUiSpacerParams, type StdUiSparklineConfig, type StdUiSparklineEventKey, type StdUiSparklineParams, type StdUiSpinnerConfig, type StdUiSpinnerEventKey, type StdUiSpinnerParams, type StdUiSplitConfig, type StdUiSplitEventKey, type StdUiSplitPaneConfig, type StdUiSplitPaneEventKey, type StdUiSplitPaneParams, StdUiSplitPaneSplitPaneOrbitalManifest, type StdUiSplitPaneSplitPaneOrbitalParams, type StdUiSplitParams, type StdUiSplitSectionConfig, type StdUiSplitSectionEventKey, type StdUiSplitSectionParams, type StdUiStackActionPayload, type StdUiStackConfig, type StdUiStackEventKey, type StdUiStackParams, type StdUiStarRatingActionPayload, type StdUiStarRatingChangePayload, type StdUiStarRatingConfig, type StdUiStarRatingEventKey, type StdUiStarRatingParams, type StdUiStatBadgeConfig, type StdUiStatBadgeEventKey, type StdUiStatBadgeParams, type StdUiStatCardConfig, type StdUiStatCardEventKey, type StdUiStatCardParams, type StdUiStatCardStatCardLoadedPayload, StdUiStatCardStatCardOrbitalManifest, type StdUiStatCardStatCardOrbitalParams, type StdUiStatDisplayConfig, type StdUiStatDisplayEventKey, type StdUiStatDisplayParams, type StdUiStateGraphConfig, type StdUiStateGraphEventKey, type StdUiStateGraphNodeClickPayload, type StdUiStateGraphParams, type StdUiStateJsonViewConfig, type StdUiStateJsonViewEventKey, type StdUiStateJsonViewParams, type StdUiStateMachineViewConfig, type StdUiStateMachineViewEventKey, type StdUiStateMachineViewParams, StdUiStateMachineViewStateMachineViewOrbitalManifest, type StdUiStateMachineViewStateMachineViewOrbitalParams, type StdUiStatsGridConfig, type StdUiStatsGridEventKey, type StdUiStatsGridParams, type StdUiStatsOrganismConfig, type StdUiStatsOrganismEventKey, type StdUiStatsOrganismParams, type StdUiStatsOrganismStatsOrganismLoadedPayload, StdUiStatsOrganismStatsOrganismOrbitalManifest, type StdUiStatsOrganismStatsOrganismOrbitalParams, type StdUiStatusDotConfig, type StdUiStatusDotEventKey, type StdUiStatusDotParams, type StdUiStepFlowConfig, type StdUiStepFlowEventKey, type StdUiStepFlowOrganismConfig, type StdUiStepFlowOrganismEventKey, type StdUiStepFlowOrganismParams, type StdUiStepFlowOrganismStepFlowOrganismLoadedPayload, StdUiStepFlowOrganismStepFlowOrganismOrbitalManifest, type StdUiStepFlowOrganismStepFlowOrganismOrbitalParams, type StdUiStepFlowParams, type StdUiSubagentTracePanelClosePayload, type StdUiSubagentTracePanelConfig, type StdUiSubagentTracePanelEventKey, type StdUiSubagentTracePanelOpenPayload, type StdUiSubagentTracePanelParams, StdUiSubagentTracePanelSubagentTracePanelOrbitalManifest, type StdUiSubagentTracePanelSubagentTracePanelOrbitalParams, type StdUiSvgBranchConfig, type StdUiSvgBranchEventKey, type StdUiSvgBranchParams, type StdUiSvgConnectionConfig, type StdUiSvgConnectionEventKey, type StdUiSvgConnectionParams, type StdUiSvgFlowConfig, type StdUiSvgFlowEventKey, type StdUiSvgFlowParams, type StdUiSvgGridConfig, type StdUiSvgGridEventKey, type StdUiSvgGridParams, type StdUiSvgLobeConfig, type StdUiSvgLobeEventKey, type StdUiSvgLobeParams, type StdUiSvgMeshConfig, type StdUiSvgMeshEventKey, type StdUiSvgMeshParams, type StdUiSvgMorphConfig, type StdUiSvgMorphEventKey, type StdUiSvgMorphParams, type StdUiSvgNodeConfig, type StdUiSvgNodeEventKey, type StdUiSvgNodeParams, type StdUiSvgPulseConfig, type StdUiSvgPulseEventKey, type StdUiSvgPulseParams, type StdUiSvgRingConfig, type StdUiSvgRingEventKey, type StdUiSvgRingParams, type StdUiSvgShieldConfig, type StdUiSvgShieldEventKey, type StdUiSvgShieldParams, type StdUiSvgStackConfig, type StdUiSvgStackEventKey, type StdUiSvgStackParams, type StdUiSwipeableRowConfig, type StdUiSwipeableRowEventKey, type StdUiSwipeableRowParams, type StdUiSwitchChangePayload, type StdUiSwitchConfig, type StdUiSwitchEventKey, type StdUiSwitchParams, type StdUiTabbedContainerConfig, type StdUiTabbedContainerEventKey, type StdUiTabbedContainerParams, type StdUiTabbedContainerTabChangePayload, StdUiTabbedContainerTabbedContainerOrbitalManifest, type StdUiTabbedContainerTabbedContainerOrbitalParams, type StdUiTableViewConfig, type StdUiTableViewEventKey, type StdUiTableViewParams, type StdUiTableViewSelectPayload, type StdUiTableViewSortPayload, type StdUiTableViewTableViewLoadedPayload, type StdUiTableViewViewPayload, type StdUiTabsConfig, type StdUiTabsEventKey, type StdUiTabsParams, type StdUiTabsTabChangePayload, type StdUiTagCloudConfig, type StdUiTagCloudEventKey, type StdUiTagCloudParams, type StdUiTagInputAddPayload, type StdUiTagInputChangePayload, type StdUiTagInputConfig, type StdUiTagInputEventKey, type StdUiTagInputParams, type StdUiTagInputRemovePayload, type StdUiTeamCardConfig, type StdUiTeamCardEventKey, type StdUiTeamCardParams, type StdUiTeamOrganismConfig, type StdUiTeamOrganismEventKey, type StdUiTeamOrganismParams, type StdUiTeamOrganismTeamOrganismLoadedPayload, StdUiTeamOrganismTeamOrganismOrbitalManifest, type StdUiTeamOrganismTeamOrganismOrbitalParams, type StdUiTextHighlightActionPayload, type StdUiTextHighlightClickPayload, type StdUiTextHighlightConfig, type StdUiTextHighlightEventKey, type StdUiTextHighlightHoverPayload, type StdUiTextHighlightMouseEnterPayload, type StdUiTextHighlightMouseLeavePayload, type StdUiTextHighlightParams, type StdUiTextareaActionPayload, type StdUiTextareaChangePayload, type StdUiTextareaConfig, type StdUiTextareaEventKey, type StdUiTextareaParams, type StdUiThemeToggleConfig, type StdUiThemeToggleEventKey, type StdUiThemeToggleParams, type StdUiTimeSlotCellClickPayload, type StdUiTimeSlotCellConfig, type StdUiTimeSlotCellEventKey, type StdUiTimeSlotCellParams, type StdUiTimelineConfig, type StdUiTimelineEventKey, type StdUiTimelineParams, type StdUiTimelineTimelineLoadedPayload, StdUiTimelineTimelineOrbitalManifest, type StdUiTimelineTimelineOrbitalParams, type StdUiTimelineViewPayload, type StdUiTimerDisplayConfig, type StdUiTimerDisplayEventKey, type StdUiTimerDisplayParams, StdUiTimerDisplayTimerDisplayOrbitalManifest, type StdUiTimerDisplayTimerDisplayOrbitalParams, type StdUiToastSlotConfig, type StdUiToastSlotEventKey, type StdUiToastSlotParams, StdUiToastSlotToastSlotOrbitalManifest, type StdUiToastSlotToastSlotOrbitalParams, type StdUiTooltipConfig, type StdUiTooltipEventKey, type StdUiTooltipParams, type StdUiTraitFrameConfig, type StdUiTraitFrameEventKey, type StdUiTraitFrameParams, type StdUiTraitSlotClickPayload, type StdUiTraitSlotConfig, type StdUiTraitSlotDragStartPayload, type StdUiTraitSlotDropPayload, type StdUiTraitSlotEventKey, type StdUiTraitSlotItemDropPayload, type StdUiTraitSlotParams, type StdUiTraitSlotRemovePayload, type StdUiTrendIndicatorConfig, type StdUiTrendIndicatorEventKey, type StdUiTrendIndicatorParams, type StdUiTypewriterTextCompletePayload, type StdUiTypewriterTextConfig, type StdUiTypewriterTextEventKey, type StdUiTypewriterTextParams, type StdUiTypographyConfig, type StdUiTypographyEventKey, type StdUiTypographyParams, type StdUiUiSlotRendererConfig, type StdUiUiSlotRendererEventKey, type StdUiUiSlotRendererParams, StdUiUiSlotRendererUiSlotRendererOrbitalManifest, type StdUiUiSlotRendererUiSlotRendererOrbitalParams, type StdUiUploadDropZoneActionPayload, type StdUiUploadDropZoneConfig, type StdUiUploadDropZoneEventKey, type StdUiUploadDropZoneParams, type StdUiVersionDiffConfig, type StdUiVersionDiffEventKey, type StdUiVersionDiffParams, type StdUiVersionDiffRevertPayload, type StdUiVersionDiffSelectAfterPayload, type StdUiVersionDiffSelectBeforePayload, type StdUiViolationAlertConfig, type StdUiViolationAlertDismissPayload, type StdUiViolationAlertEventKey, type StdUiViolationAlertNavigateToFieldPayload, type StdUiViolationAlertParams, type StdUiVoteStackConfig, type StdUiVoteStackEventKey, type StdUiVoteStackParams, type StdUiVoteStackVotePayload, type StdUiVstackActionPayload, type StdUiVstackConfig, type StdUiVstackEventKey, type StdUiVstackParams, type StdUiWizardContainerBackPayload, type StdUiWizardContainerCompletePayload, type StdUiWizardContainerConfig, type StdUiWizardContainerEventKey, type StdUiWizardContainerNextPayload, type StdUiWizardContainerParams, type StdUiWizardContainerStepChangePayload, type StdUiWizardNavigationBackClickPayload, type StdUiWizardNavigationBackPayload, type StdUiWizardNavigationCompleteClickPayload, type StdUiWizardNavigationCompletePayload, type StdUiWizardNavigationConfig, type StdUiWizardNavigationEventKey, type StdUiWizardNavigationNextClickPayload, type StdUiWizardNavigationNextPayload, type StdUiWizardNavigationParams, type StdUiWizardProgressConfig, type StdUiWizardProgressEventKey, type StdUiWizardProgressParams, type StdUiWizardProgressStepClickPayload, type StdVersionHistoryComparePayload, type StdVersionHistoryConfig, type StdVersionHistoryEventKey, type StdVersionHistoryOpenRevisionPayload, type StdVersionHistoryParams, type StdVersionHistoryRevisionLoadFailedPayload, type StdVersionHistoryRevisionLoadedPayload, StdVersionHistoryRevisionOrbitalManifest, type StdVersionHistoryRevisionOrbitalParams, type StdVersionHistoryRevisionRollbackFailedPayload, type StdVersionHistoryRevisionRolledBackPayload, type StdVersionHistoryRollbackPayload, type StdVoteConfig, type StdVoteEventKey, type StdVoteParams, type StdVoteVoteCastFailedPayload, type StdVoteVoteCastedPayload, type StdVoteVoteLoadFailedPayload, type StdVoteVoteLoadedPayload, StdVoteVoteOrbitalManifest, type StdVoteVoteOrbitalParams, type StdVoteVotePayload, type StdWeightValidatorConfig, type StdWeightValidatorEventKey, StdWeightValidatorMlWeightValidatorOrbitalManifest, type StdWeightValidatorMlWeightValidatorOrbitalParams, type StdWeightValidatorParams, type StdWeightValidatorWeightsAcceptedPayload, type StdWeightValidatorWeightsRejectedPayload, type StdWizardAdvancePayload, type StdWizardCancelPayload, type StdWizardConfig, type StdWizardEventKey, type StdWizardParams, type StdWizardWizardLoadFailedPayload, type StdWizardWizardLoadedPayload, StdWizardWizardOrbitalManifest, type StdWizardWizardOrbitalParams, type StdWizardWizardSaveFailedPayload, type StdWizardWizardSavedPayload, type StdWorldmapBoard2dConfig, type StdWorldmapBoard2dParams, StdWorldmapBoard2dWorldMapBoard2DOrbitalManifest, type StdWorldmapBoard2dWorldMapBoard2DOrbitalParams, type StdXpConfig, type StdXpEventKey, type StdXpHealPayload, type StdXpParams, dispatchOrbitalFactory, getOrbitalFactoryManifest, isStdAgentBuilderAgentBuilderOrbitalParams, isStdAgentCompletionAgentCompletionOrbitalParams, isStdAgentContextAgentContextOrbitalParams, isStdAgentFixLoopAgentFixLoopOrbitalParams, isStdAgentMemoryAgentMemoryOrbitalParams, isStdAgentPlannerAgentPlannerOrbitalParams, isStdAgentRabitCoordinatorOrbitalParams, isStdAgentRabitOrbitalProcessOrbitalParams, isStdAgentSessionAgentSessionOrbitalParams, isStdAgentToolCallAgentToolCallOrbitalParams, isStdAgentToolLoopAgentToolLoopOrbitalParams, isStdAgentTraceAgentTraceOrbitalParams, isStdAnimTickAnimTickOrbitalParams, isStdAppLayoutAppLayoutOrbitalParams, isStdAppSearchAppSearchOrbitalParams, isStdApprovalGateApprovalGateOrbitalParams, isStdArcadeBoard3dArcadeBoard3DFrameOrbitalParams, isStdAuditCaptureAuditCaptureOrbitalParams, isStdBillableHourBillableHourOrbitalParams, isStdBoardBoardOrbitalParams, isStdBrowseBrowseItemOrbitalParams, isStdCacheAsideCacheEntryOrbitalParams, isStdCalendarCalendarEventOrbitalParams, isStdCascadeOnDeleteCascadeOnDeleteOrbitalParams, isStdCircuitBreakerServiceNodeOrbitalParams, isStdConfirmationConfirmActionOrbitalParams, isStdCooldownCooldownOrbitalParams, isStdCrewBoard2dCrewBoard2DOrbitalParams, isStdCrossReferenceCrossReferenceOrbitalParams, isStdDashboardGridEmbeddedDashboardGridEmbeddedOrbitalParams, isStdDataCollectorMlDataCollectorOrbitalParams, isStdDataErasureDataErasureOrbitalParams, isStdDateRangeDateRangeOrbitalParams, isStdDungeonBoard2dDungeonBoard2DOrbitalParams, isStdEscalatingDecisionEscalatingDecisionOrbitalParams, isStdEsignFlowSignatureSessionOrbitalParams, isStdEsignRequestESignRequestOrbitalParams, isStdEventLogEventLogOrbitalParams, isStdExportExportOrbitalParams, isStdFileStoreStoredFileOrbitalParams, isStdFilterFilterTargetOrbitalParams, isStdFormAdvancedFormEntryOrbitalParams, isStdGalleryGalleryItemOrbitalParams, isStdGameClockGameClockOrbitalParams, isStdGeosearchGeoSearchResultOrbitalParams, isStdGraphBuilderGraphBuilderOrbitalParams, isStdGraphsGraphItemOrbitalParams, isStdImageUploadMultiUploadedImageOrbitalParams, isStdKnowledgeTracingKnowledgeTracingOrbitalParams, isStdLifecycleLifecycleOrbitalParams, isStdListListItemOrbitalParams, isStdMarketBoard3dMarketBoard3DOrbitalParams, isStdMigrationJobMigrationJobOrbitalParams, isStdMlClassifyMlClassifyOrbitalParams, isStdMlExactCheckMlExactCheckOrbitalParams, isStdMlInferMlInferOrbitalParams, isStdMlLabelCaptureMlLabelCaptureOrbitalParams, isStdMlLookupMlLookupOrbitalParams, isStdMlPosteriorMlPosteriorOrbitalParams, isStdMlSimilarityMlSimilarityOrbitalParams, isStdModQueueModQueueItemOrbitalParams, isStdModalModalRecordOrbitalParams, isStdMultiPartyFlowMultiPartyFlowOrbitalParams, isStdNotifyOnEventNotifyOnEventOrbitalParams, isStdObjectiveBoard3dObjectiveBoard3DOrbitalParams, isStdPaginationPagedItemOrbitalParams, isStdPlatformerBoard2dPlatformerBoard2DOrbitalParams, isStdRateLimiterRateBucketOrbitalParams, isStdRatingReviewRatingReviewOrbitalParams, isStdRecurrenceRecurrenceOrbitalParams, isStdRelatedRelatedItemOrbitalParams, isStdReminderSchedulerReminderSchedulerOrbitalParams, isStdRichEditorDocumentOrbitalParams, isStdRowAccessControlRowAccessControlOrbitalParams, isStdSavedSearchSavedSearchOrbitalParams, isStdScatterScatterItemOrbitalParams, isStdSearchSearchResultOrbitalParams, isStdSelectionSelectableItemOrbitalParams, isStdSignatureCaptureSignatureCaptureOrbitalParams, isStdStatsStatsItemOrbitalParams, isStdStatusLifecycleControlStatusLifecycleControlOrbitalParams, isStdStatusLifecycleStatusLifecycleOrbitalParams, isStdStepFlowStepFlowOrbitalParams, isStdSurvivalBoard3dSurvivalBoard3DOrbitalParams, isStdTabsTabsItemOrbitalParams, isStdTacticsBoard2dTacticsBoard2DOrbitalParams, isStdTacticsBoard3dTacticsBoard3DOrbitalParams, isStdTagTaxonomyTagTaxonomyOrbitalParams, isStdThreadThreadPostOrbitalParams, isStdTokenizerMlTokenizerOrbitalParams, isStdUiBookChapterViewBookChapterViewOrbitalParams, isStdUiBookCoverPageBookCoverPageOrbitalParams, isStdUiBookNavBarBookNavBarOrbitalParams, isStdUiBookTableOfContentsBookTableOfContentsOrbitalParams, isStdUiBookViewerBookViewerOrbitalParams, isStdUiCaseStudyOrganismCaseStudyOrganismOrbitalParams, isStdUiChatBarChatBarOrbitalParams, isStdUiCodeRunnerPanelCodeRunnerPanelOrbitalParams, isStdUiDashboardGridDashboardGridOrbitalParams, isStdUiDetailPanelDetailPanelOrbitalParams, isStdUiDrawerSlotDrawerSlotOrbitalParams, isStdUiEntityCardsEntityCardsOrbitalParams, isStdUiEntityListEntityListOrbitalParams, isStdUiEntityTableEntityTableOrbitalParams, isStdUiFeatureGridOrganismFeatureGridOrganismOrbitalParams, isStdUiFormFormOrbitalParams, isStdUiFormSectionFormSectionOrbitalParams, isStdUiHeroOrganismHeroOrganismOrbitalParams, isStdUiMasterDetailLayoutMasterDetailLayoutOrbitalParams, isStdUiMasterDetailMasterDetailOrbitalParams, isStdUiMediaGalleryMediaGalleryOrbitalParams, isStdUiModalSlotModalSlotOrbitalParams, isStdUiPricingOrganismPricingOrganismOrbitalParams, isStdUiRuntimeDebuggerRuntimeDebuggerOrbitalParams, isStdUiSegmentRendererSegmentRendererOrbitalParams, isStdUiShowcaseOrganismShowcaseOrganismOrbitalParams, isStdUiSplitPaneSplitPaneOrbitalParams, isStdUiStatCardStatCardOrbitalParams, isStdUiStateMachineViewStateMachineViewOrbitalParams, isStdUiStatsOrganismStatsOrganismOrbitalParams, isStdUiStepFlowOrganismStepFlowOrganismOrbitalParams, isStdUiSubagentTracePanelSubagentTracePanelOrbitalParams, isStdUiTabbedContainerTabbedContainerOrbitalParams, isStdUiTeamOrganismTeamOrganismOrbitalParams, isStdUiTimelineTimelineOrbitalParams, isStdUiTimerDisplayTimerDisplayOrbitalParams, isStdUiToastSlotToastSlotOrbitalParams, isStdUiUiSlotRendererUiSlotRendererOrbitalParams, isStdVersionHistoryRevisionOrbitalParams, isStdVoteVoteOrbitalParams, isStdWeightValidatorMlWeightValidatorOrbitalParams, isStdWizardWizardOrbitalParams, isStdWorldmapBoard2dWorldMapBoard2DOrbitalParams, listOrganismOrbitalManifests, stdAgentBuilder, stdAgentBuilderAgentBuilderOrbital, stdAgentCompletion, stdAgentCompletionAgentCompletionOrbital, stdAgentCompletionCompletionGenerationTrait, stdAgentCompletionCompletionReadyTrait, stdAgentCompletionPage, stdAgentContext, stdAgentContextAgentContextOrbital, stdAgentContextContextCompactorTrait, stdAgentContextContextCounterTrait, stdAgentContextContextListenerTrait, stdAgentContextPage, stdAgentFixLoop, stdAgentFixLoopAgentFixLoopOrbital, stdAgentFixLoopFixLoopExecutionTrait, stdAgentFixLoopFixLoopListenerTrait, stdAgentFixLoopPage, stdAgentMemory, stdAgentMemoryAgentMemoryOrbital, stdAgentMemoryMemoryListenerTrait, stdAgentMemoryMemoryRecallTrait, stdAgentMemoryMemoryStoreTrait, stdAgentMemoryPage, stdAgentPlanner, stdAgentPlannerAgentPlannerOrbital, stdAgentPlannerPage, stdAgentPlannerPlannerExecutionTrait, stdAgentPlannerPlannerListenerTrait, stdAgentRabit, stdAgentRabitCoordinatorOrbital, stdAgentRabitOrbitalProcessOrbital, stdAgentSession, stdAgentSessionAgentSessionOrbital, stdAgentSessionPage, stdAgentSessionSessionListenerTrait, stdAgentSessionSessionReaderTrait, stdAgentSessionSessionWriterTrait, stdAgentToolCall, stdAgentToolCallAgentToolCallOrbital, stdAgentToolCallPage, stdAgentToolCallToolCallExecutionTrait, stdAgentToolCallToolCallReadyTrait, stdAgentToolLoop, stdAgentToolLoopAgentToolLoopOrbital, stdAgentToolLoopPage, stdAgentToolLoopToolLoopExecutionTrait, stdAgentToolLoopToolLoopListenerTrait, stdAgentTrace, stdAgentTraceAgentTraceOrbital, stdAgentTracePage, stdAgentTraceTraceEmitterTrait, stdAgentTraceTraceListenerTrait, stdAnimTick, stdAnimTickAnimTickOrbital, stdAnimTickPage, stdAnimTickTrait, stdAppLayout, stdAppLayoutAppLayoutOrbital, stdAppLayoutPage, stdAppLayoutTrait, stdAppSearch, stdAppSearchAppSearchIdleHintTrait, stdAppSearchAppSearchOrbital, stdAppSearchAppSearchTrait, stdAppSearchPage, stdApprovalGate, stdApprovalGateApprovalDividerTrait, stdApprovalGateApprovalGateOrbital, stdApprovalGateApprovalGateReviewTrait, stdApprovalGateApprovalQueueTitleTrait, stdApprovalGateCloseButtonTrait, stdApprovalGateErrorAlertTrait, stdApprovalGateErrorSpinnerTrait, stdApprovalGateLoadingSpinnerTrait, stdApprovalGateLoadingTextTrait, stdApprovalGatePage, stdApprovalGateShieldCheckIconTrait, stdArcadeBoard3d, stdArcadeBoard3dArcadeBoard3DFrameOrbital, stdArcadeFlow, stdArcadeFlowPage, stdArcadeFlowTrait, stdArcadePlay, stdArcadePlayPage, stdArcadePlayTrait, stdAuditCapture, stdAuditCaptureAuditCaptureOrbital, stdAuditCapturePage, stdAuditCaptureTrait, stdBillableHour, stdBillableHourBillableHourOrbital, stdBillableHourBillableHourTimesheetTrait, stdBillableHourDenseHoursTableTrait, stdBillableHourPage, stdBoard, stdBoardBoardOrbital, stdBoardPage, stdBoardTrait, stdBrowse, stdBrowseBrowseItemBrowseTrait, stdBrowseBrowseItemOrbital, stdBrowseDataGrid1Trait, stdBrowseDenseTableViewTrait, stdBrowseMasterListViewTrait, stdBrowsePage, stdCacheAside, stdCacheAsideCacheEntryCacheManagerTrait, stdCacheAsideCacheEntryOrbital, stdCacheAsideFetchButtonTrait, stdCacheAsideInlineAlertRender22Trait, stdCacheAsideInlineBadgeRender13Trait, stdCacheAsideInlineDividerRender10Trait, stdCacheAsideInlineDividerRender21Trait, stdCacheAsideInlineDividerRender3Trait, stdCacheAsideInlineEmptyStateRender26Trait, stdCacheAsideInlineEmptyStateRender4Trait, stdCacheAsideInlineIconRender11Trait, stdCacheAsideInlineIconRender15Trait, stdCacheAsideInlineIconRender18Trait, stdCacheAsideInlineIconRender1Trait, stdCacheAsideInlineIconRender7Trait, stdCacheAsideInlineSpinnerRender23Trait, stdCacheAsideInlineSpinnerRender24Trait, stdCacheAsideInlineSpinnerRender25Trait, stdCacheAsideInlineSpinnerRender27Trait, stdCacheAsideInlineSpinnerRender5Trait, stdCacheAsideInlineStatusDotRender20Trait, stdCacheAsideInlineStatusDotRender9Trait, stdCacheAsideInlineTypographyRender12Trait, stdCacheAsideInlineTypographyRender14Trait, stdCacheAsideInlineTypographyRender16Trait, stdCacheAsideInlineTypographyRender17Trait, stdCacheAsideInlineTypographyRender19Trait, stdCacheAsideInlineTypographyRender2Trait, stdCacheAsideInlineTypographyRender6Trait, stdCacheAsideInlineTypographyRender8Trait, stdCacheAsideInvalidateButtonTrait, stdCacheAsidePage, stdCacheAsideRefreshButtonTrait, stdCacheAsideRetryButtonTrait, stdCalendar, stdCalendarCalendarEventOrbital, stdCalendarPage, stdCalendarTrait, stdCascadeOnDelete, stdCascadeOnDeleteCascadeOnDeleteOrbital, stdCascadeOnDeletePage, stdCascadeOnDeleteTrait, stdChaseAi, stdChaseAiPage, stdChaseAiTrait, stdCircuitBreaker, stdCircuitBreakerActivityIconTrait, stdCircuitBreakerAlertTriangleIconTrait, stdCircuitBreakerCircuitDividerTrait, stdCircuitBreakerClosedStatusDotTrait, stdCircuitBreakerErrorAlertTrait, stdCircuitBreakerFailuresMeterTrait, stdCircuitBreakerFailuresStatTrait, stdCircuitBreakerHalfOpenStatusDotTrait, stdCircuitBreakerOpenStatusDotTrait, stdCircuitBreakerPage, stdCircuitBreakerResetButtonTrait, stdCircuitBreakerServiceNodeCircuitBreakerTrait, stdCircuitBreakerServiceNodeLabelTrait, stdCircuitBreakerServiceNodeOrbital, stdCircuitBreakerShieldIconTrait, stdCircuitBreakerStatsGridTrait, stdCircuitBreakerSuccessAlertTrait, stdCircuitBreakerSuccessesStatTrait, stdCircuitBreakerWarningAlertTrait, stdConfirmation, stdConfirmationConfirmActionOrbital, stdConfirmationPage, stdConfirmationTrait, stdCooldown, stdCooldownCooldownOrbital, stdCooldownPage, stdCooldownTrait, stdCrewBoard2d, stdCrewBoard2dCrewBoard2DOrbital, stdCrossReference, stdCrossReferenceCrossReferenceOrbital, stdCrossReferencePage, stdCrossReferenceTrait, stdDashboardGridEmbedded, stdDashboardGridEmbeddedDashboardGridEmbeddedOrbital, stdDashboardGridEmbeddedDashboardGridEmbeddedTrait, stdDashboardGridEmbeddedEmptyTileTrait, stdDashboardGridEmbeddedPage, stdDashboardGridEmbeddedSimpleGrid1Trait, stdDataCollector, stdDataCollectorMlDataCollectorOrbital, stdDataCollectorPage, stdDataCollectorTrait, stdDataErasure, stdDataErasureCloseButtonTrait, stdDataErasureDataErasureOrbital, stdDataErasureErasureDividerTrait, stdDataErasureErasureRequestsTitleTrait, stdDataErasureErasureWorkflowTrait, stdDataErasureErrorAlertTrait, stdDataErasureErrorSpinnerTrait, stdDataErasureLoadingSpinnerTrait, stdDataErasureLoadingTextTrait, stdDataErasurePage, stdDataErasureTrash2IconTrait, stdDateRange, stdDateRangeDateRangeOrbital, stdDateRangePage, stdDateRangeTrait, stdDetailLayout, stdDetailLayoutPage, stdDetailLayoutTrait, stdDungeonBoard2d, stdDungeonBoard2dDungeonBoard2DOrbital, stdDungeonCombat, stdDungeonCombatPage, stdDungeonCombatTrait, stdEscalatingDecision, stdEscalatingDecisionEscalatingDecisionOrbital, stdEsignFlow, stdEsignFlowPage, stdEsignFlowSignatureSessionBrowseTrait, stdEsignFlowSignatureSessionCreateTrait, stdEsignFlowSignatureSessionDeleteTrait, stdEsignFlowSignatureSessionOrbital, stdEsignFlowSignatureSessionPersistorTrait, stdEsignRequest, stdEsignRequestESignRequestOrbital, stdEsignRequestESignRequestSigningTrait, stdEsignRequestErrorAlertTrait, stdEsignRequestPage, stdEsignRequestRequestDataGridTrait, stdEsignRequestTitleHeadingTrait, stdEventLog, stdEventLogEventLogOrbital, stdEventLogPage, stdEventLogTrait, stdExport, stdExportButton1Trait, stdExportExportMenuTrait, stdExportExportOrbital, stdExportMenu1Trait, stdExportPage, stdFileStore, stdFileStorePage, stdFileStoreStoredFileOrbital, stdFileStoreTrait, stdFilter, stdFilterFilterTargetOrbital, stdFilterPage, stdFilterTrait, stdFormAdvanced, stdFormAdvancedFormEntryOrbital, stdFormAdvancedPage, stdFormAdvancedTrait, stdFxParticles, stdFxParticlesPage, stdFxParticlesTrait, stdGallery, stdGalleryErrorAlertTrait, stdGalleryGalleryIconTrait, stdGalleryGalleryItemGalleryTrait, stdGalleryGalleryItemOrbital, stdGalleryLoadingCaptionTrait, stdGalleryLoadingSpinnerTrait, stdGalleryMediaGalleryGridTrait, stdGalleryPage, stdGalleryReloadCaptionTrait, stdGalleryReloadSpinnerTrait, stdGalleryRetrySpinnerTrait, stdGalleryTitleDividerTrait, stdGameClock, stdGameClockGameClockOrbital, stdGameClockPage, stdGameClockTrait, stdGather, stdGatherPage, stdGatherTrait, stdGeosearch, stdGeosearchGeoSearchResultOrbital, stdGeosearchPage, stdGeosearchTrait, stdGold, stdGoldPage, stdGoldTrait, stdGraphBuilder, stdGraphBuilderGraphBuilderOrbital, stdGraphBuilderPage, stdGraphBuilderTrait, stdGraphs, stdGraphsGraphItemOrbital, stdGraphsPage, stdGraphsTrait, stdGridTactics, stdGridTacticsPage, stdGridTacticsTrait, stdHeroNav, stdHeroNavPage, stdHeroNavTrait, stdImageUploadMulti, stdImageUploadMultiPage, stdImageUploadMultiTrait, stdImageUploadMultiUploadedImageOrbital, stdImport, stdImportButton1Trait, stdImportImportMenuTrait, stdImportMenu1Trait, stdImportPage, stdKnowledgeTracing, stdKnowledgeTracingKnowledgeTracingOrbital, stdLearnArrangement, stdLearnArrangementPage, stdLearnArrangementTrait, stdLearnClassify, stdLearnClassifyPage, stdLearnClassifyTrait, stdLearnCompare, stdLearnComparePage, stdLearnCompareTrait, stdLearnCoupledSim, stdLearnCoupledSimPage, stdLearnCoupledSimTrait, stdLearnDerivation, stdLearnDerivationPage, stdLearnDerivationTrait, stdLearnDiagram, stdLearnDiagramPage, stdLearnDiagramTrait, stdLearnDoser, stdLearnDoserPage, stdLearnDoserTrait, stdLearnEstimate, stdLearnEstimatePage, stdLearnEstimateTrait, stdLearnFxCues, stdLearnFxCuesPage, stdLearnFxCuesTrait, stdLearnGoalSeek, stdLearnGoalSeekPage, stdLearnGoalSeekTrait, stdLearnGridSim, stdLearnGridSimPage, stdLearnGridSimTrait, stdLearnHotspot, stdLearnHotspotPage, stdLearnHotspotTrait, stdLearnLiveSim, stdLearnLiveSimPage, stdLearnLiveSimTrait, stdLearnMeasure, stdLearnMeasurePage, stdLearnMeasureTrait, stdLearnParamExplorer, stdLearnParamExplorerPage, stdLearnParamExplorerTrait, stdLearnPerturb, stdLearnPerturbPage, stdLearnPerturbTrait, stdLearnPredict, stdLearnPredictPage, stdLearnPredictTrait, stdLearnSampleAccumulator, stdLearnSampleAccumulatorPage, stdLearnSampleAccumulatorTrait, stdLearnSandbox, stdLearnSandboxPage, stdLearnSandboxTrait, stdLearnScatterFit, stdLearnScatterFitPage, stdLearnScatterFitTrait, stdLearnScenario, stdLearnScenarioPage, stdLearnScenarioTrait, stdLearnSim3d, stdLearnSim3dPage, stdLearnSim3dTrait, stdLearnSpeedDrill, stdLearnSpeedDrillPage, stdLearnSpeedDrillTrait, stdLearnStepper, stdLearnStepperPage, stdLearnStepperTrait, stdLearnTour3d, stdLearnTour3dPage, stdLearnTour3dTrait, stdLearnTracePlayer, stdLearnTracePlayerPage, stdLearnTracePlayerTrait, stdLearnTransport, stdLearnTransportPage, stdLearnTransportTrait, stdLearnTree, stdLearnTreePage, stdLearnTreeTrait, stdLifecycle, stdLifecycleLifecycleOrbital, stdLifecyclePage, stdLifecycleTrait, stdList, stdListListItemBrowseTrait, stdListListItemCreateTrait, stdListListItemDeleteTrait, stdListListItemEditTrait, stdListListItemOrbital, stdListListItemPersistorTrait, stdListPage, stdMarketBoard3d, stdMarketBoard3dMarketBoard3DOrbital, stdMarketFlow, stdMarketFlowPage, stdMarketFlowTrait, stdMarketingArticle, stdMarketingArticlePage, stdMarketingArticleTrait, stdMarketingCta, stdMarketingCtaPage, stdMarketingCtaTrait, stdMarketingFeatures, stdMarketingFeaturesPage, stdMarketingFeaturesTrait, stdMarketingFooter, stdMarketingFooterPage, stdMarketingFooterTrait, stdMarketingHero, stdMarketingHeroPage, stdMarketingHeroTrait, stdMarketingNav, stdMarketingNavPage, stdMarketingNavTrait, stdMarketingPricing, stdMarketingPricingPage, stdMarketingPricingTrait, stdMarketingShowcase, stdMarketingShowcasePage, stdMarketingShowcaseTrait, stdMarketingSplit, stdMarketingSplitPage, stdMarketingSplitTrait, stdMarketingStats, stdMarketingStatsPage, stdMarketingStatsTrait, stdMarketingSteps, stdMarketingStepsPage, stdMarketingStepsTrait, stdMarketingTeam, stdMarketingTeamPage, stdMarketingTeamTrait, stdMeshAssetArt, stdMeshAssetArtPage, stdMeshAssetArtTrait, stdMigrationJob, stdMigrationJobMigrationJobOrbital, stdMigrationJobPage, stdMigrationJobTrait, stdMlClassify, stdMlClassifyMlClassifyOrbital, stdMlClassifyPage, stdMlClassifyTrait, stdMlExactCheck, stdMlExactCheckMlExactCheckOrbital, stdMlExactCheckPage, stdMlExactCheckTrait, stdMlInfer, stdMlInferMlInferOrbital, stdMlInferPage, stdMlInferTrait, stdMlLabelCapture, stdMlLabelCaptureMlLabelCaptureOrbital, stdMlLabelCapturePage, stdMlLabelCaptureTrait, stdMlLookup, stdMlLookupMlLookupOrbital, stdMlLookupPage, stdMlLookupTrait, stdMlPosterior, stdMlPosteriorMlPosteriorOrbital, stdMlPosteriorPage, stdMlPosteriorTrait, stdMlSimilarity, stdMlSimilarityMlSimilarityOrbital, stdMlSimilarityPage, stdMlSimilarityTrait, stdModQueue, stdModQueueCloseButtonTrait, stdModQueueErrorAlertTrait, stdModQueueErrorSpinnerTrait, stdModQueueLoadingSpinnerTrait, stdModQueueLoadingTextTrait, stdModQueueModQueueDividerTrait, stdModQueueModQueueItemOrbital, stdModQueueModQueueItemReviewTrait, stdModQueueModQueueTitleTrait, stdModQueuePage, stdModQueueShieldAlertIconTrait, stdModal, stdModalModalRecordOrbital, stdModalPage, stdModalTrait, stdMotionBody, stdMotionBodyPage, stdMotionBodyTrait, stdMultiPartyFlow, stdMultiPartyFlowMultiPartyFlowOrbital, stdMultiPartyFlowPage, stdMultiPartyFlowTrait, stdNotificationPanel, stdNotificationPanelPage, stdNotificationPanelTrait, stdNotifyOnEvent, stdNotifyOnEventNotifyOnEventOrbital, stdNotifyOnEventPage, stdNotifyOnEventTrait, stdObjectiveBoard3d, stdObjectiveBoard3dObjectiveBoard3DOrbital, stdObjectiveFlow, stdObjectiveFlowPage, stdObjectiveFlowTrait, stdObjectiveReach, stdObjectiveReachPage, stdObjectiveReachTrait, stdPagination, stdPaginationPage, stdPaginationPagedItemOrbital, stdPaginationTrait, stdPatience, stdPatiencePage, stdPatienceTrait, stdPlatformerBoard2d, stdPlatformerBoard2dPlatformerBoard2DOrbital, stdPlatformerBody, stdPlatformerBodyPage, stdPlatformerBodyTrait, stdProduction, stdProductionPage, stdProductionTrait, stdRateLimiter, stdRateLimiterCountMeterTrait, stdRateLimiterCountProgressBarTrait, stdRateLimiterOpenStatusDotTrait, stdRateLimiterPage, stdRateLimiterRateBucketDividerTrait, stdRateLimiterRateBucketOrbital, stdRateLimiterRateBucketRateLimiterTrait, stdRateLimiterRateBucketTitleTrait, stdRateLimiterRateLimitAlertTrait, stdRateLimiterRequestButtonTrait, stdRateLimiterRequestsStatTrait, stdRateLimiterResetButtonTrait, stdRateLimiterResetPrimaryButtonTrait, stdRateLimiterShieldIconTrait, stdRateLimiterStatsGridTrait, stdRateLimiterThrottledStatusDotTrait, stdRateLimiterWindowStatTrait, stdRatingReview, stdRatingReviewRatingReviewBoardTrait, stdRatingReviewRatingReviewOrbital, stdRatingReviewRatingReviewPagePage, stdRatingReviewRatingReviewSubmitPagePage, stdRatingReviewRatingReviewSubmitTrait, stdRecurrence, stdRecurrencePage, stdRecurrenceRecurrenceOrbital, stdRecurrenceTrait, stdRelated, stdRelatedPage, stdRelatedRelatedItemOrbital, stdRelatedTrait, stdReminderScheduler, stdReminderSchedulerPage, stdReminderSchedulerReminderSchedulerOrbital, stdReminderSchedulerTrait, stdRichEditor, stdRichEditorDocumentOrbital, stdRichEditorPage, stdRichEditorTrait, stdRoundFlow, stdRoundFlowPage, stdRoundFlowTrait, stdRowAccessControl, stdRowAccessControlPage, stdRowAccessControlRowAccessControlOrbital, stdRowAccessControlTrait, stdSavedSearch, stdSavedSearchPage, stdSavedSearchSavedSearchOrbital, stdSavedSearchTrait, stdScatter, stdScatterPage, stdScatterScatterItemOrbital, stdScatterTrait, stdScore, stdScorePage, stdScoreTrait, stdSearch, stdSearchPage, stdSearchSearchResultOrbital, stdSearchTrait, stdSelection, stdSelectionPage, stdSelectionSelectableItemOrbital, stdSelectionTrait, stdSignatureCapture, stdSignatureCapturePage, stdSignatureCaptureSignatureCaptureOrbital, stdSignatureCaptureTrait, stdStatRows, stdStatRowsPage, stdStatRowsTrait, stdStats, stdStatsPage, stdStatsStatsItemOrbital, stdStatsTrait, stdStatusLifecycle, stdStatusLifecycleControl, stdStatusLifecycleControlStatusLifecycleControlOrbital, stdStatusLifecyclePage, stdStatusLifecycleStatusLifecycleOrbital, stdStatusLifecycleTrait, stdStepFlow, stdStepFlowPage, stdStepFlowStepFlowOrbital, stdStepFlowTrait, stdSurvivalBoard3d, stdSurvivalBoard3dSurvivalBoard3DOrbital, stdSurvivalFlow, stdSurvivalFlowPage, stdSurvivalFlowTrait, stdSvgAssetArt, stdSvgAssetArtPage, stdSvgAssetArtTrait, stdTabs, stdTabsPage, stdTabsTabsItemOrbital, stdTabsTrait, stdTacticsBoard2d, stdTacticsBoard2dTacticsBoard2DOrbital, stdTacticsBoard3d, stdTacticsBoard3dTacticsBoard3DOrbital, stdTagTaxonomy, stdTagTaxonomyPage, stdTagTaxonomyTagTaxonomyOrbital, stdTagTaxonomyTrait, stdThread, stdThreadPage, stdThreadThreadPostOrbital, stdThreadTrait, stdTokenizer, stdTokenizerMlTokenizerOrbital, stdTokenizerPage, stdTokenizerTrait, stdUiAccordion, stdUiAccordionPage, stdUiAccordionTrait, stdUiActionPalette, stdUiActionPalettePage, stdUiActionPaletteTrait, stdUiActionTile, stdUiActionTilePage, stdUiActionTileTrait, stdUiActivationBlock, stdUiActivationBlockPage, stdUiActivationBlockTrait, stdUiAlert, stdUiAlertPage, stdUiAlertTrait, stdUiAlgoGraphCanvas, stdUiAlgoGraphCanvasPage, stdUiAlgoGraphCanvasTrait, stdUiAlgorithmCanvas, stdUiAlgorithmCanvasPage, stdUiAlgorithmCanvasTrait, stdUiAnimatedCounter, stdUiAnimatedCounterPage, stdUiAnimatedCounterTrait, stdUiAnimatedGraphic, stdUiAnimatedGraphicPage, stdUiAnimatedGraphicTrait, stdUiAnimatedReveal, stdUiAnimatedRevealPage, stdUiAnimatedRevealTrait, stdUiArticleSection, stdUiArticleSectionPage, stdUiArticleSectionTrait, stdUiAside, stdUiAsidePage, stdUiAsideTrait, stdUiAtlasImage, stdUiAtlasImagePage, stdUiAtlasImageTrait, stdUiAtlasPanel, stdUiAtlasPanelPage, stdUiAtlasPanelTrait, stdUiAvatar, stdUiAvatarPage, stdUiAvatarTrait, stdUiBadge, stdUiBadgePage, stdUiBadgeTrait, stdUiBehaviorView, stdUiBehaviorViewPage, stdUiBehaviorViewTrait, stdUiBiologyCanvas, stdUiBiologyCanvasPage, stdUiBiologyCanvasTrait, stdUiBloomQuizBlock, stdUiBloomQuizBlockPage, stdUiBloomQuizBlockTrait, stdUiBookChapterView, stdUiBookChapterViewBookChapterViewOrbital, stdUiBookCoverPage, stdUiBookCoverPageBookCoverPageOrbital, stdUiBookNavBar, stdUiBookNavBarBookNavBarOrbital, stdUiBookTableOfContents, stdUiBookTableOfContentsBookTableOfContentsOrbital, stdUiBookViewer, stdUiBookViewerBookViewerOrbital, stdUiBox, stdUiBoxPage, stdUiBoxTrait, stdUiBranchingLogicBuilder, stdUiBranchingLogicBuilderPage, stdUiBranchingLogicBuilderTrait, stdUiBreadcrumb, stdUiBreadcrumbPage, stdUiBreadcrumbTrait, stdUiButton, stdUiButtonPage, stdUiButtonTrait, stdUiCalendarGrid, stdUiCalendarGridPage, stdUiCalendarGridTrait, stdUiCanvas, stdUiCanvas2d, stdUiCanvas2dPage, stdUiCanvas2dTrait, stdUiCanvasPage, stdUiCanvasTrait, stdUiCard, stdUiCardPage, stdUiCardTrait, stdUiCarousel, stdUiCarouselPage, stdUiCarouselTrait, stdUiCaseStudyCard, stdUiCaseStudyCardPage, stdUiCaseStudyCardTrait, stdUiCaseStudyOrganism, stdUiCaseStudyOrganismCaseStudyOrganismOrbital, stdUiCenter, stdUiCenterPage, stdUiCenterTrait, stdUiChart, stdUiChartLegend, stdUiChartLegendPage, stdUiChartLegendTrait, stdUiChartPage, stdUiChartTrait, stdUiChatBar, stdUiChatBarChatBarOrbital, stdUiCheckbox, stdUiCheckboxPage, stdUiCheckboxTrait, stdUiChemistryCanvas, stdUiChemistryCanvasPage, stdUiChemistryCanvasTrait, stdUiChoiceButton, stdUiChoiceButtonPage, stdUiChoiceButtonTrait, stdUiCodeBlock, stdUiCodeBlockPage, stdUiCodeBlockTrait, stdUiCodeRunnerPanel, stdUiCodeRunnerPanelCodeRunnerPanelOrbital, stdUiCommunityLinks, stdUiCommunityLinksPage, stdUiCommunityLinksTrait, stdUiConditionalWrapper, stdUiConditionalWrapperPage, stdUiConditionalWrapperTrait, stdUiConfettiEffect, stdUiConfettiEffectPage, stdUiConfettiEffectTrait, stdUiConfirmDialog, stdUiConfirmDialogPage, stdUiConfirmDialogTrait, stdUiConnectionBlock, stdUiConnectionBlockPage, stdUiConnectionBlockTrait, stdUiContainer, stdUiContainerPage, stdUiContainerTrait, stdUiContentRenderer, stdUiContentRendererPage, stdUiContentRendererTrait, stdUiContentSection, stdUiContentSectionPage, stdUiContentSectionTrait, stdUiControlButton, stdUiControlButtonPage, stdUiControlButtonTrait, stdUiControlGrid, stdUiControlGridPage, stdUiControlGridTrait, stdUiCtaBanner, stdUiCtaBannerPage, stdUiCtaBannerTrait, stdUiDashboardGrid, stdUiDashboardGridDashboardGridOrbital, stdUiDataGrid, stdUiDataGridPage, stdUiDataGridTrait, stdUiDataList, stdUiDataListPage, stdUiDataListTrait, stdUiDateRangePicker, stdUiDateRangePickerPage, stdUiDateRangePickerTrait, stdUiDateRangeSelector, stdUiDateRangeSelectorPage, stdUiDateRangeSelectorTrait, stdUiDayCell, stdUiDayCellPage, stdUiDayCellTrait, stdUiDetailPanel, stdUiDetailPanelDetailPanelOrbital, stdUiDialog, stdUiDialogPage, stdUiDialogTrait, stdUiDialogueBubble, stdUiDialogueBubblePage, stdUiDialogueBubbleTrait, stdUiDivider, stdUiDividerPage, stdUiDividerTrait, stdUiDocBreadcrumb, stdUiDocBreadcrumbPage, stdUiDocBreadcrumbTrait, stdUiDocPagination, stdUiDocPaginationPage, stdUiDocPaginationTrait, stdUiDocSearch, stdUiDocSearchPage, stdUiDocSearchTrait, stdUiDocSidebar, stdUiDocSidebarPage, stdUiDocSidebarTrait, stdUiDocToc, stdUiDocTocPage, stdUiDocTocTrait, stdUiDocumentViewer, stdUiDocumentViewerPage, stdUiDocumentViewerTrait, stdUiDrawFxLayer, stdUiDrawFxLayerPage, stdUiDrawFxLayerTrait, stdUiDrawGroup, stdUiDrawGroupPage, stdUiDrawGroupTrait, stdUiDrawMesh, stdUiDrawMeshPage, stdUiDrawMeshTrait, stdUiDrawShape, stdUiDrawShapeLayer, stdUiDrawShapeLayerPage, stdUiDrawShapeLayerTrait, stdUiDrawShapePage, stdUiDrawShapeTrait, stdUiDrawSprite, stdUiDrawSpriteLayer, stdUiDrawSpriteLayerPage, stdUiDrawSpriteLayerTrait, stdUiDrawSpritePage, stdUiDrawSpriteTrait, stdUiDrawText, stdUiDrawTextLayer, stdUiDrawTextLayerPage, stdUiDrawTextLayerTrait, stdUiDrawTextPage, stdUiDrawTextTrait, stdUiDrawer, stdUiDrawerPage, stdUiDrawerSlot, stdUiDrawerSlotDrawerSlotOrbital, stdUiDrawerTrait, stdUiEdgeDecoration, stdUiEdgeDecorationPage, stdUiEdgeDecorationTrait, stdUiEmojiPicker, stdUiEmojiPickerPage, stdUiEmojiPickerTrait, stdUiEmptyState, stdUiEmptyStatePage, stdUiEmptyStateTrait, stdUiEntityCards, stdUiEntityCardsEntityCardsOrbital, stdUiEntityList, stdUiEntityListEntityListOrbital, stdUiEntityTable, stdUiEntityTableEntityTableOrbital, stdUiErrorBoundary, stdUiErrorBoundaryPage, stdUiErrorBoundaryTrait, stdUiErrorState, stdUiErrorStatePage, stdUiErrorStateTrait, stdUiFeatureCard, stdUiFeatureCardPage, stdUiFeatureCardTrait, stdUiFeatureGrid, stdUiFeatureGridOrganism, stdUiFeatureGridOrganismFeatureGridOrganismOrbital, stdUiFeatureGridPage, stdUiFeatureGridTrait, stdUiFileTree, stdUiFileTreePage, stdUiFileTreeTrait, stdUiFilterGroup, stdUiFilterGroupPage, stdUiFilterGroupTrait, stdUiFilterPill, stdUiFilterPillPage, stdUiFilterPillTrait, stdUiFlex, stdUiFlexPage, stdUiFlexTrait, stdUiFlipCard, stdUiFlipCardPage, stdUiFlipCardTrait, stdUiFlipContainer, stdUiFlipContainerPage, stdUiFlipContainerTrait, stdUiFloatingActionButton, stdUiFloatingActionButtonPage, stdUiFloatingActionButtonTrait, stdUiForm, stdUiFormActions, stdUiFormActionsPage, stdUiFormActionsTrait, stdUiFormField, stdUiFormFieldPage, stdUiFormFieldTrait, stdUiFormFormOrbital, stdUiFormLayout, stdUiFormLayoutPage, stdUiFormLayoutTrait, stdUiFormSection, stdUiFormSectionFormSectionOrbital, stdUiFormSectionHeader, stdUiFormSectionHeaderPage, stdUiFormSectionHeaderTrait, stdUiFxOverlay, stdUiFxOverlayPage, stdUiFxOverlayTrait, stdUiGameAudioToggle, stdUiGameAudioTogglePage, stdUiGameAudioToggleTrait, stdUiGameHud, stdUiGameHudPage, stdUiGameHudTrait, stdUiGameIcon, stdUiGameIconPage, stdUiGameIconTrait, stdUiGameMenu, stdUiGameMenuPage, stdUiGameMenuTrait, stdUiGeometricPattern, stdUiGeometricPatternPage, stdUiGeometricPatternTrait, stdUiGradientDivider, stdUiGradientDividerPage, stdUiGradientDividerTrait, stdUiGraphCanvas, stdUiGraphCanvasPage, stdUiGraphCanvasTrait, stdUiGraphView, stdUiGraphViewPage, stdUiGraphViewTrait, stdUiGrid, stdUiGridPage, stdUiGridTrait, stdUiHeader, stdUiHeaderPage, stdUiHeaderTrait, stdUiHealthBar, stdUiHealthBarPage, stdUiHealthBarTrait, stdUiHeroOrganism, stdUiHeroOrganismHeroOrganismOrbital, stdUiHeroSection, stdUiHeroSectionPage, stdUiHeroSectionTrait, stdUiHstack, stdUiHstackPage, stdUiHstackTrait, stdUiIcon, stdUiIconPage, stdUiIconTrait, stdUiImportPreviewTree, stdUiImportPreviewTreePage, stdUiImportPreviewTreeTrait, stdUiImportProgress, stdUiImportProgressPage, stdUiImportProgressTrait, stdUiImportSourcePicker, stdUiImportSourcePickerPage, stdUiImportSourcePickerTrait, stdUiInfiniteScrollSentinel, stdUiInfiniteScrollSentinelPage, stdUiInfiniteScrollSentinelTrait, stdUiInput, stdUiInputGroup, stdUiInputGroupPage, stdUiInputGroupTrait, stdUiInputPage, stdUiInputTrait, stdUiInstallBox, stdUiInstallBoxPage, stdUiInstallBoxTrait, stdUiJazariStateMachine, stdUiJazariStateMachinePage, stdUiJazariStateMachineTrait, stdUiLabel, stdUiLabelPage, stdUiLabelTrait, stdUiLawReferenceTooltip, stdUiLawReferenceTooltipPage, stdUiLawReferenceTooltipTrait, stdUiLearningCanvas, stdUiLearningCanvasPage, stdUiLearningCanvasTrait, stdUiLightbox, stdUiLightboxPage, stdUiLightboxTrait, stdUiLikertScale, stdUiLikertScalePage, stdUiLikertScaleTrait, stdUiLineChart, stdUiLineChartPage, stdUiLineChartTrait, stdUiLoadingState, stdUiLoadingStatePage, stdUiLoadingStateTrait, stdUiMapView, stdUiMapViewPage, stdUiMapViewTrait, stdUiMarkdownContent, stdUiMarkdownContentPage, stdUiMarkdownContentTrait, stdUiMarketingFooter, stdUiMarketingFooterPage, stdUiMarketingFooterTrait, stdUiMarketingStatCard, stdUiMarketingStatCardPage, stdUiMarketingStatCardTrait, stdUiMasterDetail, stdUiMasterDetailLayout, stdUiMasterDetailLayoutMasterDetailLayoutOrbital, stdUiMasterDetailMasterDetailOrbital, stdUiMathCanvas, stdUiMathCanvasPage, stdUiMathCanvasTrait, stdUiMatrixQuestion, stdUiMatrixQuestionPage, stdUiMatrixQuestionTrait, stdUiMediaGallery, stdUiMediaGalleryMediaGalleryOrbital, stdUiMenu, stdUiMenuPage, stdUiMenuTrait, stdUiMeter, stdUiMeterPage, stdUiMeterTrait, stdUiModal, stdUiModalPage, stdUiModalSlot, stdUiModalSlotModalSlotOrbital, stdUiModalTrait, stdUiModuleCard, stdUiModuleCardPage, stdUiModuleCardTrait, stdUiNavigation, stdUiNavigationPage, stdUiNavigationTrait, stdUiNotification, stdUiNotificationPage, stdUiNotificationTrait, stdUiNumberStepper, stdUiNumberStepperPage, stdUiNumberStepperTrait, stdUiOptionConstraintGroup, stdUiOptionConstraintGroupPage, stdUiOptionConstraintGroupTrait, stdUiOrbitalVisualization, stdUiOrbitalVisualizationPage, stdUiOrbitalVisualizationTrait, stdUiOverlay, stdUiOverlayPage, stdUiOverlayTrait, stdUiPageHeader, stdUiPageHeaderPage, stdUiPageHeaderTrait, stdUiPageTransition, stdUiPageTransitionPage, stdUiPageTransitionTrait, stdUiPagination, stdUiPaginationPage, stdUiPaginationTrait, stdUiPatternTile, stdUiPatternTilePage, stdUiPatternTileTrait, stdUiPhysicsCanvas, stdUiPhysicsCanvasPage, stdUiPhysicsCanvasTrait, stdUiPopover, stdUiPopoverPage, stdUiPopoverTrait, stdUiPositionedCanvas, stdUiPositionedCanvasPage, stdUiPositionedCanvasTrait, stdUiPresence, stdUiPresencePage, stdUiPresenceTrait, stdUiPricingCard, stdUiPricingCardPage, stdUiPricingCardTrait, stdUiPricingGrid, stdUiPricingGridPage, stdUiPricingGridTrait, stdUiPricingOrganism, stdUiPricingOrganismPricingOrganismOrbital, stdUiProgressBar, stdUiProgressBarPage, stdUiProgressBarTrait, stdUiProgressDots, stdUiProgressDotsPage, stdUiProgressDotsTrait, stdUiPullQuote, stdUiPullQuotePage, stdUiPullQuoteTrait, stdUiPullToRefresh, stdUiPullToRefreshPage, stdUiPullToRefreshTrait, stdUiQrScanner, stdUiQrScannerPage, stdUiQrScannerTrait, stdUiQuizBlock, stdUiQuizBlockPage, stdUiQuizBlockTrait, stdUiRadio, stdUiRadioPage, stdUiRadioTrait, stdUiRangeSlider, stdUiRangeSliderPage, stdUiRangeSliderTrait, stdUiReflectionBlock, stdUiReflectionBlockPage, stdUiReflectionBlockTrait, stdUiRelationSelect, stdUiRelationSelectPage, stdUiRelationSelectTrait, stdUiRepeatableFormSection, stdUiRepeatableFormSectionPage, stdUiRepeatableFormSectionTrait, stdUiReplyTree, stdUiReplyTreePage, stdUiReplyTreeTrait, stdUiRichBlockEditor, stdUiRichBlockEditorPage, stdUiRichBlockEditorTrait, stdUiRuntimeDebugger, stdUiRuntimeDebuggerRuntimeDebuggerOrbital, stdUiScaledDiagram, stdUiScaledDiagramPage, stdUiScaledDiagramTrait, stdUiScoreDisplay, stdUiScoreDisplayPage, stdUiScoreDisplayTrait, stdUiSearchInput, stdUiSearchInputPage, stdUiSearchInputTrait, stdUiSection, stdUiSectionHeader, stdUiSectionHeaderPage, stdUiSectionHeaderTrait, stdUiSectionPage, stdUiSectionTrait, stdUiSegmentRenderer, stdUiSegmentRendererSegmentRendererOrbital, stdUiSelect, stdUiSelectPage, stdUiSelectTrait, stdUiSequenceBar, stdUiSequenceBarPage, stdUiSequenceBarTrait, stdUiServiceCatalog, stdUiServiceCatalogPage, stdUiServiceCatalogTrait, stdUiShowcaseCard, stdUiShowcaseCardPage, stdUiShowcaseCardTrait, stdUiShowcaseOrganism, stdUiShowcaseOrganismShowcaseOrganismOrbital, stdUiSidePanel, stdUiSidePanelPage, stdUiSidePanelTrait, stdUiSidebar, stdUiSidebarPage, stdUiSidebarTrait, stdUiSignaturePad, stdUiSignaturePadPage, stdUiSignaturePadTrait, stdUiSimpleGrid, stdUiSimpleGridPage, stdUiSimpleGridTrait, stdUiSkeleton, stdUiSkeletonPage, stdUiSkeletonTrait, stdUiSocialProof, stdUiSocialProofPage, stdUiSocialProofTrait, stdUiSortableList, stdUiSortableListPage, stdUiSortableListTrait, stdUiSpacer, stdUiSpacerPage, stdUiSpacerTrait, stdUiSparkline, stdUiSparklinePage, stdUiSparklineTrait, stdUiSpinner, stdUiSpinnerPage, stdUiSpinnerTrait, stdUiSplit, stdUiSplitPage, stdUiSplitPane, stdUiSplitPaneSplitPaneOrbital, stdUiSplitSection, stdUiSplitSectionPage, stdUiSplitSectionTrait, stdUiSplitTrait, stdUiStack, stdUiStackPage, stdUiStackTrait, stdUiStarRating, stdUiStarRatingPage, stdUiStarRatingTrait, stdUiStatBadge, stdUiStatBadgePage, stdUiStatBadgeTrait, stdUiStatCard, stdUiStatCardStatCardOrbital, stdUiStatDisplay, stdUiStatDisplayPage, stdUiStatDisplayTrait, stdUiStateGraph, stdUiStateGraphPage, stdUiStateGraphTrait, stdUiStateJsonView, stdUiStateJsonViewPage, stdUiStateJsonViewTrait, stdUiStateMachineView, stdUiStateMachineViewStateMachineViewOrbital, stdUiStatsGrid, stdUiStatsGridPage, stdUiStatsGridTrait, stdUiStatsOrganism, stdUiStatsOrganismStatsOrganismOrbital, stdUiStatusDot, stdUiStatusDotPage, stdUiStatusDotTrait, stdUiStepFlow, stdUiStepFlowOrganism, stdUiStepFlowOrganismStepFlowOrganismOrbital, stdUiStepFlowPage, stdUiStepFlowTrait, stdUiSubagentTracePanel, stdUiSubagentTracePanelSubagentTracePanelOrbital, stdUiSvgBranch, stdUiSvgBranchPage, stdUiSvgBranchTrait, stdUiSvgConnection, stdUiSvgConnectionPage, stdUiSvgConnectionTrait, stdUiSvgFlow, stdUiSvgFlowPage, stdUiSvgFlowTrait, stdUiSvgGrid, stdUiSvgGridPage, stdUiSvgGridTrait, stdUiSvgLobe, stdUiSvgLobePage, stdUiSvgLobeTrait, stdUiSvgMesh, stdUiSvgMeshPage, stdUiSvgMeshTrait, stdUiSvgMorph, stdUiSvgMorphPage, stdUiSvgMorphTrait, stdUiSvgNode, stdUiSvgNodePage, stdUiSvgNodeTrait, stdUiSvgPulse, stdUiSvgPulsePage, stdUiSvgPulseTrait, stdUiSvgRing, stdUiSvgRingPage, stdUiSvgRingTrait, stdUiSvgShield, stdUiSvgShieldPage, stdUiSvgShieldTrait, stdUiSvgStack, stdUiSvgStackPage, stdUiSvgStackTrait, stdUiSwipeableRow, stdUiSwipeableRowPage, stdUiSwipeableRowTrait, stdUiSwitch, stdUiSwitchPage, stdUiSwitchTrait, stdUiTabbedContainer, stdUiTabbedContainerTabbedContainerOrbital, stdUiTableView, stdUiTableViewPage, stdUiTableViewTrait, stdUiTabs, stdUiTabsPage, stdUiTabsTrait, stdUiTagCloud, stdUiTagCloudPage, stdUiTagCloudTrait, stdUiTagInput, stdUiTagInputPage, stdUiTagInputTrait, stdUiTeamCard, stdUiTeamCardPage, stdUiTeamCardTrait, stdUiTeamOrganism, stdUiTeamOrganismTeamOrganismOrbital, stdUiTextHighlight, stdUiTextHighlightPage, stdUiTextHighlightTrait, stdUiTextarea, stdUiTextareaPage, stdUiTextareaTrait, stdUiThemeToggle, stdUiThemeTogglePage, stdUiThemeToggleTrait, stdUiTimeSlotCell, stdUiTimeSlotCellPage, stdUiTimeSlotCellTrait, stdUiTimeline, stdUiTimelineTimelineOrbital, stdUiTimerDisplay, stdUiTimerDisplayPage, stdUiTimerDisplayTimerDisplayOrbital, stdUiTimerDisplayTrait, stdUiToastSlot, stdUiToastSlotToastSlotOrbital, stdUiTooltip, stdUiTooltipPage, stdUiTooltipTrait, stdUiTraitFrame, stdUiTraitFramePage, stdUiTraitFrameTrait, stdUiTraitSlot, stdUiTraitSlotPage, stdUiTraitSlotTrait, stdUiTrendIndicator, stdUiTrendIndicatorPage, stdUiTrendIndicatorTrait, stdUiTypewriterText, stdUiTypewriterTextPage, stdUiTypewriterTextTrait, stdUiTypography, stdUiTypographyPage, stdUiTypographyTrait, stdUiUiSlotRenderer, stdUiUiSlotRendererUiSlotRendererOrbital, stdUiUploadDropZone, stdUiUploadDropZonePage, stdUiUploadDropZoneTrait, stdUiVersionDiff, stdUiVersionDiffPage, stdUiVersionDiffTrait, stdUiViolationAlert, stdUiViolationAlertPage, stdUiViolationAlertTrait, stdUiVoteStack, stdUiVoteStackPage, stdUiVoteStackTrait, stdUiVstack, stdUiVstackPage, stdUiVstackTrait, stdUiWizardContainer, stdUiWizardContainerPage, stdUiWizardContainerTrait, stdUiWizardNavigation, stdUiWizardNavigationPage, stdUiWizardNavigationTrait, stdUiWizardProgress, stdUiWizardProgressPage, stdUiWizardProgressTrait, stdVersionHistory, stdVersionHistoryPage, stdVersionHistoryRevisionOrbital, stdVersionHistoryTrait, stdVote, stdVotePage, stdVoteTrait, stdVoteVoteOrbital, stdWeightValidator, stdWeightValidatorMlWeightValidatorOrbital, stdWeightValidatorPage, stdWeightValidatorTrait, stdWizard, stdWizardPage, stdWizardTrait, stdWizardWizardOrbital, stdWorldmapBoard2d, stdWorldmapBoard2dWorldMapBoard2DOrbital, stdXp, stdXpPage, stdXpTrait };
|