rettiwt-api 6.0.4 → 6.0.5

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -210,7 +210,7 @@ const rettiwt = new Rettiwt({ apiKey: API_KEY });
210
210
  */
211
211
  rettiwt.tweet.search({
212
212
  fromUsers: ['<username>'],
213
- words: ['<word1>', '<word2>']
213
+ includeWords: ['<word1>', '<word2>']
214
214
  })
215
215
  .then(data => {
216
216
  ...
@@ -243,7 +243,7 @@ const rettiwt = new Rettiwt({ apiKey: API_KEY });
243
243
  */
244
244
  rettiwt.tweet.search({
245
245
  fromUsers: ['<username>'],
246
- words: ['<word1>', '<word2>']
246
+ includeWords: ['<word1>', '<word2>']
247
247
  }, count, data.next.value)
248
248
  .then(data => {
249
249
  ...
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rettiwt-api",
3
- "version": "6.0.4",
3
+ "version": "6.0.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "description": "An API for fetching data from TwitterAPI, without any rate limits!",