@iblai/iblai-js 2.5.1 → 2.5.6

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.
Files changed (33) hide show
  1. package/dist/data-layer/playwright/index.d.ts +4 -2
  2. package/dist/data-layer/playwright/lti-tab-helpers.d.ts +36 -1
  3. package/dist/data-layer/playwright/memory-admin-helpers.d.ts +153 -0
  4. package/dist/data-layer/playwright/memory-test-helpers.d.ts +8 -7
  5. package/dist/data-layer/playwright/voice-tab-helpers.d.ts +32 -0
  6. package/dist/playwright/index.cjs +550 -26
  7. package/dist/playwright/index.cjs.map +1 -1
  8. package/dist/playwright/index.d.ts +231 -10
  9. package/dist/playwright/index.esm.js +521 -27
  10. package/dist/playwright/index.esm.js.map +1 -1
  11. package/dist/playwright/playwright/index.d.ts +4 -2
  12. package/dist/playwright/playwright/lti-tab-helpers.d.ts +36 -1
  13. package/dist/playwright/playwright/memory-admin-helpers.d.ts +153 -0
  14. package/dist/playwright/playwright/memory-test-helpers.d.ts +8 -7
  15. package/dist/playwright/playwright/voice-tab-helpers.d.ts +32 -0
  16. package/dist/security/playwright/index.d.ts +4 -2
  17. package/dist/security/playwright/lti-tab-helpers.d.ts +36 -1
  18. package/dist/security/playwright/memory-admin-helpers.d.ts +153 -0
  19. package/dist/security/playwright/memory-test-helpers.d.ts +8 -7
  20. package/dist/security/playwright/voice-tab-helpers.d.ts +32 -0
  21. package/dist/web-containers/playwright/index.d.ts +4 -2
  22. package/dist/web-containers/playwright/lti-tab-helpers.d.ts +36 -1
  23. package/dist/web-containers/playwright/memory-admin-helpers.d.ts +153 -0
  24. package/dist/web-containers/playwright/memory-test-helpers.d.ts +8 -7
  25. package/dist/web-containers/playwright/voice-tab-helpers.d.ts +32 -0
  26. package/dist/web-containers/source/index.esm.js +12521 -11250
  27. package/dist/web-containers/source/next/index.esm.js +1734 -444
  28. package/dist/web-utils/playwright/index.d.ts +4 -2
  29. package/dist/web-utils/playwright/lti-tab-helpers.d.ts +36 -1
  30. package/dist/web-utils/playwright/memory-admin-helpers.d.ts +153 -0
  31. package/dist/web-utils/playwright/memory-test-helpers.d.ts +8 -7
  32. package/dist/web-utils/playwright/voice-tab-helpers.d.ts +32 -0
  33. package/package.json +5 -5
@@ -341,8 +341,9 @@ declare function verifyMemoryTabMemoriesList(page: Page): Promise<void>;
341
341
  */
342
342
  declare function openAddMemoryDialog(page: Page): Promise<Locator>;
343
343
  /**
344
- * Toggle a memory setting switch and verify the state changes.
345
- * Returns the new checked state.
344
+ * Toggle a memory setting switch and verify the state changes. Completion is
345
+ * gated on `aria-checked` flipping — which only happens once the settings
346
+ * mutation resolves — rather than on timing. Returns the new checked state.
346
347
  */
347
348
  declare function toggleMemorySwitch(page: Page, switchName: RegExp | string): Promise<boolean>;
348
349
  /**
@@ -351,14 +352,14 @@ declare function toggleMemorySwitch(page: Page, switchName: RegExp | string): Pr
351
352
  */
352
353
  declare function addMemory(page: Page, content: string): Promise<void>;
353
354
  /**
354
- * Delete the first visible memory in the list.
355
- * Hovers to reveal the delete button, then clicks it.
355
+ * Delete the first visible memory in the list through its three-dots menu,
356
+ * confirming in the Delete Memory dialog.
356
357
  */
357
358
  declare function deleteFirstMemory(page: Page): Promise<void>;
358
359
  /**
359
- * Delete a specific memory by matching its content text.
360
- * Finds the memory item containing the text, hovers to reveal
361
- * the delete button, and clicks it.
360
+ * Delete a specific memory by matching its content text through its
361
+ * three-dots menu, confirming in the Delete Memory dialog. Completion is
362
+ * gated on the row leaving the list after the refetch.
362
363
  */
363
364
  declare function deleteMemoryByContent(page: Page, content: string): Promise<void>;
364
365
  /**
@@ -383,6 +384,159 @@ declare function verifyMemoryExists(page: Page, content: string): Promise<void>;
383
384
  */
384
385
  declare function verifyMemoryNotExists(page: Page, content: string): Promise<void>;
385
386
 
387
+ /**
388
+ * Tenant-settings **Memory** tab helpers — Playwright bindings for the memory
389
+ * administration UI from `@iblai/web-containers` (`MemoryAdminTab`):
390
+ *
391
+ * - the **Global** sub-tab: tenant users table with server-side search, and a
392
+ * per-user popup (`user-memories-modal`) hosting the shared memories list
393
+ * plus the user's two memory setting switches, and
394
+ * - the **Agent** sub-tab: agents table with the shared agent autocomplete
395
+ * filter, and a per-agent popup (`agent-memories-modal`) hosting the same
396
+ * `ManageMemories` editor the agent settings modal renders.
397
+ *
398
+ * Selector policy (flakiness-proof by construction):
399
+ * - Dialog-first scoping: every popup is resolved into a Locator variable
400
+ * first (`openUserMemoriesPopup` / `openAgentMemoriesPopup` return it) and
401
+ * all sub-elements are queried from that variable — never a bare page-wide
402
+ * match that could hit same-named elements in nested portals. The popups
403
+ * stack ON TOP of the tenant settings dialog, and the add/edit/delete
404
+ * dialogs stack on top of the popups, so three dialogs can be open at once;
405
+ * the innermost ones are resolved by content filter + `.last()` (stacked
406
+ * Radix dialogs portal to the end of `<body>` in mount order, making the
407
+ * last match the one on top).
408
+ * - Stable hooks only: `data-testid`, role + accessible name (aria-labels).
409
+ * No CSS class or structural selectors.
410
+ * - No `waitForTimeout` / `networkidle`. Progress is gated on UI state that
411
+ * only exists after the awaited transition: a section testid rendering, a
412
+ * dialog closing after its mutation resolves, a row appearing or
413
+ * disappearing after the list refetch, a switch's `aria-checked` flipping.
414
+ */
415
+ declare const MEMORY_ADMIN_LABELS: {
416
+ /** Tenant settings rail item name. */
417
+ readonly tabName: "Memory";
418
+ readonly subTabs: {
419
+ readonly global: "Global";
420
+ readonly agent: "Agent";
421
+ };
422
+ /** Add button inside the user memories popup (shared list styling). */
423
+ readonly addMemoryButton: "Add Memory";
424
+ readonly menu: {
425
+ /** aria-label prefix of a memory row's three-dots trigger. */
426
+ readonly actionsAriaPrefix: "Memory actions:";
427
+ readonly edit: "Edit";
428
+ readonly delete: "Delete";
429
+ };
430
+ readonly dialogs: {
431
+ readonly add: "Add Memory";
432
+ readonly edit: "Edit Memory";
433
+ readonly deleteConfirm: "Delete Memory";
434
+ };
435
+ /**
436
+ * Switch accessible-name prefixes. The full names carry the current state
437
+ * ("Auto memory capture enabled"), so helpers match on the prefix.
438
+ */
439
+ readonly switches: {
440
+ readonly autoCapture: RegExp;
441
+ readonly useMemory: RegExp;
442
+ };
443
+ };
444
+ type MemoryAdminSubTab = keyof typeof MEMORY_ADMIN_LABELS.subTabs;
445
+ type MemoryAdminSetting = keyof typeof MEMORY_ADMIN_LABELS.switches;
446
+ /** The Global sub-tab's body (users table + search). */
447
+ declare function memoryAdminGlobalSection(page: Page): Locator;
448
+ /** The Agent sub-tab's body (agents table + autocomplete filter). */
449
+ declare function memoryAdminAgentSection(page: Page): Locator;
450
+ /** A users-table row for the given username. */
451
+ declare function memoryAdminUserRow(page: Page, username: string): Locator;
452
+ /** An agents-table row for the given agent unique_id. */
453
+ declare function memoryAdminAgentRow(page: Page, mentorUniqueId: string): Locator;
454
+ /**
455
+ * A memory row inside an open popup, found by (part of) its content text.
456
+ * `scope` is the popup Locator returned by `openUserMemoriesPopup`.
457
+ */
458
+ declare function memoryRowByContent(scope: Locator, content: string): Locator;
459
+ /**
460
+ * Returns false when the Memory rail item isn't rendered in the tenant
461
+ * settings dialog (non-admin viewer).
462
+ */
463
+ declare function isTenantMemoryTabVisible(page: Page): Promise<boolean>;
464
+ /**
465
+ * Open the Memory tab from the tenant settings rail. Assumes the tenant
466
+ * settings dialog is already open. Completion is gated on the Global sub-tab
467
+ * trigger rendering (it appears once the memsearch status check resolves).
468
+ */
469
+ declare function switchToTenantMemoryTab(page: Page): Promise<void>;
470
+ /**
471
+ * Switch between the Memory tab's Global / Agent sub-tabs. Completion is
472
+ * gated on the target section's testid rendering.
473
+ */
474
+ declare function switchToMemoryAdminSubTab(page: Page, subTab: MemoryAdminSubTab): Promise<void>;
475
+ /**
476
+ * Search the users table and gate on the expected user's row appearing.
477
+ * Terms shorter than three characters search as empty (the Management tab's
478
+ * debounce contract), so pass at least three characters.
479
+ */
480
+ declare function searchMemoryAdminUsers(page: Page, term: string, expectedUsername: string): Promise<void>;
481
+ /**
482
+ * Open the global memories popup for a user's row and return the popup's
483
+ * Locator — pass it as the `popup` argument of every helper below so their
484
+ * queries stay pinned to the popup instead of the dialogs underneath.
485
+ * Completion is gated on the popup's list state rendering (rows, the empty
486
+ * state, or the loading skeletons resolving into either).
487
+ */
488
+ declare function openUserMemoriesPopup(page: Page, username: string): Promise<Locator>;
489
+ /** Close the user memories popup (Escape) and gate on it disappearing. */
490
+ declare function closeUserMemoriesPopup(page: Page): Promise<void>;
491
+ /**
492
+ * Add a global memory for the popup's user: opens the Add Memory dialog,
493
+ * fills the content (minimum 10 characters), saves, and gates on the dialog
494
+ * closing and the new row appearing in the popup's list.
495
+ */
496
+ declare function addUserGlobalMemory(page: Page, popup: Locator, content: string): Promise<void>;
497
+ /**
498
+ * Edit a global memory found by its current content: three-dots → Edit,
499
+ * replace the content, save, and gate on the dialog closing and the updated
500
+ * row appearing in the popup's list.
501
+ */
502
+ declare function editUserGlobalMemory(page: Page, popup: Locator, currentContent: string, newContent: string): Promise<void>;
503
+ /**
504
+ * Delete a global memory found by its content: three-dots → Delete, confirm
505
+ * in the Delete Memory dialog, and gate on the confirmation closing and the
506
+ * row leaving the popup's list.
507
+ */
508
+ declare function deleteUserGlobalMemory(page: Page, popup: Locator, content: string): Promise<void>;
509
+ /**
510
+ * Toggle one of the user's memory setting switches inside the popup and
511
+ * gate on its `aria-checked` state flipping (which only happens after the
512
+ * settings mutation resolves and the query refetches). Returns the new
513
+ * checked state.
514
+ */
515
+ declare function toggleUserMemoryAdminSetting(page: Page, popup: Locator, setting: MemoryAdminSetting): Promise<boolean>;
516
+ /**
517
+ * Filter the agents table to one agent via the autocomplete: types the name,
518
+ * clicks the matching option, and gates on the selected chip rendering.
519
+ */
520
+ declare function filterAgentMemories(page: Page, agentName: string): Promise<void>;
521
+ /** Clear the agents autocomplete filter (back to the full agents list). */
522
+ declare function clearAgentMemoriesFilter(page: Page): Promise<void>;
523
+ /**
524
+ * Open the memories popup for an agent's row and return the popup's Locator
525
+ * — pass it as the `popup` argument of `addAgentMemoryFromPopup` and scope
526
+ * any further queries to it. Completion is gated on the `ManageMemories`
527
+ * editor rendering its user filter combobox.
528
+ */
529
+ declare function openAgentMemoriesPopup(page: Page, mentorUniqueId: string): Promise<Locator>;
530
+ /** Close the agent memories popup (Escape) and gate on it disappearing. */
531
+ declare function closeAgentMemoriesPopup(page: Page): Promise<void>;
532
+ /**
533
+ * Add an agent memory through the popup's `ManageMemories` editor: opens its
534
+ * Add Memory dialog, optionally picks a category, fills the content (minimum
535
+ * 10 characters), saves, and gates on the dialog closing and the content
536
+ * appearing in the popup.
537
+ */
538
+ declare function addAgentMemoryFromPopup(page: Page, popup: Locator, content: string, categoryName?: string): Promise<void>;
539
+
386
540
  /**
387
541
  * Check if the Sandbox tab is visible in the edit-mentor modal.
388
542
  * Returns true if the tab exists and is visible (i.e. mentor has is_claw_enabled === true).
@@ -1198,6 +1352,14 @@ declare const VOICE_LABELS: {
1198
1352
  readonly openai: "OpenAI Voice";
1199
1353
  readonly google: "Google Voice";
1200
1354
  };
1355
+ readonly voiceInstructions: {
1356
+ readonly label: "Voice Instructions";
1357
+ readonly presets: {
1358
+ readonly warm: "Warm and encouraging";
1359
+ readonly calm: "Calm and measured";
1360
+ readonly energetic: "Energetic and upbeat";
1361
+ };
1362
+ };
1201
1363
  readonly saveVoiceButton: RegExp;
1202
1364
  readonly callConfigSaveCreate: "Save";
1203
1365
  readonly callConfigSaveUpdate: "Save changes";
@@ -1227,6 +1389,7 @@ declare const VOICE_LABELS: {
1227
1389
  };
1228
1390
  };
1229
1391
  type VoiceProvider = keyof typeof VOICE_LABELS.providers;
1392
+ type VoiceInstructionsPreset = keyof typeof VOICE_LABELS.voiceInstructions.presets;
1230
1393
  type CallMode = keyof typeof VOICE_LABELS.modeOptions;
1231
1394
  type TtsProvider = keyof typeof VOICE_LABELS.ttsOptions;
1232
1395
  type SttProvider = TtsProvider;
@@ -1322,6 +1485,29 @@ declare function selectVoice(scope: Page | Locator, voiceName: string): Promise<
1322
1485
  * Playwright.
1323
1486
  */
1324
1487
  declare function previewVoice(scope: Page | Locator, voiceName: string): Promise<void>;
1488
+ /**
1489
+ * Open the "Voice Instructions" editor modal from its prompt card on the
1490
+ * Voice sub-tab. The card is only rendered when the OpenAI or Google
1491
+ * provider is selected. Mirrors the Prompts / Screen share card pattern:
1492
+ * an "Edit <label>" button popping the rich-text modal.
1493
+ */
1494
+ declare function openVoiceInstructionsEditor(scope: Page | Locator): Promise<void>;
1495
+ /**
1496
+ * Replace the "Voice Instructions" text via the editor modal and confirm.
1497
+ * The new value is written to local form state; call `saveVoiceSettings`
1498
+ * afterwards to persist. Pass an empty string to clear the stored
1499
+ * instructions (saving then sends `""`).
1500
+ */
1501
+ declare function setVoiceInstructions(scope: Page | Locator, text: string): Promise<void>;
1502
+ /**
1503
+ * Assert the voice-instructions prompt card shows the given text.
1504
+ */
1505
+ declare function expectVoiceInstructionsValue(scope: Page | Locator, text: string): Promise<void>;
1506
+ /**
1507
+ * Click one of the example preset chips under the voice-instructions
1508
+ * textarea; the chip's canned text replaces the textarea content.
1509
+ */
1510
+ declare function applyVoiceInstructionsPreset(scope: Page | Locator, preset: VoiceInstructionsPreset): Promise<void>;
1325
1511
  /**
1326
1512
  * Click the Save button on the Voice sub-tab. Asserts the button is
1327
1513
  * enabled first (a no-op on a pristine form would be a test bug).
@@ -2569,6 +2755,14 @@ declare const LTI_LABELS: {
2569
2755
  readonly keys: "No LTI keys yet.";
2570
2756
  readonly tools: "No LTI tools yet.";
2571
2757
  };
2758
+ /** Badge text for the async-create link status. */
2759
+ readonly status: {
2760
+ readonly pending: "Pending";
2761
+ readonly building: "Building";
2762
+ readonly ready: "Ready";
2763
+ readonly failed: "Failed";
2764
+ };
2765
+ readonly retry: "Retry";
2572
2766
  };
2573
2767
  /** data-testid values rendered by the LTI components. */
2574
2768
  declare const LTI_TEST_IDS: {
@@ -2587,6 +2781,9 @@ declare const LTI_TEST_IDS: {
2587
2781
  readonly row: "lti-link-row";
2588
2782
  readonly modal: "lti-link-modal";
2589
2783
  readonly nameInput: "lti-link-name-input";
2784
+ readonly status: "lti-link-status";
2785
+ readonly retryButton: "lti-link-retry-button";
2786
+ readonly refreshButton: "lti-links-refresh-button";
2590
2787
  };
2591
2788
  readonly keys: {
2592
2789
  readonly section: "lti-keys-section";
@@ -2683,7 +2880,12 @@ declare function openEditLinkModal(scope: Page | Locator, name: string): Promise
2683
2880
  /** Type a name into the (already-open) link modal. */
2684
2881
  declare function fillLinkName(scope: Page | Locator, name: string): Promise<void>;
2685
2882
  declare function submitLinkModal(scope: Page | Locator): Promise<void>;
2686
- /** Full create-link flow. */
2883
+ /**
2884
+ * Full create-link flow. Creation is asynchronous on the backend (202 +
2885
+ * celery build): the modal closes immediately and the row appears with a
2886
+ * Pending/Building status badge. Follow with `waitForLinkReady` before
2887
+ * asserting on `target_link_uri` or editing the link.
2888
+ */
2687
2889
  declare function createLink(scope: Page | Locator, name: string): Promise<void>;
2688
2890
  /** Full rename-link flow (opens via the row's edit pencil). */
2689
2891
  declare function editLink(scope: Page | Locator, currentName: string, newName: string): Promise<void>;
@@ -2691,6 +2893,25 @@ declare function expectLinksEmpty(scope: Page | Locator): Promise<void>;
2691
2893
  declare function expectLinkInList(scope: Page | Locator, name: string): Promise<void>;
2692
2894
  declare function expectLinkNotInList(scope: Page | Locator, name: string): Promise<void>;
2693
2895
  declare function expectLinkTargetUri(scope: Page | Locator, name: string, targetUri: string): Promise<void>;
2896
+ /** Status badge for a link's async-create build. */
2897
+ type LtiLinkStatus = 'pending' | 'building' | 'ready' | 'failed';
2898
+ declare function expectLinkStatus(scope: Page | Locator, name: string, status: LtiLinkStatus): Promise<void>;
2899
+ /** The Refresh button shown in the Links header while a build is in flight. */
2900
+ declare function getLinksRefreshButton(scope: Page | Locator): Locator;
2901
+ /** Manually refresh the links list (visible only while a build is in flight). */
2902
+ declare function refreshLinks(scope: Page | Locator): Promise<void>;
2903
+ /**
2904
+ * Wait for the async link build to finish (`ready`). The build creates an edX
2905
+ * course via celery, so allow a generous timeout (default 3 minutes). The UI
2906
+ * does not auto-poll — this helper clicks the header Refresh button every few
2907
+ * seconds until the row's badge reports `ready` (throws if it turns `failed`).
2908
+ */
2909
+ declare function waitForLinkReady(scope: Page | Locator, name: string, timeoutMs?: number): Promise<void>;
2910
+ /**
2911
+ * Retry a failed link build via the row's Retry button (deletes the failed
2912
+ * entity and re-posts the original payload).
2913
+ */
2914
+ declare function retryFailedLink(scope: Page | Locator, name: string): Promise<void>;
2694
2915
  declare function getKeysSection(scope: Page | Locator): Locator;
2695
2916
  declare function getCreateKeyButton(scope: Page | Locator): Locator;
2696
2917
  declare function getKeysEmptyState(scope: Page | Locator): Locator;
@@ -3124,5 +3345,5 @@ declare function generateProjectConfig(platform: string, deviceName: string, dep
3124
3345
  */
3125
3346
  declare function createPlaywrightConfig(options: CreatePlaywrightConfigOptions): PlaywrightTestConfig;
3126
3347
 
3127
- export { AuthFlowBuilder, CHAT_PRIVACY_LABELS, CustomReporter, EVALS_LABELS, GRADER_LABELS, LTI_LABELS, LTI_TEST_IDS, MailsacClient, PRIVACY_LABELS, SCREENSHARE_LABELS, SPEND_LIMITS_LABELS, SUPPORT_LABELS, TASKS_LABELS, VOICE_LABELS, addGraderCriterion, addManualScore, addMemory, addQaPairsManually, addSkillToAgent, addTextResource, addUserSpendLimit, addUserSpendLimitFromTenantBilling, agentLimitsRow, agentLimitsSection, archiveFirstMemory, archiveMemoryByContent, billingAutoRechargeSection, billingCreditsSection, billingPlanSection, buildReportUrl, canChatWithEmbedMentor, cancelDeleteEvaluation, cancelDeleteInstance, cancelDeleteSkill, cancelDisconnectInstance, cancelEnableChatPrivacyMidSession, cancelKeyDelete, cancelLlmJudge, cancelNewInstanceDialog, cancelStartEvaluation, checkAdminStatus, checkRunStatus, clearAgentLimitsFilter, clearDateRangeFilter, clearGradeResultOverride, clearInstanceSearch, clearUserFilter, clickBackHome, clickBillingAddCredits, clickBillingManageBilling, clickBillingManageUsage, clickBillingUpgrade, clickChatPrivacyToggle, clickDownloadAgain, clickManualDownloadLink, clickSetSpendLimitForFilteredAgent, closeAgentLimitsPopup, closeBenchmarkItemsDialog, closeCreditBalanceDropdown, closeEvaluationDetailDialog, closeKeyDetail, closeManageBenchmarksDialog, closeWithEsc, confirmEnableChatPrivacyMidSession, confirmKeyDelete, connectToInstance, copyEndpoint, createAgentSpendLimitViaFilter, createAuthSetup, createBenchmark, createEnvConfig, createInstance, createKey, createLink, createPlaywrightConfig, createSkill, createSupportTicketViaChatAndVerify, createTool, creditBalancePanel, creditBalancePlanBadge, creditBalanceTrigger, deleteAgentSpendLimit, deleteAgentSpendLimitFromTenantBilling, deleteEvaluation, deleteFirstMemory, deleteGraderCriterion, deleteInstance, deleteKey, deleteMemoryByContent, deleteQaItem, deleteResource, deleteSkill, deleteTask, deleteUserSpendLimit, deleteWorkspaceSpendLimit, disableSkill, disableSupport, disconnectInstance, editAgentPrompt, editGraderCriterion, editInstance, editLink, editSkill, editTextResource, editTool, editUserSpendLimit, enableSkill, enableSupport, expandReview, expandTrace, expectAgentLimitsRowContent, 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, expectWorkspaceActualSpendStats, expectWorkspaceSpendStats, exportRunCsv, fillLinkName, fillToolForm, filterAgentLimits, 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, isSpendLimitsTabVisible, isSupportEnabled, isSupportTabVisible, isTasksTabVisible, isVoiceTabVisible, logger, loginWithEmailAndPassword, loginWithMicrosoftIdp, navigateToAccountComponent, navigateToAuditLog, navigateToAuditLogAndWaitForData, navigateToDataReports, navigateToReportDownload, openAddItemsDialog, openAddMemoryDialog, openAgentLimitsManage, 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, setAgentLimitsRowEnabled, setAgentSpendLimit, setAgentSpendLimitFromTenantBilling, setBlockMessage, setCallLanguage, setCatalogSkillEnabled, setEnableVideo, setEntitySelected, setGradingEnabled, setOutputFilterEnabled, setScreenSharePrompt, setSupportEnabled, setTenantChatPrivacyEnabled, setTicketStatus, setUseFunctionCallingEnabled, setUserSpendLimitEnabled, setWorkspaceSpendLimit, setupSandboxInstance, shouldAddNewRowWhenClickingAddRowButton, shouldAllowEditingCellValuesInCSVEditor, shouldCancelCombiningReports, shouldCloseCSVEditorWhenClickingCloseButton, shouldCloseCSVEditorWithoutSavingWhenClickingCancel, shouldCombineRecommendationReports, shouldDirectlyDownloadChatHistoryReportWithoutCSVEditor, shouldDisableOtherDownloadButtonsWhileGeneratingReport, shouldDisplayCSVInEditableTableFormat, shouldDisplayReportCards, shouldHaveCombinedReportDataTestIds, shouldOpenCSVEditorDialog, shouldOpenCSVEditorForUserMetadataReport, shouldSaveEditedCSVAndTriggerDownload, shouldShowCombiningReportsDialog, shouldVerifyCSVEditorDialogAccessibility, signUpWithEmailAndPassword, spendLimitsTabBody, startEvaluation, submitLinkModal, submitLlmJudge, submitToolModal, switchToAddItemsSubTab, switchToAgentLimits, switchToAgentSkillsSubTab, switchToAvailableSkillsSubTab, switchToEvaluationTab, switchToGraderSubTab, switchToGraderTab, switchToLtiSubTab, switchToLtiTab, switchToMemoryTab, switchToPlanAndCredits, switchToPrivacyTab, switchToPrivateModeTab, switchToSandboxTab, switchToScreenShareTab, switchToSkillResourcesSubTab, switchToSkillsTab, switchToSpendLimitsSubTab, switchToSpendLimitsTab, switchToSupportTab, switchToTasksTab, switchToVoiceSubTab, switchToVoiceTab, switchToWorkspaceSpendLimits, teardownSandboxInstance, test, toggleAutoPush, toggleMemorySwitch, toggleSkill, toolFields, uploadAssetResource, uploadQaCsv, userSpendLimitRow, 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, workspaceSpendLimitSection };
3128
- 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, SpendLimitEnforcement, SpendLimitInput, SpendLimitInterval, SpendLimitSubTab, StepFn, SttProvider, SupportTicketStatus, TaskRepeat, TaskStatus, TextResourceValues, TtsProvider, UserSpendLimitInput, VoiceProvider };
3348
+ export { AuthFlowBuilder, CHAT_PRIVACY_LABELS, CustomReporter, EVALS_LABELS, GRADER_LABELS, LTI_LABELS, LTI_TEST_IDS, MEMORY_ADMIN_LABELS, MailsacClient, PRIVACY_LABELS, SCREENSHARE_LABELS, SPEND_LIMITS_LABELS, SUPPORT_LABELS, TASKS_LABELS, VOICE_LABELS, addAgentMemoryFromPopup, addGraderCriterion, addManualScore, addMemory, addQaPairsManually, addSkillToAgent, addTextResource, addUserGlobalMemory, addUserSpendLimit, addUserSpendLimitFromTenantBilling, agentLimitsRow, agentLimitsSection, applyVoiceInstructionsPreset, archiveFirstMemory, archiveMemoryByContent, billingAutoRechargeSection, billingCreditsSection, billingPlanSection, buildReportUrl, canChatWithEmbedMentor, cancelDeleteEvaluation, cancelDeleteInstance, cancelDeleteSkill, cancelDisconnectInstance, cancelEnableChatPrivacyMidSession, cancelKeyDelete, cancelLlmJudge, cancelNewInstanceDialog, cancelStartEvaluation, checkAdminStatus, checkRunStatus, clearAgentLimitsFilter, clearAgentMemoriesFilter, clearDateRangeFilter, clearGradeResultOverride, clearInstanceSearch, clearUserFilter, clickBackHome, clickBillingAddCredits, clickBillingManageBilling, clickBillingManageUsage, clickBillingUpgrade, clickChatPrivacyToggle, clickDownloadAgain, clickManualDownloadLink, clickSetSpendLimitForFilteredAgent, closeAgentLimitsPopup, closeAgentMemoriesPopup, closeBenchmarkItemsDialog, closeCreditBalanceDropdown, closeEvaluationDetailDialog, closeKeyDetail, closeManageBenchmarksDialog, closeUserMemoriesPopup, closeWithEsc, confirmEnableChatPrivacyMidSession, confirmKeyDelete, connectToInstance, copyEndpoint, createAgentSpendLimitViaFilter, createAuthSetup, createBenchmark, createEnvConfig, createInstance, createKey, createLink, createPlaywrightConfig, createSkill, createSupportTicketViaChatAndVerify, createTool, creditBalancePanel, creditBalancePlanBadge, creditBalanceTrigger, deleteAgentSpendLimit, deleteAgentSpendLimitFromTenantBilling, deleteEvaluation, deleteFirstMemory, deleteGraderCriterion, deleteInstance, deleteKey, deleteMemoryByContent, deleteQaItem, deleteResource, deleteSkill, deleteTask, deleteUserGlobalMemory, deleteUserSpendLimit, deleteWorkspaceSpendLimit, disableSkill, disableSupport, disconnectInstance, editAgentPrompt, editGraderCriterion, editInstance, editLink, editSkill, editTextResource, editTool, editUserGlobalMemory, editUserSpendLimit, enableSkill, enableSupport, expandReview, expandTrace, expectAgentLimitsRowContent, 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, expectLinkStatus, 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, expectVoiceInstructionsValue, expectVoiceProviderSelected, expectVoiceVisible, expectWorkspaceActualSpendStats, expectWorkspaceSpendStats, exportRunCsv, fillLinkName, fillToolForm, filterAgentLimits, filterAgentMemories, 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, getLinksRefreshButton, 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, isSpendLimitsTabVisible, isSupportEnabled, isSupportTabVisible, isTasksTabVisible, isTenantMemoryTabVisible, isVoiceTabVisible, logger, loginWithEmailAndPassword, loginWithMicrosoftIdp, memoryAdminAgentRow, memoryAdminAgentSection, memoryAdminGlobalSection, memoryAdminUserRow, memoryRowByContent, navigateToAccountComponent, navigateToAuditLog, navigateToAuditLogAndWaitForData, navigateToDataReports, navigateToReportDownload, openAddItemsDialog, openAddMemoryDialog, openAgentLimitsManage, openAgentMemoriesPopup, 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, openUserMemoriesPopup, openVoiceInstructionsEditor, overrideGradeResult, parseReportUrlParams, previewCallConfigVoiceInline, previewMentorVoiceInline, previewVoice, pushConfiguration, readEndpointUrl, readKeyPublicJwk, readKeyPublicKey, refreshEvaluationDetail, refreshLinks, refreshTickets, reliableClick, reliableFill, removeSkillFromAgent, removeTraceScore, renameKey, replyToTicket, requestSupportTicketViaChat, resetCallConfig, retry, retryFailedLink, runConnectedInstanceChecks, runInstanceChecks, safeWaitForURL, saveCallConfig, saveGraderConfig, saveScreenSharePrompts, saveVoiceSettings, scheduleTask, searchBenchmarks, searchInstances, searchMemoryAdminUsers, searchTasks, searchVoices, selectBenchmark, selectCallMode, selectDateFromCalendar, selectJudgeLlm, selectLLMModel, selectLlmProvider, selectPrivacyAction, selectPrivateMode, selectSlashSkill, selectSttProvider, selectTaskInList, selectToolKeySetMode, selectToolSigningKey, selectTtsProvider, selectVoice, selectVoiceProvider, sendAgentChatMessage, setAgentLimitsRowEnabled, setAgentSpendLimit, setAgentSpendLimitFromTenantBilling, setBlockMessage, setCallLanguage, setCatalogSkillEnabled, setEnableVideo, setEntitySelected, setGradingEnabled, setOutputFilterEnabled, setScreenSharePrompt, setSupportEnabled, setTenantChatPrivacyEnabled, setTicketStatus, setUseFunctionCallingEnabled, setUserSpendLimitEnabled, setVoiceInstructions, setWorkspaceSpendLimit, setupSandboxInstance, shouldAddNewRowWhenClickingAddRowButton, shouldAllowEditingCellValuesInCSVEditor, shouldCancelCombiningReports, shouldCloseCSVEditorWhenClickingCloseButton, shouldCloseCSVEditorWithoutSavingWhenClickingCancel, shouldCombineRecommendationReports, shouldDirectlyDownloadChatHistoryReportWithoutCSVEditor, shouldDisableOtherDownloadButtonsWhileGeneratingReport, shouldDisplayCSVInEditableTableFormat, shouldDisplayReportCards, shouldHaveCombinedReportDataTestIds, shouldOpenCSVEditorDialog, shouldOpenCSVEditorForUserMetadataReport, shouldSaveEditedCSVAndTriggerDownload, shouldShowCombiningReportsDialog, shouldVerifyCSVEditorDialogAccessibility, signUpWithEmailAndPassword, spendLimitsTabBody, startEvaluation, submitLinkModal, submitLlmJudge, submitToolModal, switchToAddItemsSubTab, switchToAgentLimits, switchToAgentSkillsSubTab, switchToAvailableSkillsSubTab, switchToEvaluationTab, switchToGraderSubTab, switchToGraderTab, switchToLtiSubTab, switchToLtiTab, switchToMemoryAdminSubTab, switchToMemoryTab, switchToPlanAndCredits, switchToPrivacyTab, switchToPrivateModeTab, switchToSandboxTab, switchToScreenShareTab, switchToSkillResourcesSubTab, switchToSkillsTab, switchToSpendLimitsSubTab, switchToSpendLimitsTab, switchToSupportTab, switchToTasksTab, switchToTenantMemoryTab, switchToVoiceSubTab, switchToVoiceTab, switchToWorkspaceSpendLimits, teardownSandboxInstance, test, toggleAutoPush, toggleMemorySwitch, toggleSkill, toggleUserMemoryAdminSetting, toolFields, uploadAssetResource, uploadQaCsv, userSpendLimitRow, 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, waitForLinkReady, waitForPageLoad, waitForPageReady, waitForReportDownload, waitForTicketInList, workspaceSpendLimitSection };
3349
+ export type { AgentPromptField, AuthFlowType, AuthSetupConfig, BillingAutoRechargeStatus, CallMode, ChatPrivacyMode, ChatPrivacySource, ChatPrivacyToggleState, CreatePlaywrightConfigOptions, CreditBalancePlan, EnvConfig, EvalReviewStatus, EvalRunStatus, GraderCriterionInput, GraderFeedbackMode, GraderGradingMode, GraderSubTab, LlmProvider, LtiEndpoint, LtiKeySetMode, LtiLinkStatus, LtiSubTab, LtiToolFormData, MemoryAdminSetting, MemoryAdminSubTab, PlatformConfig, PrivacyAction, PrivacyEntity, ReportDownloadOptions, SafeWaitForURLOptions, ScreenSharePromptField, SignUpCredentials, SkillFormValues, SpendLimitEnforcement, SpendLimitInput, SpendLimitInterval, SpendLimitSubTab, StepFn, SttProvider, SupportTicketStatus, TaskRepeat, TaskStatus, TextResourceValues, TtsProvider, UserSpendLimitInput, VoiceInstructionsPreset, VoiceProvider };