@wppconnect-team/wppconnect - v1.38.0
    Preparing search index...

    Function setAutoDownloadSettings

    • Set auto-download settings for media types

      Parameters

      Returns Promise<void>

      // Disable video and document auto-download
      await WPP.conn.setAutoDownloadSettings({
      videos: false,
      documents: false
      });

      // Enable only photos
      await WPP.conn.setAutoDownloadSettings({
      photos: true,
      audio: false,
      videos: false,
      documents: false
      });