@almadar/std 7.4.2 → 7.4.3

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.
@@ -10,10 +10,6 @@
10
10
  "from": "std/behaviors/std-wizard",
11
11
  "as": "Wizard"
12
12
  },
13
- {
14
- "from": "std/behaviors/std-input",
15
- "as": "Input"
16
- },
17
13
  {
18
14
  "from": "std/behaviors/std-validate-on-save",
19
15
  "as": "Validate"
@@ -44,110 +40,15 @@
44
40
  ]
45
41
  },
46
42
  "traits": [
47
- {
48
- "ref": "Input.traits.TextInputInput",
49
- "name": "WizardFormInput",
50
- "linkedEntity": "WizardFormEntry"
51
- },
52
43
  {
53
44
  "ref": "Wizard.traits.WizardEntryWizard",
54
45
  "name": "WizardFormWizard",
55
- "linkedEntity": "WizardFormEntry",
56
- "effects": {
57
- "RENDER_STEP": [
58
- [
59
- "render-ui",
60
- "main",
61
- {
62
- "gap": "md",
63
- "direction": "vertical",
64
- "className": "max-w-xl mx-auto w-full",
65
- "type": "stack",
66
- "children": [
67
- {
68
- "type": "typography",
69
- "variant": "h2",
70
- "content": "@entity.step"
71
- },
72
- {
73
- "type": "divider"
74
- },
75
- "@trait.WizardFormInput",
76
- {
77
- "justify": "end",
78
- "children": [
79
- {
80
- "type": "button",
81
- "label": "Back",
82
- "variant": "ghost",
83
- "event": "PREV"
84
- },
85
- {
86
- "type": "button",
87
- "label": "Next",
88
- "event": "NEXT",
89
- "variant": "primary"
90
- }
91
- ],
92
- "type": "stack",
93
- "gap": "sm",
94
- "direction": "horizontal"
95
- }
96
- ]
97
- }
98
- ]
99
- ]
100
- }
46
+ "linkedEntity": "WizardFormEntry"
101
47
  },
102
48
  {
103
49
  "ref": "Validate.traits.OrbFileWatcher",
104
50
  "name": "WizardFormValidate",
105
51
  "linkedEntity": "WizardFormEntry"
106
- },
107
- {
108
- "name": "WizardFormLayout",
109
- "category": "interaction",
110
- "linkedEntity": "WizardFormEntry",
111
- "stateMachine": {
112
- "states": [
113
- {
114
- "name": "composing",
115
- "isInitial": true
116
- }
117
- ],
118
- "events": [
119
- {
120
- "key": "INIT",
121
- "name": "Initialize"
122
- }
123
- ],
124
- "transitions": [
125
- {
126
- "from": "composing",
127
- "to": "composing",
128
- "event": "INIT",
129
- "effects": [
130
- [
131
- "fetch",
132
- "WizardFormEntry"
133
- ],
134
- [
135
- "render-ui",
136
- "main",
137
- {
138
- "type": "stack",
139
- "direction": "vertical",
140
- "children": [
141
- "@trait.WizardFormWizard"
142
- ],
143
- "gap": "md"
144
- }
145
- ]
146
- ]
147
- }
148
- ]
149
- },
150
- "scope": "instance"
151
52
  }
152
53
  ],
153
54
  "pages": [
@@ -156,7 +57,7 @@
156
57
  "path": "/wizard-form",
157
58
  "traits": [
158
59
  {
159
- "ref": "WizardFormLayout"
60
+ "ref": "WizardFormWizard"
160
61
  }
161
62
  ]
162
63
  }
@@ -1,12 +1,12 @@
1
1
  {
2
- "$generated": "2026-04-23T09:40:07.766Z",
2
+ "$generated": "2026-04-23T10:07:33.491Z",
3
3
  "$source": "tools/behavior-registry-sync",
4
- "totalBehaviors": 145,
4
+ "totalBehaviors": 148,
5
5
  "atoms": 80,
6
- "molecules": 33,
6
+ "molecules": 36,
7
7
  "organisms": 32,
8
8
  "layers": {
9
- "UI Patterns": 145
9
+ "UI Patterns": 148
10
10
  },
11
11
  "behaviors": {
12
12
  "std-agent-activity-log": {
@@ -9083,6 +9083,28 @@
9083
9083
  "required": true
9084
9084
  }
9085
9085
  ],
9086
+ "WizardEntryLoaded": [
9087
+ {
9088
+ "name": "id",
9089
+ "type": "string"
9090
+ },
9091
+ {
9092
+ "name": "name",
9093
+ "type": "string"
9094
+ },
9095
+ {
9096
+ "name": "description",
9097
+ "type": "string"
9098
+ },
9099
+ {
9100
+ "name": "status",
9101
+ "type": "string"
9102
+ },
9103
+ {
9104
+ "name": "createdAt",
9105
+ "type": "string"
9106
+ }
9107
+ ],
9086
9108
  "WizardEntryLoadFailed": [
9087
9109
  {
9088
9110
  "name": "message",
@@ -10898,6 +10920,77 @@
10898
10920
  ]
10899
10921
  }
10900
10922
  },
10923
+ "std-detail": {
10924
+ "name": "std-detail",
10925
+ "level": "molecule",
10926
+ "family": "unknown",
10927
+ "layer": "UI Patterns",
10928
+ "description": "std-detail as a Function",
10929
+ "statePattern": "browsing, error, loading",
10930
+ "complexity": {
10931
+ "states": 3,
10932
+ "events": 3,
10933
+ "transitions": 5
10934
+ },
10935
+ "defaultEntity": {
10936
+ "name": "DetailRecord",
10937
+ "persistence": "persistent",
10938
+ "fields": [
10939
+ {
10940
+ "name": "id",
10941
+ "type": "string",
10942
+ "required": true
10943
+ },
10944
+ {
10945
+ "name": "name",
10946
+ "type": "string",
10947
+ "required": true
10948
+ },
10949
+ {
10950
+ "name": "description",
10951
+ "type": "string"
10952
+ },
10953
+ {
10954
+ "name": "status",
10955
+ "type": "string",
10956
+ "default": "active"
10957
+ },
10958
+ {
10959
+ "name": "createdAt",
10960
+ "type": "string"
10961
+ }
10962
+ ]
10963
+ },
10964
+ "defaultLabels": {
10965
+ "title": "DetailRecords",
10966
+ "entitySingular": "DetailRecord",
10967
+ "entityPlural": "DetailRecords"
10968
+ },
10969
+ "defaultIcons": [],
10970
+ "composableWith": [],
10971
+ "connectableEvents": [
10972
+ "DetailRecordLoaded",
10973
+ "DetailRecordLoadFailed"
10974
+ ],
10975
+ "eventPayloads": {
10976
+ "DetailRecordLoaded": [
10977
+ {
10978
+ "name": "data",
10979
+ "type": "[DetailRecord]"
10980
+ }
10981
+ ],
10982
+ "DetailRecordLoadFailed": [
10983
+ {
10984
+ "name": "error",
10985
+ "type": "string"
10986
+ },
10987
+ {
10988
+ "name": "code",
10989
+ "type": "string"
10990
+ }
10991
+ ]
10992
+ }
10993
+ },
10901
10994
  "std-drawer-master-list": {
10902
10995
  "name": "std-drawer-master-list",
10903
10996
  "level": "molecule",
@@ -11285,6 +11378,158 @@
11285
11378
  "connectableEvents": [],
11286
11379
  "eventPayloads": {}
11287
11380
  },
11381
+ "std-geospatial": {
11382
+ "name": "std-geospatial",
11383
+ "level": "molecule",
11384
+ "family": "unknown",
11385
+ "layer": "UI Patterns",
11386
+ "description": "std-geospatial as a Function",
11387
+ "statePattern": "browsing, error, loading",
11388
+ "complexity": {
11389
+ "states": 3,
11390
+ "events": 3,
11391
+ "transitions": 5
11392
+ },
11393
+ "defaultEntity": {
11394
+ "name": "Location",
11395
+ "persistence": "persistent",
11396
+ "fields": [
11397
+ {
11398
+ "name": "id",
11399
+ "type": "string",
11400
+ "required": true
11401
+ },
11402
+ {
11403
+ "name": "name",
11404
+ "type": "string",
11405
+ "required": true
11406
+ },
11407
+ {
11408
+ "name": "description",
11409
+ "type": "string"
11410
+ },
11411
+ {
11412
+ "name": "status",
11413
+ "type": "string",
11414
+ "default": "active"
11415
+ },
11416
+ {
11417
+ "name": "createdAt",
11418
+ "type": "string"
11419
+ },
11420
+ {
11421
+ "name": "pendingId",
11422
+ "type": "string",
11423
+ "default": ""
11424
+ }
11425
+ ]
11426
+ },
11427
+ "defaultLabels": {
11428
+ "title": "Locations",
11429
+ "entitySingular": "Location",
11430
+ "entityPlural": "Locations"
11431
+ },
11432
+ "defaultIcons": [],
11433
+ "composableWith": [],
11434
+ "connectableEvents": [
11435
+ "LocationLoaded",
11436
+ "LocationLoadFailed"
11437
+ ],
11438
+ "eventPayloads": {
11439
+ "LocationLoaded": [
11440
+ {
11441
+ "name": "data",
11442
+ "type": "[Location]"
11443
+ }
11444
+ ],
11445
+ "LocationLoadFailed": [
11446
+ {
11447
+ "name": "error",
11448
+ "type": "string"
11449
+ },
11450
+ {
11451
+ "name": "code",
11452
+ "type": "string"
11453
+ }
11454
+ ]
11455
+ }
11456
+ },
11457
+ "std-inventory": {
11458
+ "name": "std-inventory",
11459
+ "level": "molecule",
11460
+ "family": "unknown",
11461
+ "layer": "UI Patterns",
11462
+ "description": "std-inventory as a Function",
11463
+ "statePattern": "browsing, error, loading",
11464
+ "complexity": {
11465
+ "states": 3,
11466
+ "events": 3,
11467
+ "transitions": 5
11468
+ },
11469
+ "defaultEntity": {
11470
+ "name": "InventoryItem",
11471
+ "persistence": "persistent",
11472
+ "fields": [
11473
+ {
11474
+ "name": "id",
11475
+ "type": "string",
11476
+ "required": true
11477
+ },
11478
+ {
11479
+ "name": "name",
11480
+ "type": "string",
11481
+ "required": true
11482
+ },
11483
+ {
11484
+ "name": "description",
11485
+ "type": "string"
11486
+ },
11487
+ {
11488
+ "name": "status",
11489
+ "type": "string",
11490
+ "default": "active"
11491
+ },
11492
+ {
11493
+ "name": "createdAt",
11494
+ "type": "string"
11495
+ },
11496
+ {
11497
+ "name": "pendingId",
11498
+ "type": "string",
11499
+ "default": ""
11500
+ }
11501
+ ]
11502
+ },
11503
+ "defaultLabels": {
11504
+ "title": "InventoryItems",
11505
+ "entitySingular": "InventoryItem",
11506
+ "entityPlural": "InventoryItems"
11507
+ },
11508
+ "defaultIcons": [],
11509
+ "composableWith": [],
11510
+ "connectableEvents": [
11511
+ "InventoryItemLoaded",
11512
+ "InventoryItemLoadFailed"
11513
+ ],
11514
+ "eventPayloads": {
11515
+ "InventoryItemLoaded": [
11516
+ {
11517
+ "name": "data",
11518
+ "type": "[InventoryItem]"
11519
+ }
11520
+ ],
11521
+ "InventoryItemLoadFailed": [
11522
+ {
11523
+ "name": "error",
11524
+ "type": "string"
11525
+ },
11526
+ {
11527
+ "name": "code",
11528
+ "type": "string"
11529
+ }
11530
+ ]
11531
+ }
11532
+ },
11288
11533
  "std-list": {
11289
11534
  "name": "std-list",
11290
11535
  "level": "molecule",
@@ -11362,6 +11607,79 @@
11362
11607
  ]
11363
11608
  }
11364
11609
  },
11610
+ "std-messaging": {
11611
+ "name": "std-messaging",
11612
+ "level": "molecule",
11613
+ "family": "unknown",
11614
+ "layer": "UI Patterns",
11615
+ "description": "std-messaging as a Function",
11616
+ "statePattern": "browsing, error, loading",
11617
+ "complexity": {
11618
+ "states": 3,
11619
+ "events": 3,
11620
+ "transitions": 5
11621
+ },
11622
+ "defaultEntity": {
11623
+ "name": "ChatMessage",
11624
+ "persistence": "persistent",
11625
+ "fields": [
11626
+ {
11627
+ "name": "id",
11628
+ "type": "string",
11629
+ "required": true
11630
+ },
11631
+ {
11632
+ "name": "name",
11633
+ "type": "string",
11634
+ "required": true
11635
+ },
11636
+ {
11637
+ "name": "description",
11638
+ "type": "string"
11639
+ },
11640
+ {
11641
+ "name": "status",
11642
+ "type": "string",
11643
+ "default": "active"
11644
+ },
11645
+ {
11646
+ "name": "createdAt",
11647
+ "type": "string"
11648
+ }
11649
+ ]
11650
+ },
11651
+ "defaultLabels": {
11652
+ "title": "ChatMessages",
11653
+ "entitySingular": "ChatMessage",
11654
+ "entityPlural": "ChatMessages"
11655
+ },
11656
+ "defaultIcons": [],
11657
+ "composableWith": [
11658
+ "std-realtime-chat"
11659
+ ],
11660
+ "connectableEvents": [
11661
+ "ChatMessageLoaded",
11662
+ "ChatMessageLoadFailed"
11663
+ ],
11664
+ "eventPayloads": {
11665
+ "ChatMessageLoaded": [
11666
+ {
11667
+ "name": "data",
11668
+ "type": "[ChatMessage]"
11669
+ }
11670
+ ],
11671
+ "ChatMessageLoadFailed": [
11672
+ {
11673
+ "name": "error",
11674
+ "type": "string"
11675
+ },
11676
+ {
11677
+ "name": "code",
11678
+ "type": "string"
11679
+ }
11680
+ ]
11681
+ }
11682
+ },
11365
11683
  "std-negotiator-game": {
11366
11684
  "name": "std-negotiator-game",
11367
11685
  "level": "molecule",
@@ -13118,51 +13436,6 @@
13118
13436
  ]
13119
13437
  }
13120
13438
  },
13121
- "std-wizard-form": {
13122
- "name": "std-wizard-form",
13123
- "level": "molecule",
13124
- "family": "unknown",
13125
- "layer": "UI Patterns",
13126
- "description": "std-wizard-form as a Function",
13127
- "statePattern": "composing",
13128
- "complexity": {
13129
- "states": 1,
13130
- "events": 1,
13131
- "transitions": 1
13132
- },
13133
- "defaultEntity": {
13134
- "name": "WizardFormEntry",
13135
- "persistence": "persistent",
13136
- "fields": [
13137
- {
13138
- "name": "id",
13139
- "type": "string",
13140
- "required": true
13141
- },
13142
- {
13143
- "name": "step",
13144
- "type": "string"
13145
- },
13146
- {
13147
- "name": "name",
13148
- "type": "string"
13149
- },
13150
- {
13151
- "name": "email",
13152
- "type": "string"
13153
- }
13154
- ]
13155
- },
13156
- "defaultLabels": {
13157
- "title": "WizardFormEntrys",
13158
- "entitySingular": "WizardFormEntry",
13159
- "entityPlural": "WizardFormEntrys"
13160
- },
13161
- "defaultIcons": [],
13162
- "composableWith": [],
13163
- "connectableEvents": [],
13164
- "eventPayloads": {}
13165
- },
13166
13439
  "std-agent-assistant": {
13167
13440
  "name": "std-agent-assistant",
13168
13441
  "level": "organism",
@@ -16491,6 +16764,7 @@
16491
16764
  "std-helpdesk",
16492
16765
  "std-hr-portal",
16493
16766
  "std-lms",
16767
+ "std-messaging",
16494
16768
  "std-project-manager",
16495
16769
  "std-service-marketplace",
16496
16770
  "std-social-feed"
package/dist/index.d.ts CHANGED
@@ -14,7 +14,7 @@ import { BehaviorTrait } from './behaviors/types.js';
14
14
  export { BehaviorMetadata, ItemAction, getBehaviorMetadata, validateBehaviorEvents, validateBehaviorStates, validateBehaviorStructure } from './behaviors/types.js';
15
15
  export { BehaviorLevel, getAllBehaviorNames, getAllBehaviors, getBehaviorsByLevel, hasGoldenOrb, loadGoldenOrb } from './behaviors/exports-reader.js';
16
16
  export { BehaviorSummary, RegistryEntry, getBehaviorRegistry, getBehaviorSummary, getBehaviorsByDomain, getBehaviorsByOperations, searchBehaviors } from './behaviors/query.js';
17
- export { StdAgentActivityLogParams, StdAgentAssistantParams, StdAgentBuilderParams, StdAgentChatThreadParams, StdAgentClassifierParams, StdAgentCompletionParams, StdAgentContextWindowParams, StdAgentConversationParams, StdAgentFixLoopParams, StdAgentLearnerParams, StdAgentMemoryParams, StdAgentPipelineParams, StdAgentPlannerParams, StdAgentProviderParams, StdAgentRagParams, StdAgentReviewerParams, StdAgentSearchParams, StdAgentSessionParams, StdAgentStepProgressParams, StdAgentTokenGaugeParams, StdAgentToolCallParams, StdAgentToolLoopParams, StdAgentTutorParams, StdApiGatewayParams, StdArcadeGameParams, StdAsyncParams, StdAutoregressiveParams, StdBookingSystemParams, StdBrowseParams, StdBuilderGameParams, StdCacheAsideParams, StdCalendarParams, StdCartParams, StdCicdPipelineParams, StdCircuitBreakerParams, StdClassifierGameParams, StdCmsParams, StdCodingAcademyParams, StdCollisionParams, StdCombatLogParams, StdCombatParams, StdConfirmationParams, StdCrmParams, StdDebuggerGameParams, StdDetailParams, StdDevopsDashboardParams, StdDialogueBoxParams, StdDisplayParams, StdDrawerParams, StdEcommerceParams, StdEventHandlerGameParams, StdFilterParams, StdFinanceTrackerParams, StdFlipCardParams, StdFormAdvancedParams, StdGalleryParams, StdGameAudioParams, StdGameCanvas2dParams, StdGameCanvas3dParams, StdGameHudParams, StdGameMenuParams, StdGameOverScreenParams, StdGameflowParams, StdGeospatialParams, StdHealthcareParams, StdHelpdeskParams, StdHrPortalParams, StdInputParams, StdInventoryPanelParams, StdInventoryParams, StdIotDashboardParams, StdIsometricCanvasParams, StdListParams, StdLmsParams, StdLoadingParams, StdLogicTrainingParams, StdMessagingParams, StdModalParams, StdMovementParams, StdNegotiatorGameParams, StdNotificationParams, StdOverworldParams, StdPaginationParams, StdPhysics2dParams, StdPlatformerAppParams, StdPlatformerCanvasParams, StdPlatformerGameParams, StdProjectManagerParams, StdPuzzleAppParams, StdPuzzleGameParams, StdQuestParams, StdQuizParams, StdRateLimiterParams, StdRatingParams, StdRealtimeChatParams, StdRpgGameParams, StdScoreBoardParams, StdScoreParams, StdSearchParams, StdSelectionParams, StdSequencerGameParams, StdServiceContentPipelineParams, StdServiceCustomApiTesterParams, StdServiceCustomBearerParams, StdServiceCustomHeaderParams, StdServiceCustomNoauthParams, StdServiceCustomQueryParams, StdServiceDevopsToolkitParams, StdServiceEmailParams, StdServiceGithubParams, StdServiceLlmParams, StdServiceMarketplaceParams, StdServiceNotificationHubParams, StdServiceOauthParams, StdServicePaymentFlowParams, StdServiceRedisParams, StdServiceResearchAssistantParams, StdServiceStorageParams, StdServiceStripeParams, StdServiceTwilioParams, StdServiceYoutubeParams, StdSimulationCanvasParams, StdSimulatorGameParams, StdSocialFeedParams, StdSortParams, StdSpriteParams, StdStemLabParams, StdStrategyGameParams, StdTabsParams, StdTextEffectsParams, StdThemeParams, StdTimerParams, StdTradingDashboardParams, StdTurnBasedBattleParams, StdUndoParams, StdUploadParams, StdValidateOnSaveParams, StdWizardParams, stdAgentActivityLog, stdAgentActivityLogPage, stdAgentActivityLogTrait, stdAgentAssistant, stdAgentAssistantAssistantAgentTrait, stdAgentAssistantAssistantConversationTrait, stdAgentAssistantPage, stdAgentBuilder, stdAgentBuilderBuildPlannerTrait, stdAgentBuilderPage, stdAgentBuilderPlannerClassifierFlowTrait, stdAgentBuilderPlannerCompletionFlowTrait, stdAgentBuilderPlannerMemoryLifecycleTrait, stdAgentBuilderPlannerTaskInputTrait, stdAgentChatThread, stdAgentChatThreadPage, stdAgentChatThreadTrait, stdAgentClassifier, stdAgentClassifierAgentClassifierAgentTrait, stdAgentClassifierAgentClassifierModalTrait, stdAgentClassifierAgentClassifierNotificationTrait, stdAgentClassifierPage, stdAgentCompletion, stdAgentCompletionAgentCompletionAgentTrait, stdAgentCompletionAgentCompletionModalTrait, stdAgentCompletionAgentCompletionNotificationTrait, stdAgentCompletionPage, stdAgentContextWindow, stdAgentContextWindowAgentContextWindowAgentTrait, stdAgentContextWindowAgentContextWindowGaugeTrait, stdAgentContextWindowAgentContextWindowNotificationTrait, stdAgentContextWindowPage, stdAgentConversation, stdAgentConversationAgentConversationAgentTrait, stdAgentConversationAgentConversationThreadTrait, stdAgentConversationPage, stdAgentFixLoop, stdAgentFixLoopAgentFixLoopCycleTrait, stdAgentFixLoopFixLoopCompletionFlowTrait, stdAgentFixLoopFixLoopErrorsBrowseTrait, stdAgentFixLoopFixLoopFixCallTrait, stdAgentFixLoopFixLoopStepProgressTrait, stdAgentFixLoopFixLoopValidateCallTrait, stdAgentFixLoopPage, stdAgentLearner, stdAgentLearnerAgentLearnerLearnerTrait, stdAgentLearnerLearnerCompletionFlowTrait, stdAgentLearnerLearnerMemoryLifecycleTrait, stdAgentLearnerLearnerProviderManagerTrait, stdAgentLearnerLearnerRecordsBrowseTrait, stdAgentLearnerPage, stdAgentMemory, stdAgentMemoryAgentMemoryAgentTrait, stdAgentMemoryAgentMemoryBrowseTrait, stdAgentMemoryAgentMemoryCreateTrait, stdAgentMemoryPage, stdAgentPipeline, stdAgentPipelinePage, stdAgentPipelinePipelinePlannerTrait, stdAgentPipelinePlannerClassifierFlowTrait, stdAgentPipelinePlannerCompletionFlowTrait, stdAgentPipelinePlannerMemoryLifecycleTrait, stdAgentPipelinePlannerTaskInputTrait, stdAgentPlanner, stdAgentPlannerAgentPlannerPlannerTrait, stdAgentPlannerPage, stdAgentPlannerPlannerClassifierFlowTrait, stdAgentPlannerPlannerCompletionFlowTrait, stdAgentPlannerPlannerMemoryLifecycleTrait, stdAgentPlannerPlannerTaskInputTrait, stdAgentProvider, stdAgentProviderAgentProviderAgentTrait, stdAgentProviderAgentProviderModalTrait, stdAgentProviderAgentProviderNotificationTrait, stdAgentProviderPage, stdAgentRag, stdAgentRagAgentRagRagTrait, stdAgentRagPage, stdAgentRagRagCompletionFlowTrait, stdAgentRagRagMemoryLifecycleTrait, stdAgentRagRagSearchLifecycleTrait, stdAgentRagRagTabsTrait, stdAgentReviewer, stdAgentReviewerPage, stdAgentReviewerTrait, stdAgentSearch, stdAgentSearchAgentSearchAgentTrait, stdAgentSearchAgentSearchBrowseTrait, stdAgentSearchPage, stdAgentSession, stdAgentSessionAgentSessionAgentTrait, stdAgentSessionAgentSessionBrowseTrait, stdAgentSessionAgentSessionLabelTrait, stdAgentSessionPage, stdAgentStepProgress, stdAgentStepProgressPage, stdAgentStepProgressTrait, stdAgentTokenGauge, stdAgentTokenGaugePage, stdAgentTokenGaugeTrait, stdAgentToolCall, stdAgentToolCallAgentToolCallAgentTrait, stdAgentToolCallAgentToolCallModalTrait, stdAgentToolCallPage, stdAgentToolLoop, stdAgentToolLoopAgentToolLoopLoopTrait, stdAgentToolLoopPage, stdAgentToolLoopToolLoopCompletionFlowTrait, stdAgentToolLoopToolLoopContextMonitorTrait, stdAgentToolLoopToolLoopStepProgressTrait, stdAgentToolLoopToolLoopToolCallFlowTrait, stdAgentTutor, stdAgentTutorPage, stdAgentTutorTrait, stdApiGateway, stdApiGatewayPage, stdApiGatewayRouteBrowseTrait, stdApiGatewayRouteCreateTrait, stdApiGatewayRouteDeleteTrait, stdApiGatewayRouteEditTrait, stdApiGatewayRouteViewTrait, stdArcadeGame, stdArcadeGamePage, stdArcadeGameTrait, stdAsync, stdAsyncPage, stdAsyncTrait, stdAutoregressive, stdAutoregressivePage, stdAutoregressiveTrait, stdBookingSystem, stdBookingSystemPage, stdBookingSystemProviderBrowseTrait, stdBookingSystemProviderCreateTrait, stdBookingSystemProviderDeleteTrait, stdBookingSystemProviderEditTrait, stdBookingSystemProviderViewTrait, stdBrowse, stdBrowsePage, stdBrowseTrait, stdBuilderGame, stdBuilderGamePage, stdBuilderGameTrait, stdCacheAside, stdCacheAsidePage, stdCacheAsideTrait, stdCalendar, stdCalendarPage, stdCalendarTrait, stdCart, stdCartCartItemAddItemTrait, stdCartCartItemCartBrowseTrait, stdCartCartItemPersistorTrait, stdCartCartItemRemoveConfirmTrait, stdCartPage, stdCicdPipeline, stdCicdPipelineBuildBrowseTrait, stdCicdPipelineBuildCreateTrait, stdCicdPipelineBuildDeleteTrait, stdCicdPipelineBuildEditTrait, stdCicdPipelineBuildViewTrait, stdCicdPipelinePage, stdCircuitBreaker, stdCircuitBreakerPage, stdCircuitBreakerTrait, stdClassifierGame, stdClassifierGamePage, stdClassifierGameTrait, stdCms, stdCmsArticleBrowseTrait, stdCmsArticleCreateTrait, stdCmsArticleDeleteTrait, stdCmsArticleEditTrait, stdCmsArticleViewTrait, stdCmsPage, stdCodingAcademy, stdCodingAcademyPage, stdCodingAcademyTrait, stdCollision, stdCollisionPage, stdCollisionTrait, stdCombat, stdCombatLog, stdCombatLogPage, stdCombatLogTrait, stdCombatPage, stdCombatTrait, stdConfirmation, stdConfirmationPage, stdConfirmationTrait, stdCrm, stdCrmContactBrowseTrait, stdCrmContactCreateTrait, stdCrmContactDeleteTrait, stdCrmContactEditTrait, stdCrmContactViewTrait, stdCrmPage, stdDebuggerGame, stdDebuggerGamePage, stdDebuggerGameTrait, stdDetail, stdDetailDetailRecordBrowseTrait, stdDetailDetailRecordCreateTrait, stdDetailDetailRecordViewTrait, stdDetailPage, stdDevopsDashboard, stdDevopsDashboardPage, stdDevopsDashboardTrait, stdDialogueBox, stdDialogueBoxPage, stdDialogueBoxTrait, stdDisplay, stdDisplayPage, stdDisplayTrait, stdDrawer, stdDrawerPage, stdDrawerTrait, stdEcommerce, stdEcommercePage, stdEcommerceProductBrowseTrait, stdEcommerceProductCreateTrait, stdEcommerceProductDeleteTrait, stdEcommerceProductEditTrait, stdEcommerceProductViewTrait, stdEventHandlerGame, stdEventHandlerGamePage, stdEventHandlerGameTrait, stdFilter, stdFilterPage, stdFilterTrait, stdFinanceTracker, stdFinanceTrackerPage, stdFinanceTrackerTransactionBrowseTrait, stdFinanceTrackerTransactionCreateTrait, stdFinanceTrackerTransactionDeleteTrait, stdFinanceTrackerTransactionEditTrait, stdFinanceTrackerTransactionViewTrait, stdFlipCard, stdFlipCardPage, stdFlipCardTrait, stdFormAdvanced, stdFormAdvancedPage, stdFormAdvancedTrait, stdGallery, stdGalleryPage, stdGalleryTrait, stdGameAudio, stdGameAudioPage, stdGameAudioTrait, stdGameCanvas2d, stdGameCanvas2dPage, stdGameCanvas2dTrait, stdGameCanvas3d, stdGameCanvas3dPage, stdGameCanvas3dTrait, stdGameHud, stdGameHudPage, stdGameHudTrait, stdGameMenu, stdGameMenuPage, stdGameMenuTrait, stdGameOverScreen, stdGameOverScreenPage, stdGameOverScreenTrait, stdGameflow, stdGameflowPage, stdGameflowTrait, stdGeospatial, stdGeospatialLocationBrowseTrait, stdGeospatialLocationConfirmSelectTrait, stdGeospatialLocationSelectTrait, stdGeospatialPage, stdHealthcare, stdHealthcarePage, stdHealthcarePatientBrowseTrait, stdHealthcarePatientCreateTrait, stdHealthcarePatientDeleteTrait, stdHealthcarePatientEditTrait, stdHealthcarePatientViewTrait, stdHelpdesk, stdHelpdeskPage, stdHelpdeskTicketBrowseTrait, stdHelpdeskTicketCreateTrait, stdHelpdeskTicketDeleteTrait, stdHelpdeskTicketEditTrait, stdHelpdeskTicketViewTrait, stdHrPortal, stdHrPortalEmployeeBrowseTrait, stdHrPortalEmployeeCreateTrait, stdHrPortalEmployeeDeleteTrait, stdHrPortalEmployeeEditTrait, stdHrPortalEmployeeViewTrait, stdHrPortalPage, stdInput, stdInputPage, stdInputTrait, stdInventory, stdInventoryInventoryItemAddTrait, stdInventoryInventoryItemBrowseTrait, stdInventoryInventoryItemDropTrait, stdInventoryInventoryItemPersistorTrait, stdInventoryInventoryItemUseTrait, stdInventoryPage, stdInventoryPanel, stdInventoryPanelPage, stdInventoryPanelTrait, stdIotDashboard, stdIotDashboardPage, stdIotDashboardTrait, stdIsometricCanvas, stdIsometricCanvasPage, stdIsometricCanvasTrait, stdList, stdListListItemBrowseTrait, stdListListItemCreateTrait, stdListListItemDeleteTrait, stdListListItemEditTrait, stdListListItemPersistorTrait, stdListPage, stdLms, stdLmsCourseBrowseTrait, stdLmsCourseCreateTrait, stdLmsCourseDeleteTrait, stdLmsCourseEditTrait, stdLmsCourseViewTrait, stdLmsPage, stdLoading, stdLoadingPage, stdLoadingTrait, stdLogicTraining, stdLogicTrainingPage, stdLogicTrainingTrait, stdMessaging, stdMessagingChatMessageBrowseTrait, stdMessagingChatMessageComposeTrait, stdMessagingChatMessageViewTrait, stdMessagingPage, stdModal, stdModalPage, stdModalTrait, stdMovement, stdMovementPage, stdMovementTrait, stdNegotiatorGame, stdNegotiatorGamePage, stdNegotiatorGameTrait, stdNotification, stdNotificationPage, stdNotificationTrait, stdOverworld, stdOverworldPage, stdOverworldTrait, stdPagination, stdPaginationPage, stdPaginationTrait, stdPhysics2d, stdPhysics2dPage, stdPhysics2dTrait, stdPlatformerApp, stdPlatformerAppPage, stdPlatformerAppPlatLevelPlatformerCanvasTrait, stdPlatformerAppPlatLevelPlatformerFlowTrait, stdPlatformerCanvas, stdPlatformerCanvasPage, stdPlatformerCanvasTrait, stdPlatformerGame, stdPlatformerGamePage, stdPlatformerGamePlatLevelPlatformerCanvasTrait, stdPlatformerGamePlatLevelPlatformerFlowTrait, stdProjectManager, stdProjectManagerPage, stdProjectManagerTaskBrowseTrait, stdProjectManagerTaskCreateTrait, stdProjectManagerTaskDeleteTrait, stdProjectManagerTaskEditTrait, stdProjectManagerTaskViewTrait, stdPuzzleApp, stdPuzzleAppPage, stdPuzzleAppPuzzleLevelPuzzleFlowTrait, stdPuzzleAppPuzzleLevelPuzzleScoreTrait, stdPuzzleGame, stdPuzzleGamePage, stdPuzzleGamePuzzleBoardPuzzleFlowTrait, stdPuzzleGamePuzzleBoardPuzzleScoreTrait, stdQuest, stdQuestPage, stdQuestTrait, stdQuiz, stdQuizPage, stdQuizTrait, stdRateLimiter, stdRateLimiterPage, stdRateLimiterTrait, stdRating, stdRatingPage, stdRatingTrait, stdRealtimeChat, stdRealtimeChatChatMessageBrowseTrait, stdRealtimeChatChatMessageComposeTrait, stdRealtimeChatChatMessageViewTrait, stdRealtimeChatPage, stdRpgGame, stdRpgGameBattleStateBattleFlowTrait, stdRpgGameBattleStateCombatLogTrait, stdRpgGamePage, stdScore, stdScoreBoard, stdScoreBoardPage, stdScoreBoardTrait, stdScorePage, stdScoreTrait, stdSearch, stdSearchPage, stdSearchTrait, stdSelection, stdSelectionPage, stdSelectionTrait, stdSequencerGame, stdSequencerGamePage, stdSequencerGameTrait, stdServiceContentPipeline, stdServiceContentPipelinePage, stdServiceContentPipelineTrait, stdServiceCustomApiTester, stdServiceCustomApiTesterPage, stdServiceCustomApiTesterTrait, stdServiceCustomBearer, stdServiceCustomBearerPage, stdServiceCustomBearerTrait, stdServiceCustomHeader, stdServiceCustomHeaderPage, stdServiceCustomHeaderTrait, stdServiceCustomNoauth, stdServiceCustomNoauthPage, stdServiceCustomNoauthTrait, stdServiceCustomQuery, stdServiceCustomQueryPage, stdServiceCustomQueryTrait, stdServiceDevopsToolkit, stdServiceDevopsToolkitPage, stdServiceDevopsToolkitServiceDevopsToolkitGithubTrait, stdServiceDevopsToolkitServiceDevopsToolkitRedisTrait, stdServiceDevopsToolkitServiceDevopsToolkitStorageTrait, stdServiceEmail, stdServiceEmailPage, stdServiceEmailTrait, stdServiceGithub, stdServiceGithubPage, stdServiceGithubTrait, stdServiceLlm, stdServiceLlmPage, stdServiceLlmTrait, stdServiceMarketplace, stdServiceMarketplacePage, stdServiceMarketplaceProductBrowseTrait, stdServiceMarketplaceProductCreateTrait, stdServiceMarketplaceProductDeleteTrait, stdServiceMarketplaceProductEditTrait, stdServiceMarketplaceProductViewTrait, stdServiceNotificationHub, stdServiceNotificationHubPage, stdServiceNotificationHubTrait, stdServiceOauth, stdServiceOauthPage, stdServiceOauthTrait, stdServicePaymentFlow, stdServicePaymentFlowPage, stdServicePaymentFlowServicePaymentFlowPaymentTrait, stdServicePaymentFlowServicePaymentFlowReceiptTrait, stdServiceRedis, stdServiceRedisPage, stdServiceRedisTrait, stdServiceResearchAssistant, stdServiceResearchAssistantPage, stdServiceResearchAssistantTrait, stdServiceStorage, stdServiceStoragePage, stdServiceStorageTrait, stdServiceStripe, stdServiceStripePage, stdServiceStripeTrait, stdServiceTwilio, stdServiceTwilioPage, stdServiceTwilioTrait, stdServiceYoutube, stdServiceYoutubePage, stdServiceYoutubeTrait, stdSimulationCanvas, stdSimulationCanvasPage, stdSimulationCanvasTrait, stdSimulatorGame, stdSimulatorGamePage, stdSimulatorGameTrait, stdSocialFeed, stdSocialFeedPage, stdSocialFeedPostBrowseTrait, stdSocialFeedPostCreateTrait, stdSocialFeedPostViewTrait, stdSort, stdSortPage, stdSortTrait, stdSprite, stdSpritePage, stdSpriteTrait, stdStemLab, stdStemLabPage, stdStemLabTrait, stdStrategyGame, stdStrategyGameArmyBattleBattleFlowTrait, stdStrategyGameArmyBattleCombatLogTrait, stdStrategyGamePage, stdTabs, stdTabsPage, stdTabsTrait, stdTextEffects, stdTextEffectsPage, stdTextEffectsTrait, stdTheme, stdThemePage, stdThemeTrait, stdTimer, stdTimerPage, stdTimerTrait, stdTradingDashboard, stdTradingDashboardPage, stdTradingDashboardTrait, stdTurnBasedBattle, stdTurnBasedBattleBattleUnitBattleFlowTrait, stdTurnBasedBattleBattleUnitCombatLogTrait, stdTurnBasedBattlePage, stdUndo, stdUndoPage, stdUndoTrait, stdUpload, stdUploadPage, stdUploadTrait, stdValidateOnSave, stdValidateOnSavePage, stdValidateOnSaveTrait, stdWizard, stdWizardPage, stdWizardTrait } from './behaviors/functions/index.js';
17
+ export { StdAgentActivityLogParams, StdAgentAssistantParams, StdAgentBuilderParams, StdAgentChatThreadParams, StdAgentClassifierParams, StdAgentCompletionParams, StdAgentContextWindowParams, StdAgentConversationParams, StdAgentFixLoopParams, StdAgentLearnerParams, StdAgentMemoryParams, StdAgentPipelineParams, StdAgentPlannerParams, StdAgentProviderParams, StdAgentRagParams, StdAgentReviewerParams, StdAgentSearchParams, StdAgentSessionParams, StdAgentStepProgressParams, StdAgentTokenGaugeParams, StdAgentToolCallParams, StdAgentToolLoopParams, StdAgentTutorParams, StdApiGatewayParams, StdArcadeGameParams, StdAsyncParams, StdAutoregressiveParams, StdBookingSystemParams, StdBrowseParams, StdBuilderGameParams, StdCacheAsideParams, StdCalendarParams, StdCartParams, StdCicdPipelineParams, StdCircuitBreakerParams, StdClassifierGameParams, StdCmsParams, StdCodingAcademyParams, StdCollisionParams, StdCombatLogParams, StdCombatParams, StdConfirmationParams, StdCrmParams, StdDebuggerGameParams, StdDetailParams, StdDevopsDashboardParams, StdDialogueBoxParams, StdDisplayParams, StdDrawerParams, StdEcommerceParams, StdEventHandlerGameParams, StdFilterParams, StdFinanceTrackerParams, StdFlipCardParams, StdFormAdvancedParams, StdGalleryParams, StdGameAudioParams, StdGameCanvas2dParams, StdGameCanvas3dParams, StdGameHudParams, StdGameMenuParams, StdGameOverScreenParams, StdGameflowParams, StdGeospatialParams, StdHealthcareParams, StdHelpdeskParams, StdHrPortalParams, StdInputParams, StdInventoryPanelParams, StdInventoryParams, StdIotDashboardParams, StdIsometricCanvasParams, StdListParams, StdLmsParams, StdLoadingParams, StdLogicTrainingParams, StdMessagingParams, StdModalParams, StdMovementParams, StdNegotiatorGameParams, StdNotificationParams, StdOverworldParams, StdPaginationParams, StdPhysics2dParams, StdPlatformerAppParams, StdPlatformerCanvasParams, StdPlatformerGameParams, StdProjectManagerParams, StdPuzzleAppParams, StdPuzzleGameParams, StdQuestParams, StdQuizParams, StdRateLimiterParams, StdRatingParams, StdRealtimeChatParams, StdRpgGameParams, StdScoreBoardParams, StdScoreParams, StdSearchParams, StdSelectionParams, StdSequencerGameParams, StdServiceContentPipelineParams, StdServiceCustomApiTesterParams, StdServiceCustomBearerParams, StdServiceCustomHeaderParams, StdServiceCustomNoauthParams, StdServiceCustomQueryParams, StdServiceDevopsToolkitParams, StdServiceEmailParams, StdServiceGithubParams, StdServiceLlmParams, StdServiceMarketplaceParams, StdServiceNotificationHubParams, StdServiceOauthParams, StdServicePaymentFlowParams, StdServiceRedisParams, StdServiceResearchAssistantParams, StdServiceStorageParams, StdServiceStripeParams, StdServiceTwilioParams, StdServiceYoutubeParams, StdSimulationCanvasParams, StdSimulatorGameParams, StdSocialFeedParams, StdSortParams, StdSpriteParams, StdStemLabParams, StdStrategyGameParams, StdTabsParams, StdTextEffectsParams, StdThemeParams, StdTimerParams, StdTradingDashboardParams, StdTurnBasedBattleParams, StdUndoParams, StdUploadParams, StdValidateOnSaveParams, StdWizardParams, stdAgentActivityLog, stdAgentActivityLogPage, stdAgentActivityLogTrait, stdAgentAssistant, stdAgentAssistantAssistantAgentTrait, stdAgentAssistantAssistantConversationTrait, stdAgentAssistantPage, stdAgentBuilder, stdAgentBuilderBuildPlannerTrait, stdAgentBuilderPage, stdAgentBuilderPlannerClassifierFlowTrait, stdAgentBuilderPlannerCompletionFlowTrait, stdAgentBuilderPlannerMemoryLifecycleTrait, stdAgentBuilderPlannerTaskInputTrait, stdAgentChatThread, stdAgentChatThreadPage, stdAgentChatThreadTrait, stdAgentClassifier, stdAgentClassifierAgentClassifierAgentTrait, stdAgentClassifierAgentClassifierModalTrait, stdAgentClassifierAgentClassifierNotificationTrait, stdAgentClassifierPage, stdAgentCompletion, stdAgentCompletionAgentCompletionAgentTrait, stdAgentCompletionAgentCompletionModalTrait, stdAgentCompletionAgentCompletionNotificationTrait, stdAgentCompletionPage, stdAgentContextWindow, stdAgentContextWindowAgentContextWindowAgentTrait, stdAgentContextWindowAgentContextWindowGaugeTrait, stdAgentContextWindowAgentContextWindowNotificationTrait, stdAgentContextWindowPage, stdAgentConversation, stdAgentConversationAgentConversationAgentTrait, stdAgentConversationAgentConversationThreadTrait, stdAgentConversationPage, stdAgentFixLoop, stdAgentFixLoopAgentFixLoopCycleTrait, stdAgentFixLoopFixLoopCompletionFlowTrait, stdAgentFixLoopFixLoopErrorsBrowseTrait, stdAgentFixLoopFixLoopFixCallTrait, stdAgentFixLoopFixLoopStepProgressTrait, stdAgentFixLoopFixLoopValidateCallTrait, stdAgentFixLoopPage, stdAgentLearner, stdAgentLearnerAgentLearnerLearnerTrait, stdAgentLearnerLearnerCompletionFlowTrait, stdAgentLearnerLearnerMemoryLifecycleTrait, stdAgentLearnerLearnerProviderManagerTrait, stdAgentLearnerLearnerRecordsBrowseTrait, stdAgentLearnerPage, stdAgentMemory, stdAgentMemoryAgentMemoryAgentTrait, stdAgentMemoryAgentMemoryBrowseTrait, stdAgentMemoryAgentMemoryCreateTrait, stdAgentMemoryPage, stdAgentPipeline, stdAgentPipelinePage, stdAgentPipelinePipelinePlannerTrait, stdAgentPipelinePlannerClassifierFlowTrait, stdAgentPipelinePlannerCompletionFlowTrait, stdAgentPipelinePlannerMemoryLifecycleTrait, stdAgentPipelinePlannerTaskInputTrait, stdAgentPlanner, stdAgentPlannerAgentPlannerPlannerTrait, stdAgentPlannerPage, stdAgentPlannerPlannerClassifierFlowTrait, stdAgentPlannerPlannerCompletionFlowTrait, stdAgentPlannerPlannerMemoryLifecycleTrait, stdAgentPlannerPlannerTaskInputTrait, stdAgentProvider, stdAgentProviderAgentProviderAgentTrait, stdAgentProviderAgentProviderModalTrait, stdAgentProviderAgentProviderNotificationTrait, stdAgentProviderPage, stdAgentRag, stdAgentRagAgentRagRagTrait, stdAgentRagPage, stdAgentRagRagCompletionFlowTrait, stdAgentRagRagMemoryLifecycleTrait, stdAgentRagRagSearchLifecycleTrait, stdAgentRagRagTabsTrait, stdAgentReviewer, stdAgentReviewerPage, stdAgentReviewerTrait, stdAgentSearch, stdAgentSearchAgentSearchAgentTrait, stdAgentSearchAgentSearchBrowseTrait, stdAgentSearchPage, stdAgentSession, stdAgentSessionAgentSessionAgentTrait, stdAgentSessionAgentSessionBrowseTrait, stdAgentSessionAgentSessionLabelTrait, stdAgentSessionPage, stdAgentStepProgress, stdAgentStepProgressPage, stdAgentStepProgressTrait, stdAgentTokenGauge, stdAgentTokenGaugePage, stdAgentTokenGaugeTrait, stdAgentToolCall, stdAgentToolCallAgentToolCallAgentTrait, stdAgentToolCallAgentToolCallModalTrait, stdAgentToolCallPage, stdAgentToolLoop, stdAgentToolLoopAgentToolLoopLoopTrait, stdAgentToolLoopPage, stdAgentToolLoopToolLoopCompletionFlowTrait, stdAgentToolLoopToolLoopContextMonitorTrait, stdAgentToolLoopToolLoopStepProgressTrait, stdAgentToolLoopToolLoopToolCallFlowTrait, stdAgentTutor, stdAgentTutorPage, stdAgentTutorTrait, stdApiGateway, stdApiGatewayPage, stdApiGatewayRouteBrowseTrait, stdApiGatewayRouteCreateTrait, stdApiGatewayRouteDeleteTrait, stdApiGatewayRouteEditTrait, stdApiGatewayRouteViewTrait, stdArcadeGame, stdArcadeGamePage, stdArcadeGameTrait, stdAsync, stdAsyncPage, stdAsyncTrait, stdAutoregressive, stdAutoregressivePage, stdAutoregressiveTrait, stdBookingSystem, stdBookingSystemPage, stdBookingSystemProviderBrowseTrait, stdBookingSystemProviderCreateTrait, stdBookingSystemProviderDeleteTrait, stdBookingSystemProviderEditTrait, stdBookingSystemProviderViewTrait, stdBrowse, stdBrowsePage, stdBrowseTrait, stdBuilderGame, stdBuilderGamePage, stdBuilderGameTrait, stdCacheAside, stdCacheAsidePage, stdCacheAsideTrait, stdCalendar, stdCalendarPage, stdCalendarTrait, stdCart, stdCartCartItemAddItemTrait, stdCartCartItemCartBrowseTrait, stdCartCartItemPersistorTrait, stdCartCartItemRemoveConfirmTrait, stdCartPage, stdCicdPipeline, stdCicdPipelineBuildBrowseTrait, stdCicdPipelineBuildCreateTrait, stdCicdPipelineBuildDeleteTrait, stdCicdPipelineBuildEditTrait, stdCicdPipelineBuildViewTrait, stdCicdPipelinePage, stdCircuitBreaker, stdCircuitBreakerPage, stdCircuitBreakerTrait, stdClassifierGame, stdClassifierGamePage, stdClassifierGameTrait, stdCms, stdCmsArticleBrowseTrait, stdCmsArticleCreateTrait, stdCmsArticleDeleteTrait, stdCmsArticleEditTrait, stdCmsArticleViewTrait, stdCmsPage, stdCodingAcademy, stdCodingAcademyPage, stdCodingAcademyTrait, stdCollision, stdCollisionPage, stdCollisionTrait, stdCombat, stdCombatLog, stdCombatLogPage, stdCombatLogTrait, stdCombatPage, stdCombatTrait, stdConfirmation, stdConfirmationPage, stdConfirmationTrait, stdCrm, stdCrmContactBrowseTrait, stdCrmContactCreateTrait, stdCrmContactDeleteTrait, stdCrmContactEditTrait, stdCrmContactViewTrait, stdCrmPage, stdDebuggerGame, stdDebuggerGamePage, stdDebuggerGameTrait, stdDetail, stdDetailDetailRecordBrowseTrait, stdDetailDetailRecordCreateTrait, stdDetailDetailRecordPersistorTrait, stdDetailDetailRecordViewTrait, stdDetailPage, stdDevopsDashboard, stdDevopsDashboardPage, stdDevopsDashboardTrait, stdDialogueBox, stdDialogueBoxPage, stdDialogueBoxTrait, stdDisplay, stdDisplayPage, stdDisplayTrait, stdDrawer, stdDrawerPage, stdDrawerTrait, stdEcommerce, stdEcommercePage, stdEcommerceProductBrowseTrait, stdEcommerceProductCreateTrait, stdEcommerceProductDeleteTrait, stdEcommerceProductEditTrait, stdEcommerceProductViewTrait, stdEventHandlerGame, stdEventHandlerGamePage, stdEventHandlerGameTrait, stdFilter, stdFilterPage, stdFilterTrait, stdFinanceTracker, stdFinanceTrackerPage, stdFinanceTrackerTransactionBrowseTrait, stdFinanceTrackerTransactionCreateTrait, stdFinanceTrackerTransactionDeleteTrait, stdFinanceTrackerTransactionEditTrait, stdFinanceTrackerTransactionViewTrait, stdFlipCard, stdFlipCardPage, stdFlipCardTrait, stdFormAdvanced, stdFormAdvancedPage, stdFormAdvancedTrait, stdGallery, stdGalleryPage, stdGalleryTrait, stdGameAudio, stdGameAudioPage, stdGameAudioTrait, stdGameCanvas2d, stdGameCanvas2dPage, stdGameCanvas2dTrait, stdGameCanvas3d, stdGameCanvas3dPage, stdGameCanvas3dTrait, stdGameHud, stdGameHudPage, stdGameHudTrait, stdGameMenu, stdGameMenuPage, stdGameMenuTrait, stdGameOverScreen, stdGameOverScreenPage, stdGameOverScreenTrait, stdGameflow, stdGameflowPage, stdGameflowTrait, stdGeospatial, stdGeospatialLocationBrowseTrait, stdGeospatialLocationConfirmSelectTrait, stdGeospatialLocationSelectTrait, stdGeospatialLocationSelectionFlowTrait, stdGeospatialPage, stdHealthcare, stdHealthcarePage, stdHealthcarePatientBrowseTrait, stdHealthcarePatientCreateTrait, stdHealthcarePatientDeleteTrait, stdHealthcarePatientEditTrait, stdHealthcarePatientViewTrait, stdHelpdesk, stdHelpdeskPage, stdHelpdeskTicketBrowseTrait, stdHelpdeskTicketCreateTrait, stdHelpdeskTicketDeleteTrait, stdHelpdeskTicketEditTrait, stdHelpdeskTicketViewTrait, stdHrPortal, stdHrPortalEmployeeBrowseTrait, stdHrPortalEmployeeCreateTrait, stdHrPortalEmployeeDeleteTrait, stdHrPortalEmployeeEditTrait, stdHrPortalEmployeeViewTrait, stdHrPortalPage, stdInput, stdInputPage, stdInputTrait, stdInventory, stdInventoryInventoryItemAddTrait, stdInventoryInventoryItemBrowseTrait, stdInventoryInventoryItemDropTrait, stdInventoryInventoryItemPersistorTrait, stdInventoryInventoryItemUseTrait, stdInventoryPage, stdInventoryPanel, stdInventoryPanelPage, stdInventoryPanelTrait, stdIotDashboard, stdIotDashboardPage, stdIotDashboardTrait, stdIsometricCanvas, stdIsometricCanvasPage, stdIsometricCanvasTrait, stdList, stdListListItemBrowseTrait, stdListListItemCreateTrait, stdListListItemDeleteTrait, stdListListItemEditTrait, stdListListItemPersistorTrait, stdListPage, stdLms, stdLmsCourseBrowseTrait, stdLmsCourseCreateTrait, stdLmsCourseDeleteTrait, stdLmsCourseEditTrait, stdLmsCourseViewTrait, stdLmsPage, stdLoading, stdLoadingPage, stdLoadingTrait, stdLogicTraining, stdLogicTrainingPage, stdLogicTrainingTrait, stdMessaging, stdMessagingChatMessageBrowseTrait, stdMessagingChatMessageComposeTrait, stdMessagingChatMessagePersistorTrait, stdMessagingChatMessageViewTrait, stdMessagingPage, stdModal, stdModalPage, stdModalTrait, stdMovement, stdMovementPage, stdMovementTrait, stdNegotiatorGame, stdNegotiatorGamePage, stdNegotiatorGameTrait, stdNotification, stdNotificationPage, stdNotificationTrait, stdOverworld, stdOverworldPage, stdOverworldTrait, stdPagination, stdPaginationPage, stdPaginationTrait, stdPhysics2d, stdPhysics2dPage, stdPhysics2dTrait, stdPlatformerApp, stdPlatformerAppPage, stdPlatformerAppPlatLevelPlatformerCanvasTrait, stdPlatformerAppPlatLevelPlatformerFlowTrait, stdPlatformerCanvas, stdPlatformerCanvasPage, stdPlatformerCanvasTrait, stdPlatformerGame, stdPlatformerGamePage, stdPlatformerGamePlatLevelPlatformerCanvasTrait, stdPlatformerGamePlatLevelPlatformerFlowTrait, stdProjectManager, stdProjectManagerPage, stdProjectManagerTaskBrowseTrait, stdProjectManagerTaskCreateTrait, stdProjectManagerTaskDeleteTrait, stdProjectManagerTaskEditTrait, stdProjectManagerTaskViewTrait, stdPuzzleApp, stdPuzzleAppPage, stdPuzzleAppPuzzleLevelPuzzleFlowTrait, stdPuzzleAppPuzzleLevelPuzzleScoreTrait, stdPuzzleGame, stdPuzzleGamePage, stdPuzzleGamePuzzleBoardPuzzleFlowTrait, stdPuzzleGamePuzzleBoardPuzzleScoreTrait, stdQuest, stdQuestPage, stdQuestTrait, stdQuiz, stdQuizPage, stdQuizTrait, stdRateLimiter, stdRateLimiterPage, stdRateLimiterTrait, stdRating, stdRatingPage, stdRatingTrait, stdRealtimeChat, stdRealtimeChatChatMessageBrowseTrait, stdRealtimeChatChatMessageComposeTrait, stdRealtimeChatChatMessageViewTrait, stdRealtimeChatPage, stdRpgGame, stdRpgGameBattleStateBattleFlowTrait, stdRpgGameBattleStateCombatLogTrait, stdRpgGamePage, stdScore, stdScoreBoard, stdScoreBoardPage, stdScoreBoardTrait, stdScorePage, stdScoreTrait, stdSearch, stdSearchPage, stdSearchTrait, stdSelection, stdSelectionPage, stdSelectionTrait, stdSequencerGame, stdSequencerGamePage, stdSequencerGameTrait, stdServiceContentPipeline, stdServiceContentPipelinePage, stdServiceContentPipelineTrait, stdServiceCustomApiTester, stdServiceCustomApiTesterPage, stdServiceCustomApiTesterTrait, stdServiceCustomBearer, stdServiceCustomBearerPage, stdServiceCustomBearerTrait, stdServiceCustomHeader, stdServiceCustomHeaderPage, stdServiceCustomHeaderTrait, stdServiceCustomNoauth, stdServiceCustomNoauthPage, stdServiceCustomNoauthTrait, stdServiceCustomQuery, stdServiceCustomQueryPage, stdServiceCustomQueryTrait, stdServiceDevopsToolkit, stdServiceDevopsToolkitPage, stdServiceDevopsToolkitServiceDevopsToolkitGithubTrait, stdServiceDevopsToolkitServiceDevopsToolkitRedisTrait, stdServiceDevopsToolkitServiceDevopsToolkitStorageTrait, stdServiceEmail, stdServiceEmailPage, stdServiceEmailTrait, stdServiceGithub, stdServiceGithubPage, stdServiceGithubTrait, stdServiceLlm, stdServiceLlmPage, stdServiceLlmTrait, stdServiceMarketplace, stdServiceMarketplacePage, stdServiceMarketplaceProductBrowseTrait, stdServiceMarketplaceProductCreateTrait, stdServiceMarketplaceProductDeleteTrait, stdServiceMarketplaceProductEditTrait, stdServiceMarketplaceProductViewTrait, stdServiceNotificationHub, stdServiceNotificationHubPage, stdServiceNotificationHubTrait, stdServiceOauth, stdServiceOauthPage, stdServiceOauthTrait, stdServicePaymentFlow, stdServicePaymentFlowPage, stdServicePaymentFlowServicePaymentFlowPaymentTrait, stdServicePaymentFlowServicePaymentFlowReceiptTrait, stdServiceRedis, stdServiceRedisPage, stdServiceRedisTrait, stdServiceResearchAssistant, stdServiceResearchAssistantPage, stdServiceResearchAssistantTrait, stdServiceStorage, stdServiceStoragePage, stdServiceStorageTrait, stdServiceStripe, stdServiceStripePage, stdServiceStripeTrait, stdServiceTwilio, stdServiceTwilioPage, stdServiceTwilioTrait, stdServiceYoutube, stdServiceYoutubePage, stdServiceYoutubeTrait, stdSimulationCanvas, stdSimulationCanvasPage, stdSimulationCanvasTrait, stdSimulatorGame, stdSimulatorGamePage, stdSimulatorGameTrait, stdSocialFeed, stdSocialFeedPage, stdSocialFeedPostBrowseTrait, stdSocialFeedPostCreateTrait, stdSocialFeedPostViewTrait, stdSort, stdSortPage, stdSortTrait, stdSprite, stdSpritePage, stdSpriteTrait, stdStemLab, stdStemLabPage, stdStemLabTrait, stdStrategyGame, stdStrategyGameArmyBattleBattleFlowTrait, stdStrategyGameArmyBattleCombatLogTrait, stdStrategyGamePage, stdTabs, stdTabsPage, stdTabsTrait, stdTextEffects, stdTextEffectsPage, stdTextEffectsTrait, stdTheme, stdThemePage, stdThemeTrait, stdTimer, stdTimerPage, stdTimerTrait, stdTradingDashboard, stdTradingDashboardPage, stdTradingDashboardTrait, stdTurnBasedBattle, stdTurnBasedBattleBattleUnitBattleFlowTrait, stdTurnBasedBattleBattleUnitCombatLogTrait, stdTurnBasedBattlePage, stdUndo, stdUndoPage, stdUndoTrait, stdUpload, stdUploadPage, stdUploadTrait, stdValidateOnSave, stdValidateOnSavePage, stdValidateOnSaveTrait, stdWizard, stdWizardPage, stdWizardTrait } from './behaviors/functions/index.js';
18
18
  export { compose, connect, ensureIdField, extractTrait, makeEntity, makeOrbital, makePage, makeSchema, mergeOrbitals, pipe, plural, wire } from '@almadar/core/builders';
19
19
  import { TraitReference } from '@almadar/core/types';
20
20
  export { Event, State, StateMachine, Trait, TraitCategory, TraitDataEntity, TraitEntityField, TraitTick, Transition } from '@almadar/core/types';