thinkncollab-cli 0.0.8 → 0.0.9

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/bin/index.js +2 -2
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -8,7 +8,7 @@ import crypto from "crypto";
8
8
  import FormData from "form-data";
9
9
 
10
10
  const RC_FILE = path.join(os.homedir(), ".tncrc");
11
- const BASE_URL = "http://localhost:3001/rooms";
11
+ const BASE_URL = "https://thinkncollab.com/rooms";
12
12
 
13
13
  /** ========== LOGIN ========== **/
14
14
  async function login() {
@@ -19,7 +19,7 @@ async function login() {
19
19
 
20
20
  try {
21
21
  console.log("🔐 Logging in...");
22
- const res = await axios.post("http://localhost:3001/login", {
22
+ const res = await axios.post("https://thinkncollab.com/login", {
23
23
  email: answers.email,
24
24
  password: answers.password
25
25
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "thinkncollab-cli",
3
3
  "author": "Raman Singh",
4
- "version": "0.0.8",
4
+ "version": "0.0.9",
5
5
  "description": "CLI tool for ThinkNCollab",
6
6
  "main": "index.js",
7
7
  "bin": {