@deathnaitsa/wa-api 1.0.11 → 1.0.12
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/package.json +1 -1
- package/readme.md +4 -4
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -5,7 +5,7 @@ Leichte Bibliothek zur Verwaltung mehrerer WhatsApp-Sessions – mit **einer** u
|
|
|
5
5
|
## 📦 Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @deathnaitsa/
|
|
8
|
+
npm install @deathnaitsa/wa-api@latest
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## 🔌 Import & Setup
|
|
@@ -14,10 +14,10 @@ Verwende den klassischen Import-Stil:
|
|
|
14
14
|
|
|
15
15
|
```js
|
|
16
16
|
// CommonJS
|
|
17
|
-
const wa = require('@deathnaitsa/
|
|
17
|
+
const wa = require('@deathnaitsa/wa-api');
|
|
18
18
|
|
|
19
19
|
// ES Module
|
|
20
|
-
import * as wa from '@deathnaitsa/
|
|
20
|
+
import * as wa from '@deathnaitsa/wa-api';
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Danach stehen dir alle Funktionen unter dem Namespace `wa` zur Verfügung.
|
|
@@ -105,4 +105,4 @@ try {
|
|
|
105
105
|
|
|
106
106
|
---
|
|
107
107
|
|
|
108
|
-
© 2025 `@deathnaitsa/
|
|
108
|
+
© 2025 `@deathnaitsa/wa-api` • Support: [sebloidl13@gmail.com](mailto:sebloidl13@gmail.com)
|