feat: replace uuidv4 package with uuid

This commit is contained in:
Rohit
2025-05-28 14:22:43 +05:30
parent 9519414a10
commit 1d3a6674cd
7 changed files with 7 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ import { createRemoteBrowserForRun, getActiveBrowserIdByState } from "../browser
import { chromium } from 'playwright-extra';
import stealthPlugin from 'puppeteer-extra-plugin-stealth';
import { browserPool } from "../server";
import { uuid } from "uuidv4";
import { v4 as uuid } from "uuid";
import moment from 'moment-timezone';
import cron from 'node-cron';
import { getDecryptedProxyConfig } from './proxy';

View File

@@ -2,7 +2,7 @@ import { Router, Request, Response } from 'express';
import Robot from '../models/Robot';
import { requireSignIn } from '../middlewares/auth';
import axios from 'axios';
import { uuid } from "uuidv4";
import { v4 as uuid } from "uuid";
export const router = Router();