@iblai/iblai-js 2.3.11 → 2.3.13

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.
@@ -393,10 +393,6 @@ declare function isSandboxTabVisible(page: Page): Promise<boolean>;
393
393
  * Assumes the modal is already open and the user has permission to see the tab.
394
394
  */
395
395
  declare function switchToSandboxTab(page: Page): Promise<void>;
396
- /**
397
- * Switch to the Skills tab inside the edit-mentor modal.
398
- */
399
- declare function switchToSkillsTab(page: Page): Promise<void>;
400
396
  /**
401
397
  * Verify the instance table is visible with all expected column headers.
402
398
  * Should be called when the mentor has no connected sandbox instance.
@@ -557,34 +553,98 @@ declare function openAgentPromptEditModal(page: Page, field: AgentPromptField):
557
553
  */
558
554
  declare function editAgentPrompt(page: Page, field: AgentPromptField, content: string): Promise<void>;
559
555
  /**
560
- * Verify the Skills tab content is loaded (either showing skill rows or the empty state).
556
+ * Full workflow: open Sandbox tab, create a new instance, connect the mentor to it.
557
+ * Returns when the mentor is successfully connected.
558
+ */
559
+ declare function setupSandboxInstance(page: Page, instance: {
560
+ name: string;
561
+ serverUrl: string;
562
+ clawType?: 'openclaw' | 'ironclaw';
563
+ gatewayToken?: string;
564
+ }): Promise<void>;
565
+ /**
566
+ * Full workflow: open Sandbox tab, disconnect the current instance (if any),
567
+ * then delete it from the table.
568
+ */
569
+ declare function teardownSandboxInstance(page: Page, instanceName: string): Promise<void>;
570
+
571
+ /**
572
+ * Switch to the Skills tab inside the edit-agent dialog and wait for the
573
+ * skills section to render.
574
+ */
575
+ declare function switchToSkillsTab(page: Page): Promise<void>;
576
+ /**
577
+ * Verify the Skills section is loaded: the section container and its
578
+ * "Agent Skills" / "Available Skills" sub-tabs are visible.
561
579
  */
562
580
  declare function verifySkillsTabVisible(page: Page): Promise<void>;
563
581
  /**
564
- * Verify that the "No skills available" empty state is shown.
582
+ * Switch to the "Agent Skills" sub-tab (the agent's own skills, with enable
583
+ * toggles; the default sub-tab) and wait for its panel to render.
584
+ */
585
+ declare function switchToAgentSkillsSubTab(page: Page): Promise<void>;
586
+ /**
587
+ * Switch to the "Available Skills" sub-tab (the platform catalog, paged
588
+ * server-side 10 per page) and wait for its panel to render past the
589
+ * loading spinner.
590
+ */
591
+ declare function switchToAvailableSkillsSubTab(page: Page): Promise<void>;
592
+ /**
593
+ * Go to a page of the currently visible skills list via the numbered
594
+ * IblPagination buttons (the pagination renders nothing on a single page).
595
+ */
596
+ declare function goToSkillsListPage(page: Page, pageNumber: number): Promise<void>;
597
+ /**
598
+ * Verify the "Available Skills" empty state ("No skills available for this
599
+ * platform…") is shown.
565
600
  */
566
601
  declare function verifySkillsEmptyState(page: Page): Promise<void>;
567
602
  /**
568
- * Count the number of skill rows rendered in the Skills tab.
569
- * Each row represents an available (enabled) platform skill.
603
+ * Verify the "Agent Skills" empty state ("No skills enabled for this agent
604
+ * yet…") is shown.
605
+ */
606
+ declare function verifyAgentSkillsEmptyState(page: Page): Promise<void>;
607
+ /**
608
+ * Count the skill rows on the "Agent Skills" sub-tab (max 10 per page).
570
609
  */
571
610
  declare function getSkillRowCount(page: Page): Promise<number>;
572
611
  /**
573
- * Verify that a specific skill row is visible in the Skills tab.
612
+ * Verify that a specific skill row is visible on the "Agent Skills" sub-tab.
574
613
  */
575
614
  declare function verifySkillVisible(page: Page, skillName: string): Promise<void>;
576
615
  /**
577
- * Check if a specific skill is currently enabled for the mentor.
616
+ * Attach a platform skill to the agent from the "Available Skills" sub-tab.
617
+ * Waits for the toast and for the row to flip to its "Added" chip.
618
+ */
619
+ declare function addSkillToAgent(page: Page, skillName: string): Promise<void>;
620
+ /**
621
+ * Verify a catalog row shows the "Added" chip (already on the agent, or
622
+ * shadowed by a same-slug private skill) and offers no Add button.
623
+ */
624
+ declare function verifySkillAdded(page: Page, skillName: string): Promise<void>;
625
+ /**
626
+ * Open the three-dots actions menu for a skill row. The menu content portals
627
+ * to document.body, so the returned locator is page-level by design.
628
+ */
629
+ declare function openSkillActionsMenu(page: Page, skillName: string): Promise<Locator>;
630
+ /**
631
+ * Detach a skill from the agent via its row menu ("Remove from Agent") on the
632
+ * "Agent Skills" sub-tab. Waits for the toast and for the row to disappear.
633
+ */
634
+ declare function removeSkillFromAgent(page: Page, skillName: string): Promise<void>;
635
+ /**
636
+ * Check if a specific skill is currently enabled (its row Switch state) on
637
+ * the "Agent Skills" sub-tab.
578
638
  */
579
639
  declare function isSkillEnabled(page: Page, skillName: string): Promise<boolean>;
580
640
  /**
581
- * Enable a skill for the current mentor by toggling it on.
582
- * No-op if already enabled. Waits for the success toast.
641
+ * Enable an attached skill by flipping its Switch on (PATCHes the assignment;
642
+ * attaching itself is `addSkillToAgent`). No-op if already enabled.
583
643
  */
584
644
  declare function enableSkill(page: Page, skillName: string): Promise<void>;
585
645
  /**
586
- * Disable a skill for the current mentor by toggling it off.
587
- * No-op if already disabled. Waits for the success toast.
646
+ * Disable an attached skill by flipping its Switch off, without detaching it
647
+ * (detaching is `removeSkillFromAgent`). No-op if already disabled.
588
648
  */
589
649
  declare function disableSkill(page: Page, skillName: string): Promise<void>;
590
650
  /**
@@ -597,35 +657,33 @@ interface SkillFormValues {
597
657
  slug: string;
598
658
  description?: string;
599
659
  version?: string;
660
+ category?: string;
600
661
  instruction?: string;
662
+ /** Toggle "Only This Agent" (mentor-private skill). */
663
+ onlyThisAgent?: boolean;
601
664
  }
602
665
  /**
603
- * Open the "New Skill" dialog by clicking the New Skill button in the Skills tab.
604
- * Returns the dialog locator.
666
+ * Open the "New Skill" dialog from the Skills section. Returns the dialog
667
+ * locator — resolve every field from it (the dialog stacks over the
668
+ * edit-agent dialog, so page-level field queries would be ambiguous).
605
669
  */
606
670
  declare function openNewSkillDialog(page: Page): Promise<Locator>;
607
671
  /**
608
- * Create a new platform-level skill via the Skills tab.
672
+ * Create a new platform-level skill via the Skills section.
609
673
  */
610
674
  declare function createSkill(page: Page, values: SkillFormValues): Promise<void>;
611
675
  /**
612
- * Open the Actions dropdown for a specific skill row.
613
- * Returns the dropdown menu locator.
614
- */
615
- declare function openSkillActionsMenu(page: Page, skillName: string): Promise<Locator>;
616
- /**
617
- * Open the Edit Skill dialog from the actions menu.
618
- * Returns the dialog locator.
676
+ * Open the Edit Skill dialog for a row (lands on the General sub-tab).
677
+ * Returns the dialog locator — resolve fields and sub-tabs from it.
619
678
  */
620
679
  declare function openEditSkillDialog(page: Page, skillName: string): Promise<Locator>;
621
680
  /**
622
- * Edit an existing platform-level skill.
623
- * @param skillName - The current name of the skill to edit
624
- * @param updates - Fields to update on the skill
681
+ * Edit an existing platform-level skill (General sub-tab fields).
625
682
  */
626
683
  declare function editSkill(page: Page, skillName: string, updates: Partial<SkillFormValues>): Promise<void>;
627
684
  /**
628
- * Delete a platform-level skill, confirming the deletion dialog.
685
+ * Delete a platform-level skill via its row menu, confirming the
686
+ * "Delete Skill" dialog.
629
687
  */
630
688
  declare function deleteSkill(page: Page, skillName: string): Promise<void>;
631
689
  /**
@@ -633,20 +691,48 @@ declare function deleteSkill(page: Page, skillName: string): Promise<void>;
633
691
  */
634
692
  declare function cancelDeleteSkill(page: Page, skillName: string): Promise<void>;
635
693
  /**
636
- * Full workflow: open Sandbox tab, create a new instance, connect the mentor to it.
637
- * Returns when the mentor is successfully connected.
694
+ * Switch the open Edit Skill dialog to its Resources sub-tab. Pass the
695
+ * dialog returned by `openEditSkillDialog`; returns the resources section
696
+ * locator to scope row lookups.
638
697
  */
639
- declare function setupSandboxInstance(page: Page, instance: {
640
- name: string;
641
- serverUrl: string;
642
- clawType?: 'openclaw' | 'ironclaw';
643
- gatewayToken?: string;
644
- }): Promise<void>;
698
+ declare function switchToSkillResourcesSubTab(editSkillDialog: Locator): Promise<Locator>;
699
+ interface TextResourceValues {
700
+ filename: string;
701
+ content: string;
702
+ /** "Reference" (default) or "Script". */
703
+ type?: 'Reference' | 'Script';
704
+ }
645
705
  /**
646
- * Full workflow: open Sandbox tab, disconnect the current instance (if any),
647
- * then delete it from the table.
706
+ * Add a text resource (reference/script) via the "New Resource" dialog.
707
+ * The type Select's listbox portals inside the dialog panel, so options are
708
+ * resolved from the dialog too.
648
709
  */
649
- declare function teardownSandboxInstance(page: Page, instanceName: string): Promise<void>;
710
+ declare function addTextResource(page: Page, resourcesSection: Locator, { filename, content, type }: TextResourceValues): Promise<void>;
711
+ /**
712
+ * Upload a binary asset resource via the "New Resource" dialog. `filePath`
713
+ * is passed to Playwright's setInputFiles (absolute or test-relative).
714
+ */
715
+ declare function uploadAssetResource(page: Page, resourcesSection: Locator, filePath: string): Promise<void>;
716
+ /**
717
+ * Edit a text resource in place via its row menu ("Edit Resource" dialog).
718
+ */
719
+ declare function editTextResource(page: Page, resourcesSection: Locator, filename: string, updates: Partial<Pick<TextResourceValues, 'filename' | 'content'>>): Promise<void>;
720
+ /**
721
+ * Delete a resource row via its menu, confirming the "Delete Resource"
722
+ * dialog. Waits for the toast and for the row to disappear.
723
+ */
724
+ declare function deleteResource(page: Page, resourcesSection: Locator, filename: string): Promise<void>;
725
+ /**
726
+ * Type a `/` query into the chat composer and wait for the skill picker
727
+ * listbox to open (its lazy fetch may show a loading row first on cold
728
+ * cache — waiting on the listbox element covers both paths).
729
+ */
730
+ declare function openSlashSkillPicker(page: Page, query?: string): Promise<void>;
731
+ /**
732
+ * Pick a skill from the open `/` picker by its visible name. The picker
733
+ * closes and the composer is left holding the inserted `/slug ` invocation.
734
+ */
735
+ declare function selectSlashSkill(page: Page, skillName: string): Promise<void>;
650
736
 
651
737
  /**
652
738
  * Navigate to the Audit tab within the Analytics section.
@@ -2750,5 +2836,5 @@ declare function generateProjectConfig(platform: string, deviceName: string, dep
2750
2836
  */
2751
2837
  declare function createPlaywrightConfig(options: CreatePlaywrightConfigOptions): PlaywrightTestConfig;
2752
2838
 
2753
- export { AuthFlowBuilder, CHAT_PRIVACY_LABELS, CustomReporter, EVALS_LABELS, GRADER_LABELS, LTI_LABELS, LTI_TEST_IDS, MailsacClient, PRIVACY_LABELS, SCREENSHARE_LABELS, SUPPORT_LABELS, TASKS_LABELS, VOICE_LABELS, addGraderCriterion, addManualScore, addMemory, addQaPairsManually, archiveFirstMemory, archiveMemoryByContent, billingAutoRechargeSection, billingCreditsSection, billingPlanSection, buildReportUrl, canChatWithEmbedMentor, cancelDeleteEvaluation, cancelDeleteInstance, cancelDeleteSkill, cancelDisconnectInstance, cancelEnableChatPrivacyMidSession, cancelKeyDelete, cancelLlmJudge, cancelNewInstanceDialog, cancelStartEvaluation, checkAdminStatus, checkRunStatus, clearDateRangeFilter, clearGradeResultOverride, clearInstanceSearch, clearUserFilter, clickBackHome, clickBillingAddCredits, clickBillingManageBilling, clickBillingManageUsage, clickBillingUpgrade, clickChatPrivacyToggle, clickDownloadAgain, clickManualDownloadLink, closeBenchmarkItemsDialog, closeCreditBalanceDropdown, closeEvaluationDetailDialog, closeKeyDetail, closeManageBenchmarksDialog, closeWithEsc, confirmEnableChatPrivacyMidSession, confirmKeyDelete, connectToInstance, copyEndpoint, createAuthSetup, createBenchmark, createEnvConfig, createInstance, createKey, createLink, createPlaywrightConfig, createSkill, createSupportTicketViaChatAndVerify, createTool, creditBalancePanel, creditBalancePlanBadge, creditBalanceTrigger, deleteEvaluation, deleteFirstMemory, deleteGraderCriterion, deleteInstance, deleteKey, deleteMemoryByContent, deleteQaItem, deleteSkill, deleteTask, disableSkill, disableSupport, disconnectInstance, editAgentPrompt, editGraderCriterion, editInstance, editLink, editSkill, editTool, enableSkill, enableSupport, expandReview, expandTrace, expectAllEndpointsVisible, expectBenchmarkListed, expectBillingAutoRechargeSection, expectBillingCreditsSection, expectBillingPlanSection, expectBillingTabForCurrentPlan, expectBillingTabForFreePlan, expectBillingTabForPremiumPlan, expectBillingTabForTrialPlan, expectCallConfigVisible, expectCallConfigVoiceTriggerShows, expectChatPrivacyConfirmDialogOpen, expectChatPrivacyLocked, expectChatPrivacySource, expectChatPrivacyState, expectChatPrivacyToggleVisible, expectCompletedTasks, expectCreditBalanceForCurrentPlan, expectCreditBalancePanelForFreePlan, expectCreditBalancePanelForPremiumPlan, expectCreditBalancePanelForTrialPlan, expectCreditBalanceVisibilityForTenant, expectDetailWaitingForTraces, expectEndpointUrl, expectEntitySelected, expectFailedTasks, expectGradeResultRow, expectGraderMisconfiguredWarning, expectGraderTotalPoints, expectKeyDeleteError, expectKeyInList, expectKeyNotInList, expectKeysEmpty, expectLastCriterionDeleteDisabled, expectLinkInList, expectLinkNotInList, expectLinkTargetUri, expectLinksEmpty, expectLogDetailsStatus, expectLogsForTask, expectLtiHeader, expectMentorVoiceTriggerShows, expectMessageInConversation, expectNoAccessibilityViolations, expectNoAccessibilityViolationsOnDialogs, expectNoBenchmarksNotice, expectNoLogsForSelectedTask, expectNoRepliesYet, expectNoTickets, expectOutputFilterEnabled, expectPrivacyFieldsHidden, expectPrivacyFieldsVisible, expectPrivateModeSelected, expectPrivateModeTabReady, expectQaItemListed, expectReviewInList, expectReviewStatus, expectRunInTable, expectRunNotInTable, expectRunStatus, expectRunsTableEmpty, expectScheduleStartTimeInPastError, expectScreenShareDisabledHint, expectSelectedBenchmark, expectSttSelectDisabled, expectTaskInList, expectTaskNotInList, expectTaskStatus, expectTasksEmpty, expectTenantChatPrivacyEnabled, expectTenantChatPrivacyVisible, expectTicketClosedNotice, expectTicketDescriptionContains, expectTicketInList, expectTicketStatusInList, expectToolInList, expectToolNotInList, expectToolsEmpty, expectTotalTasks, expectTraceScore, expectTtsSelectDisabled, expectVoiceProviderSelected, expectVoiceVisible, exportRunCsv, fillLinkName, fillToolForm, filterByAction, filterByActionAndVerify, filterByActor, filterByActorAndVerify, filterByDateRange, filterGradeResultsByEmail, filterTicketsByStatus, filterTicketsByUser, generateBrowserSetupProjects, generateProjectConfig, getAddItemsDialog, getAuditLogRowCount, getAvailableActors, getBenchmarkCombobox, getBenchmarkComboboxDropdown, getBenchmarkItemsDialog, getBillingAutoRechargeStatus, getBillingPlanLabel, getBrowserKey, getCallConfigForm, getChatInput, getChatPrivacyConfirmDialog, getChatPrivacyToggle, getCreateBenchmarkDialog, getCreateKeyButton, getCreateLinkButton, getCreateToolButton, getCreditBalancePlanLabel, getCreditBalanceRemaining, getCurrentModel, getCurrentTenantShowPaywall, getDeleteEvaluationDialog, getDeleteQaItemDialog, getEditAgentDialog, getEndpoint, getEndpointCopyButton, getEndpointUrl, getEntityChip, getEvaluationDetailDialog, getInstanceHealthLabel, getInstanceRowCount, getInstanceStatusLabel, getKeyActionsTrigger, getKeyCreateModal, getKeyCreateNameInput, getKeyDeleteModal, getKeyDetailModal, getKeyDetailNameInput, getKeyPublicJwkField, getKeyPublicKeyField, getKeyRow, getKeysEmptyState, getKeysSection, getLinkCopyTargetUriButton, getLinkEditButton, getLinkModal, getLinkNameInput, getLinkRow, getLinksEmptyState, getLinksSection, getLlmJudgeDialog, getLlmPickerDialog, getLtiSubTab, getManageBenchmarksButton, getManageBenchmarksDialog, getMemoryCount, getMentorIdFromUrl, getNewEvaluationButton, getOutputFilterSwitch, getPaginationInfo, getPrivateModeCard, getReplyComposer, getReviewRow, getRunRow, getScheduleTaskButton, getSearchInput, getSkillRowCount, getStartEvaluationDialog, getStatusFilter, getSupportInfoBox, getSupportTabTrigger, getSupportToggle, getTaskRow, getTenantChatPrivacyRow, getTenantChatPrivacySwitch, getTicketDescription, getTicketDetail, getTicketList, getTicketRow, getTicketRowByIndex, getToolEditButton, getToolKeySelect, getToolModal, getToolRow, getToolsEmptyState, getToolsSection, getTraceRow, getUserFilter, getVoiceProviderCard, getVoiceRow, goToFirstPage, goToLastPage, goToNextPage, goToPage, goToPreviousPage, graderTabBody, inviteUserTest, isEvaluationTabVisible, isFirefox, isGraderTabVisible, isGradingEnabled, isJSON, isLtiTabVisible, isMemoryTabVisible, isOnFirstPage, isOnLastPage, isPrivacyTabVisible, isPrivateModeTabVisible, isSandboxTabVisible, isScreenShareTabVisible, isSkillEnabled, isSupportEnabled, isSupportTabVisible, isTasksTabVisible, isVoiceTabVisible, logger, loginWithEmailAndPassword, loginWithMicrosoftIdp, navigateToAccountComponent, navigateToAuditLog, navigateToAuditLogAndWaitForData, navigateToDataReports, navigateToReportDownload, openAddItemsDialog, openAddMemoryDialog, openAgentPromptEditModal, openBenchmarkItems, openCallConfigVoicePicker, openCreateKeyModal, openCreateLinkModal, openCreateToolModal, openCreditBalanceDropdown, openEditInstanceDialog, openEditLinkModal, openEditSkillDialog, openEditToolModal, openFirstLogDetails, openInstanceActionsMenu, openKeyActionsMenu, openKeyDelete, openKeyDetail, openLLMProviderPicker, openManageBenchmarksDialog, openMentorVoicePicker, openNewInstanceDialog, openNewReviewForRun, openNewReviewFromDetail, openNewSkillDialog, openRunActionsMenu, openRunResults, openScheduleTaskDialog, openScreenSharePromptEditor, openSkillActionsMenu, openStartEvaluationDialog, openTicket, overrideGradeResult, parseReportUrlParams, previewCallConfigVoiceInline, previewMentorVoiceInline, previewVoice, pushConfiguration, readEndpointUrl, readKeyPublicJwk, readKeyPublicKey, refreshEvaluationDetail, refreshTickets, reliableClick, reliableFill, removeTraceScore, renameKey, replyToTicket, requestSupportTicketViaChat, resetCallConfig, retry, runConnectedInstanceChecks, runInstanceChecks, safeWaitForURL, saveCallConfig, saveGraderConfig, saveScreenSharePrompts, saveVoiceSettings, scheduleTask, searchBenchmarks, searchInstances, searchTasks, searchVoices, selectBenchmark, selectCallMode, selectDateFromCalendar, selectJudgeLlm, selectLLMModel, selectLlmProvider, selectPrivacyAction, selectPrivateMode, selectSttProvider, selectTaskInList, selectToolKeySetMode, selectToolSigningKey, selectTtsProvider, selectVoice, selectVoiceProvider, sendAgentChatMessage, setBlockMessage, setCallLanguage, setEnableVideo, setEntitySelected, setGradingEnabled, setOutputFilterEnabled, setScreenSharePrompt, setSupportEnabled, setTenantChatPrivacyEnabled, setTicketStatus, setUseFunctionCallingEnabled, setupSandboxInstance, shouldAddNewRowWhenClickingAddRowButton, shouldAllowEditingCellValuesInCSVEditor, shouldCancelCombiningReports, shouldCloseCSVEditorWhenClickingCloseButton, shouldCloseCSVEditorWithoutSavingWhenClickingCancel, shouldCombineRecommendationReports, shouldDirectlyDownloadChatHistoryReportWithoutCSVEditor, shouldDisableOtherDownloadButtonsWhileGeneratingReport, shouldDisplayCSVInEditableTableFormat, shouldDisplayReportCards, shouldHaveCombinedReportDataTestIds, shouldOpenCSVEditorDialog, shouldOpenCSVEditorForUserMetadataReport, shouldSaveEditedCSVAndTriggerDownload, shouldShowCombiningReportsDialog, shouldVerifyCSVEditorDialogAccessibility, signUpWithEmailAndPassword, startEvaluation, submitLinkModal, submitLlmJudge, submitToolModal, switchToAddItemsSubTab, switchToEvaluationTab, switchToGraderSubTab, switchToGraderTab, switchToLtiSubTab, switchToLtiTab, switchToMemoryTab, switchToPrivacyTab, switchToPrivateModeTab, switchToSandboxTab, switchToScreenShareTab, switchToSkillsTab, switchToSupportTab, switchToTasksTab, switchToVoiceSubTab, switchToVoiceTab, teardownSandboxInstance, test, toggleAutoPush, toggleMemorySwitch, toggleSkill, toolFields, uploadQaCsv, verifyAgentConfigPromptsVisible, verifyAuditLogEmptyState, verifyAuditLogEntryStructure, verifyAuditLogGenericError, verifyAuditLogLoading, verifyAuditLogPermissionError, verifyAuditLogTableVisible, verifyConnectDisabledForUnhealthy, verifyConnectedInstanceCard, verifyCurrentPage, verifyDonePhase, verifyDownloadingPhase, verifyErrorPhase, verifyInstanceTableEmpty, verifyInstanceTableVisible, verifyMemoryExists, verifyMemoryNotExists, verifyMemoryTabMemoriesList, verifyMemoryTabSettings, verifyPreparingPhase, verifySkillVisible, verifySkillsEmptyState, verifySkillsTabVisible, waitForAgentChatResponse, waitForAuditLogDataLoaded, waitForBillingTabReady, waitForCreditBalanceLoaded, waitForDialogReady, waitForElementStable, waitForPageLoad, waitForPageReady, waitForReportDownload, waitForTicketInList };
2754
- export type { AgentPromptField, AuthFlowType, AuthSetupConfig, BillingAutoRechargeStatus, CallMode, ChatPrivacyMode, ChatPrivacySource, ChatPrivacyToggleState, CreatePlaywrightConfigOptions, CreditBalancePlan, EnvConfig, EvalReviewStatus, EvalRunStatus, GraderCriterionInput, GraderFeedbackMode, GraderGradingMode, GraderSubTab, LlmProvider, LtiEndpoint, LtiKeySetMode, LtiSubTab, LtiToolFormData, PlatformConfig, PrivacyAction, PrivacyEntity, ReportDownloadOptions, SafeWaitForURLOptions, ScreenSharePromptField, SignUpCredentials, SkillFormValues, StepFn, SttProvider, SupportTicketStatus, TaskRepeat, TaskStatus, TtsProvider, VoiceProvider };
2839
+ export { AuthFlowBuilder, CHAT_PRIVACY_LABELS, CustomReporter, EVALS_LABELS, GRADER_LABELS, LTI_LABELS, LTI_TEST_IDS, MailsacClient, PRIVACY_LABELS, SCREENSHARE_LABELS, SUPPORT_LABELS, TASKS_LABELS, VOICE_LABELS, addGraderCriterion, addManualScore, addMemory, addQaPairsManually, addSkillToAgent, addTextResource, archiveFirstMemory, archiveMemoryByContent, billingAutoRechargeSection, billingCreditsSection, billingPlanSection, buildReportUrl, canChatWithEmbedMentor, cancelDeleteEvaluation, cancelDeleteInstance, cancelDeleteSkill, cancelDisconnectInstance, cancelEnableChatPrivacyMidSession, cancelKeyDelete, cancelLlmJudge, cancelNewInstanceDialog, cancelStartEvaluation, checkAdminStatus, checkRunStatus, clearDateRangeFilter, clearGradeResultOverride, clearInstanceSearch, clearUserFilter, clickBackHome, clickBillingAddCredits, clickBillingManageBilling, clickBillingManageUsage, clickBillingUpgrade, clickChatPrivacyToggle, clickDownloadAgain, clickManualDownloadLink, closeBenchmarkItemsDialog, closeCreditBalanceDropdown, closeEvaluationDetailDialog, closeKeyDetail, closeManageBenchmarksDialog, closeWithEsc, confirmEnableChatPrivacyMidSession, confirmKeyDelete, connectToInstance, copyEndpoint, createAuthSetup, createBenchmark, createEnvConfig, createInstance, createKey, createLink, createPlaywrightConfig, createSkill, createSupportTicketViaChatAndVerify, createTool, creditBalancePanel, creditBalancePlanBadge, creditBalanceTrigger, deleteEvaluation, deleteFirstMemory, deleteGraderCriterion, deleteInstance, deleteKey, deleteMemoryByContent, deleteQaItem, deleteResource, deleteSkill, deleteTask, disableSkill, disableSupport, disconnectInstance, editAgentPrompt, editGraderCriterion, editInstance, editLink, editSkill, editTextResource, editTool, enableSkill, enableSupport, expandReview, expandTrace, expectAllEndpointsVisible, expectBenchmarkListed, expectBillingAutoRechargeSection, expectBillingCreditsSection, expectBillingPlanSection, expectBillingTabForCurrentPlan, expectBillingTabForFreePlan, expectBillingTabForPremiumPlan, expectBillingTabForTrialPlan, expectCallConfigVisible, expectCallConfigVoiceTriggerShows, expectChatPrivacyConfirmDialogOpen, expectChatPrivacyLocked, expectChatPrivacySource, expectChatPrivacyState, expectChatPrivacyToggleVisible, expectCompletedTasks, expectCreditBalanceForCurrentPlan, expectCreditBalancePanelForFreePlan, expectCreditBalancePanelForPremiumPlan, expectCreditBalancePanelForTrialPlan, expectCreditBalanceVisibilityForTenant, expectDetailWaitingForTraces, expectEndpointUrl, expectEntitySelected, expectFailedTasks, expectGradeResultRow, expectGraderMisconfiguredWarning, expectGraderTotalPoints, expectKeyDeleteError, expectKeyInList, expectKeyNotInList, expectKeysEmpty, expectLastCriterionDeleteDisabled, expectLinkInList, expectLinkNotInList, expectLinkTargetUri, expectLinksEmpty, expectLogDetailsStatus, expectLogsForTask, expectLtiHeader, expectMentorVoiceTriggerShows, expectMessageInConversation, expectNoAccessibilityViolations, expectNoAccessibilityViolationsOnDialogs, expectNoBenchmarksNotice, expectNoLogsForSelectedTask, expectNoRepliesYet, expectNoTickets, expectOutputFilterEnabled, expectPrivacyFieldsHidden, expectPrivacyFieldsVisible, expectPrivateModeSelected, expectPrivateModeTabReady, expectQaItemListed, expectReviewInList, expectReviewStatus, expectRunInTable, expectRunNotInTable, expectRunStatus, expectRunsTableEmpty, expectScheduleStartTimeInPastError, expectScreenShareDisabledHint, expectSelectedBenchmark, expectSttSelectDisabled, expectTaskInList, expectTaskNotInList, expectTaskStatus, expectTasksEmpty, expectTenantChatPrivacyEnabled, expectTenantChatPrivacyVisible, expectTicketClosedNotice, expectTicketDescriptionContains, expectTicketInList, expectTicketStatusInList, expectToolInList, expectToolNotInList, expectToolsEmpty, expectTotalTasks, expectTraceScore, expectTtsSelectDisabled, expectVoiceProviderSelected, expectVoiceVisible, exportRunCsv, fillLinkName, fillToolForm, filterByAction, filterByActionAndVerify, filterByActor, filterByActorAndVerify, filterByDateRange, filterGradeResultsByEmail, filterTicketsByStatus, filterTicketsByUser, generateBrowserSetupProjects, generateProjectConfig, getAddItemsDialog, getAuditLogRowCount, getAvailableActors, getBenchmarkCombobox, getBenchmarkComboboxDropdown, getBenchmarkItemsDialog, getBillingAutoRechargeStatus, getBillingPlanLabel, getBrowserKey, getCallConfigForm, getChatInput, getChatPrivacyConfirmDialog, getChatPrivacyToggle, getCreateBenchmarkDialog, getCreateKeyButton, getCreateLinkButton, getCreateToolButton, getCreditBalancePlanLabel, getCreditBalanceRemaining, getCurrentModel, getCurrentTenantShowPaywall, getDeleteEvaluationDialog, getDeleteQaItemDialog, getEditAgentDialog, getEndpoint, getEndpointCopyButton, getEndpointUrl, getEntityChip, getEvaluationDetailDialog, getInstanceHealthLabel, getInstanceRowCount, getInstanceStatusLabel, getKeyActionsTrigger, getKeyCreateModal, getKeyCreateNameInput, getKeyDeleteModal, getKeyDetailModal, getKeyDetailNameInput, getKeyPublicJwkField, getKeyPublicKeyField, getKeyRow, getKeysEmptyState, getKeysSection, getLinkCopyTargetUriButton, getLinkEditButton, getLinkModal, getLinkNameInput, getLinkRow, getLinksEmptyState, getLinksSection, getLlmJudgeDialog, getLlmPickerDialog, getLtiSubTab, getManageBenchmarksButton, getManageBenchmarksDialog, getMemoryCount, getMentorIdFromUrl, getNewEvaluationButton, getOutputFilterSwitch, getPaginationInfo, getPrivateModeCard, getReplyComposer, getReviewRow, getRunRow, getScheduleTaskButton, getSearchInput, getSkillRowCount, getStartEvaluationDialog, getStatusFilter, getSupportInfoBox, getSupportTabTrigger, getSupportToggle, getTaskRow, getTenantChatPrivacyRow, getTenantChatPrivacySwitch, getTicketDescription, getTicketDetail, getTicketList, getTicketRow, getTicketRowByIndex, getToolEditButton, getToolKeySelect, getToolModal, getToolRow, getToolsEmptyState, getToolsSection, getTraceRow, getUserFilter, getVoiceProviderCard, getVoiceRow, goToFirstPage, goToLastPage, goToNextPage, goToPage, goToPreviousPage, goToSkillsListPage, graderTabBody, inviteUserTest, isEvaluationTabVisible, isFirefox, isGraderTabVisible, isGradingEnabled, isJSON, isLtiTabVisible, isMemoryTabVisible, isOnFirstPage, isOnLastPage, isPrivacyTabVisible, isPrivateModeTabVisible, isSandboxTabVisible, isScreenShareTabVisible, isSkillEnabled, isSupportEnabled, isSupportTabVisible, isTasksTabVisible, isVoiceTabVisible, logger, loginWithEmailAndPassword, loginWithMicrosoftIdp, navigateToAccountComponent, navigateToAuditLog, navigateToAuditLogAndWaitForData, navigateToDataReports, navigateToReportDownload, openAddItemsDialog, openAddMemoryDialog, openAgentPromptEditModal, openBenchmarkItems, openCallConfigVoicePicker, openCreateKeyModal, openCreateLinkModal, openCreateToolModal, openCreditBalanceDropdown, openEditInstanceDialog, openEditLinkModal, openEditSkillDialog, openEditToolModal, openFirstLogDetails, openInstanceActionsMenu, openKeyActionsMenu, openKeyDelete, openKeyDetail, openLLMProviderPicker, openManageBenchmarksDialog, openMentorVoicePicker, openNewInstanceDialog, openNewReviewForRun, openNewReviewFromDetail, openNewSkillDialog, openRunActionsMenu, openRunResults, openScheduleTaskDialog, openScreenSharePromptEditor, openSkillActionsMenu, openSlashSkillPicker, openStartEvaluationDialog, openTicket, overrideGradeResult, parseReportUrlParams, previewCallConfigVoiceInline, previewMentorVoiceInline, previewVoice, pushConfiguration, readEndpointUrl, readKeyPublicJwk, readKeyPublicKey, refreshEvaluationDetail, refreshTickets, reliableClick, reliableFill, removeSkillFromAgent, removeTraceScore, renameKey, replyToTicket, requestSupportTicketViaChat, resetCallConfig, retry, runConnectedInstanceChecks, runInstanceChecks, safeWaitForURL, saveCallConfig, saveGraderConfig, saveScreenSharePrompts, saveVoiceSettings, scheduleTask, searchBenchmarks, searchInstances, searchTasks, searchVoices, selectBenchmark, selectCallMode, selectDateFromCalendar, selectJudgeLlm, selectLLMModel, selectLlmProvider, selectPrivacyAction, selectPrivateMode, selectSlashSkill, selectSttProvider, selectTaskInList, selectToolKeySetMode, selectToolSigningKey, selectTtsProvider, selectVoice, selectVoiceProvider, sendAgentChatMessage, setBlockMessage, setCallLanguage, setEnableVideo, setEntitySelected, setGradingEnabled, setOutputFilterEnabled, setScreenSharePrompt, setSupportEnabled, setTenantChatPrivacyEnabled, setTicketStatus, setUseFunctionCallingEnabled, setupSandboxInstance, shouldAddNewRowWhenClickingAddRowButton, shouldAllowEditingCellValuesInCSVEditor, shouldCancelCombiningReports, shouldCloseCSVEditorWhenClickingCloseButton, shouldCloseCSVEditorWithoutSavingWhenClickingCancel, shouldCombineRecommendationReports, shouldDirectlyDownloadChatHistoryReportWithoutCSVEditor, shouldDisableOtherDownloadButtonsWhileGeneratingReport, shouldDisplayCSVInEditableTableFormat, shouldDisplayReportCards, shouldHaveCombinedReportDataTestIds, shouldOpenCSVEditorDialog, shouldOpenCSVEditorForUserMetadataReport, shouldSaveEditedCSVAndTriggerDownload, shouldShowCombiningReportsDialog, shouldVerifyCSVEditorDialogAccessibility, signUpWithEmailAndPassword, startEvaluation, submitLinkModal, submitLlmJudge, submitToolModal, switchToAddItemsSubTab, switchToAgentSkillsSubTab, switchToAvailableSkillsSubTab, switchToEvaluationTab, switchToGraderSubTab, switchToGraderTab, switchToLtiSubTab, switchToLtiTab, switchToMemoryTab, switchToPrivacyTab, switchToPrivateModeTab, switchToSandboxTab, switchToScreenShareTab, switchToSkillResourcesSubTab, switchToSkillsTab, switchToSupportTab, switchToTasksTab, switchToVoiceSubTab, switchToVoiceTab, teardownSandboxInstance, test, toggleAutoPush, toggleMemorySwitch, toggleSkill, toolFields, uploadAssetResource, uploadQaCsv, verifyAgentConfigPromptsVisible, verifyAgentSkillsEmptyState, verifyAuditLogEmptyState, verifyAuditLogEntryStructure, verifyAuditLogGenericError, verifyAuditLogLoading, verifyAuditLogPermissionError, verifyAuditLogTableVisible, verifyConnectDisabledForUnhealthy, verifyConnectedInstanceCard, verifyCurrentPage, verifyDonePhase, verifyDownloadingPhase, verifyErrorPhase, verifyInstanceTableEmpty, verifyInstanceTableVisible, verifyMemoryExists, verifyMemoryNotExists, verifyMemoryTabMemoriesList, verifyMemoryTabSettings, verifyPreparingPhase, verifySkillAdded, verifySkillVisible, verifySkillsEmptyState, verifySkillsTabVisible, waitForAgentChatResponse, waitForAuditLogDataLoaded, waitForBillingTabReady, waitForCreditBalanceLoaded, waitForDialogReady, waitForElementStable, waitForPageLoad, waitForPageReady, waitForReportDownload, waitForTicketInList };
2840
+ export type { AgentPromptField, AuthFlowType, AuthSetupConfig, BillingAutoRechargeStatus, CallMode, ChatPrivacyMode, ChatPrivacySource, ChatPrivacyToggleState, CreatePlaywrightConfigOptions, CreditBalancePlan, EnvConfig, EvalReviewStatus, EvalRunStatus, GraderCriterionInput, GraderFeedbackMode, GraderGradingMode, GraderSubTab, LlmProvider, LtiEndpoint, LtiKeySetMode, LtiSubTab, LtiToolFormData, PlatformConfig, PrivacyAction, PrivacyEntity, ReportDownloadOptions, SafeWaitForURLOptions, ScreenSharePromptField, SignUpCredentials, SkillFormValues, StepFn, SttProvider, SupportTicketStatus, TaskRepeat, TaskStatus, TextResourceValues, TtsProvider, VoiceProvider };