pika-shared 1.4.11 → 1.5.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.
@@ -439,6 +439,14 @@ interface ChatMessage {
439
439
  main: VerifyResponseClassification;
440
440
  correction?: VerifyResponseClassification;
441
441
  };
442
+ /** Not populated in dynamodb, only present when interacting with opensearch. We extract the llm-instructions trace and put it here for opensearch indexing. */
443
+ llmInstructions?: string;
444
+ /** Not populated in dynamodb, only present when interacting with opensearch. We serialize the traces array to a string for opensearch indexing. */
445
+ tracesStrGzipped?: string;
446
+ /** The invocation mode, denormalized from the session for filtering and aggregation. Populated in DynamoDB at message creation time. Defaults to 'chat-app' if not provided. */
447
+ invocationMode?: ConverseInvocationMode;
448
+ /** The user type, denormalized from the session for filtering by internal vs external users. Populated in DynamoDB at message creation time. Defaults to 'internal-user' if not provided. */
449
+ userType?: UserType;
442
450
  }
443
451
  interface ChatMessageForRendering extends ChatMessage {
444
452
  segments: MessageSegment[];
@@ -1085,6 +1093,8 @@ interface SessionSearchRequest<T extends RecordOrUndef = undefined> {
1085
1093
  dateFilter?: SessionSearchDateFilter;
1086
1094
  /** Filter by user type (internal-user or external-user). */
1087
1095
  userType?: UserType[];
1096
+ /** If provided, we will only return sessions with one of the given invocation modes. */
1097
+ invocationMode?: ConverseInvocationMode[];
1088
1098
  /** If true, then we will only return sessions that are flagged for human review and if false the converse. */
1089
1099
  flagged?: boolean;
1090
1100
  /** If provided, then we will only return sessions that have insights that match the given insights criteria. */
@@ -1844,6 +1854,19 @@ interface ChatAppLite {
1844
1854
  * The user types that are allowed to access this chat app. If not provided, then all user types are allowed.
1845
1855
  */
1846
1856
  userTypes?: UserType[];
1857
+ /**
1858
+ * Custom icon URL for this assistant, displayed on the home page card.
1859
+ * If not provided, a default sparkle icon is shown.
1860
+ *
1861
+ * **Recommended size:** 40x40 pixels (or 80x80 for retina displays)
1862
+ * **Supported formats:** SVG (recommended), PNG, JPG, WebP
1863
+ *
1864
+ * Place icons in `apps/pika-chat/static/custom/assets/` and reference as `/custom/assets/icon.svg`.
1865
+ *
1866
+ * @example "/custom/assets/order-icon.svg"
1867
+ * @since 0.16.4
1868
+ */
1869
+ icon?: string;
1847
1870
  }
1848
1871
  interface KnowledgeBase {
1849
1872
  /** A unique identifier for the knowledge base */
@@ -2061,6 +2084,27 @@ interface UiCustomizationFeature {
2061
2084
  showChatHistoryInStandaloneMode?: boolean;
2062
2085
  /** Whether to show the user region in the left nav in full page mode. Defaults to true. */
2063
2086
  showUserRegionInLeftNav?: boolean;
2087
+ /**
2088
+ * Custom theme configuration. When enabled, allows clone projects to customize
2089
+ * colors, typography, and styling via a custom theme file.
2090
+ *
2091
+ * @see ThemeConfig in theme-types.ts
2092
+ * @since 0.16.0
2093
+ */
2094
+ customTheme?: {
2095
+ /**
2096
+ * Whether custom theming is enabled.
2097
+ * If false, the default Pika theme is used and the theme config is not loaded.
2098
+ */
2099
+ enabled: boolean;
2100
+ /**
2101
+ * Path to theme config file relative to apps/pika-chat/
2102
+ * The file must export a `themeConfig` object of type ThemeConfig.
2103
+ *
2104
+ * @default 'src/lib/custom/sample-purple-theme'
2105
+ */
2106
+ themeConfigPath?: string;
2107
+ };
2064
2108
  }
2065
2109
  interface UiCustomizationFeatureForChatApp extends UiCustomizationFeature, Feature {
2066
2110
  featureId: 'uiCustomization';
@@ -2280,8 +2324,8 @@ interface TextMessageSegment extends MessageSegmentBase {
2280
2324
  segmentType: 'text';
2281
2325
  }
2282
2326
  type MessageSegment = TagMessageSegment | TextMessageSegment;
2283
- type SiteAdminRequest = GetAgentRequest | GetInitialDataRequest | RefreshChatAppRequest | CreateOrUpdateChatAppOverrideRequest | DeleteChatAppOverrideRequest | GetValuesForEntityAutoCompleteRequest | GetValuesForEntityListRequest | GetValuesForUserAutoCompleteRequest | ClearConverseLambdaCacheRequest | ClearSvelteKitCachesRequest | AddChatSessionFeedbackAdminRequest | UpdateChatSessionFeedbackAdminRequest | SessionSearchAdminRequest | GetSessionAnalyticsAdminRequest | GetChatMessagesAsAdminRequest | CreateOrUpdateTagDefinitionAdminRequest | DeleteTagDefinitionAdminRequest | SearchTagDefinitionsAdminRequest | SearchSemanticDirectivesAdminRequest | SemanticDirectiveCreateOrUpdateAdminRequest | SemanticDirectiveDeleteAdminRequest | GetInstructionAssistanceConfigFromSsmRequest | GetAllChatAppsAdminRequest | GetAllAgentsAdminRequest | GetAllToolsAdminRequest | GetAllMemoryRecordsAdminRequest | GetInstructionsAddedForUserMemoryAdminRequest;
2284
- declare const SiteAdminCommand: readonly ["getAgent", "getInitialData", "refreshChatApp", "createOrUpdateChatAppOverride", "deleteChatAppOverride", "getValuesForEntityAutoComplete", "getValuesForEntityList", "getValuesForUserAutoComplete", "clearConverseLambdaCache", "clearSvelteKitCaches", "addChatSessionFeedback", "updateChatSessionFeedback", "sessionSearch", "getSessionAnalytics", "getChatMessagesAsAdmin", "createOrUpdateTagDefinition", "deleteTagDefinition", "searchTagDefinitions", "searchSemanticDirectives", "createOrUpdateSemanticDirective", "deleteSemanticDirective", "getInstructionAssistanceConfigFromSsm", "getAllChatApps", "getAllAgents", "getAllTools", "getAllMemoryRecords", "getInstructionsAddedForUserMemory"];
2327
+ type SiteAdminRequest = GetAgentRequest | GetInitialDataRequest | RefreshChatAppRequest | CreateOrUpdateChatAppOverrideRequest | DeleteChatAppOverrideRequest | GetValuesForEntityAutoCompleteRequest | GetValuesForEntityListRequest | GetValuesForUserAutoCompleteRequest | GetUsersForUserListRequest | ClearConverseLambdaCacheRequest | ClearSvelteKitCachesRequest | AddChatSessionFeedbackAdminRequest | UpdateChatSessionFeedbackAdminRequest | SessionSearchAdminRequest | GetSessionAnalyticsAdminRequest | GetChatMessagesAsAdminRequest | CreateOrUpdateTagDefinitionAdminRequest | DeleteTagDefinitionAdminRequest | SearchTagDefinitionsAdminRequest | SearchSemanticDirectivesAdminRequest | SemanticDirectiveCreateOrUpdateAdminRequest | SemanticDirectiveDeleteAdminRequest | GetInstructionAssistanceConfigFromSsmRequest | GetAllChatAppsAdminRequest | GetAllAgentsAdminRequest | GetAllToolsAdminRequest | GetAllMemoryRecordsAdminRequest | GetInstructionsAddedForUserMemoryAdminRequest;
2328
+ declare const SiteAdminCommand: readonly ["getAgent", "getInitialData", "refreshChatApp", "createOrUpdateChatAppOverride", "deleteChatAppOverride", "getValuesForEntityAutoComplete", "getValuesForEntityList", "getValuesForUserAutoComplete", "getUsersForUserList", "clearConverseLambdaCache", "clearSvelteKitCaches", "addChatSessionFeedback", "updateChatSessionFeedback", "sessionSearch", "getSessionAnalytics", "getChatMessagesAsAdmin", "createOrUpdateTagDefinition", "deleteTagDefinition", "searchTagDefinitions", "searchSemanticDirectives", "createOrUpdateSemanticDirective", "deleteSemanticDirective", "getInstructionAssistanceConfigFromSsm", "getAllChatApps", "getAllAgents", "getAllTools", "getAllMemoryRecords", "getInstructionsAddedForUserMemory"];
2285
2329
  type SiteAdminCommand = (typeof SiteAdminCommand)[number];
2286
2330
  interface SiteAdminCommandRequestBase {
2287
2331
  command: SiteAdminCommand;
@@ -2360,6 +2404,14 @@ interface GetValuesForUserAutoCompleteRequest extends SiteAdminCommandRequestBas
2360
2404
  command: 'getValuesForUserAutoComplete';
2361
2405
  valueProvidedByUser: string;
2362
2406
  }
2407
+ /**
2408
+ * Request to batch fetch user display information for a list of user IDs
2409
+ * @since 0.14.2
2410
+ */
2411
+ interface GetUsersForUserListRequest extends SiteAdminCommandRequestBase {
2412
+ command: 'getUsersForUserList';
2413
+ userIds: string[];
2414
+ }
2363
2415
  interface GetInitialDataRequest extends SiteAdminCommandRequestBase {
2364
2416
  command: 'getInitialData';
2365
2417
  }
@@ -2416,7 +2468,7 @@ interface GetAllMemoryRecordsAdminResponse extends SiteAdminCommandResponseBase
2416
2468
  interface GetInstructionsAddedForUserMemoryAdminResponse extends SiteAdminCommandResponseBase {
2417
2469
  instructions: string;
2418
2470
  }
2419
- type SiteAdminResponse = GetAgentResponse | GetInitialDataResponse | RefreshChatAppResponse | CreateOrUpdateChatAppOverrideResponse | DeleteChatAppOverrideResponse | GetValuesForEntityAutoCompleteResponse | GetValuesForEntityListResponse | GetValuesForUserAutoCompleteResponse | ClearConverseLambdaCacheResponse | ClearSvelteKitCachesResponse | AddChatSessionFeedbackResponse | UpdateChatSessionFeedbackResponse | SessionSearchResponse | GetChatMessagesAsAdminResponse | GetInstructionAssistanceConfigFromSsmResponse | GetAllChatAppsAdminResponse | GetAllAgentsAdminResponse | GetAllToolsAdminResponse | GetAllMemoryRecordsAdminResponse | GetInstructionsAddedForUserMemoryAdminResponse;
2471
+ type SiteAdminResponse = GetAgentResponse | GetInitialDataResponse | RefreshChatAppResponse | CreateOrUpdateChatAppOverrideResponse | DeleteChatAppOverrideResponse | GetValuesForEntityAutoCompleteResponse | GetValuesForEntityListResponse | GetValuesForUserAutoCompleteResponse | GetUsersForUserListResponse | ClearConverseLambdaCacheResponse | ClearSvelteKitCachesResponse | AddChatSessionFeedbackResponse | UpdateChatSessionFeedbackResponse | SessionSearchResponse | GetChatMessagesAsAdminResponse | GetInstructionAssistanceConfigFromSsmResponse | GetAllChatAppsAdminResponse | GetAllAgentsAdminResponse | GetAllToolsAdminResponse | GetAllMemoryRecordsAdminResponse | GetInstructionsAddedForUserMemoryAdminResponse;
2420
2472
  interface SiteAdminCommandResponseBase {
2421
2473
  success: boolean;
2422
2474
  error?: string;
@@ -2443,6 +2495,13 @@ interface GetValuesForEntityListResponse extends SiteAdminCommandResponseBase {
2443
2495
  interface GetValuesForUserAutoCompleteResponse extends SiteAdminCommandResponseBase {
2444
2496
  data: ChatUserLite[] | undefined;
2445
2497
  }
2498
+ /**
2499
+ * Response containing user display information for a list of user IDs
2500
+ * @since 0.14.2
2501
+ */
2502
+ interface GetUsersForUserListResponse extends SiteAdminCommandResponseBase {
2503
+ data: ChatUserLite[] | undefined;
2504
+ }
2446
2505
  interface GetInitialDataResponse extends SiteAdminCommandResponseBase {
2447
2506
  chatApps: ChatApp[];
2448
2507
  siteFeatures: SiteFeatures;
@@ -3405,15 +3464,94 @@ type UserDataOverrideSettings = Omit<UserDataOverridesSiteFeature, 'userTypes' |
3405
3464
  };
3406
3465
  interface HomePageSiteFeature {
3407
3466
  /**
3408
- * The title of the home page. If not provided, the default title will be used. This is used
3409
- * to describe the home page to the user and in navigation.
3467
+ * The title of the home page. If not provided, defaults to "AI Assistants".
3468
+ * This is displayed prominently in the header next to the logo.
3410
3469
  */
3411
3470
  homePageTitle?: string;
3412
3471
  /**
3413
- * The welcome message to display on the home page. If not provided, the default welcome message will be used.
3472
+ * Subtitle text displayed below the main title.
3473
+ * Provides context about what users can do on this page.
3474
+ *
3475
+ * @default "Select an assistant to get started"
3476
+ * @example "Intelligent tools to help you work smarter"
3477
+ * @since 0.16.4
3478
+ */
3479
+ subtitle?: string;
3480
+ /**
3481
+ * The welcome message to display on the home page. If not provided, the default welcome message will be used.
3414
3482
  * This is used to describe the home page to the user and in navigation.
3483
+ * @deprecated Use `subtitle` instead. This will be removed in a future version.
3415
3484
  */
3416
3485
  welcomeMessage?: string;
3486
+ /**
3487
+ * The text shown on the navigation button that takes users to the home page.
3488
+ * Appears in the sidebar/header area. Defaults to "AI Assistants" if not specified.
3489
+ *
3490
+ * @default "AI Assistants"
3491
+ * @example "Dashboard"
3492
+ * @example "All Assistants"
3493
+ * @since 0.16.4
3494
+ */
3495
+ navigationButtonText?: string;
3496
+ /**
3497
+ * Logo displayed in the home page header next to the title.
3498
+ * Can be a single URL string (same for both modes) or an object with separate light/dark URLs.
3499
+ *
3500
+ * Place custom logos in `apps/pika-chat/static/custom/assets/` and reference as `/custom/assets/filename.png`.
3501
+ * If not provided, defaults to the Pika logo. Set to `null` to hide the logo entirely.
3502
+ *
3503
+ * @default "/pika-logo-default.png"
3504
+ * @example "/custom/assets/my-company-logo.svg"
3505
+ * @example { light: "/custom/assets/logo-dark.svg", dark: "/custom/assets/logo-light.svg" }
3506
+ * @since 0.16.4
3507
+ */
3508
+ logo?: string | {
3509
+ light: string;
3510
+ dark?: string;
3511
+ } | null;
3512
+ /**
3513
+ * Height of the logo in pixels. Width scales automatically to maintain aspect ratio.
3514
+ *
3515
+ * @default 48
3516
+ * @since 0.16.4
3517
+ */
3518
+ logoHeight?: number;
3519
+ /**
3520
+ * Gap between the logo and the title in pixels.
3521
+ *
3522
+ * @default 16
3523
+ * @since 0.16.4
3524
+ */
3525
+ logoGap?: number;
3526
+ /**
3527
+ * Whether to show the search bar on the home page.
3528
+ * When set to 'auto', search bar appears when there are 6 or more assistants.
3529
+ *
3530
+ * @default 'auto'
3531
+ * @since 0.16.4
3532
+ */
3533
+ searchEnabled?: boolean | 'auto';
3534
+ /**
3535
+ * Default icon for assistant cards on the home page when an assistant doesn't have its own icon.
3536
+ * If not set, a sparkle icon is displayed.
3537
+ *
3538
+ * **Recommended size:** 40×40 pixels (80×80 for retina displays)
3539
+ * **Supported formats:** SVG (recommended), PNG, JPG, WebP
3540
+ *
3541
+ * Place icons in `apps/pika-chat/static/custom/assets/` and reference as `/custom/assets/icon.svg`.
3542
+ *
3543
+ * @example "/custom/assets/default-assistant-icon.svg"
3544
+ * @since 0.16.4
3545
+ */
3546
+ defaultAssistantIcon?: string;
3547
+ /**
3548
+ * Size of the icon inside assistant cards in pixels. This controls the width and height
3549
+ * of the icon within the card's icon container.
3550
+ *
3551
+ * @default 24
3552
+ * @since 0.16.4
3553
+ */
3554
+ assistantIconSize?: number;
3417
3555
  /**
3418
3556
  * Whether to have the chat app home page show links to registered chat apps. If none of the
3419
3557
  * userChatAppRules match the user, then the user will not see any links to chat apps on the home page.
@@ -4421,6 +4559,33 @@ interface SessionAnalyticsRequest {
4421
4559
  /** Limit for top entities/chat apps results */
4422
4560
  limit?: number;
4423
4561
  }
4562
+ /**
4563
+ * Cost distribution bucket with dynamic percentile-based boundaries
4564
+ * @since 0.16.0
4565
+ */
4566
+ interface CostDistributionBucket {
4567
+ /** Bucket key (e.g., 'p25-p50', 'p99+') */
4568
+ key: string;
4569
+ /** Bucket start value in USD */
4570
+ costRangeStart: number;
4571
+ /** Bucket end value in USD (null for p99+) */
4572
+ costRangeEnd: number | null;
4573
+ /** Number of sessions/turns in this bucket */
4574
+ count: number;
4575
+ /** Human-readable dollar label (e.g., '$0.18–$0.35') */
4576
+ label: string;
4577
+ /** Human-readable percentile label (e.g., 'P25–P50', 'Top 1%') */
4578
+ percentileLabel: string;
4579
+ /** Average input tokens within this bucket (turn distribution only) */
4580
+ avgInputTokens?: number;
4581
+ /** Average output tokens within this bucket (turn distribution only) */
4582
+ avgOutputTokens?: number;
4583
+ /** Model breakdown within this bucket (Phase 11.3) */
4584
+ modelBreakdown?: Array<{
4585
+ model: string;
4586
+ count: number;
4587
+ }>;
4588
+ }
4424
4589
  interface SessionAnalyticsResponse {
4425
4590
  /** Whether the request was successful */
4426
4591
  success: boolean;
@@ -4436,6 +4601,10 @@ interface SessionAnalyticsResponse {
4436
4601
  topChatApps: SessionAnalyticsChatAppUsage[];
4437
4602
  /** Cost breakdown by invocation mode */
4438
4603
  costByInvocationMode: SessionAnalyticsCostByMode[];
4604
+ /** Session-level cost distribution (dynamic percentile buckets) @since 0.16.0 */
4605
+ sessionCostDistribution?: CostDistributionBucket[];
4606
+ /** Turn-level cost distribution (dynamic percentile buckets) @since 0.16.0 */
4607
+ turnCostDistribution?: CostDistributionBucket[];
4439
4608
  }
4440
4609
  interface SessionAnalyticsSummary {
4441
4610
  /** Total number of sessions */
@@ -4460,6 +4629,82 @@ interface SessionAnalyticsSummary {
4460
4629
  avgCostPerSession: number;
4461
4630
  /** Average tokens per session */
4462
4631
  avgTokensPerSession: number;
4632
+ /** Total user messages across all sessions */
4633
+ totalUserMessages: number;
4634
+ /** Total assistant responses across all sessions */
4635
+ totalAssistantMessages: number;
4636
+ /** Average user messages per session */
4637
+ avgUserMessagesPerSession: number;
4638
+ /** Average assistant messages per session */
4639
+ avgAssistantMessagesPerSession: number;
4640
+ /** Average output tokens per assistant response */
4641
+ avgTokensPerResponse: number;
4642
+ /** Average input tokens per assistant response */
4643
+ avgInputTokensPerResponse: number;
4644
+ /** Average output tokens per assistant response */
4645
+ avgOutputTokensPerResponse: number;
4646
+ /** Average cost per assistant response in USD */
4647
+ avgCostPerResponse: number;
4648
+ /** Average execution duration per assistant response in milliseconds */
4649
+ avgExecutionDurationPerResponse: number;
4650
+ /** Timing analytics metrics */
4651
+ timingAnalytics?: {
4652
+ /** Average session duration in milliseconds */
4653
+ avgSessionDurationMs: number;
4654
+ /** Average time between message turns in milliseconds */
4655
+ avgTimeBetweenTurnsMs: number;
4656
+ /** Average response time (user to assistant) in milliseconds */
4657
+ avgResponseTimeMs: number;
4658
+ /** Average user think time (assistant to user) in milliseconds */
4659
+ avgUserThinkTimeMs: number;
4660
+ /** Sessions with long gaps */
4661
+ sessionsWithLongGaps: {
4662
+ /** Number of sessions with gaps over 1 hour */
4663
+ over1Hour: number;
4664
+ /** Number of sessions with gaps over 1 day */
4665
+ over1Day: number;
4666
+ /** Number of sessions with gaps over 1 week */
4667
+ over1Week: number;
4668
+ };
4669
+ };
4670
+ /** Session cost percentiles (8-bucket distribution) */
4671
+ sessionCostPercentiles?: {
4672
+ /** 10th percentile of session costs */
4673
+ p10: number;
4674
+ /** 25th percentile of session costs */
4675
+ p25: number;
4676
+ /** 50th percentile (median) of session costs */
4677
+ p50: number;
4678
+ /** 75th percentile of session costs */
4679
+ p75: number;
4680
+ /** 90th percentile of session costs */
4681
+ p90: number;
4682
+ /** 95th percentile of session costs */
4683
+ p95: number;
4684
+ /** 99th percentile of session costs */
4685
+ p99: number;
4686
+ };
4687
+ /** Turn (assistant message) cost percentiles */
4688
+ turnCostPercentiles?: {
4689
+ /** 10th percentile of turn costs */
4690
+ p10: number;
4691
+ /** 25th percentile of turn costs */
4692
+ p25: number;
4693
+ /** 50th percentile (median) of turn costs */
4694
+ p50: number;
4695
+ /** 75th percentile of turn costs */
4696
+ p75: number;
4697
+ /** 90th percentile of turn costs */
4698
+ p90: number;
4699
+ /** 95th percentile of turn costs */
4700
+ p95: number;
4701
+ /** 99th percentile of turn costs */
4702
+ p99: number;
4703
+ };
4704
+ /** Median cost per session (convenience field, same as sessionCostPercentiles.p50) */
4705
+ medianCostPerSession?: number;
4706
+ /** Median cost per turn (convenience field, same as turnCostPercentiles.p50) */
4707
+ medianCostPerTurn?: number;
4463
4708
  }
4464
4709
  interface SessionAnalyticsTimeSeriesPoint {
4465
4710
  /** ISO 8601 formatted date for this data point */
@@ -4480,6 +4725,10 @@ interface SessionAnalyticsTimeSeriesPoint {
4480
4725
  outputCost: number;
4481
4726
  /** Total cost in USD for this time period */
4482
4727
  totalCost: number;
4728
+ /** Number of user messages in this time period */
4729
+ userMessageCount: number;
4730
+ /** Number of assistant messages in this time period */
4731
+ assistantMessageCount: number;
4483
4732
  }
4484
4733
  interface SessionAnalyticsEntityUsage {
4485
4734
  /** Entity identifier */
@@ -4575,4 +4824,4 @@ interface MarkdownRendererConfig {
4575
4824
  highlightCacheKey?: string;
4576
4825
  }
4577
4826
 
4578
- export { type AccessRule, type AccessRules, Accurate, AccurateWithStatedAssumptions, AccurateWithUnstatedAssumptions, type AddChatSessionFeedbackAdminRequest, type AddChatSessionFeedbackRequest, type AddChatSessionFeedbackResponse, type AgentAndTools, type AgentDataRequest, type AgentDataResponse, type AgentDefinition, type AgentDefinitionForCreate, type AgentDefinitionForIdempotentCreateOrUpdate, type AgentDefinitionForUpdate, type AgentFramework, type AgentInstructionAssistanceFeature, type AgentInstructionAssistanceFeatureForChatApp, type AgentInstructionChatAppOverridableFeature, type ApplyRulesAs, type AssistantMessageContent, type AssistantRationaleContent, type Attachment, type AuthenticateResult, type AuthenticatedUser, type BaseRequestData, type BaseStackConfig, type CanvasContextConfig, type ChatApp, type ChatAppAction, type ChatAppActionGroup, type ChatAppActionMenu, type ChatAppActionMenuElements, type ChatAppComponentConfig, type ChatAppDataRequest, type ChatAppDataResponse, type ChatAppFeature, type ChatAppForCreate, type ChatAppForIdempotentCreateOrUpdate, type ChatAppForUpdate, type ChatAppLite, type ChatAppMode, type ChatAppOverridableFeatures, type ChatAppOverridableFeaturesForConverseFn, type ChatAppOverride, type ChatAppOverrideDdb, type ChatAppOverrideForCreateOrUpdate, type ChatDisclaimerNoticeFeature, type ChatDisclaimerNoticeFeatureForChatApp, type ChatMessage, type ChatMessageFile, type ChatMessageFileBase, ChatMessageFileLocationType, type ChatMessageFileS3, ChatMessageFileUseCase, type ChatMessageForCreate, type ChatMessageForRendering, type ChatMessageResponse, type ChatMessageUsage, type ChatMessagesResponse, type ChatSession, type ChatSessionFeedback, type ChatSessionFeedbackForCreate, type ChatSessionFeedbackForUpdate, type ChatSessionForCreate, type ChatSessionLiteForUpdate, type ChatSessionResponse, type ChatSessionsResponse, type ChatTitleUpdateRequest, type ChatUser, type ChatUserAddOrUpdateResponse, type ChatUserFeature, type ChatUserFeatureBase, type ChatUserLite, type ChatUserResponse, type ChatUserSearchResponse, type ClearConverseLambdaCacheRequest, type ClearConverseLambdaCacheResponse, type ClearConverseLambdaCacheType, ClearConverseLambdaCacheTypes, type ClearSvelteKitCacheType, ClearSvelteKitCacheTypes, type ClearSvelteKitCachesRequest, type ClearSvelteKitCachesResponse, type ClearUserOverrideDataRequest, type ClearUserOverrideDataResponse, type CompanyType, type ComponentTagDefinition, ContentAdminCommand, type ContentAdminCommandRequestBase, type ContentAdminCommandResponseBase, type ContentAdminData, type ContentAdminRequest, type ContentAdminResponse, type ContentAdminSiteFeature, type ContextSource, type ContextSourceDef, type ConverseInvocationMode, ConverseInvocationModes, type ConverseRequest, type ConverseRequestWithCommand, ConverseSource, type CreateAgentRequest, type CreateChatAppRequest, type CreateOrUpdateChatAppOverrideRequest, type CreateOrUpdateChatAppOverrideResponse, type CreateOrUpdateMockAgentRequest, type CreateOrUpdateMockAgentResponse, type CreateOrUpdateMockChatAppRequest, type CreateOrUpdateMockChatAppResponse, type CreateOrUpdateMockSessionRequest, type CreateOrUpdateMockSessionResponse, type CreateOrUpdateMockToolRequest, type CreateOrUpdateMockToolResponse, type CreateOrUpdateMockUserRequest, type CreateOrUpdateMockUserResponse, type CreateOrUpdateTagDefinitionAdminRequest, type CreateSharedSessionRequest, type CreateSharedSessionResponse, type CreateToolRequest, type CustomDataUiRepresentation, DEFAULT_EVENT_EXPIRY_DURATION, DEFAULT_MAX_K_MATCHES_PER_STRATEGY, DEFAULT_MAX_MEMORY_RECORDS_PER_PROMPT, DEFAULT_MEMORY_STRATEGIES, type DeleteAllMockAgentsRequest, type DeleteAllMockAgentsResponse, type DeleteAllMockChatAppsRequest, type DeleteAllMockChatAppsResponse, type DeleteAllMockDataRequest, type DeleteAllMockDataResponse, type DeleteAllMockPinnedSessionsRequest, type DeleteAllMockPinnedSessionsResponse, type DeleteAllMockSessionsRequest, type DeleteAllMockSessionsResponse, type DeleteAllMockSharedSessionVisitsRequest, type DeleteAllMockSharedSessionVisitsResponse, type DeleteAllMockToolsRequest, type DeleteAllMockToolsResponse, type DeleteAllMockUsersRequest, type DeleteAllMockUsersResponse, type DeleteChatAppOverrideRequest, type DeleteChatAppOverrideResponse, type DeleteMockAgentRequest, type DeleteMockAgentResponse, type DeleteMockChatAppRequest, type DeleteMockChatAppResponse, type DeleteMockDataRequest, type DeleteMockDataResponse, type DeleteMockSessionRequest, type DeleteMockSessionResponse, type DeleteMockToolRequest, type DeleteMockToolResponse, type DeleteMockUserRequest, type DeleteMockUserResponse, type DeleteTagDefinitionAdminRequest, type DeleteUserWidgetDataRequest, type DeleteUserWidgetDataResponse, type DialogContextConfig, EndToEndFeatureIdList, type EndToEndFeatureIdType, type EntityFeatureForChatApp, type EntitySiteFeature, type ExecutionType, FEATURE_NAMES, FEEDBACK_INTERNAL_COMMENT_STATUS, FEEDBACK_INTERNAL_COMMENT_STATUS_VALUES, FEEDBACK_INTERNAL_COMMENT_TYPE, FEEDBACK_INTERNAL_COMMENT_TYPE_VALUES, type Feature, type FeatureError, FeatureIdList, type FeatureIdType, type FeatureType, FeatureTypeArr, type FeedbackInternalComment, type FeedbackInternalCommentStatus, type FeedbackInternalCommentType, type FileUploadFeature, type FileUploadFeatureForChatApp, type GetAgentRequest, type GetAgentResponse, type GetAllAgentsAdminRequest, type GetAllAgentsAdminResponse, type GetAllChatAppsAdminRequest, type GetAllChatAppsAdminResponse, type GetAllMemoryRecordsAdminRequest, type GetAllMemoryRecordsAdminResponse, type GetAllMockAgentsRequest, type GetAllMockAgentsResponse, type GetAllMockChatAppsRequest, type GetAllMockChatAppsResponse, type GetAllMockDataRequest, type GetAllMockDataResponse, type GetAllMockPinnedSessionsRequest, type GetAllMockPinnedSessionsResponse, type GetAllMockSessionsRequest, type GetAllMockSessionsResponse, type GetAllMockSharedSessionVisitsRequest, type GetAllMockSharedSessionVisitsResponse, type GetAllMockToolsRequest, type GetAllMockToolsResponse, type GetAllMockUsersRequest, type GetAllMockUsersResponse, type GetAllToolsAdminRequest, type GetAllToolsAdminResponse, type GetChatAppsByRulesRequest, type GetChatAppsByRulesResponse, type GetChatMessagesAsAdminRequest, type GetChatMessagesAsAdminResponse, type GetChatSessionFeedbackResponse, type GetChatUserPrefsResponse, type GetInitialDataRequest, type GetInitialDataResponse, type GetInitialDialogDataRequest, type GetInitialDialogDataResponse, type GetInstructionAssistanceConfigFromSsmRequest, type GetInstructionAssistanceConfigFromSsmResponse, type GetInstructionsAddedForUserMemoryAdminRequest, type GetInstructionsAddedForUserMemoryAdminResponse, type GetInstructionsAddedForUserMemoryRequest, type GetInstructionsAddedForUserMemoryResponse, type GetMockSessionByUserIdAndSessionIdRequest, type GetMockSessionByUserIdAndSessionIdResponse, type GetPinnedSessionsRequest, type GetPinnedSessionsResponse, type GetRecentSharedRequest, type GetRecentSharedResponse, type GetSessionAnalyticsAdminRequest, type GetUserWidgetDataRequest, type GetUserWidgetDataResponse, type GetValuesForAutoCompleteRequest, type GetValuesForAutoCompleteResponse, type GetValuesForContentAdminAutoCompleteRequest, type GetValuesForContentAdminAutoCompleteResponse, type GetValuesForEntityAutoCompleteRequest, type GetValuesForEntityAutoCompleteResponse, type GetValuesForEntityListRequest, type GetValuesForEntityListResponse, type GetValuesForUserAutoCompleteRequest, type GetValuesForUserAutoCompleteResponse, type GetViewingContentForUserResponse, type HistoryFeature, type HomePageLinksToChatAppsSiteFeature, type HomePageSiteFeature, INSIGHT_STATUS_NEEDS_INSIGHTS_ANALYSIS, type IUserWidgetDataStoreState, Inaccurate, type InlineContextConfig, type InlineToolDefinition, type InsightStatusNeedsInsightsAnalysis, type InsightsSearchParams, type InstructionAssistanceConfig, type InstructionAugmentationFeature, type InstructionAugmentationFeatureForChatApp, type InstructionAugmentationScopeType, type InstructionAugmentationScopeTypeDisplayName, InstructionAugmentationScopeTypeDisplayNames, InstructionAugmentationScopeTypes, type InstructionAugmentationType, type InstructionAugmentationTypeDisplayName, InstructionAugmentationTypeDisplayNames, InstructionAugmentationTypes, type InstructionFeature, type InvocationScopes, type InvokeAgentAsComponentOptions, type KnowledgeBase, type LLMContextItem, type LambdaToolDefinition, type LifecycleStatus, type LogoutFeature, type LogoutFeatureForChatApp, type MarkdownRendererConfig, type McpToolDefinition, type MemoryContent, type MemoryQueryOptions, type MessageSegment, type MessageSegmentBase, MessageSource, type NameValueDescTriple, type NameValuePair, type OAuth, type PagedRecordsResult, type PikaConfig, type PikaStack, type PikaUserRole, PikaUserRoles, type PinSessionRequest, type PinSessionResponse, type PinnedObjAndChatSession, type PinnedSession, type PinnedSessionDynamoDb, type PromptInputFieldLabelFeature, type PromptInputFieldLabelFeatureForChatApp, type RecordOrUndef, type RecordShareVisitRequest, type RecordShareVisitResponse, type RefreshChatAppRequest, type RefreshChatAppResponse, type RetrievedMemoryContent, type RetrievedMemoryRecordSummary, type RetryableVerifyResponseClassification, RetryableVerifyResponseClassifications, type RevokeSharedSessionRequest, type RevokeSharedSessionResponse, type RolloutPolicy, SCORE_SEARCH_OPERATORS, SCORE_SEARCH_OPERATORS_VALUES, SESSION_FEEDBACK_SEVERITY, SESSION_FEEDBACK_SEVERITY_VALUES, SESSION_FEEDBACK_STATUS, SESSION_FEEDBACK_STATUS_VALUES, SESSION_FEEDBACK_TYPE, SESSION_FEEDBACK_TYPE_VALUES, SESSION_INSIGHT_GOAL_COMPLETION_STATUS, SESSION_INSIGHT_GOAL_COMPLETION_STATUS_VALUES, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL_VALUES, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL_VALUES, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE_VALUES, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED_VALUES, SESSION_INSIGHT_SATISFACTION_LEVEL, SESSION_INSIGHT_SATISFACTION_LEVEL_VALUES, SESSION_INSIGHT_USER_SENTIMENT, SESSION_INSIGHT_USER_SENTIMENT_VALUES, SESSION_SEARCH_DATE_PRESETS, SESSION_SEARCH_DATE_PRESETS_SHORT_VALUES, SESSION_SEARCH_DATE_PRESETS_VALUES, SESSION_SEARCH_DATE_TYPES, SESSION_SEARCH_DATE_TYPES_VALUES, SESSION_SEARCH_SORT_FIELDS, SESSION_SEARCH_SORT_FIELDS_VALUES, type SaveUserOverrideDataRequest, type SaveUserOverrideDataResponse, type ScoreSearchOperator, type ScoreSearchParams, type SearchAllMemoryRecordsRequest, type SearchAllMemoryRecordsResponse, type SearchAllMyMemoryRecordsRequest, type SearchAllMyMemoryRecordsResponse, type SearchSemanticDirectivesAdminRequest, type SearchSemanticDirectivesRequest, type SearchSemanticDirectivesResponse, type SearchTagDefinitionsAdminRequest, type SearchToolsRequest, type SegmentType, type SemanticDirective, type SemanticDirectiveCreateOrUpdateAdminRequest, type SemanticDirectiveCreateOrUpdateRequest, type SemanticDirectiveCreateOrUpdateResponse, type SemanticDirectiveDataRequest, type SemanticDirectiveDeleteAdminRequest, type SemanticDirectiveDeleteRequest, type SemanticDirectiveDeleteResponse, type SemanticDirectiveForCreateOrUpdate, type SemanticDirectiveScope, type SentContextRecord, type SessionAnalyticsChatAppUsage, type SessionAnalyticsCostByMode, type SessionAnalyticsEntityUsage, type SessionAnalyticsRequest, type SessionAnalyticsResponse, type SessionAnalyticsSummary, type SessionAnalyticsTimeSeriesPoint, type SessionAttributes, type SessionAttributesWithoutToken, type SessionData, type SessionDataWithChatUserCustomDataSpreadIn, type SessionFeedbackSeverity, type SessionFeedbackStatus, type SessionFeedbackType, type SessionInsightGoalCompletionStatus, type SessionInsightMetricsAiConfidenceLevel, type SessionInsightMetricsComplexityLevel, type SessionInsightMetricsSessionDurationEstimate, type SessionInsightMetricsUserEffortRequired, type SessionInsightSatisfactionLevel, type SessionInsightScoring, type SessionInsightUsage, type SessionInsightUserSentiment, type SessionInsights, type SessionInsightsFeature, type SessionInsightsFeatureForChatApp, type SessionInsightsOpenSearchConfig, type SessionSearchAdminRequest, type SessionSearchDateFilter, type SessionSearchDatePreset, type SessionSearchDateType, type SessionSearchRequest, type SessionSearchResponse, type SessionSearchSortField, type SetChatUserPrefsRequest, type SetChatUserPrefsResponse, type SetUserWidgetDataRequest, type SetUserWidgetDataResponse, type ShareSessionState, ShareSessionStateList, type SharedSessionVisitHistory, type SharedSessionVisitHistoryDynamoDb, type ShowToastFn, type ShowToastOptions, type SimpleAuthenticatedUser, type SimpleOption, SiteAdminCommand, type SiteAdminCommandRequestBase, type SiteAdminCommandResponseBase, type SiteAdminFeature, type SiteAdminRequest, type SiteAdminResponse, type SiteFeatures, type SpotlightContextConfig, type SpotlightInstanceMetadata, type StaticContextConfig, type StaticWidgetTagDefinition, type StopViewingContentForUserRequest, type StopViewingContentForUserResponse, type StreamingStatus, type SuggestionsFeature, type SuggestionsFeatureForChatApp, TAG_DEFINITION_STATUSES, TAG_DEFINITION_USAGE_MODES, TAG_DEFINITION_WIDGET_TYPES, type TagDefInJsonFile, type TagDefinition, type TagDefinitionCreateOrUpdateRequest, type TagDefinitionCreateOrUpdateResponse, type TagDefinitionDeleteRequest, type TagDefinitionDeleteResponse, type TagDefinitionForCreateOrUpdate, type TagDefinitionLite, type TagDefinitionSearchRequest, type TagDefinitionSearchResponse, type TagDefinitionStatus, type TagDefinitionUsageMode, type TagDefinitionWebComponent, type TagDefinitionWebComponentForCreateOrUpdate, type TagDefinitionWidget, type TagDefinitionWidgetBase, type TagDefinitionWidgetCustomCompiledIn, type TagDefinitionWidgetForCreateOrUpdate, type TagDefinitionWidgetPassThrough, type TagDefinitionWidgetPikaCompiledIn, type TagDefinitionWidgetType, type TagDefinitionWidgetWebComponent, type TagDefinitionWidgetWebComponentForCreateOrUpdate, type TagDefinitionsJsonFile, type TagMessageSegment, type TagWebComponentEncoding, type TagsChatAppOverridableFeature, type TagsFeatureForChatApp, type TagsSiteFeature, type TextMessageSegment, type ToolDefinition, type ToolDefinitionBase, type ToolDefinitionForCreate, type ToolDefinitionForIdempotentCreateOrUpdate, type ToolDefinitionForUpdate, type ToolIdToLambdaArnMap, type ToolInvocationContent, type ToolLifecycle, type TracesFeature, type TracesFeatureForChatApp, type TypedContentWithRole, UPDATEABLE_FEEDBACK_FIELDS, type UiCustomizationFeature, type UiCustomizationFeatureForChatApp, Unclassified, type UnpinSessionRequest, type UnpinSessionResponse, type UnrevokeSharedSessionRequest, type UnrevokeSharedSessionResponse, type UpdateAgentRequest, type UpdateChatAppRequest, type UpdateChatSessionFeedbackAdminRequest, type UpdateChatSessionFeedbackRequest, type UpdateChatSessionFeedbackResponse, type UpdateToolRequest, type UpdateableAgentDefinitionFields, type UpdateableChatAppFields, type UpdateableChatAppOverrideFields, type UpdateableFeedbackFields, type UpdateableToolDefinitionFields, type UserAwsCredentials, type UserAwsCredentialsResponse, type UserChatAppRule, type UserCognitoIdentity, type UserDataOverrideFeatureForChatApp, type UserDataOverrideSettings, type UserDataOverridesSiteFeature, type UserMemoryFeature, type UserMemoryFeatureForChatApp, type UserMemoryFeatureWithMemoryInfo, UserMemoryStrategies, type UserMemoryStrategy, type UserMessageContent, type UserOverrideData, UserOverrideDataCommand, type UserOverrideDataCommandRequest, type UserOverrideDataCommandRequestBase, type UserOverrideDataCommandResponse, type UserOverrideDataCommandResponseBase, type UserPrefs, type UserRole, type UserType, UserTypes, type UserWidgetData, type ValidateShareAccessRequest, type ValidateShareAccessResponse, type VerifyResponseClassification, type VerifyResponseClassificationDescription, VerifyResponseClassificationDescriptions, VerifyResponseClassifications, type VerifyResponseFeature, type VerifyResponseFeatureForChatApp, type VerifyResponseRetryableClassificationDescription, VerifyResponseRetryableClassificationDescriptions, type ViewContentForUserRequest, type ViewContentForUserResponse, type VitePreviewConfig, type ViteServerConfig, WIDGET_RENDERING_CONTEXT_TYPES, type WidgetContextSourceDef, type WidgetContextSourceOrigin, WidgetContextSourceOrigins, type WidgetDialogSizeCustom, type WidgetDialogSizePreset, type WidgetDialogSizing, type WidgetInlineSizing, type WidgetInstance, type WidgetRenderingContextType, type WidgetRenderingContexts, type WidgetSizing };
4827
+ export { type AccessRule, type AccessRules, Accurate, AccurateWithStatedAssumptions, AccurateWithUnstatedAssumptions, type AddChatSessionFeedbackAdminRequest, type AddChatSessionFeedbackRequest, type AddChatSessionFeedbackResponse, type AgentAndTools, type AgentDataRequest, type AgentDataResponse, type AgentDefinition, type AgentDefinitionForCreate, type AgentDefinitionForIdempotentCreateOrUpdate, type AgentDefinitionForUpdate, type AgentFramework, type AgentInstructionAssistanceFeature, type AgentInstructionAssistanceFeatureForChatApp, type AgentInstructionChatAppOverridableFeature, type ApplyRulesAs, type AssistantMessageContent, type AssistantRationaleContent, type Attachment, type AuthenticateResult, type AuthenticatedUser, type BaseRequestData, type BaseStackConfig, type CanvasContextConfig, type ChatApp, type ChatAppAction, type ChatAppActionGroup, type ChatAppActionMenu, type ChatAppActionMenuElements, type ChatAppComponentConfig, type ChatAppDataRequest, type ChatAppDataResponse, type ChatAppFeature, type ChatAppForCreate, type ChatAppForIdempotentCreateOrUpdate, type ChatAppForUpdate, type ChatAppLite, type ChatAppMode, type ChatAppOverridableFeatures, type ChatAppOverridableFeaturesForConverseFn, type ChatAppOverride, type ChatAppOverrideDdb, type ChatAppOverrideForCreateOrUpdate, type ChatDisclaimerNoticeFeature, type ChatDisclaimerNoticeFeatureForChatApp, type ChatMessage, type ChatMessageFile, type ChatMessageFileBase, ChatMessageFileLocationType, type ChatMessageFileS3, ChatMessageFileUseCase, type ChatMessageForCreate, type ChatMessageForRendering, type ChatMessageResponse, type ChatMessageUsage, type ChatMessagesResponse, type ChatSession, type ChatSessionFeedback, type ChatSessionFeedbackForCreate, type ChatSessionFeedbackForUpdate, type ChatSessionForCreate, type ChatSessionLiteForUpdate, type ChatSessionResponse, type ChatSessionsResponse, type ChatTitleUpdateRequest, type ChatUser, type ChatUserAddOrUpdateResponse, type ChatUserFeature, type ChatUserFeatureBase, type ChatUserLite, type ChatUserResponse, type ChatUserSearchResponse, type ClearConverseLambdaCacheRequest, type ClearConverseLambdaCacheResponse, type ClearConverseLambdaCacheType, ClearConverseLambdaCacheTypes, type ClearSvelteKitCacheType, ClearSvelteKitCacheTypes, type ClearSvelteKitCachesRequest, type ClearSvelteKitCachesResponse, type ClearUserOverrideDataRequest, type ClearUserOverrideDataResponse, type CompanyType, type ComponentTagDefinition, ContentAdminCommand, type ContentAdminCommandRequestBase, type ContentAdminCommandResponseBase, type ContentAdminData, type ContentAdminRequest, type ContentAdminResponse, type ContentAdminSiteFeature, type ContextSource, type ContextSourceDef, type ConverseInvocationMode, ConverseInvocationModes, type ConverseRequest, type ConverseRequestWithCommand, ConverseSource, type CostDistributionBucket, type CreateAgentRequest, type CreateChatAppRequest, type CreateOrUpdateChatAppOverrideRequest, type CreateOrUpdateChatAppOverrideResponse, type CreateOrUpdateMockAgentRequest, type CreateOrUpdateMockAgentResponse, type CreateOrUpdateMockChatAppRequest, type CreateOrUpdateMockChatAppResponse, type CreateOrUpdateMockSessionRequest, type CreateOrUpdateMockSessionResponse, type CreateOrUpdateMockToolRequest, type CreateOrUpdateMockToolResponse, type CreateOrUpdateMockUserRequest, type CreateOrUpdateMockUserResponse, type CreateOrUpdateTagDefinitionAdminRequest, type CreateSharedSessionRequest, type CreateSharedSessionResponse, type CreateToolRequest, type CustomDataUiRepresentation, DEFAULT_EVENT_EXPIRY_DURATION, DEFAULT_MAX_K_MATCHES_PER_STRATEGY, DEFAULT_MAX_MEMORY_RECORDS_PER_PROMPT, DEFAULT_MEMORY_STRATEGIES, type DeleteAllMockAgentsRequest, type DeleteAllMockAgentsResponse, type DeleteAllMockChatAppsRequest, type DeleteAllMockChatAppsResponse, type DeleteAllMockDataRequest, type DeleteAllMockDataResponse, type DeleteAllMockPinnedSessionsRequest, type DeleteAllMockPinnedSessionsResponse, type DeleteAllMockSessionsRequest, type DeleteAllMockSessionsResponse, type DeleteAllMockSharedSessionVisitsRequest, type DeleteAllMockSharedSessionVisitsResponse, type DeleteAllMockToolsRequest, type DeleteAllMockToolsResponse, type DeleteAllMockUsersRequest, type DeleteAllMockUsersResponse, type DeleteChatAppOverrideRequest, type DeleteChatAppOverrideResponse, type DeleteMockAgentRequest, type DeleteMockAgentResponse, type DeleteMockChatAppRequest, type DeleteMockChatAppResponse, type DeleteMockDataRequest, type DeleteMockDataResponse, type DeleteMockSessionRequest, type DeleteMockSessionResponse, type DeleteMockToolRequest, type DeleteMockToolResponse, type DeleteMockUserRequest, type DeleteMockUserResponse, type DeleteTagDefinitionAdminRequest, type DeleteUserWidgetDataRequest, type DeleteUserWidgetDataResponse, type DialogContextConfig, EndToEndFeatureIdList, type EndToEndFeatureIdType, type EntityFeatureForChatApp, type EntitySiteFeature, type ExecutionType, FEATURE_NAMES, FEEDBACK_INTERNAL_COMMENT_STATUS, FEEDBACK_INTERNAL_COMMENT_STATUS_VALUES, FEEDBACK_INTERNAL_COMMENT_TYPE, FEEDBACK_INTERNAL_COMMENT_TYPE_VALUES, type Feature, type FeatureError, FeatureIdList, type FeatureIdType, type FeatureType, FeatureTypeArr, type FeedbackInternalComment, type FeedbackInternalCommentStatus, type FeedbackInternalCommentType, type FileUploadFeature, type FileUploadFeatureForChatApp, type GetAgentRequest, type GetAgentResponse, type GetAllAgentsAdminRequest, type GetAllAgentsAdminResponse, type GetAllChatAppsAdminRequest, type GetAllChatAppsAdminResponse, type GetAllMemoryRecordsAdminRequest, type GetAllMemoryRecordsAdminResponse, type GetAllMockAgentsRequest, type GetAllMockAgentsResponse, type GetAllMockChatAppsRequest, type GetAllMockChatAppsResponse, type GetAllMockDataRequest, type GetAllMockDataResponse, type GetAllMockPinnedSessionsRequest, type GetAllMockPinnedSessionsResponse, type GetAllMockSessionsRequest, type GetAllMockSessionsResponse, type GetAllMockSharedSessionVisitsRequest, type GetAllMockSharedSessionVisitsResponse, type GetAllMockToolsRequest, type GetAllMockToolsResponse, type GetAllMockUsersRequest, type GetAllMockUsersResponse, type GetAllToolsAdminRequest, type GetAllToolsAdminResponse, type GetChatAppsByRulesRequest, type GetChatAppsByRulesResponse, type GetChatMessagesAsAdminRequest, type GetChatMessagesAsAdminResponse, type GetChatSessionFeedbackResponse, type GetChatUserPrefsResponse, type GetInitialDataRequest, type GetInitialDataResponse, type GetInitialDialogDataRequest, type GetInitialDialogDataResponse, type GetInstructionAssistanceConfigFromSsmRequest, type GetInstructionAssistanceConfigFromSsmResponse, type GetInstructionsAddedForUserMemoryAdminRequest, type GetInstructionsAddedForUserMemoryAdminResponse, type GetInstructionsAddedForUserMemoryRequest, type GetInstructionsAddedForUserMemoryResponse, type GetMockSessionByUserIdAndSessionIdRequest, type GetMockSessionByUserIdAndSessionIdResponse, type GetPinnedSessionsRequest, type GetPinnedSessionsResponse, type GetRecentSharedRequest, type GetRecentSharedResponse, type GetSessionAnalyticsAdminRequest, type GetUserWidgetDataRequest, type GetUserWidgetDataResponse, type GetUsersForUserListRequest, type GetUsersForUserListResponse, type GetValuesForAutoCompleteRequest, type GetValuesForAutoCompleteResponse, type GetValuesForContentAdminAutoCompleteRequest, type GetValuesForContentAdminAutoCompleteResponse, type GetValuesForEntityAutoCompleteRequest, type GetValuesForEntityAutoCompleteResponse, type GetValuesForEntityListRequest, type GetValuesForEntityListResponse, type GetValuesForUserAutoCompleteRequest, type GetValuesForUserAutoCompleteResponse, type GetViewingContentForUserResponse, type HistoryFeature, type HomePageLinksToChatAppsSiteFeature, type HomePageSiteFeature, INSIGHT_STATUS_NEEDS_INSIGHTS_ANALYSIS, type IUserWidgetDataStoreState, Inaccurate, type InlineContextConfig, type InlineToolDefinition, type InsightStatusNeedsInsightsAnalysis, type InsightsSearchParams, type InstructionAssistanceConfig, type InstructionAugmentationFeature, type InstructionAugmentationFeatureForChatApp, type InstructionAugmentationScopeType, type InstructionAugmentationScopeTypeDisplayName, InstructionAugmentationScopeTypeDisplayNames, InstructionAugmentationScopeTypes, type InstructionAugmentationType, type InstructionAugmentationTypeDisplayName, InstructionAugmentationTypeDisplayNames, InstructionAugmentationTypes, type InstructionFeature, type InvocationScopes, type InvokeAgentAsComponentOptions, type KnowledgeBase, type LLMContextItem, type LambdaToolDefinition, type LifecycleStatus, type LogoutFeature, type LogoutFeatureForChatApp, type MarkdownRendererConfig, type McpToolDefinition, type MemoryContent, type MemoryQueryOptions, type MessageSegment, type MessageSegmentBase, MessageSource, type NameValueDescTriple, type NameValuePair, type OAuth, type PagedRecordsResult, type PikaConfig, type PikaStack, type PikaUserRole, PikaUserRoles, type PinSessionRequest, type PinSessionResponse, type PinnedObjAndChatSession, type PinnedSession, type PinnedSessionDynamoDb, type PromptInputFieldLabelFeature, type PromptInputFieldLabelFeatureForChatApp, type RecordOrUndef, type RecordShareVisitRequest, type RecordShareVisitResponse, type RefreshChatAppRequest, type RefreshChatAppResponse, type RetrievedMemoryContent, type RetrievedMemoryRecordSummary, type RetryableVerifyResponseClassification, RetryableVerifyResponseClassifications, type RevokeSharedSessionRequest, type RevokeSharedSessionResponse, type RolloutPolicy, SCORE_SEARCH_OPERATORS, SCORE_SEARCH_OPERATORS_VALUES, SESSION_FEEDBACK_SEVERITY, SESSION_FEEDBACK_SEVERITY_VALUES, SESSION_FEEDBACK_STATUS, SESSION_FEEDBACK_STATUS_VALUES, SESSION_FEEDBACK_TYPE, SESSION_FEEDBACK_TYPE_VALUES, SESSION_INSIGHT_GOAL_COMPLETION_STATUS, SESSION_INSIGHT_GOAL_COMPLETION_STATUS_VALUES, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL, SESSION_INSIGHT_METRICS_AI_CONFIDENCE_LEVEL_VALUES, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL, SESSION_INSIGHT_METRICS_COMPLEXITY_LEVEL_VALUES, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE, SESSION_INSIGHT_METRICS_SESSION_DURATION_ESTIMATE_VALUES, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED, SESSION_INSIGHT_METRICS_USER_EFFORT_REQUIRED_VALUES, SESSION_INSIGHT_SATISFACTION_LEVEL, SESSION_INSIGHT_SATISFACTION_LEVEL_VALUES, SESSION_INSIGHT_USER_SENTIMENT, SESSION_INSIGHT_USER_SENTIMENT_VALUES, SESSION_SEARCH_DATE_PRESETS, SESSION_SEARCH_DATE_PRESETS_SHORT_VALUES, SESSION_SEARCH_DATE_PRESETS_VALUES, SESSION_SEARCH_DATE_TYPES, SESSION_SEARCH_DATE_TYPES_VALUES, SESSION_SEARCH_SORT_FIELDS, SESSION_SEARCH_SORT_FIELDS_VALUES, type SaveUserOverrideDataRequest, type SaveUserOverrideDataResponse, type ScoreSearchOperator, type ScoreSearchParams, type SearchAllMemoryRecordsRequest, type SearchAllMemoryRecordsResponse, type SearchAllMyMemoryRecordsRequest, type SearchAllMyMemoryRecordsResponse, type SearchSemanticDirectivesAdminRequest, type SearchSemanticDirectivesRequest, type SearchSemanticDirectivesResponse, type SearchTagDefinitionsAdminRequest, type SearchToolsRequest, type SegmentType, type SemanticDirective, type SemanticDirectiveCreateOrUpdateAdminRequest, type SemanticDirectiveCreateOrUpdateRequest, type SemanticDirectiveCreateOrUpdateResponse, type SemanticDirectiveDataRequest, type SemanticDirectiveDeleteAdminRequest, type SemanticDirectiveDeleteRequest, type SemanticDirectiveDeleteResponse, type SemanticDirectiveForCreateOrUpdate, type SemanticDirectiveScope, type SentContextRecord, type SessionAnalyticsChatAppUsage, type SessionAnalyticsCostByMode, type SessionAnalyticsEntityUsage, type SessionAnalyticsRequest, type SessionAnalyticsResponse, type SessionAnalyticsSummary, type SessionAnalyticsTimeSeriesPoint, type SessionAttributes, type SessionAttributesWithoutToken, type SessionData, type SessionDataWithChatUserCustomDataSpreadIn, type SessionFeedbackSeverity, type SessionFeedbackStatus, type SessionFeedbackType, type SessionInsightGoalCompletionStatus, type SessionInsightMetricsAiConfidenceLevel, type SessionInsightMetricsComplexityLevel, type SessionInsightMetricsSessionDurationEstimate, type SessionInsightMetricsUserEffortRequired, type SessionInsightSatisfactionLevel, type SessionInsightScoring, type SessionInsightUsage, type SessionInsightUserSentiment, type SessionInsights, type SessionInsightsFeature, type SessionInsightsFeatureForChatApp, type SessionInsightsOpenSearchConfig, type SessionSearchAdminRequest, type SessionSearchDateFilter, type SessionSearchDatePreset, type SessionSearchDateType, type SessionSearchRequest, type SessionSearchResponse, type SessionSearchSortField, type SetChatUserPrefsRequest, type SetChatUserPrefsResponse, type SetUserWidgetDataRequest, type SetUserWidgetDataResponse, type ShareSessionState, ShareSessionStateList, type SharedSessionVisitHistory, type SharedSessionVisitHistoryDynamoDb, type ShowToastFn, type ShowToastOptions, type SimpleAuthenticatedUser, type SimpleOption, SiteAdminCommand, type SiteAdminCommandRequestBase, type SiteAdminCommandResponseBase, type SiteAdminFeature, type SiteAdminRequest, type SiteAdminResponse, type SiteFeatures, type SpotlightContextConfig, type SpotlightInstanceMetadata, type StaticContextConfig, type StaticWidgetTagDefinition, type StopViewingContentForUserRequest, type StopViewingContentForUserResponse, type StreamingStatus, type SuggestionsFeature, type SuggestionsFeatureForChatApp, TAG_DEFINITION_STATUSES, TAG_DEFINITION_USAGE_MODES, TAG_DEFINITION_WIDGET_TYPES, type TagDefInJsonFile, type TagDefinition, type TagDefinitionCreateOrUpdateRequest, type TagDefinitionCreateOrUpdateResponse, type TagDefinitionDeleteRequest, type TagDefinitionDeleteResponse, type TagDefinitionForCreateOrUpdate, type TagDefinitionLite, type TagDefinitionSearchRequest, type TagDefinitionSearchResponse, type TagDefinitionStatus, type TagDefinitionUsageMode, type TagDefinitionWebComponent, type TagDefinitionWebComponentForCreateOrUpdate, type TagDefinitionWidget, type TagDefinitionWidgetBase, type TagDefinitionWidgetCustomCompiledIn, type TagDefinitionWidgetForCreateOrUpdate, type TagDefinitionWidgetPassThrough, type TagDefinitionWidgetPikaCompiledIn, type TagDefinitionWidgetType, type TagDefinitionWidgetWebComponent, type TagDefinitionWidgetWebComponentForCreateOrUpdate, type TagDefinitionsJsonFile, type TagMessageSegment, type TagWebComponentEncoding, type TagsChatAppOverridableFeature, type TagsFeatureForChatApp, type TagsSiteFeature, type TextMessageSegment, type ToolDefinition, type ToolDefinitionBase, type ToolDefinitionForCreate, type ToolDefinitionForIdempotentCreateOrUpdate, type ToolDefinitionForUpdate, type ToolIdToLambdaArnMap, type ToolInvocationContent, type ToolLifecycle, type TracesFeature, type TracesFeatureForChatApp, type TypedContentWithRole, UPDATEABLE_FEEDBACK_FIELDS, type UiCustomizationFeature, type UiCustomizationFeatureForChatApp, Unclassified, type UnpinSessionRequest, type UnpinSessionResponse, type UnrevokeSharedSessionRequest, type UnrevokeSharedSessionResponse, type UpdateAgentRequest, type UpdateChatAppRequest, type UpdateChatSessionFeedbackAdminRequest, type UpdateChatSessionFeedbackRequest, type UpdateChatSessionFeedbackResponse, type UpdateToolRequest, type UpdateableAgentDefinitionFields, type UpdateableChatAppFields, type UpdateableChatAppOverrideFields, type UpdateableFeedbackFields, type UpdateableToolDefinitionFields, type UserAwsCredentials, type UserAwsCredentialsResponse, type UserChatAppRule, type UserCognitoIdentity, type UserDataOverrideFeatureForChatApp, type UserDataOverrideSettings, type UserDataOverridesSiteFeature, type UserMemoryFeature, type UserMemoryFeatureForChatApp, type UserMemoryFeatureWithMemoryInfo, UserMemoryStrategies, type UserMemoryStrategy, type UserMessageContent, type UserOverrideData, UserOverrideDataCommand, type UserOverrideDataCommandRequest, type UserOverrideDataCommandRequestBase, type UserOverrideDataCommandResponse, type UserOverrideDataCommandResponseBase, type UserPrefs, type UserRole, type UserType, UserTypes, type UserWidgetData, type ValidateShareAccessRequest, type ValidateShareAccessResponse, type VerifyResponseClassification, type VerifyResponseClassificationDescription, VerifyResponseClassificationDescriptions, VerifyResponseClassifications, type VerifyResponseFeature, type VerifyResponseFeatureForChatApp, type VerifyResponseRetryableClassificationDescription, VerifyResponseRetryableClassificationDescriptions, type ViewContentForUserRequest, type ViewContentForUserResponse, type VitePreviewConfig, type ViteServerConfig, WIDGET_RENDERING_CONTEXT_TYPES, type WidgetContextSourceDef, type WidgetContextSourceOrigin, WidgetContextSourceOrigins, type WidgetDialogSizeCustom, type WidgetDialogSizePreset, type WidgetDialogSizing, type WidgetInlineSizing, type WidgetInstance, type WidgetRenderingContextType, type WidgetRenderingContexts, type WidgetSizing };
@@ -273,6 +273,7 @@ var SiteAdminCommand = [
273
273
  "getValuesForEntityAutoComplete",
274
274
  "getValuesForEntityList",
275
275
  "getValuesForUserAutoComplete",
276
+ "getUsersForUserList",
276
277
  "clearConverseLambdaCache",
277
278
  "clearSvelteKitCaches",
278
279
  "addChatSessionFeedback",