google-finance-quote 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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -1
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # google-finance-quote
2
2
  Node Google Finance API wrapper for free.
3
3
  No API key is required!
4
-
4
+ > Note: This results may vary by up to 20 minutes.
5
5
  ## Usage
6
6
  ### Get Started
7
7
  ```js
package/index.js CHANGED
@@ -67,7 +67,7 @@ class Finance {
67
67
  this.param.to = to;
68
68
  return this;
69
69
  }
70
-
70
+
71
71
  /**
72
72
  * @function getParam
73
73
  * @description Returns the current param.
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "google-finance-quote",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Node Google Finance API wrapper for free. No API key is required!",
5
5
  "main": "index.js",
6
+ "types": "index.d.ts",
6
7
  "scripts": {
7
8
  "test": "echo \"Error: no test specified\" && exit 1"
8
9
  },