@ryuu-reinzz/haruka-lib 3.4.0-beta.2 → 3.4.0-beta.5

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/main/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import addProperty from "./socket.js";
2
2
  import useSQLiteAuthState from "./sqlite3-auth/auth.js";
3
3
  import Sticker from './sticker-engine/index.js';
4
- import downloader from './downloader.js';
5
4
  import {
6
5
  stickerVid
7
6
  } from './sticker-engine/video-to-webp.js';
@@ -14,8 +13,7 @@ import {
14
13
 
15
14
  const haruka = {
16
15
  addProperty,
17
- useSQLiteAuthState,
18
- downloader
16
+ useSQLiteAuthState
19
17
  };
20
18
 
21
19
  export default haruka;
@@ -6,9 +6,7 @@
6
6
  * @author RyuuReinzz
7
7
  */
8
8
 
9
- import {
10
- Database
11
- } from "better-sqlite3";
9
+ import Database from "better-sqlite3";
12
10
  import {
13
11
  Mutex
14
12
  } from "async-mutex";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuu-reinzz/haruka-lib",
3
- "version": "3.4.0-beta.2",
3
+ "version": "3.4.0-beta.5",
4
4
  "description": "Library extra for bot WhatsApp",
5
5
  "main": "main/index.js",
6
6
  "type": "module",