@almadar/std 3.3.5 → 3.4.2

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.
@@ -2297,6 +2297,237 @@ declare function stdEventHandlerGameTrait(params: StdEventHandlerGameParams): Tr
2297
2297
  declare function stdEventHandlerGamePage(params: StdEventHandlerGameParams): Page;
2298
2298
  declare function stdEventHandlerGame(params: StdEventHandlerGameParams): OrbitalDefinition;
2299
2299
 
2300
+ /**
2301
+ * std-classifier
2302
+ *
2303
+ * ML classification molecule. Composes std-forward with auto-built
2304
+ * input/output contracts for classification tasks.
2305
+ *
2306
+ * Builds input contract from inputFields, output contract from classes.
2307
+ * After forward pass, runs argmax to pick the predicted class.
2308
+ * Emits CLASSIFIED with { class: string, confidence: number }.
2309
+ *
2310
+ * Single orbital, one trait, one page.
2311
+ *
2312
+ * @level molecule
2313
+ * @family ml
2314
+ * @packageDocumentation
2315
+ */
2316
+
2317
+ interface StdClassifierParams {
2318
+ entityName: string;
2319
+ fields: EntityField[];
2320
+ architecture: unknown;
2321
+ /** Entity fields that map to input features */
2322
+ inputFields: string[];
2323
+ /** Class labels, e.g. ["cat", "dog", "bird"] */
2324
+ classes: string[];
2325
+ /** Numeric range for input normalization. Default: [0, 1] */
2326
+ inputRange?: [number, number];
2327
+ /** Event that triggers classification. Default: "CLASSIFY" */
2328
+ classifyEvent?: string;
2329
+ /** Event emitted with result. Default: "CLASSIFIED" */
2330
+ resultEvent?: string;
2331
+ pageName?: string;
2332
+ pagePath?: string;
2333
+ isInitial?: boolean;
2334
+ }
2335
+ declare function stdClassifierEntity(params: StdClassifierParams): Entity;
2336
+ declare function stdClassifierTrait(params: StdClassifierParams): Trait;
2337
+ declare function stdClassifierPage(params: StdClassifierParams): Page;
2338
+ declare function stdClassifier(params: StdClassifierParams): OrbitalDefinition;
2339
+
2340
+ /**
2341
+ * std-trainer
2342
+ *
2343
+ * ML training pipeline molecule. Composes three traits on one page
2344
+ * sharing the event bus:
2345
+ * - Train loop trait: runs training epochs
2346
+ * - Evaluate trait: computes metrics on held-out data
2347
+ * - Checkpoint trait: persists model weights
2348
+ *
2349
+ * Event flow: START_TRAINING -> [train-loop] -> TRAINING_DONE
2350
+ * -> [evaluate] -> EVAL_DONE -> [checkpoint] -> MODEL_SAVED
2351
+ *
2352
+ * @level molecule
2353
+ * @family ml
2354
+ * @packageDocumentation
2355
+ */
2356
+
2357
+ interface StdTrainerParams {
2358
+ entityName: string;
2359
+ fields: EntityField[];
2360
+ architecture: unknown;
2361
+ trainingConfig: Record<string, unknown>;
2362
+ /** Metric names to track, e.g. ["loss", "accuracy"] */
2363
+ metrics: string[];
2364
+ /** Run evaluation after training completes. Default: true */
2365
+ evaluateAfterTraining?: boolean;
2366
+ /** Auto-checkpoint after evaluation. Default: true */
2367
+ autoCheckpoint?: boolean;
2368
+ pageName?: string;
2369
+ pagePath?: string;
2370
+ isInitial?: boolean;
2371
+ }
2372
+ declare function stdTrainerEntity(params: StdTrainerParams): Entity;
2373
+ declare function stdTrainerTrait(params: StdTrainerParams): Trait;
2374
+ declare function stdTrainerPage(params: StdTrainerParams): Page;
2375
+ declare function stdTrainer(params: StdTrainerParams): OrbitalDefinition;
2376
+
2377
+ /**
2378
+ * std-rl-agent
2379
+ *
2380
+ * Reinforcement learning agent molecule. Composes three traits
2381
+ * on one page sharing the event bus:
2382
+ * - Forward (policy): observation -> action selection
2383
+ * - Data collector (replay buffer): accumulates transitions
2384
+ * - Train loop: trains policy from replay buffer
2385
+ *
2386
+ * Event flow: OBSERVATION -> forward -> ACTION emitted,
2387
+ * data-collector accumulates, BUFFER_READY -> train.
2388
+ *
2389
+ * @level molecule
2390
+ * @family ml
2391
+ * @packageDocumentation
2392
+ */
2393
+
2394
+ interface StdRlAgentParams {
2395
+ entityName: string;
2396
+ architecture: unknown;
2397
+ /** Entity fields that represent observations */
2398
+ observationFields: string[];
2399
+ /** Number of discrete actions the agent can take */
2400
+ actionCount: number;
2401
+ /** Max transitions in replay buffer. Default: 1000 */
2402
+ bufferSize?: number;
2403
+ /** Training hyperparameters */
2404
+ trainingConfig?: Record<string, unknown>;
2405
+ /** Reward discount factor. Default: 0.99 */
2406
+ discountFactor?: number;
2407
+ pageName?: string;
2408
+ pagePath?: string;
2409
+ isInitial?: boolean;
2410
+ }
2411
+ declare function stdRlAgentEntity(params: StdRlAgentParams): Entity;
2412
+ declare function stdRlAgentTrait(params: StdRlAgentParams): Trait;
2413
+ declare function stdRlAgentPage(params: StdRlAgentParams): Page;
2414
+ declare function stdRlAgent(params: StdRlAgentParams): OrbitalDefinition;
2415
+
2416
+ /**
2417
+ * std-graph-classifier
2418
+ *
2419
+ * Graph neural network classification molecule. Composes two traits
2420
+ * on one page sharing the event bus:
2421
+ * - Graph builder: constructs adjacency + feature matrices from entity data
2422
+ * - Forward: runs GNN classification on the built graph
2423
+ *
2424
+ * Event flow: CLASSIFY -> BUILD_GRAPH -> GRAPH_READY -> forward -> CLASSIFIED
2425
+ *
2426
+ * @level molecule
2427
+ * @family ml
2428
+ * @packageDocumentation
2429
+ */
2430
+
2431
+ interface StdGraphClassifierParams {
2432
+ entityName: string;
2433
+ /** Entity representing graph nodes */
2434
+ nodeEntity: string;
2435
+ /** Field on node entity containing edge references (adjacency) */
2436
+ edgeField: string;
2437
+ /** Node feature field names */
2438
+ nodeFeatures: string[];
2439
+ /** GNN architecture (e.g. GCN, GAT layers) */
2440
+ architecture: unknown;
2441
+ /** Classification labels */
2442
+ classes: string[];
2443
+ pageName?: string;
2444
+ pagePath?: string;
2445
+ isInitial?: boolean;
2446
+ }
2447
+ declare function stdGraphClassifierEntity(params: StdGraphClassifierParams): Entity;
2448
+ declare function stdGraphClassifierTrait(params: StdGraphClassifierParams): Trait;
2449
+ declare function stdGraphClassifierPage(params: StdGraphClassifierParams): Page;
2450
+ declare function stdGraphClassifier(params: StdGraphClassifierParams): OrbitalDefinition;
2451
+
2452
+ /**
2453
+ * std-text-classifier
2454
+ *
2455
+ * Text classification molecule. Composes two traits on one page
2456
+ * sharing the event bus:
2457
+ * - Tokenizer: converts raw text into token IDs
2458
+ * - Forward: runs classification on token sequence
2459
+ *
2460
+ * Event flow: CLASSIFY -> TOKENIZE -> TOKENS_READY -> forward -> CLASSIFIED
2461
+ *
2462
+ * @level molecule
2463
+ * @family ml
2464
+ * @packageDocumentation
2465
+ */
2466
+
2467
+ interface StdTextClassifierParams {
2468
+ entityName: string;
2469
+ /** Entity field containing the source text to classify */
2470
+ sourceField: string;
2471
+ /** Classification model architecture */
2472
+ architecture: unknown;
2473
+ /** Class labels, e.g. ["positive", "negative", "neutral"] */
2474
+ classes: string[];
2475
+ /** Tokenization method. Default: "whitespace" */
2476
+ tokenizerMethod?: string;
2477
+ /** Max sequence length (truncation/padding). Default: 512 */
2478
+ maxLength?: number;
2479
+ pageName?: string;
2480
+ pagePath?: string;
2481
+ isInitial?: boolean;
2482
+ }
2483
+ declare function stdTextClassifierEntity(params: StdTextClassifierParams): Entity;
2484
+ declare function stdTextClassifierTrait(params: StdTextClassifierParams): Trait;
2485
+ declare function stdTextClassifierPage(params: StdTextClassifierParams): Page;
2486
+ declare function stdTextClassifier(params: StdTextClassifierParams): OrbitalDefinition;
2487
+
2488
+ /**
2489
+ * std-autoregressive
2490
+ *
2491
+ * Autoregressive text generation molecule (GPT-style).
2492
+ * Forward pass in a self-transition loop: generates one token at a time
2493
+ * until EOS token or max length is reached.
2494
+ *
2495
+ * State machine:
2496
+ * idle -> generating (on generateEvent, forward)
2497
+ * -> generating (self-loop on tokenEvent, append + forward)
2498
+ * -> idle (on tokenEvent with EOS guard, emit doneEvent)
2499
+ *
2500
+ * Single trait, single page.
2501
+ *
2502
+ * @level molecule
2503
+ * @family ml
2504
+ * @packageDocumentation
2505
+ */
2506
+
2507
+ interface StdAutoregressiveParams {
2508
+ entityName: string;
2509
+ architecture: unknown;
2510
+ /** Total vocabulary size */
2511
+ vocabSize: number;
2512
+ /** Maximum generation length */
2513
+ maxLength: number;
2514
+ /** Token ID that signals end of sequence */
2515
+ eosToken: number;
2516
+ /** Event that triggers generation. Default: "GENERATE" */
2517
+ generateEvent?: string;
2518
+ /** Event emitted per generated token. Default: "TOKEN_READY" */
2519
+ tokenEvent?: string;
2520
+ /** Event emitted when generation completes. Default: "GENERATION_COMPLETE" */
2521
+ doneEvent?: string;
2522
+ pageName?: string;
2523
+ pagePath?: string;
2524
+ isInitial?: boolean;
2525
+ }
2526
+ declare function stdAutoregressiveEntity(params: StdAutoregressiveParams): Entity;
2527
+ declare function stdAutoregressiveTrait(params: StdAutoregressiveParams): Trait;
2528
+ declare function stdAutoregressivePage(params: StdAutoregressiveParams): Page;
2529
+ declare function stdAutoregressive(params: StdAutoregressiveParams): OrbitalDefinition;
2530
+
2300
2531
  /**
2301
2532
  * std-service-payment-flow
2302
2533
  *
@@ -3524,4 +3755,4 @@ declare function stdServiceCustomNoauthTrait(params: StdServiceCustomNoauthParam
3524
3755
  declare function stdServiceCustomNoauthPage(params: StdServiceCustomNoauthParams): Page;
3525
3756
  declare function stdServiceCustomNoauth(params: StdServiceCustomNoauthParams): OrbitalDefinition;
3526
3757
 
3527
- export { type StdApiGatewayParams, type StdArcadeGameParams, type StdAsyncParams, type StdBookingSystemParams, type StdBrowseParams, type StdBuilderGameParams, type StdCacheAsideParams, type StdCalendarParams, type StdCartParams, type StdCicdPipelineParams, type StdCircuitBreakerParams, type StdClassifierGameParams, type StdCmsParams, type StdCodingAcademyParams, type StdCollisionParams, type StdCombatLogParams, type StdCombatParams, type StdConfirmationParams, type StdCrmParams, type StdDebuggerGameParams, type StdDetailParams, type StdDevopsDashboardParams, type StdDialogueBoxParams, type StdDisplayParams, type StdDrawerParams, type StdEcommerceParams, type StdEventHandlerGameParams, type StdFilterParams, type StdFinanceTrackerParams, type StdFlipCardParams, type StdFormAdvancedParams, type StdGalleryParams, type StdGameAudioParams, type StdGameCanvas2dParams, type StdGameCanvas3dParams, type StdGameHudParams, type StdGameMenuParams, type StdGameOverScreenParams, type StdGameflowParams, type StdGeospatialParams, type StdHealthcareParams, type StdHelpdeskParams, type StdHrPortalParams, type StdInputParams, type StdInventoryPanelParams, type StdInventoryParams, type StdIotDashboardParams, type StdIsometricCanvasParams, type StdListParams, type StdLmsParams, type StdLoadingParams, type StdLogicTrainingParams, type StdMessagingParams, type StdModalParams, type StdMovementParams, type StdNegotiatorGameParams, type StdNotificationParams, type StdOverworldParams, type StdPaginationParams, type StdPhysics2dParams, type StdPlatformerAppParams, type StdPlatformerCanvasParams, type StdPlatformerGameParams, type StdProjectManagerParams, type StdPuzzleAppParams, type StdPuzzleGameParams, type StdQuestParams, type StdQuizParams, type StdRateLimiterParams, type StdRatingParams, type StdRealtimeChatParams, type StdRpgGameParams, type StdScoreBoardParams, type StdScoreParams, type StdSearchParams, type StdSelectionParams, type StdSequencerGameParams, type StdServiceContentPipelineParams, type StdServiceCustomApiTesterParams, type StdServiceCustomBearerParams, type StdServiceCustomHeaderParams, type StdServiceCustomNoauthParams, type StdServiceCustomQueryParams, type StdServiceDevopsToolkitParams, type StdServiceEmailParams, type StdServiceGithubParams, type StdServiceLlmParams, type StdServiceMarketplaceParams, type StdServiceNotificationHubParams, type StdServiceOauthParams, type StdServicePaymentFlowParams, type StdServiceRedisParams, type StdServiceResearchAssistantParams, type StdServiceStorageParams, type StdServiceStripeParams, type StdServiceTwilioParams, type StdServiceYoutubeParams, type StdSimulationCanvasParams, type StdSimulatorGameParams, type StdSocialFeedParams, type StdSortParams, type StdSpriteParams, type StdStemLabParams, type StdStrategyGameParams, type StdTabsParams, type StdTextEffectsParams, type StdThemeParams, type StdTimerParams, type StdTradingDashboardParams, type StdTurnBasedBattleParams, type StdUndoParams, type StdUploadParams, type StdValidateOnSaveParams, type StdWizardParams, stdApiGateway, stdArcadeGame, stdAsync, stdAsyncEntity, stdAsyncPage, stdAsyncTrait, stdBookingSystem, stdBrowse, stdBrowseEntity, stdBrowsePage, stdBrowseTrait, stdBuilderGame, stdBuilderGameEntity, stdBuilderGamePage, stdBuilderGameTrait, stdCacheAside, stdCacheAsideEntity, stdCacheAsidePage, stdCacheAsideTrait, stdCalendar, stdCalendarEntity, stdCalendarPage, stdCalendarTrait, stdCart, stdCartEntity, stdCartPage, stdCartTrait, stdCicdPipeline, stdCircuitBreaker, stdCircuitBreakerEntity, stdCircuitBreakerPage, stdCircuitBreakerTrait, stdClassifierGame, stdClassifierGameEntity, stdClassifierGamePage, stdClassifierGameTrait, stdCms, stdCodingAcademy, stdCollision, stdCollisionEntity, stdCollisionPage, stdCollisionTrait, stdCombat, stdCombatEntity, stdCombatLog, stdCombatLogEntity, stdCombatLogPage, stdCombatLogTrait, stdCombatPage, stdCombatTrait, stdConfirmation, stdConfirmationEntity, stdConfirmationPage, stdConfirmationTrait, stdCrm, stdDebuggerGame, stdDebuggerGameEntity, stdDebuggerGamePage, stdDebuggerGameTrait, stdDetail, stdDetailEntity, stdDetailPage, stdDetailTrait, stdDevopsDashboard, stdDialogueBox, stdDialogueBoxEntity, stdDialogueBoxPage, stdDialogueBoxTrait, stdDisplay, stdDisplayEntity, stdDisplayPage, stdDisplayTrait, stdDrawer, stdDrawerEntity, stdDrawerPage, stdDrawerTrait, stdEcommerce, stdEventHandlerGame, stdEventHandlerGameEntity, stdEventHandlerGamePage, stdEventHandlerGameTrait, stdFilter, stdFilterEntity, stdFilterPage, stdFilterTrait, stdFinanceTracker, stdFlipCard, stdFlipCardEntity, stdFlipCardPage, stdFlipCardTrait, stdFormAdvanced, stdFormAdvancedEntity, stdFormAdvancedPage, stdFormAdvancedTrait, stdGallery, stdGalleryEntity, stdGalleryPage, stdGalleryTrait, stdGameAudio, stdGameAudioEntity, stdGameAudioPage, stdGameAudioTrait, stdGameCanvas2d, stdGameCanvas2dEntity, stdGameCanvas2dPage, stdGameCanvas2dTrait, stdGameCanvas3d, stdGameCanvas3dEntity, stdGameCanvas3dPage, stdGameCanvas3dTrait, stdGameHud, stdGameHudEntity, stdGameHudPage, stdGameHudTrait, stdGameMenu, stdGameMenuEntity, stdGameMenuPage, stdGameMenuTrait, stdGameOverScreen, stdGameOverScreenEntity, stdGameOverScreenPage, stdGameOverScreenTrait, stdGameflow, stdGameflowEntity, stdGameflowPage, stdGameflowTrait, stdGeospatial, stdGeospatialEntity, stdGeospatialPage, stdGeospatialTrait, stdHealthcare, stdHelpdesk, stdHrPortal, stdInput, stdInputEntity, stdInputPage, stdInputTrait, stdInventory, stdInventoryEntity, stdInventoryPage, stdInventoryPanel, stdInventoryPanelEntity, stdInventoryPanelPage, stdInventoryPanelTrait, stdInventoryTrait, stdIotDashboard, stdIsometricCanvas, stdIsometricCanvasEntity, stdIsometricCanvasPage, stdIsometricCanvasTrait, stdList, stdListEntity, stdListPage, stdListTrait, stdLms, stdLoading, stdLoadingEntity, stdLoadingPage, stdLoadingTrait, stdLogicTraining, stdMessaging, stdMessagingEntity, stdMessagingPage, stdMessagingTrait, stdModal, stdModalEntity, stdModalPage, stdModalTrait, stdMovement, stdMovementEntity, stdMovementPage, stdMovementTrait, stdNegotiatorGame, stdNegotiatorGameEntity, stdNegotiatorGamePage, stdNegotiatorGameTrait, stdNotification, stdNotificationEntity, stdNotificationPage, stdNotificationTrait, stdOverworld, stdOverworldEntity, stdOverworldPage, stdOverworldTrait, stdPagination, stdPaginationEntity, stdPaginationPage, stdPaginationTrait, stdPhysics2d, stdPhysics2dEntity, stdPhysics2dPage, stdPhysics2dTrait, stdPlatformerApp, stdPlatformerCanvas, stdPlatformerCanvasEntity, stdPlatformerCanvasPage, stdPlatformerCanvasTrait, stdPlatformerGame, stdPlatformerGameEntity, stdPlatformerGamePage, stdPlatformerGameTrait, stdProjectManager, stdPuzzleApp, stdPuzzleGame, stdPuzzleGameEntity, stdPuzzleGamePage, stdPuzzleGameTrait, stdQuest, stdQuestEntity, stdQuestPage, stdQuestTrait, stdQuiz, stdQuizEntity, stdQuizPage, stdQuizTrait, stdRateLimiter, stdRateLimiterEntity, stdRateLimiterPage, stdRateLimiterTrait, stdRating, stdRatingEntity, stdRatingPage, stdRatingTrait, stdRealtimeChat, stdRpgGame, stdScore, stdScoreBoard, stdScoreBoardEntity, stdScoreBoardPage, stdScoreBoardTrait, stdScoreEntity, stdScorePage, stdScoreTrait, stdSearch, stdSearchEntity, stdSearchPage, stdSearchTrait, stdSelection, stdSelectionEntity, stdSelectionPage, stdSelectionTrait, stdSequencerGame, stdSequencerGameEntity, stdSequencerGamePage, stdSequencerGameTrait, stdServiceContentPipeline, stdServiceContentPipelineEntity, stdServiceContentPipelinePage, stdServiceContentPipelineTrait, stdServiceCustomApiTester, stdServiceCustomApiTesterEntity, stdServiceCustomApiTesterPage, stdServiceCustomApiTesterTrait, stdServiceCustomBearer, stdServiceCustomBearerEntity, stdServiceCustomBearerPage, stdServiceCustomBearerTrait, stdServiceCustomHeader, stdServiceCustomHeaderEntity, stdServiceCustomHeaderPage, stdServiceCustomHeaderTrait, stdServiceCustomNoauth, stdServiceCustomNoauthEntity, stdServiceCustomNoauthPage, stdServiceCustomNoauthTrait, stdServiceCustomQuery, stdServiceCustomQueryEntity, stdServiceCustomQueryPage, stdServiceCustomQueryTrait, stdServiceDevopsToolkit, stdServiceDevopsToolkitEntity, stdServiceDevopsToolkitPage, stdServiceEmail, stdServiceEmailEntity, stdServiceEmailPage, stdServiceEmailTrait, stdServiceGithub, stdServiceGithubEntity, stdServiceGithubPage, stdServiceGithubTrait, stdServiceLlm, stdServiceLlmEntity, stdServiceLlmPage, stdServiceLlmTrait, stdServiceMarketplace, stdServiceNotificationHub, stdServiceNotificationHubEntity, stdServiceNotificationHubPage, stdServiceNotificationHubTrait, stdServiceOauth, stdServiceOauthEntity, stdServiceOauthPage, stdServiceOauthTrait, stdServicePaymentFlow, stdServicePaymentFlowEntity, stdServicePaymentFlowPage, stdServiceRedis, stdServiceRedisEntity, stdServiceRedisPage, stdServiceRedisTrait, stdServiceResearchAssistant, stdServiceStorage, stdServiceStorageEntity, stdServiceStoragePage, stdServiceStorageTrait, stdServiceStripe, stdServiceStripeEntity, stdServiceStripePage, stdServiceStripeTrait, stdServiceTwilio, stdServiceTwilioEntity, stdServiceTwilioPage, stdServiceTwilioTrait, stdServiceYoutube, stdServiceYoutubeEntity, stdServiceYoutubePage, stdServiceYoutubeTrait, stdSimulationCanvas, stdSimulationCanvasEntity, stdSimulationCanvasPage, stdSimulationCanvasTrait, stdSimulatorGame, stdSimulatorGameEntity, stdSimulatorGamePage, stdSimulatorGameTrait, stdSocialFeed, stdSort, stdSortEntity, stdSortPage, stdSortTrait, stdSprite, stdSpriteEntity, stdSpritePage, stdSpriteTrait, stdStemLab, stdStrategyGame, stdTabs, stdTabsEntity, stdTabsPage, stdTabsTrait, stdTextEffects, stdTextEffectsEntity, stdTextEffectsPage, stdTextEffectsTrait, stdTheme, stdThemeEntity, stdThemePage, stdThemeTrait, stdTimer, stdTimerEntity, stdTimerPage, stdTimerTrait, stdTradingDashboard, stdTurnBasedBattle, stdTurnBasedBattleEntity, stdTurnBasedBattlePage, stdTurnBasedBattleTrait, stdUndo, stdUndoEntity, stdUndoPage, stdUndoTrait, stdUpload, stdUploadEntity, stdUploadPage, stdUploadTrait, stdValidateOnSave, stdWizard, stdWizardEntity, stdWizardPage, stdWizardTrait };
3758
+ export { type StdApiGatewayParams, type StdArcadeGameParams, type StdAsyncParams, type StdAutoregressiveParams, type StdBookingSystemParams, type StdBrowseParams, type StdBuilderGameParams, type StdCacheAsideParams, type StdCalendarParams, type StdCartParams, type StdCicdPipelineParams, type StdCircuitBreakerParams, type StdClassifierGameParams, type StdClassifierParams, type StdCmsParams, type StdCodingAcademyParams, type StdCollisionParams, type StdCombatLogParams, type StdCombatParams, type StdConfirmationParams, type StdCrmParams, type StdDebuggerGameParams, type StdDetailParams, type StdDevopsDashboardParams, type StdDialogueBoxParams, type StdDisplayParams, type StdDrawerParams, type StdEcommerceParams, type StdEventHandlerGameParams, type StdFilterParams, type StdFinanceTrackerParams, type StdFlipCardParams, type StdFormAdvancedParams, type StdGalleryParams, type StdGameAudioParams, type StdGameCanvas2dParams, type StdGameCanvas3dParams, type StdGameHudParams, type StdGameMenuParams, type StdGameOverScreenParams, type StdGameflowParams, type StdGeospatialParams, type StdGraphClassifierParams, type StdHealthcareParams, type StdHelpdeskParams, type StdHrPortalParams, type StdInputParams, type StdInventoryPanelParams, type StdInventoryParams, type StdIotDashboardParams, type StdIsometricCanvasParams, type StdListParams, type StdLmsParams, type StdLoadingParams, type StdLogicTrainingParams, type StdMessagingParams, type StdModalParams, type StdMovementParams, type StdNegotiatorGameParams, type StdNotificationParams, type StdOverworldParams, type StdPaginationParams, type StdPhysics2dParams, type StdPlatformerAppParams, type StdPlatformerCanvasParams, type StdPlatformerGameParams, type StdProjectManagerParams, type StdPuzzleAppParams, type StdPuzzleGameParams, type StdQuestParams, type StdQuizParams, type StdRateLimiterParams, type StdRatingParams, type StdRealtimeChatParams, type StdRlAgentParams, type StdRpgGameParams, type StdScoreBoardParams, type StdScoreParams, type StdSearchParams, type StdSelectionParams, type StdSequencerGameParams, type StdServiceContentPipelineParams, type StdServiceCustomApiTesterParams, type StdServiceCustomBearerParams, type StdServiceCustomHeaderParams, type StdServiceCustomNoauthParams, type StdServiceCustomQueryParams, type StdServiceDevopsToolkitParams, type StdServiceEmailParams, type StdServiceGithubParams, type StdServiceLlmParams, type StdServiceMarketplaceParams, type StdServiceNotificationHubParams, type StdServiceOauthParams, type StdServicePaymentFlowParams, type StdServiceRedisParams, type StdServiceResearchAssistantParams, type StdServiceStorageParams, type StdServiceStripeParams, type StdServiceTwilioParams, type StdServiceYoutubeParams, type StdSimulationCanvasParams, type StdSimulatorGameParams, type StdSocialFeedParams, type StdSortParams, type StdSpriteParams, type StdStemLabParams, type StdStrategyGameParams, type StdTabsParams, type StdTextClassifierParams, type StdTextEffectsParams, type StdThemeParams, type StdTimerParams, type StdTradingDashboardParams, type StdTrainerParams, type StdTurnBasedBattleParams, type StdUndoParams, type StdUploadParams, type StdValidateOnSaveParams, type StdWizardParams, stdApiGateway, stdArcadeGame, stdAsync, stdAsyncEntity, stdAsyncPage, stdAsyncTrait, stdAutoregressive, stdAutoregressiveEntity, stdAutoregressivePage, stdAutoregressiveTrait, stdBookingSystem, stdBrowse, stdBrowseEntity, stdBrowsePage, stdBrowseTrait, stdBuilderGame, stdBuilderGameEntity, stdBuilderGamePage, stdBuilderGameTrait, stdCacheAside, stdCacheAsideEntity, stdCacheAsidePage, stdCacheAsideTrait, stdCalendar, stdCalendarEntity, stdCalendarPage, stdCalendarTrait, stdCart, stdCartEntity, stdCartPage, stdCartTrait, stdCicdPipeline, stdCircuitBreaker, stdCircuitBreakerEntity, stdCircuitBreakerPage, stdCircuitBreakerTrait, stdClassifier, stdClassifierEntity, stdClassifierGame, stdClassifierGameEntity, stdClassifierGamePage, stdClassifierGameTrait, stdClassifierPage, stdClassifierTrait, stdCms, stdCodingAcademy, stdCollision, stdCollisionEntity, stdCollisionPage, stdCollisionTrait, stdCombat, stdCombatEntity, stdCombatLog, stdCombatLogEntity, stdCombatLogPage, stdCombatLogTrait, stdCombatPage, stdCombatTrait, stdConfirmation, stdConfirmationEntity, stdConfirmationPage, stdConfirmationTrait, stdCrm, stdDebuggerGame, stdDebuggerGameEntity, stdDebuggerGamePage, stdDebuggerGameTrait, stdDetail, stdDetailEntity, stdDetailPage, stdDetailTrait, stdDevopsDashboard, stdDialogueBox, stdDialogueBoxEntity, stdDialogueBoxPage, stdDialogueBoxTrait, stdDisplay, stdDisplayEntity, stdDisplayPage, stdDisplayTrait, stdDrawer, stdDrawerEntity, stdDrawerPage, stdDrawerTrait, stdEcommerce, stdEventHandlerGame, stdEventHandlerGameEntity, stdEventHandlerGamePage, stdEventHandlerGameTrait, stdFilter, stdFilterEntity, stdFilterPage, stdFilterTrait, stdFinanceTracker, stdFlipCard, stdFlipCardEntity, stdFlipCardPage, stdFlipCardTrait, stdFormAdvanced, stdFormAdvancedEntity, stdFormAdvancedPage, stdFormAdvancedTrait, stdGallery, stdGalleryEntity, stdGalleryPage, stdGalleryTrait, stdGameAudio, stdGameAudioEntity, stdGameAudioPage, stdGameAudioTrait, stdGameCanvas2d, stdGameCanvas2dEntity, stdGameCanvas2dPage, stdGameCanvas2dTrait, stdGameCanvas3d, stdGameCanvas3dEntity, stdGameCanvas3dPage, stdGameCanvas3dTrait, stdGameHud, stdGameHudEntity, stdGameHudPage, stdGameHudTrait, stdGameMenu, stdGameMenuEntity, stdGameMenuPage, stdGameMenuTrait, stdGameOverScreen, stdGameOverScreenEntity, stdGameOverScreenPage, stdGameOverScreenTrait, stdGameflow, stdGameflowEntity, stdGameflowPage, stdGameflowTrait, stdGeospatial, stdGeospatialEntity, stdGeospatialPage, stdGeospatialTrait, stdGraphClassifier, stdGraphClassifierEntity, stdGraphClassifierPage, stdGraphClassifierTrait, stdHealthcare, stdHelpdesk, stdHrPortal, stdInput, stdInputEntity, stdInputPage, stdInputTrait, stdInventory, stdInventoryEntity, stdInventoryPage, stdInventoryPanel, stdInventoryPanelEntity, stdInventoryPanelPage, stdInventoryPanelTrait, stdInventoryTrait, stdIotDashboard, stdIsometricCanvas, stdIsometricCanvasEntity, stdIsometricCanvasPage, stdIsometricCanvasTrait, stdList, stdListEntity, stdListPage, stdListTrait, stdLms, stdLoading, stdLoadingEntity, stdLoadingPage, stdLoadingTrait, stdLogicTraining, stdMessaging, stdMessagingEntity, stdMessagingPage, stdMessagingTrait, stdModal, stdModalEntity, stdModalPage, stdModalTrait, stdMovement, stdMovementEntity, stdMovementPage, stdMovementTrait, stdNegotiatorGame, stdNegotiatorGameEntity, stdNegotiatorGamePage, stdNegotiatorGameTrait, stdNotification, stdNotificationEntity, stdNotificationPage, stdNotificationTrait, stdOverworld, stdOverworldEntity, stdOverworldPage, stdOverworldTrait, stdPagination, stdPaginationEntity, stdPaginationPage, stdPaginationTrait, stdPhysics2d, stdPhysics2dEntity, stdPhysics2dPage, stdPhysics2dTrait, stdPlatformerApp, stdPlatformerCanvas, stdPlatformerCanvasEntity, stdPlatformerCanvasPage, stdPlatformerCanvasTrait, stdPlatformerGame, stdPlatformerGameEntity, stdPlatformerGamePage, stdPlatformerGameTrait, stdProjectManager, stdPuzzleApp, stdPuzzleGame, stdPuzzleGameEntity, stdPuzzleGamePage, stdPuzzleGameTrait, stdQuest, stdQuestEntity, stdQuestPage, stdQuestTrait, stdQuiz, stdQuizEntity, stdQuizPage, stdQuizTrait, stdRateLimiter, stdRateLimiterEntity, stdRateLimiterPage, stdRateLimiterTrait, stdRating, stdRatingEntity, stdRatingPage, stdRatingTrait, stdRealtimeChat, stdRlAgent, stdRlAgentEntity, stdRlAgentPage, stdRlAgentTrait, stdRpgGame, stdScore, stdScoreBoard, stdScoreBoardEntity, stdScoreBoardPage, stdScoreBoardTrait, stdScoreEntity, stdScorePage, stdScoreTrait, stdSearch, stdSearchEntity, stdSearchPage, stdSearchTrait, stdSelection, stdSelectionEntity, stdSelectionPage, stdSelectionTrait, stdSequencerGame, stdSequencerGameEntity, stdSequencerGamePage, stdSequencerGameTrait, stdServiceContentPipeline, stdServiceContentPipelineEntity, stdServiceContentPipelinePage, stdServiceContentPipelineTrait, stdServiceCustomApiTester, stdServiceCustomApiTesterEntity, stdServiceCustomApiTesterPage, stdServiceCustomApiTesterTrait, stdServiceCustomBearer, stdServiceCustomBearerEntity, stdServiceCustomBearerPage, stdServiceCustomBearerTrait, stdServiceCustomHeader, stdServiceCustomHeaderEntity, stdServiceCustomHeaderPage, stdServiceCustomHeaderTrait, stdServiceCustomNoauth, stdServiceCustomNoauthEntity, stdServiceCustomNoauthPage, stdServiceCustomNoauthTrait, stdServiceCustomQuery, stdServiceCustomQueryEntity, stdServiceCustomQueryPage, stdServiceCustomQueryTrait, stdServiceDevopsToolkit, stdServiceDevopsToolkitEntity, stdServiceDevopsToolkitPage, stdServiceEmail, stdServiceEmailEntity, stdServiceEmailPage, stdServiceEmailTrait, stdServiceGithub, stdServiceGithubEntity, stdServiceGithubPage, stdServiceGithubTrait, stdServiceLlm, stdServiceLlmEntity, stdServiceLlmPage, stdServiceLlmTrait, stdServiceMarketplace, stdServiceNotificationHub, stdServiceNotificationHubEntity, stdServiceNotificationHubPage, stdServiceNotificationHubTrait, stdServiceOauth, stdServiceOauthEntity, stdServiceOauthPage, stdServiceOauthTrait, stdServicePaymentFlow, stdServicePaymentFlowEntity, stdServicePaymentFlowPage, stdServiceRedis, stdServiceRedisEntity, stdServiceRedisPage, stdServiceRedisTrait, stdServiceResearchAssistant, stdServiceStorage, stdServiceStorageEntity, stdServiceStoragePage, stdServiceStorageTrait, stdServiceStripe, stdServiceStripeEntity, stdServiceStripePage, stdServiceStripeTrait, stdServiceTwilio, stdServiceTwilioEntity, stdServiceTwilioPage, stdServiceTwilioTrait, stdServiceYoutube, stdServiceYoutubeEntity, stdServiceYoutubePage, stdServiceYoutubeTrait, stdSimulationCanvas, stdSimulationCanvasEntity, stdSimulationCanvasPage, stdSimulationCanvasTrait, stdSimulatorGame, stdSimulatorGameEntity, stdSimulatorGamePage, stdSimulatorGameTrait, stdSocialFeed, stdSort, stdSortEntity, stdSortPage, stdSortTrait, stdSprite, stdSpriteEntity, stdSpritePage, stdSpriteTrait, stdStemLab, stdStrategyGame, stdTabs, stdTabsEntity, stdTabsPage, stdTabsTrait, stdTextClassifier, stdTextClassifierEntity, stdTextClassifierPage, stdTextClassifierTrait, stdTextEffects, stdTextEffectsEntity, stdTextEffectsPage, stdTextEffectsTrait, stdTheme, stdThemeEntity, stdThemePage, stdThemeTrait, stdTimer, stdTimerEntity, stdTimerPage, stdTimerTrait, stdTradingDashboard, stdTrainer, stdTrainerEntity, stdTrainerPage, stdTrainerTrait, stdTurnBasedBattle, stdTurnBasedBattleEntity, stdTurnBasedBattlePage, stdTurnBasedBattleTrait, stdUndo, stdUndoEntity, stdUndoPage, stdUndoTrait, stdUpload, stdUploadEntity, stdUploadPage, stdUploadTrait, stdValidateOnSave, stdWizard, stdWizardEntity, stdWizardPage, stdWizardTrait };