msteams 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  `msteams` is a lightweight TypeScript library and CLI for interacting with Microsoft Teams endpoints used by the web client.
4
4
 
5
+ ## Warning
6
+
7
+ * Node.js is currently not supported yet. Use Bun
8
+ * Auth token should be updated in 24 hours. Automatic token updating is working in progress.
9
+
5
10
  ## Overview
6
11
 
7
12
  - CLI: use the `teams` command to fetch notifications, messages, channels, and user/team data
@@ -25,13 +30,13 @@ npm install msteams
25
30
 
26
31
  ```bash
27
32
  # Show help
28
- teams --help
33
+ bunx --bun teams --help
29
34
  ```
30
35
 
31
36
  ### Set refresh token
32
37
 
33
38
  ```bash
34
- teams set-refresh-token --refresh-token=<your_refresh_token>
39
+ bunx --bun teams set-refresh-token --refresh-token=<your_refresh_token>
35
40
  ```
36
41
 
37
42
  - Default profile path: `~/.teams-cli/default.json`
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "msteams",
3
3
  "private": false,
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "files": [
6
6
  "dist"
7
7
  ],