rettiwt-api 4.1.0-alpha.1 → 4.1.0

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 CHANGED
@@ -51,6 +51,7 @@ Rettiwt-API can be used with or without logging in to Twitter. As such, the two
51
51
  - User Highlights
52
52
  - User Likes
53
53
  - User Media
54
+ - User Notification
54
55
  - User Recommended Feed
55
56
  - User Replies Timeline
56
57
  - User Subscriptions
@@ -381,6 +382,7 @@ So far, the following operations are supported:
381
382
  - [Getting the list of highlighted tweets of the given user](https://rishikant181.github.io/Rettiwt-API/classes/UserService.html#highlights)
382
383
  - [Getting the list of tweets liked by the logged-in user](https://rishikant181.github.io/Rettiwt-API/classes/UserService.html#likes)
383
384
  - [Getting the media timeline of the given user](https://rishikant181.github.io/Rettiwt-API/classes/UserService.html#media)
385
+ - [Streaming notifications of the logged-in user in pseudo-realtime](https://rishikant181.github.io/Rettiwt-API/classes/UserService.html#notifications)
384
386
  - [Getting the recommended feed of the logged-in user](https://rishikant181.github.io/Rettiwt-API/classes/UserService.html#recommended)
385
387
  - [Getting the replies timeline of the given user](https://rishikant181.github.io/Rettiwt-API/classes/UserService.html#replies)
386
388
  - [Getting the list of subscriptions of the given user](https://rishikant181.github.io/Rettiwt-API/classes/UserService.html#subscriptions)
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ export * from './models/args/FetchArgs';
6
6
  export * from './models/args/PostArgs';
7
7
  export * from './models/data/CursoredData';
8
8
  export * from './models/data/List';
9
+ export * from './models/data/Notification';
9
10
  export * from './models/data/Tweet';
10
11
  export * from './models/data/User';
11
12
  export * from './models/errors/ApiError';
package/dist/index.js CHANGED
@@ -26,6 +26,7 @@ __exportStar(require("./models/args/PostArgs"), exports);
26
26
  // DATA MODELS
27
27
  __exportStar(require("./models/data/CursoredData"), exports);
28
28
  __exportStar(require("./models/data/List"), exports);
29
+ __exportStar(require("./models/data/Notification"), exports);
29
30
  __exportStar(require("./models/data/Tweet"), exports);
30
31
  __exportStar(require("./models/data/User"), exports);
31
32
  // ERROR MODELS
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,OAAO;AACP,4CAA0B;AAE1B,QAAQ;AACR,8CAA4B;AAC5B,+CAA6B;AAC7B,mDAAiC;AAEjC,aAAa;AACb,0DAAwC;AACxC,yDAAuC;AAEvC,cAAc;AACd,6DAA2C;AAC3C,qDAAmC;AACnC,sDAAoC;AACpC,qDAAmC;AAEnC,eAAe;AACf,2DAAyC;AACzC,sEAAoD;AACpD,4DAA0C;AAC1C,+DAA6C;AAC7C,+DAA6C;AAE7C,WAAW;AACX,gEAA8C;AAC9C,mEAAiD;AACjD,iEAA+C;AAC/C,gEAA8C;AAE9C,QAAQ;AACR,wDAAsC;AACtC,uDAAqC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,OAAO;AACP,4CAA0B;AAE1B,QAAQ;AACR,8CAA4B;AAC5B,+CAA6B;AAC7B,mDAAiC;AAEjC,aAAa;AACb,0DAAwC;AACxC,yDAAuC;AAEvC,cAAc;AACd,6DAA2C;AAC3C,qDAAmC;AACnC,6DAA2C;AAC3C,sDAAoC;AACpC,qDAAmC;AAEnC,eAAe;AACf,2DAAyC;AACzC,sEAAoD;AACpD,4DAA0C;AAC1C,+DAA6C;AAC7C,+DAA6C;AAE7C,WAAW;AACX,gEAA8C;AAC9C,mEAAiD;AACjD,iEAA+C;AAC/C,gEAA8C;AAE9C,QAAQ;AACR,wDAAsC;AACtC,uDAAqC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rettiwt-api",
3
- "version": "4.1.0-alpha.1",
3
+ "version": "4.1.0",
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!",
package/src/index.ts CHANGED
@@ -13,6 +13,7 @@ export * from './models/args/PostArgs';
13
13
  // DATA MODELS
14
14
  export * from './models/data/CursoredData';
15
15
  export * from './models/data/List';
16
+ export * from './models/data/Notification';
16
17
  export * from './models/data/Tweet';
17
18
  export * from './models/data/User';
18
19