@talkey/sdk 1.0.0 → 1.0.1
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/README.md +2 -2
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Send SMS and WhatsApp messages easily with Talkey.
|
|
|
7
7
|
## 📦 Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install talkey
|
|
10
|
+
npm install @talkey/sdk
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
---
|
|
@@ -15,7 +15,7 @@ npm install talkey
|
|
|
15
15
|
## ⚡ Quick Start
|
|
16
16
|
|
|
17
17
|
```ts
|
|
18
|
-
import { Talkey } from "talkey"
|
|
18
|
+
import { Talkey } from "@talkey/sdk"
|
|
19
19
|
|
|
20
20
|
const talkey = new Talkey("YOUR_API_KEY")
|
|
21
21
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@talkey/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Talkey SDK",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "Nitcheu Yannick",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
|
-
"files":[
|
|
10
|
+
"files": [
|
|
11
|
+
"/dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
11
14
|
"scripts": {
|
|
12
15
|
"build": "tsup src/index.ts --format esm --dts"
|
|
13
16
|
},
|