@iblai/iblai-js 1.13.0 → 1.13.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.
@@ -940,6 +940,257 @@ declare function getOutputFilterSwitch(scope: Page | Locator): Locator;
940
940
  declare function setOutputFilterEnabled(scope: Page | Locator, enabled: boolean): Promise<void>;
941
941
  declare function expectOutputFilterEnabled(scope: Page | Locator, enabled: boolean): Promise<void>;
942
942
 
943
+ /**
944
+ * Voice tab helpers — Playwright bindings for the `AgentVoiceTab` component
945
+ * from `@iblai/web-containers`.
946
+ *
947
+ * The Voice tab contains two sub-tabs:
948
+ * 1. "Voice" — provider + voice-picker, persisted via mentor settings
949
+ * 2. "Call Configuration" — TTS / STT / LLM / video stack, persisted via the
950
+ * `/call-configurations/` endpoint
951
+ *
952
+ * All UI strings mirror `AGENT_VOICE_TAB_LABELS` from
953
+ * `@iblai/web-containers/next`. If a consumer renames a label via the
954
+ * `labels` prop, override these constants per spec — don't edit this file.
955
+ *
956
+ * Selectors below use stable hooks only: `data-testid`, role + name, and
957
+ * label-based queries. No CSS class selectors anywhere — the underlying
958
+ * Tailwind classes are not part of the public contract.
959
+ *
960
+ * The helpers assume the Edit Mentor dialog is already open. Call
961
+ * `switchToVoiceTab(page)` first; from then on every helper accepts either
962
+ * the `Page` or the dialog `Locator`.
963
+ */
964
+ declare const VOICE_LABELS: {
965
+ readonly tabName: "Voice";
966
+ readonly headerTitle: "Voice";
967
+ readonly subTabs: {
968
+ readonly voice: "Voice";
969
+ readonly callConfig: "Voice call";
970
+ };
971
+ readonly providers: {
972
+ readonly browser: "Browser";
973
+ readonly openai: "OpenAI";
974
+ readonly google: "Google";
975
+ };
976
+ readonly voicePickerLabel: {
977
+ readonly openai: "OpenAI Voice";
978
+ readonly google: "Google Voice";
979
+ };
980
+ readonly saveVoiceButton: RegExp;
981
+ readonly callConfigSaveCreate: "Save";
982
+ readonly callConfigSaveUpdate: "Save changes";
983
+ readonly callConfigResetButton: "Reset";
984
+ readonly callConfigFields: {
985
+ readonly mode: "Call style";
986
+ readonly language: "Spoken language";
987
+ readonly llmProvider: "AI provider";
988
+ readonly ttsProvider: "Text-to-speech provider";
989
+ readonly sttProvider: "Speech-to-text provider";
990
+ readonly useFunctionCalling: "Look things up only when needed";
991
+ readonly enableVideo: "Allow screen sharing on a call";
992
+ };
993
+ readonly modeOptions: {
994
+ readonly realtime: "Live conversation";
995
+ readonly inference: "Step-by-step";
996
+ };
997
+ readonly ttsOptions: {
998
+ readonly openai: "OpenAI";
999
+ readonly google: "Google";
1000
+ readonly elevenlabs: "ElevenLabs";
1001
+ };
1002
+ readonly llmOptions: {
1003
+ readonly openai: "OpenAI";
1004
+ readonly google: "Google";
1005
+ readonly anthropic: "Anthropic";
1006
+ };
1007
+ };
1008
+ type VoiceProvider = keyof typeof VOICE_LABELS.providers;
1009
+ type CallMode = keyof typeof VOICE_LABELS.modeOptions;
1010
+ type TtsProvider = keyof typeof VOICE_LABELS.ttsOptions;
1011
+ type SttProvider = TtsProvider;
1012
+ type LlmProvider = keyof typeof VOICE_LABELS.llmOptions;
1013
+ /**
1014
+ * Check whether the Voice tab is currently rendered in the Edit Mentor
1015
+ * dialog. Returns false instead of throwing so consumers can guard
1016
+ * conditionally rendered tabs.
1017
+ */
1018
+ declare function isVoiceTabVisible(page: Page): Promise<boolean>;
1019
+ /**
1020
+ * Switch to the Voice tab. Assumes the Edit Mentor dialog is open.
1021
+ */
1022
+ declare function switchToVoiceTab(page: Page): Promise<void>;
1023
+ /**
1024
+ * Switch between the Voice / Voice call sub-tabs.
1025
+ *
1026
+ * Note: "Screen share" used to live here as a third sub-tab but is now
1027
+ * a peer top-level tab in the edit-mentor modal. Use the helpers in
1028
+ * `screenshare-tab-helpers.ts` for it.
1029
+ */
1030
+ declare function switchToVoiceSubTab(scope: Page | Locator, sub: 'voice' | 'callConfig'): Promise<void>;
1031
+ /**
1032
+ * Locator for one of the three provider cards on the "Voice" sub-tab.
1033
+ */
1034
+ declare function getVoiceProviderCard(scope: Page | Locator, provider: VoiceProvider): Locator;
1035
+ /**
1036
+ * Click a provider card. The picker below changes shape based on the
1037
+ * selection (Browser → no picker; OpenAI / Google → searchable voice list).
1038
+ */
1039
+ declare function selectVoiceProvider(scope: Page | Locator, provider: VoiceProvider): Promise<void>;
1040
+ declare function expectVoiceProviderSelected(scope: Page | Locator, provider: VoiceProvider): Promise<void>;
1041
+ /**
1042
+ * Open the modal voice picker for the active mentor-voice provider
1043
+ * (OpenAI or Google). The trigger renders the currently-picked voice on
1044
+ * the Voice sub-tab; clicking its "open" button opens a Dialog with
1045
+ * the searchable + paginated picker inside.
1046
+ *
1047
+ * The trigger root container exposes `data-testid="mentor-voice-trigger"`,
1048
+ * and the open button (inside it) is `mentor-voice-trigger-open`. The
1049
+ * inline play button is `mentor-voice-trigger-preview` — see
1050
+ * `previewMentorVoiceInline`.
1051
+ */
1052
+ declare function openMentorVoicePicker(scope: Page | Locator): Promise<void>;
1053
+ /**
1054
+ * Open the modal voice picker inside the Call Configuration sub-tab.
1055
+ * Only present when an LLM provider has been chosen.
1056
+ */
1057
+ declare function openCallConfigVoicePicker(scope: Page | Locator): Promise<void>;
1058
+ /**
1059
+ * Click the inline Play button on the mentor-voice trigger to preview
1060
+ * the currently-selected voice without opening the modal. Audio
1061
+ * playback isn't deterministically observable from Playwright, so this
1062
+ * just clicks and returns.
1063
+ */
1064
+ declare function previewMentorVoiceInline(scope: Page | Locator): Promise<void>;
1065
+ /**
1066
+ * Same as `previewMentorVoiceInline`, but for the Call Configuration
1067
+ * voice trigger.
1068
+ */
1069
+ declare function previewCallConfigVoiceInline(scope: Page | Locator): Promise<void>;
1070
+ /**
1071
+ * Assert that the trigger shows the given voice name (title-cased).
1072
+ * Useful for verifying that a previously-saved voice loads correctly.
1073
+ */
1074
+ declare function expectMentorVoiceTriggerShows(scope: Page | Locator, voiceName: string): Promise<void>;
1075
+ declare function expectCallConfigVoiceTriggerShows(scope: Page | Locator, voiceName: string): Promise<void>;
1076
+ /**
1077
+ * Search the voice picker. Typing is debounced ~300ms inside the
1078
+ * component, so callers usually want to assert on the eventual results
1079
+ * (see `expectVoiceVisible`). When the picker lives inside the modal,
1080
+ * scope to the dialog: `searchVoices(page.getByTestId('voice-picker-modal'), 'al')`.
1081
+ *
1082
+ * Targets the input via `data-testid="voice-picker-search"` — a stable
1083
+ * hook that doesn't depend on the (overridable) placeholder copy and
1084
+ * avoids ReDoS-shaped placeholder regexes.
1085
+ */
1086
+ declare function searchVoices(scope: Page | Locator, query: string): Promise<void>;
1087
+ /**
1088
+ * Locator for an individual voice row in the picker. Rows are
1089
+ * `role="radio"` with `aria-label` matching the voice name.
1090
+ */
1091
+ declare function getVoiceRow(scope: Page | Locator, voiceName: string): Locator;
1092
+ declare function expectVoiceVisible(scope: Page | Locator, voiceName: string): Promise<void>;
1093
+ /**
1094
+ * Click a voice row to select it. Returns once the row reports
1095
+ * aria-checked=true.
1096
+ */
1097
+ declare function selectVoice(scope: Page | Locator, voiceName: string): Promise<void>;
1098
+ /**
1099
+ * Click the inline preview button next to a voice. Returns immediately —
1100
+ * audio playback is async and not deterministically observable from
1101
+ * Playwright.
1102
+ */
1103
+ declare function previewVoice(scope: Page | Locator, voiceName: string): Promise<void>;
1104
+ /**
1105
+ * Click the Save button on the Voice sub-tab. Asserts the button is
1106
+ * enabled first (a no-op on a pristine form would be a test bug).
1107
+ */
1108
+ declare function saveVoiceSettings(scope: Page | Locator): Promise<void>;
1109
+ /**
1110
+ * Locator for the call configuration form, useful as a scope root for
1111
+ * subsequent helpers.
1112
+ */
1113
+ declare function getCallConfigForm(scope: Page | Locator): Locator;
1114
+ declare function expectCallConfigVisible(scope: Page | Locator): Promise<void>;
1115
+ /**
1116
+ * Pick a call mode (realtime/inference). The TTS/STT selects below become
1117
+ * disabled in realtime mode — assert via `expectTtsSelectDisabled` if your
1118
+ * test cares.
1119
+ */
1120
+ declare function selectCallMode(scope: Page | Locator, mode: CallMode): Promise<void>;
1121
+ declare function setCallLanguage(scope: Page | Locator, code: string): Promise<void>;
1122
+ declare function selectLlmProvider(scope: Page | Locator, provider: LlmProvider): Promise<void>;
1123
+ declare function selectTtsProvider(scope: Page | Locator, provider: TtsProvider): Promise<void>;
1124
+ declare function selectSttProvider(scope: Page | Locator, provider: SttProvider): Promise<void>;
1125
+ declare function expectTtsSelectDisabled(scope: Page | Locator): Promise<void>;
1126
+ declare function expectSttSelectDisabled(scope: Page | Locator): Promise<void>;
1127
+ declare function setUseFunctionCallingEnabled(scope: Page | Locator, enabled: boolean): Promise<void>;
1128
+ declare function setEnableVideo(scope: Page | Locator, enabled: boolean): Promise<void>;
1129
+ /**
1130
+ * Click the call-config Save button. The label switches between
1131
+ * "Create configuration" and "Save changes" depending on whether a config
1132
+ * exists; we match either.
1133
+ */
1134
+ declare function saveCallConfig(scope: Page | Locator): Promise<void>;
1135
+ declare function resetCallConfig(scope: Page | Locator): Promise<void>;
1136
+
1137
+ /**
1138
+ * Screen share tab helpers — Playwright bindings for the standalone
1139
+ * `AgentScreenShareTab` component from `@iblai/web-containers`.
1140
+ *
1141
+ * The tab is a peer to Voice/LLM/Tools/etc in the edit-mentor modal.
1142
+ * It only edits the two screensharing prompts on the mentor's
1143
+ * CallConfiguration; the on/off toggle lives on the Settings tab.
1144
+ *
1145
+ * Selectors below use stable hooks only: `data-testid`, role + name,
1146
+ * and label-based queries. No CSS class selectors.
1147
+ */
1148
+ declare const SCREENSHARE_LABELS: {
1149
+ readonly tabName: "Screen Share";
1150
+ readonly headerTitle: "Screen Share";
1151
+ readonly fields: {
1152
+ readonly systemPrompt: "Instructions during screen sharing";
1153
+ readonly proactivePrompt: "What the agent says when screen sharing starts";
1154
+ };
1155
+ readonly saveButton: "Save";
1156
+ };
1157
+ type ScreenSharePromptField = 'systemPrompt' | 'proactivePrompt';
1158
+ /**
1159
+ * Returns false if the Screen share tab isn't currently rendered in
1160
+ * the Edit Mentor dialog (e.g. the host hasn't registered it, or it's
1161
+ * hidden by RBAC).
1162
+ */
1163
+ declare function isScreenShareTabVisible(page: Page): Promise<boolean>;
1164
+ /**
1165
+ * Switch to the Screen share top-level tab. Assumes the Edit Mentor
1166
+ * dialog is open.
1167
+ */
1168
+ declare function switchToScreenShareTab(page: Page): Promise<void>;
1169
+ /**
1170
+ * Open the inline prompt editor for one of the two screensharing
1171
+ * prompts. Mirrors the Prompts tab pattern: each prompt is rendered as
1172
+ * a card with an "Edit <label>" button that pops the rich-text modal.
1173
+ */
1174
+ declare function openScreenSharePromptEditor(scope: Page | Locator, field: ScreenSharePromptField): Promise<void>;
1175
+ /**
1176
+ * Replace the prompt text inside the rich-text modal and confirm. The
1177
+ * new value is written to local form state; call `saveScreenSharePrompts`
1178
+ * afterwards to persist.
1179
+ */
1180
+ declare function setScreenSharePrompt(scope: Page | Locator, field: ScreenSharePromptField, text: string): Promise<void>;
1181
+ /**
1182
+ * Click the tab's Save button to persist any pending prompt edits.
1183
+ * Asserts the button is enabled first — a no-op call on a pristine
1184
+ * tab would be a test bug.
1185
+ */
1186
+ declare function saveScreenSharePrompts(scope: Page | Locator): Promise<void>;
1187
+ /**
1188
+ * Assert whether the amber off-state hint is shown. The hint renders
1189
+ * when `enable_video` is false on the underlying CallConfiguration
1190
+ * (or when no call_configuration exists yet).
1191
+ */
1192
+ declare function expectScreenShareDisabledHint(scope: Page | Locator, visible: boolean): Promise<void>;
1193
+
943
1194
  type BillingAutoRechargeStatus = 'Enabled' | 'Disabled';
944
1195
  /** Locator for the Plan section card on the BillingTab. */
945
1196
  declare function billingPlanSection(page: Page): Locator;
@@ -1271,5 +1522,5 @@ declare function generateProjectConfig(platform: string, deviceName: string, dep
1271
1522
  */
1272
1523
  declare function createPlaywrightConfig(options: CreatePlaywrightConfigOptions): PlaywrightTestConfig;
1273
1524
 
1274
- export { AuthFlowBuilder, CustomReporter, MailsacClient, PRIVACY_LABELS, TASKS_LABELS, addMemory, archiveFirstMemory, archiveMemoryByContent, billingAutoRechargeSection, billingCreditsSection, billingPlanSection, buildReportUrl, canChatWithEmbedMentor, cancelDeleteInstance, cancelDeleteSkill, cancelDisconnectInstance, cancelNewInstanceDialog, checkAdminStatus, clearDateRangeFilter, clearInstanceSearch, clickBackHome, clickBillingAddCredits, clickBillingManageBilling, clickBillingManageUsage, clickBillingUpgrade, clickDownloadAgain, clickManualDownloadLink, closeCreditBalanceDropdown, closeWithEsc, connectToInstance, createAuthSetup, createEnvConfig, createInstance, createPlaywrightConfig, createSkill, creditBalancePanel, creditBalancePlanBadge, creditBalanceTrigger, deleteFirstMemory, deleteInstance, deleteMemoryByContent, deleteSkill, deleteTask, disableSkill, disconnectInstance, editAgentPrompt, editInstance, editSkill, enableSkill, expectBillingAutoRechargeSection, expectBillingCreditsSection, expectBillingPlanSection, expectBillingTabForCurrentPlan, expectBillingTabForFreePlan, expectBillingTabForPremiumPlan, expectBillingTabForTrialPlan, expectCompletedTasks, expectCreditBalanceForCurrentPlan, expectCreditBalancePanelForFreePlan, expectCreditBalancePanelForPremiumPlan, expectCreditBalancePanelForTrialPlan, expectCreditBalanceVisibilityForTenant, expectEntitySelected, expectFailedTasks, expectLogDetailsStatus, expectLogsForTask, expectNoAccessibilityViolations, expectNoAccessibilityViolationsOnDialogs, expectNoLogsForSelectedTask, expectOutputFilterEnabled, expectPrivacyFieldsHidden, expectPrivacyFieldsVisible, expectPrivacyRouterEnabled, expectScheduleStartTimeInPastError, expectTaskInList, expectTaskNotInList, expectTaskStatus, expectTasksEmpty, expectTotalTasks, filterByAction, filterByActionAndVerify, filterByActor, filterByActorAndVerify, filterByDateRange, generateBrowserSetupProjects, generateProjectConfig, getAuditLogRowCount, getAvailableActors, getBillingAutoRechargeStatus, getBillingPlanLabel, getBrowserKey, getCreditBalancePlanLabel, getCreditBalanceRemaining, getCurrentModel, getCurrentTenantShowPaywall, getEntityChip, getInstanceHealthLabel, getInstanceRowCount, getInstanceStatusLabel, getMemoryCount, getMentorIdFromUrl, getOutputFilterSwitch, getPaginationInfo, getPrivacyRouterSwitch, getScheduleTaskButton, getSearchInput, getSkillRowCount, getTaskRow, goToFirstPage, goToLastPage, goToNextPage, goToPage, goToPreviousPage, inviteUserTest, isFirefox, isJSON, isMemoryTabVisible, isOnFirstPage, isOnLastPage, isPrivacyTabVisible, isSandboxTabVisible, isSkillEnabled, isTasksTabVisible, logger, loginWithEmailAndPassword, loginWithMicrosoftIdp, navigateToAccountComponent, navigateToAuditLog, navigateToAuditLogAndWaitForData, navigateToDataReports, navigateToReportDownload, openAddMemoryDialog, openAgentPromptEditModal, openCreditBalanceDropdown, openEditInstanceDialog, openEditSkillDialog, openFirstLogDetails, openInstanceActionsMenu, openLLMProviderPicker, openNewInstanceDialog, openNewSkillDialog, openScheduleTaskDialog, openSkillActionsMenu, parseReportUrlParams, pushConfiguration, reliableClick, reliableFill, retry, runConnectedInstanceChecks, runInstanceChecks, safeWaitForURL, scheduleTask, searchInstances, searchTasks, selectDateFromCalendar, selectLLMModel, selectPrivacyAction, selectTaskInList, setBlockMessage, setEntitySelected, setOutputFilterEnabled, setPrivacyRouterEnabled, setupSandboxInstance, shouldAddNewRowWhenClickingAddRowButton, shouldAllowEditingCellValuesInCSVEditor, shouldCancelCombiningReports, shouldCloseCSVEditorWhenClickingCloseButton, shouldCloseCSVEditorWithoutSavingWhenClickingCancel, shouldCombineRecommendationReports, shouldDirectlyDownloadChatHistoryReportWithoutCSVEditor, shouldDisableOtherDownloadButtonsWhileGeneratingReport, shouldDisplayCSVInEditableTableFormat, shouldDisplayReportCards, shouldHaveCombinedReportDataTestIds, shouldOpenCSVEditorDialog, shouldOpenCSVEditorForUserMetadataReport, shouldSaveEditedCSVAndTriggerDownload, shouldShowCombiningReportsDialog, shouldVerifyCSVEditorDialogAccessibility, signUpWithEmailAndPassword, switchToMemoryTab, switchToPrivacyTab, switchToSandboxTab, switchToSkillsTab, switchToTasksTab, teardownSandboxInstance, test, toggleAutoPush, toggleMemorySwitch, toggleSkill, verifyAgentConfigPromptsVisible, verifyAuditLogEmptyState, verifyAuditLogEntryStructure, verifyAuditLogGenericError, verifyAuditLogLoading, verifyAuditLogPermissionError, verifyAuditLogTableVisible, verifyConnectDisabledForUnhealthy, verifyConnectedInstanceCard, verifyCurrentPage, verifyDonePhase, verifyDownloadingPhase, verifyErrorPhase, verifyInstanceTableEmpty, verifyInstanceTableVisible, verifyMemoryExists, verifyMemoryNotExists, verifyMemoryTabMemoriesList, verifyMemoryTabSettings, verifyPreparingPhase, verifySkillVisible, verifySkillsEmptyState, verifySkillsTabVisible, waitForAuditLogDataLoaded, waitForBillingTabReady, waitForCreditBalanceLoaded, waitForDialogReady, waitForElementStable, waitForPageLoad, waitForPageReady, waitForReportDownload };
1275
- export type { AgentPromptField, AuthFlowType, AuthSetupConfig, BillingAutoRechargeStatus, CreatePlaywrightConfigOptions, CreditBalancePlan, EnvConfig, PlatformConfig, PrivacyAction, PrivacyEntity, ReportDownloadOptions, SafeWaitForURLOptions, SignUpCredentials, SkillFormValues, StepFn, TaskRepeat, TaskStatus };
1525
+ export { AuthFlowBuilder, CustomReporter, MailsacClient, PRIVACY_LABELS, SCREENSHARE_LABELS, TASKS_LABELS, VOICE_LABELS, addMemory, archiveFirstMemory, archiveMemoryByContent, billingAutoRechargeSection, billingCreditsSection, billingPlanSection, buildReportUrl, canChatWithEmbedMentor, cancelDeleteInstance, cancelDeleteSkill, cancelDisconnectInstance, cancelNewInstanceDialog, checkAdminStatus, clearDateRangeFilter, clearInstanceSearch, clickBackHome, clickBillingAddCredits, clickBillingManageBilling, clickBillingManageUsage, clickBillingUpgrade, clickDownloadAgain, clickManualDownloadLink, closeCreditBalanceDropdown, closeWithEsc, connectToInstance, createAuthSetup, createEnvConfig, createInstance, createPlaywrightConfig, createSkill, creditBalancePanel, creditBalancePlanBadge, creditBalanceTrigger, deleteFirstMemory, deleteInstance, deleteMemoryByContent, deleteSkill, deleteTask, disableSkill, disconnectInstance, editAgentPrompt, editInstance, editSkill, enableSkill, expectBillingAutoRechargeSection, expectBillingCreditsSection, expectBillingPlanSection, expectBillingTabForCurrentPlan, expectBillingTabForFreePlan, expectBillingTabForPremiumPlan, expectBillingTabForTrialPlan, expectCallConfigVisible, expectCallConfigVoiceTriggerShows, expectCompletedTasks, expectCreditBalanceForCurrentPlan, expectCreditBalancePanelForFreePlan, expectCreditBalancePanelForPremiumPlan, expectCreditBalancePanelForTrialPlan, expectCreditBalanceVisibilityForTenant, expectEntitySelected, expectFailedTasks, expectLogDetailsStatus, expectLogsForTask, expectMentorVoiceTriggerShows, expectNoAccessibilityViolations, expectNoAccessibilityViolationsOnDialogs, expectNoLogsForSelectedTask, expectOutputFilterEnabled, expectPrivacyFieldsHidden, expectPrivacyFieldsVisible, expectPrivacyRouterEnabled, expectScheduleStartTimeInPastError, expectScreenShareDisabledHint, expectSttSelectDisabled, expectTaskInList, expectTaskNotInList, expectTaskStatus, expectTasksEmpty, expectTotalTasks, expectTtsSelectDisabled, expectVoiceProviderSelected, expectVoiceVisible, filterByAction, filterByActionAndVerify, filterByActor, filterByActorAndVerify, filterByDateRange, generateBrowserSetupProjects, generateProjectConfig, getAuditLogRowCount, getAvailableActors, getBillingAutoRechargeStatus, getBillingPlanLabel, getBrowserKey, getCallConfigForm, getCreditBalancePlanLabel, getCreditBalanceRemaining, getCurrentModel, getCurrentTenantShowPaywall, getEntityChip, getInstanceHealthLabel, getInstanceRowCount, getInstanceStatusLabel, getMemoryCount, getMentorIdFromUrl, getOutputFilterSwitch, getPaginationInfo, getPrivacyRouterSwitch, getScheduleTaskButton, getSearchInput, getSkillRowCount, getTaskRow, getVoiceProviderCard, getVoiceRow, goToFirstPage, goToLastPage, goToNextPage, goToPage, goToPreviousPage, inviteUserTest, isFirefox, isJSON, isMemoryTabVisible, isOnFirstPage, isOnLastPage, isPrivacyTabVisible, isSandboxTabVisible, isScreenShareTabVisible, isSkillEnabled, isTasksTabVisible, isVoiceTabVisible, logger, loginWithEmailAndPassword, loginWithMicrosoftIdp, navigateToAccountComponent, navigateToAuditLog, navigateToAuditLogAndWaitForData, navigateToDataReports, navigateToReportDownload, openAddMemoryDialog, openAgentPromptEditModal, openCallConfigVoicePicker, openCreditBalanceDropdown, openEditInstanceDialog, openEditSkillDialog, openFirstLogDetails, openInstanceActionsMenu, openLLMProviderPicker, openMentorVoicePicker, openNewInstanceDialog, openNewSkillDialog, openScheduleTaskDialog, openScreenSharePromptEditor, openSkillActionsMenu, parseReportUrlParams, previewCallConfigVoiceInline, previewMentorVoiceInline, previewVoice, pushConfiguration, reliableClick, reliableFill, resetCallConfig, retry, runConnectedInstanceChecks, runInstanceChecks, safeWaitForURL, saveCallConfig, saveScreenSharePrompts, saveVoiceSettings, scheduleTask, searchInstances, searchTasks, searchVoices, selectCallMode, selectDateFromCalendar, selectLLMModel, selectLlmProvider, selectPrivacyAction, selectSttProvider, selectTaskInList, selectTtsProvider, selectVoice, selectVoiceProvider, setBlockMessage, setCallLanguage, setEnableVideo, setEntitySelected, setOutputFilterEnabled, setPrivacyRouterEnabled, setScreenSharePrompt, setUseFunctionCallingEnabled, setupSandboxInstance, shouldAddNewRowWhenClickingAddRowButton, shouldAllowEditingCellValuesInCSVEditor, shouldCancelCombiningReports, shouldCloseCSVEditorWhenClickingCloseButton, shouldCloseCSVEditorWithoutSavingWhenClickingCancel, shouldCombineRecommendationReports, shouldDirectlyDownloadChatHistoryReportWithoutCSVEditor, shouldDisableOtherDownloadButtonsWhileGeneratingReport, shouldDisplayCSVInEditableTableFormat, shouldDisplayReportCards, shouldHaveCombinedReportDataTestIds, shouldOpenCSVEditorDialog, shouldOpenCSVEditorForUserMetadataReport, shouldSaveEditedCSVAndTriggerDownload, shouldShowCombiningReportsDialog, shouldVerifyCSVEditorDialogAccessibility, signUpWithEmailAndPassword, switchToMemoryTab, switchToPrivacyTab, switchToSandboxTab, switchToScreenShareTab, switchToSkillsTab, switchToTasksTab, switchToVoiceSubTab, switchToVoiceTab, teardownSandboxInstance, test, toggleAutoPush, toggleMemorySwitch, toggleSkill, verifyAgentConfigPromptsVisible, verifyAuditLogEmptyState, verifyAuditLogEntryStructure, verifyAuditLogGenericError, verifyAuditLogLoading, verifyAuditLogPermissionError, verifyAuditLogTableVisible, verifyConnectDisabledForUnhealthy, verifyConnectedInstanceCard, verifyCurrentPage, verifyDonePhase, verifyDownloadingPhase, verifyErrorPhase, verifyInstanceTableEmpty, verifyInstanceTableVisible, verifyMemoryExists, verifyMemoryNotExists, verifyMemoryTabMemoriesList, verifyMemoryTabSettings, verifyPreparingPhase, verifySkillVisible, verifySkillsEmptyState, verifySkillsTabVisible, waitForAuditLogDataLoaded, waitForBillingTabReady, waitForCreditBalanceLoaded, waitForDialogReady, waitForElementStable, waitForPageLoad, waitForPageReady, waitForReportDownload };
1526
+ export type { AgentPromptField, AuthFlowType, AuthSetupConfig, BillingAutoRechargeStatus, CallMode, CreatePlaywrightConfigOptions, CreditBalancePlan, EnvConfig, LlmProvider, PlatformConfig, PrivacyAction, PrivacyEntity, ReportDownloadOptions, SafeWaitForURLOptions, ScreenSharePromptField, SignUpCredentials, SkillFormValues, StepFn, SttProvider, TaskRepeat, TaskStatus, TtsProvider, VoiceProvider };