@iblai/mcp 1.1.0 → 1.1.4
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.
- package/README.md +95 -142
- package/dist/index.js +35 -9
- package/dist/index.js.map +1 -1
- package/dist/prompts/create-playwright-test.d.ts.map +1 -1
- package/dist/prompts/create-playwright-test.js +1 -5
- package/dist/prompts/create-playwright-test.js.map +1 -1
- package/dist/prompts/setup-new-app.d.ts.map +1 -1
- package/dist/prompts/setup-new-app.js.map +1 -1
- package/dist/resources/web-containers.d.ts.map +1 -1
- package/dist/resources/web-containers.js +60 -0
- package/dist/resources/web-containers.js.map +1 -1
- package/dist/resources/web-utils.d.ts.map +1 -1
- package/dist/resources/web-utils.js +37 -0
- package/dist/resources/web-utils.js.map +1 -1
- package/dist/tools/api-query-info.d.ts.map +1 -1
- package/dist/tools/api-query-info.js +0 -170
- package/dist/tools/api-query-info.js.map +1 -1
- package/dist/tools/component-info.d.ts.map +1 -1
- package/dist/tools/component-info.js +300 -5
- package/dist/tools/component-info.js.map +1 -1
- package/dist/tools/hook-info.d.ts.map +1 -1
- package/dist/tools/hook-info.js +132 -125
- package/dist/tools/hook-info.js.map +1 -1
- package/dist/tools/playwright-helper-info.d.ts.map +1 -1
- package/dist/tools/playwright-helper-info.js +157 -0
- package/dist/tools/playwright-helper-info.js.map +1 -1
- package/package.json +1 -1
package/dist/tools/hook-info.js
CHANGED
|
@@ -686,6 +686,21 @@ await resetPassword({
|
|
|
686
686
|
\`\`\`
|
|
687
687
|
|
|
688
688
|
**File Location**: \`packages/data-layer/src/features/user/api-slice.ts\``,
|
|
689
|
+
useSelfRetireMutation: `# useSelfRetireMutation Hook (RTK Query)
|
|
690
|
+
|
|
691
|
+
Schedules the current user's account for deletion (self-retirement).
|
|
692
|
+
|
|
693
|
+
\`\`\`typescript
|
|
694
|
+
import { useSelfRetireMutation } from '@iblai/iblai-js/data-layer';
|
|
695
|
+
|
|
696
|
+
const [selfRetire, { isLoading }] = useSelfRetireMutation();
|
|
697
|
+
|
|
698
|
+
const result = await selfRetire();
|
|
699
|
+
// result.data: { message?: string }
|
|
700
|
+
// result.error: RTK Query error if request failed
|
|
701
|
+
\`\`\`
|
|
702
|
+
|
|
703
|
+
**File Location**: \`packages/data-layer/src/features/retirement/api-slice.ts\``,
|
|
689
704
|
useUploadProfileImageMutation: `# useUploadProfileImageMutation Hook (RTK Query)
|
|
690
705
|
|
|
691
706
|
Uploads user profile image.
|
|
@@ -956,130 +971,6 @@ const { data: permissions, isLoading } = useGetRbacPermissionsQuery({
|
|
|
956
971
|
\`\`\`
|
|
957
972
|
|
|
958
973
|
**File Location**: \`packages/data-layer/src/features/core/api-slice.ts\``,
|
|
959
|
-
// ============================================================================
|
|
960
|
-
// RTK QUERY HOOKS - MEMORY
|
|
961
|
-
// ============================================================================
|
|
962
|
-
useGetMemoriesQuery: `# useGetMemoriesQuery Hook (RTK Query)
|
|
963
|
-
|
|
964
|
-
Fetches mentor memories/context for RAG.
|
|
965
|
-
|
|
966
|
-
\`\`\`typescript
|
|
967
|
-
import { useGetMemoriesQuery } from '@iblai/iblai-js/data-layer';
|
|
968
|
-
|
|
969
|
-
const { data: memories, isLoading } = useGetMemoriesQuery({
|
|
970
|
-
org: string,
|
|
971
|
-
mentorId: string,
|
|
972
|
-
page?: number,
|
|
973
|
-
pageSize?: number,
|
|
974
|
-
});
|
|
975
|
-
|
|
976
|
-
// Returns paginated list of memories
|
|
977
|
-
\`\`\`
|
|
978
|
-
|
|
979
|
-
**File Location**: \`packages/data-layer/src/features/memory/api-slice.ts\``,
|
|
980
|
-
useGetMemoryCategoriesQuery: `# useGetMemoryCategoriesQuery Hook (RTK Query)
|
|
981
|
-
|
|
982
|
-
Fetches available memory categories.
|
|
983
|
-
|
|
984
|
-
\`\`\`typescript
|
|
985
|
-
import { useGetMemoryCategoriesQuery } from '@iblai/iblai-js/data-layer';
|
|
986
|
-
|
|
987
|
-
const { data: categories, isLoading } = useGetMemoryCategoriesQuery({
|
|
988
|
-
org: string,
|
|
989
|
-
mentorId: string,
|
|
990
|
-
});
|
|
991
|
-
|
|
992
|
-
// Returns array of memory categories
|
|
993
|
-
\`\`\`
|
|
994
|
-
|
|
995
|
-
**File Location**: \`packages/data-layer/src/features/memory/api-slice.ts\``,
|
|
996
|
-
useCreateMemoryMutation: `# useCreateMemoryMutation Hook (RTK Query)
|
|
997
|
-
|
|
998
|
-
Creates a new memory entry.
|
|
999
|
-
|
|
1000
|
-
\`\`\`typescript
|
|
1001
|
-
import { useCreateMemoryMutation } from '@iblai/iblai-js/data-layer';
|
|
1002
|
-
|
|
1003
|
-
const [createMemory, { isLoading }] = useCreateMemoryMutation();
|
|
1004
|
-
|
|
1005
|
-
await createMemory({
|
|
1006
|
-
org: string,
|
|
1007
|
-
mentorId: string,
|
|
1008
|
-
content: string,
|
|
1009
|
-
category?: string,
|
|
1010
|
-
}).unwrap();
|
|
1011
|
-
\`\`\`
|
|
1012
|
-
|
|
1013
|
-
**File Location**: \`packages/data-layer/src/features/memory/api-slice.ts\``,
|
|
1014
|
-
useUpdateMemoryEntryMutation: `# useUpdateMemoryEntryMutation Hook (RTK Query)
|
|
1015
|
-
|
|
1016
|
-
Updates an existing memory entry.
|
|
1017
|
-
|
|
1018
|
-
\`\`\`typescript
|
|
1019
|
-
import { useUpdateMemoryEntryMutation } from '@iblai/iblai-js/data-layer';
|
|
1020
|
-
|
|
1021
|
-
const [updateMemory, { isLoading }] = useUpdateMemoryEntryMutation();
|
|
1022
|
-
|
|
1023
|
-
await updateMemory({
|
|
1024
|
-
org: string,
|
|
1025
|
-
mentorId: string,
|
|
1026
|
-
memoryId: string,
|
|
1027
|
-
content?: string,
|
|
1028
|
-
category?: string,
|
|
1029
|
-
}).unwrap();
|
|
1030
|
-
\`\`\`
|
|
1031
|
-
|
|
1032
|
-
**File Location**: \`packages/data-layer/src/features/memory/api-slice.ts\``,
|
|
1033
|
-
useDeleteMemoryMutation: `# useDeleteMemoryMutation Hook (RTK Query)
|
|
1034
|
-
|
|
1035
|
-
Deletes a memory entry.
|
|
1036
|
-
|
|
1037
|
-
\`\`\`typescript
|
|
1038
|
-
import { useDeleteMemoryMutation } from '@iblai/iblai-js/data-layer';
|
|
1039
|
-
|
|
1040
|
-
const [deleteMemory, { isLoading }] = useDeleteMemoryMutation();
|
|
1041
|
-
|
|
1042
|
-
await deleteMemory({
|
|
1043
|
-
org: string,
|
|
1044
|
-
mentorId: string,
|
|
1045
|
-
memoryId: string,
|
|
1046
|
-
}).unwrap();
|
|
1047
|
-
\`\`\`
|
|
1048
|
-
|
|
1049
|
-
**File Location**: \`packages/data-layer/src/features/memory/api-slice.ts\``,
|
|
1050
|
-
useGetMentorUserSettingsQuery: `# useGetMentorUserSettingsQuery Hook (RTK Query)
|
|
1051
|
-
|
|
1052
|
-
Fetches user-specific settings for a mentor.
|
|
1053
|
-
|
|
1054
|
-
\`\`\`typescript
|
|
1055
|
-
import { useGetMentorUserSettingsQuery } from '@iblai/iblai-js/data-layer';
|
|
1056
|
-
|
|
1057
|
-
const { data: settings, isLoading } = useGetMentorUserSettingsQuery({
|
|
1058
|
-
org: string,
|
|
1059
|
-
mentorId: string,
|
|
1060
|
-
});
|
|
1061
|
-
|
|
1062
|
-
// Returns user preferences for this mentor
|
|
1063
|
-
\`\`\`
|
|
1064
|
-
|
|
1065
|
-
**File Location**: \`packages/data-layer/src/features/memory/api-slice.ts\``,
|
|
1066
|
-
useUpdateMentorUserSettingsMutation: `# useUpdateMentorUserSettingsMutation Hook (RTK Query)
|
|
1067
|
-
|
|
1068
|
-
Updates user-specific settings for a mentor.
|
|
1069
|
-
|
|
1070
|
-
\`\`\`typescript
|
|
1071
|
-
import { useUpdateMentorUserSettingsMutation } from '@iblai/iblai-js/data-layer';
|
|
1072
|
-
|
|
1073
|
-
const [updateSettings, { isLoading }] = useUpdateMentorUserSettingsMutation();
|
|
1074
|
-
|
|
1075
|
-
await updateSettings({
|
|
1076
|
-
org: string,
|
|
1077
|
-
mentorId: string,
|
|
1078
|
-
// User preference fields
|
|
1079
|
-
}).unwrap();
|
|
1080
|
-
\`\`\`
|
|
1081
|
-
|
|
1082
|
-
**File Location**: \`packages/data-layer/src/features/memory/api-slice.ts\``,
|
|
1083
974
|
// ============================================================================
|
|
1084
975
|
// RTK QUERY HOOKS - MCP
|
|
1085
976
|
// ============================================================================
|
|
@@ -1858,6 +1749,113 @@ await revokeLink({
|
|
|
1858
1749
|
\`\`\`
|
|
1859
1750
|
|
|
1860
1751
|
**File Location**: \`packages/data-layer/src/features/mentor/api-slice.ts\``,
|
|
1752
|
+
// ============================================================================
|
|
1753
|
+
// WORKFLOW HOOKS
|
|
1754
|
+
// ============================================================================
|
|
1755
|
+
useActivateWorkflowMutation: `# useActivateWorkflowMutation Hook (RTK Query)
|
|
1756
|
+
|
|
1757
|
+
Activates a workflow, making it available for execution. Validates the workflow before activation.
|
|
1758
|
+
|
|
1759
|
+
\`\`\`typescript
|
|
1760
|
+
import { useActivateWorkflowMutation } from '@iblai/iblai-js/data-layer';
|
|
1761
|
+
|
|
1762
|
+
const [activateWorkflow, { isLoading, error }] = useActivateWorkflowMutation();
|
|
1763
|
+
|
|
1764
|
+
const result = await activateWorkflow({
|
|
1765
|
+
org: string,
|
|
1766
|
+
uniqueId: string,
|
|
1767
|
+
}).unwrap();
|
|
1768
|
+
// result: { is_valid: boolean, errors: string[], warnings: string[], workflow?: Workflow }
|
|
1769
|
+
\`\`\`
|
|
1770
|
+
|
|
1771
|
+
**File Location**: \`packages/data-layer/src/features/workflows/api-slice.ts\``,
|
|
1772
|
+
useDeactivateWorkflowMutation: `# useDeactivateWorkflowMutation Hook (RTK Query)
|
|
1773
|
+
|
|
1774
|
+
Deactivates a workflow, preventing it from being executed.
|
|
1775
|
+
|
|
1776
|
+
\`\`\`typescript
|
|
1777
|
+
import { useDeactivateWorkflowMutation } from '@iblai/iblai-js/data-layer';
|
|
1778
|
+
|
|
1779
|
+
const [deactivateWorkflow, { isLoading, error }] = useDeactivateWorkflowMutation();
|
|
1780
|
+
|
|
1781
|
+
const result = await deactivateWorkflow({
|
|
1782
|
+
org: string,
|
|
1783
|
+
uniqueId: string,
|
|
1784
|
+
}).unwrap();
|
|
1785
|
+
// result: { workflow: Workflow }
|
|
1786
|
+
\`\`\`
|
|
1787
|
+
|
|
1788
|
+
**File Location**: \`packages/data-layer/src/features/workflows/api-slice.ts\``,
|
|
1789
|
+
usePublishWorkflowMutation: `# usePublishWorkflowMutation Hook (RTK Query)
|
|
1790
|
+
|
|
1791
|
+
Publishes a workflow, making it publicly available. Validates before publishing. Optionally accepts an updated definition.
|
|
1792
|
+
|
|
1793
|
+
\`\`\`typescript
|
|
1794
|
+
import { usePublishWorkflowMutation } from '@iblai/iblai-js/data-layer';
|
|
1795
|
+
|
|
1796
|
+
const [publishWorkflow, { isLoading, error }] = usePublishWorkflowMutation();
|
|
1797
|
+
|
|
1798
|
+
const result = await publishWorkflow({
|
|
1799
|
+
org: string,
|
|
1800
|
+
uniqueId: string,
|
|
1801
|
+
data?: { definition?: WorkflowDefinition },
|
|
1802
|
+
}).unwrap();
|
|
1803
|
+
// result: { is_valid: boolean, errors: string[], warnings: string[], workflow?: Workflow }
|
|
1804
|
+
\`\`\`
|
|
1805
|
+
|
|
1806
|
+
**File Location**: \`packages/data-layer/src/features/workflows/api-slice.ts\``,
|
|
1807
|
+
useUnpublishWorkflowMutation: `# useUnpublishWorkflowMutation Hook (RTK Query)
|
|
1808
|
+
|
|
1809
|
+
Unpublishes a workflow, removing it from public availability.
|
|
1810
|
+
|
|
1811
|
+
\`\`\`typescript
|
|
1812
|
+
import { useUnpublishWorkflowMutation } from '@iblai/iblai-js/data-layer';
|
|
1813
|
+
|
|
1814
|
+
const [unpublishWorkflow, { isLoading, error }] = useUnpublishWorkflowMutation();
|
|
1815
|
+
|
|
1816
|
+
const result = await unpublishWorkflow({
|
|
1817
|
+
org: string,
|
|
1818
|
+
uniqueId: string,
|
|
1819
|
+
}).unwrap();
|
|
1820
|
+
// result: { workflow: Workflow }
|
|
1821
|
+
\`\`\`
|
|
1822
|
+
|
|
1823
|
+
**File Location**: \`packages/data-layer/src/features/workflows/api-slice.ts\``,
|
|
1824
|
+
useValidateWorkflowMutation: `# useValidateWorkflowMutation Hook (RTK Query)
|
|
1825
|
+
|
|
1826
|
+
Validates a workflow's structure and configuration without activating or publishing it.
|
|
1827
|
+
|
|
1828
|
+
\`\`\`typescript
|
|
1829
|
+
import { useValidateWorkflowMutation } from '@iblai/iblai-js/data-layer';
|
|
1830
|
+
|
|
1831
|
+
const [validateWorkflow, { isLoading, error }] = useValidateWorkflowMutation();
|
|
1832
|
+
|
|
1833
|
+
const result = await validateWorkflow({
|
|
1834
|
+
org: string,
|
|
1835
|
+
uniqueId: string,
|
|
1836
|
+
}).unwrap();
|
|
1837
|
+
// result: { is_valid: boolean, errors: string[], warnings: string[], workflow?: Workflow }
|
|
1838
|
+
\`\`\`
|
|
1839
|
+
|
|
1840
|
+
**File Location**: \`packages/data-layer/src/features/workflows/api-slice.ts\``,
|
|
1841
|
+
useChatWithWorkflowMutation: `# useChatWithWorkflowMutation Hook (RTK Query)
|
|
1842
|
+
|
|
1843
|
+
Sends a chat message to interact with a workflow.
|
|
1844
|
+
|
|
1845
|
+
\`\`\`typescript
|
|
1846
|
+
import { useChatWithWorkflowMutation } from '@iblai/iblai-js/data-layer';
|
|
1847
|
+
|
|
1848
|
+
const [chatWithWorkflow, { isLoading, error }] = useChatWithWorkflowMutation();
|
|
1849
|
+
|
|
1850
|
+
const result = await chatWithWorkflow({
|
|
1851
|
+
org: string,
|
|
1852
|
+
uniqueId: string,
|
|
1853
|
+
message: string,
|
|
1854
|
+
}).unwrap();
|
|
1855
|
+
// result: { response: string, workflow_id: string, session_id: string }
|
|
1856
|
+
\`\`\`
|
|
1857
|
+
|
|
1858
|
+
**File Location**: \`packages/data-layer/src/features/workflows/api-slice.ts\``,
|
|
1861
1859
|
};
|
|
1862
1860
|
export function getHookInfo(hookName) {
|
|
1863
1861
|
const info = hooks[hookName];
|
|
@@ -1897,6 +1895,7 @@ export function getHookInfo(hookName) {
|
|
|
1897
1895
|
- useUpdateUserMetadataMutation - Update profile
|
|
1898
1896
|
- useUpdateUserAccountMutation - Update account
|
|
1899
1897
|
- useResetPasswordMutation - Password reset
|
|
1898
|
+
- useSelfRetireMutation - Schedule account deletion
|
|
1900
1899
|
- useUploadProfileImageMutation - Upload avatar
|
|
1901
1900
|
- useRemoveProfileImageMutation - Remove avatar
|
|
1902
1901
|
|
|
@@ -1981,7 +1980,15 @@ export function getHookInfo(hookName) {
|
|
|
1981
1980
|
**Data Layer Hooks - Training Documents:**
|
|
1982
1981
|
- useGetTrainingDocumentsQuery - Training docs
|
|
1983
1982
|
- useUploadTrainingDocumentMutation - Upload doc
|
|
1984
|
-
- useDeleteTrainingDocumentMutation - Delete doc
|
|
1983
|
+
- useDeleteTrainingDocumentMutation - Delete doc
|
|
1984
|
+
|
|
1985
|
+
**Data Layer Hooks - Workflows:**
|
|
1986
|
+
- useActivateWorkflowMutation - Activate workflow
|
|
1987
|
+
- useDeactivateWorkflowMutation - Deactivate workflow
|
|
1988
|
+
- usePublishWorkflowMutation - Publish workflow
|
|
1989
|
+
- useUnpublishWorkflowMutation - Unpublish workflow
|
|
1990
|
+
- useValidateWorkflowMutation - Validate workflow
|
|
1991
|
+
- useChatWithWorkflowMutation - Chat with workflow`;
|
|
1985
1992
|
}
|
|
1986
1993
|
return info;
|
|
1987
1994
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hook-info.js","sourceRoot":"","sources":["../../src/tools/hook-info.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"hook-info.js","sourceRoot":"","sources":["../../src/tools/hook-info.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"playwright-helper-info.d.ts","sourceRoot":"","sources":["../../src/tools/playwright-helper-info.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;CAepC,CAAC;
|
|
1
|
+
{"version":3,"file":"playwright-helper-info.d.ts","sourceRoot":"","sources":["../../src/tools/playwright-helper-info.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;CAepC,CAAC;AA+gCF,wBAAgB,uBAAuB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAiBlE"}
|
|
@@ -815,6 +815,163 @@ async function shouldDisplayReportCards(
|
|
|
815
815
|
Verify that report cards are displayed with correct names and test IDs.
|
|
816
816
|
|
|
817
817
|
**Related:** \`navigateToDataReports\``,
|
|
818
|
+
// ============================================================================
|
|
819
|
+
// MEMORY TEST HELPERS (Profile Memory Tab)
|
|
820
|
+
// ============================================================================
|
|
821
|
+
isMemoryTabVisible: `# isMemoryTabVisible
|
|
822
|
+
|
|
823
|
+
\`\`\`typescript
|
|
824
|
+
import { isMemoryTabVisible } from '@iblai/iblai-js/playwright';
|
|
825
|
+
|
|
826
|
+
async function isMemoryTabVisible(page: Page): Promise<boolean>
|
|
827
|
+
\`\`\`
|
|
828
|
+
|
|
829
|
+
Check if the Memory tab is visible in the profile modal. Returns \`true\` if the tab exists, \`false\` otherwise. Use this to conditionally skip memory-related tests on platforms where memory is not enabled.
|
|
830
|
+
|
|
831
|
+
**Related:** \`switchToMemoryTab\``,
|
|
832
|
+
switchToMemoryTab: `# switchToMemoryTab
|
|
833
|
+
|
|
834
|
+
\`\`\`typescript
|
|
835
|
+
import { switchToMemoryTab } from '@iblai/iblai-js/playwright';
|
|
836
|
+
|
|
837
|
+
async function switchToMemoryTab(page: Page): Promise<void>
|
|
838
|
+
\`\`\`
|
|
839
|
+
|
|
840
|
+
Click the Memory tab in the profile modal. Assumes the profile modal is already open and the Memory tab is visible.
|
|
841
|
+
|
|
842
|
+
**Related:** \`isMemoryTabVisible\`, \`verifyMemoryTabSettings\``,
|
|
843
|
+
verifyMemoryTabSettings: `# verifyMemoryTabSettings
|
|
844
|
+
|
|
845
|
+
\`\`\`typescript
|
|
846
|
+
import { verifyMemoryTabSettings } from '@iblai/iblai-js/playwright';
|
|
847
|
+
|
|
848
|
+
async function verifyMemoryTabSettings(page: Page): Promise<void>
|
|
849
|
+
\`\`\`
|
|
850
|
+
|
|
851
|
+
Verify that the Memory & Personalization settings section is visible with both toggle labels: "Allow AI to learn from our conversations" and "Use my saved information in responses".
|
|
852
|
+
|
|
853
|
+
**Related:** \`toggleMemorySwitch\``,
|
|
854
|
+
verifyMemoryTabMemoriesList: `# verifyMemoryTabMemoriesList
|
|
855
|
+
|
|
856
|
+
\`\`\`typescript
|
|
857
|
+
import { verifyMemoryTabMemoriesList } from '@iblai/iblai-js/playwright';
|
|
858
|
+
|
|
859
|
+
async function verifyMemoryTabMemoriesList(page: Page): Promise<void>
|
|
860
|
+
\`\`\`
|
|
861
|
+
|
|
862
|
+
Verify that the "My Memories" section heading and "Add Memory" button are visible on the Memory tab.
|
|
863
|
+
|
|
864
|
+
**Related:** \`addMemory\`, \`getMemoryCount\``,
|
|
865
|
+
openAddMemoryDialog: `# openAddMemoryDialog
|
|
866
|
+
|
|
867
|
+
\`\`\`typescript
|
|
868
|
+
import { openAddMemoryDialog } from '@iblai/iblai-js/playwright';
|
|
869
|
+
|
|
870
|
+
async function openAddMemoryDialog(page: Page): Promise<Locator>
|
|
871
|
+
\`\`\`
|
|
872
|
+
|
|
873
|
+
Click the "Add Memory" button and wait for the Add Memory dialog to appear. Returns the dialog \`Locator\`. Assumes the Memory tab is active.
|
|
874
|
+
|
|
875
|
+
**Related:** \`addMemory\``,
|
|
876
|
+
toggleMemorySwitch: `# toggleMemorySwitch
|
|
877
|
+
|
|
878
|
+
\`\`\`typescript
|
|
879
|
+
import { toggleMemorySwitch } from '@iblai/iblai-js/playwright';
|
|
880
|
+
|
|
881
|
+
async function toggleMemorySwitch(
|
|
882
|
+
page: Page,
|
|
883
|
+
switchName: RegExp | string
|
|
884
|
+
): Promise<boolean>
|
|
885
|
+
\`\`\`
|
|
886
|
+
|
|
887
|
+
Toggle a memory setting switch by its aria-label name and return the new checked state. Waits 1s for the API response after clicking.
|
|
888
|
+
|
|
889
|
+
## Example
|
|
890
|
+
|
|
891
|
+
\`\`\`typescript
|
|
892
|
+
const newState = await toggleMemorySwitch(page, /Auto memory capture/i);
|
|
893
|
+
expect(newState).toBe(true);
|
|
894
|
+
\`\`\`
|
|
895
|
+
|
|
896
|
+
**Related:** \`verifyMemoryTabSettings\``,
|
|
897
|
+
addMemory: `# addMemory
|
|
898
|
+
|
|
899
|
+
\`\`\`typescript
|
|
900
|
+
import { addMemory } from '@iblai/iblai-js/playwright';
|
|
901
|
+
|
|
902
|
+
async function addMemory(page: Page, content: string): Promise<void>
|
|
903
|
+
\`\`\`
|
|
904
|
+
|
|
905
|
+
Full flow: opens the Add Memory dialog, fills the content textarea, clicks Save Memory, and waits for the dialog to close (indicating success). Content must be at least 10 characters.
|
|
906
|
+
|
|
907
|
+
## Example
|
|
908
|
+
|
|
909
|
+
\`\`\`typescript
|
|
910
|
+
await addMemory(page, 'I prefer concise explanations with code examples.');
|
|
911
|
+
\`\`\`
|
|
912
|
+
|
|
913
|
+
**Related:** \`openAddMemoryDialog\`, \`verifyMemoryExists\``,
|
|
914
|
+
archiveFirstMemory: `# archiveFirstMemory
|
|
915
|
+
|
|
916
|
+
\`\`\`typescript
|
|
917
|
+
import { archiveFirstMemory } from '@iblai/iblai-js/playwright';
|
|
918
|
+
|
|
919
|
+
async function archiveFirstMemory(page: Page): Promise<void>
|
|
920
|
+
\`\`\`
|
|
921
|
+
|
|
922
|
+
Archive the first visible memory in the list. Hovers to reveal the archive button (hidden by default, shown on group hover), then clicks it.
|
|
923
|
+
|
|
924
|
+
**Related:** \`archiveMemoryByContent\``,
|
|
925
|
+
archiveMemoryByContent: `# archiveMemoryByContent
|
|
926
|
+
|
|
927
|
+
\`\`\`typescript
|
|
928
|
+
import { archiveMemoryByContent } from '@iblai/iblai-js/playwright';
|
|
929
|
+
|
|
930
|
+
async function archiveMemoryByContent(page: Page, content: string): Promise<void>
|
|
931
|
+
\`\`\`
|
|
932
|
+
|
|
933
|
+
Find a specific memory by matching its content text, hover to reveal the archive button, click it, and wait for the memory to be removed from the list.
|
|
934
|
+
|
|
935
|
+
## Example
|
|
936
|
+
|
|
937
|
+
\`\`\`typescript
|
|
938
|
+
await archiveMemoryByContent(page, 'I prefer concise explanations');
|
|
939
|
+
\`\`\`
|
|
940
|
+
|
|
941
|
+
**Related:** \`archiveFirstMemory\`, \`verifyMemoryNotExists\``,
|
|
942
|
+
getMemoryCount: `# getMemoryCount
|
|
943
|
+
|
|
944
|
+
\`\`\`typescript
|
|
945
|
+
import { getMemoryCount } from '@iblai/iblai-js/playwright';
|
|
946
|
+
|
|
947
|
+
async function getMemoryCount(page: Page): Promise<number>
|
|
948
|
+
\`\`\`
|
|
949
|
+
|
|
950
|
+
Get the count of visible memory items in the list. Returns \`0\` if the empty state message is shown. Counts elements with \`aria-label="Auto-generated memory"\` or \`aria-label="Manually added memory"\`.
|
|
951
|
+
|
|
952
|
+
**Related:** \`verifyMemoryTabMemoriesList\``,
|
|
953
|
+
verifyMemoryExists: `# verifyMemoryExists
|
|
954
|
+
|
|
955
|
+
\`\`\`typescript
|
|
956
|
+
import { verifyMemoryExists } from '@iblai/iblai-js/playwright';
|
|
957
|
+
|
|
958
|
+
async function verifyMemoryExists(page: Page, content: string): Promise<void>
|
|
959
|
+
\`\`\`
|
|
960
|
+
|
|
961
|
+
Assert that a memory with the given content text is visible in the memories list.
|
|
962
|
+
|
|
963
|
+
**Related:** \`verifyMemoryNotExists\`, \`addMemory\``,
|
|
964
|
+
verifyMemoryNotExists: `# verifyMemoryNotExists
|
|
965
|
+
|
|
966
|
+
\`\`\`typescript
|
|
967
|
+
import { verifyMemoryNotExists } from '@iblai/iblai-js/playwright';
|
|
968
|
+
|
|
969
|
+
async function verifyMemoryNotExists(page: Page, content: string): Promise<void>
|
|
970
|
+
\`\`\`
|
|
971
|
+
|
|
972
|
+
Assert that a memory with the given content text is NOT visible in the memories list. Useful for verifying archive/delete operations.
|
|
973
|
+
|
|
974
|
+
**Related:** \`verifyMemoryExists\`, \`archiveMemoryByContent\``,
|
|
818
975
|
};
|
|
819
976
|
// Aliases — common alternate names
|
|
820
977
|
helpers['safe_wait_for_url'] = helpers['safeWaitForURL'];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"playwright-helper-info.js","sourceRoot":"","sources":["../../src/tools/playwright-helper-info.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"playwright-helper-info.js","sourceRoot":"","sources":["../../src/tools/playwright-helper-info.ts"],"names":[],"mappings":"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"}
|