@stream-io/node-sdk 0.7.45 → 0.7.47
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/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.mjs +3 -1
- package/dist/index.es.mjs.map +1 -1
- package/dist/src/gen/feeds/FeedsApi.d.ts +2 -0
- package/dist/src/gen/models/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/gen/feeds/FeedsApi.ts +4 -0
- package/src/gen/models/index.ts +4 -0
|
@@ -88,6 +88,7 @@ export declare class FeedsApi {
|
|
|
88
88
|
depth?: number;
|
|
89
89
|
sort?: string;
|
|
90
90
|
replies_limit?: number;
|
|
91
|
+
id_around?: string;
|
|
91
92
|
user_id?: string;
|
|
92
93
|
limit?: number;
|
|
93
94
|
prev?: string;
|
|
@@ -124,6 +125,7 @@ export declare class FeedsApi {
|
|
|
124
125
|
depth?: number;
|
|
125
126
|
sort?: string;
|
|
126
127
|
replies_limit?: number;
|
|
128
|
+
id_around?: string;
|
|
127
129
|
user_id?: string;
|
|
128
130
|
limit?: number;
|
|
129
131
|
prev?: string;
|
|
@@ -354,6 +354,7 @@ export interface ActivityResponse {
|
|
|
354
354
|
notification_context?: NotificationContext;
|
|
355
355
|
parent?: ActivityResponse;
|
|
356
356
|
poll?: PollResponseData;
|
|
357
|
+
score_vars?: Record<string, any>;
|
|
357
358
|
}
|
|
358
359
|
export interface ActivityRestoredEvent {
|
|
359
360
|
created_at: Date;
|
|
@@ -3229,6 +3230,7 @@ export interface EnrichedReaction {
|
|
|
3229
3230
|
}
|
|
3230
3231
|
export interface EnrichmentOptions {
|
|
3231
3232
|
enrich_own_followings?: boolean;
|
|
3233
|
+
include_score_vars?: boolean;
|
|
3232
3234
|
skip_activity?: boolean;
|
|
3233
3235
|
skip_activity_collections?: boolean;
|
|
3234
3236
|
skip_activity_comments?: boolean;
|
package/package.json
CHANGED
|
@@ -998,6 +998,7 @@ export class FeedsApi {
|
|
|
998
998
|
depth?: number;
|
|
999
999
|
sort?: string;
|
|
1000
1000
|
replies_limit?: number;
|
|
1001
|
+
id_around?: string;
|
|
1001
1002
|
user_id?: string;
|
|
1002
1003
|
limit?: number;
|
|
1003
1004
|
prev?: string;
|
|
@@ -1009,6 +1010,7 @@ export class FeedsApi {
|
|
|
1009
1010
|
depth: request?.depth,
|
|
1010
1011
|
sort: request?.sort,
|
|
1011
1012
|
replies_limit: request?.replies_limit,
|
|
1013
|
+
id_around: request?.id_around,
|
|
1012
1014
|
user_id: request?.user_id,
|
|
1013
1015
|
limit: request?.limit,
|
|
1014
1016
|
prev: request?.prev,
|
|
@@ -1283,6 +1285,7 @@ export class FeedsApi {
|
|
|
1283
1285
|
depth?: number;
|
|
1284
1286
|
sort?: string;
|
|
1285
1287
|
replies_limit?: number;
|
|
1288
|
+
id_around?: string;
|
|
1286
1289
|
user_id?: string;
|
|
1287
1290
|
limit?: number;
|
|
1288
1291
|
prev?: string;
|
|
@@ -1292,6 +1295,7 @@ export class FeedsApi {
|
|
|
1292
1295
|
depth: request?.depth,
|
|
1293
1296
|
sort: request?.sort,
|
|
1294
1297
|
replies_limit: request?.replies_limit,
|
|
1298
|
+
id_around: request?.id_around,
|
|
1295
1299
|
user_id: request?.user_id,
|
|
1296
1300
|
limit: request?.limit,
|
|
1297
1301
|
prev: request?.prev,
|
package/src/gen/models/index.ts
CHANGED
|
@@ -636,6 +636,8 @@ export interface ActivityResponse {
|
|
|
636
636
|
parent?: ActivityResponse;
|
|
637
637
|
|
|
638
638
|
poll?: PollResponseData;
|
|
639
|
+
|
|
640
|
+
score_vars?: Record<string, any>;
|
|
639
641
|
}
|
|
640
642
|
|
|
641
643
|
export interface ActivityRestoredEvent {
|
|
@@ -5688,6 +5690,8 @@ export interface EnrichedReaction {
|
|
|
5688
5690
|
export interface EnrichmentOptions {
|
|
5689
5691
|
enrich_own_followings?: boolean;
|
|
5690
5692
|
|
|
5693
|
+
include_score_vars?: boolean;
|
|
5694
|
+
|
|
5691
5695
|
skip_activity?: boolean;
|
|
5692
5696
|
|
|
5693
5697
|
skip_activity_collections?: boolean;
|