feat: add server side crawl and search logic

This commit is contained in:
Rohit Rajan
2026-01-02 15:46:10 +05:30
parent 3689eb96bd
commit 9898dc410d
15 changed files with 1577 additions and 124 deletions

View File

@@ -353,7 +353,7 @@ export const createCrawlRobot = async (
): Promise<any> => {
try {
const response = await axios.post(
`${apiUrl}/recordings/crawl`,
`${apiUrl}/storage/recordings/crawl`,
{
url,
name,
@@ -392,7 +392,7 @@ export const createSearchRobot = async (
): Promise<any> => {
try {
const response = await axios.post(
`${apiUrl}/recordings/search`,
`${apiUrl}/storage/recordings/search`,
{
name,
searchConfig,