@stream-io/node-sdk 0.7.24 → 0.7.26
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 +84 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.mjs +84 -4
- package/dist/index.es.mjs.map +1 -1
- package/dist/src/StreamFeedsClient.d.ts +9 -1
- package/dist/src/gen/feeds/FeedsApi.d.ts +5 -2
- package/dist/src/gen/models/index.d.ts +103 -3
- package/dist/src/gen/video/VideoApi.d.ts +11 -1
- package/package.json +2 -2
- package/src/StreamFeedsClient.ts +20 -1
- package/src/gen/feeds/FeedsApi.ts +82 -8
- package/src/gen/model-decoders/decoders.ts +33 -0
- package/src/gen/models/index.ts +175 -3
- package/src/gen/video/VideoApi.ts +38 -0
package/src/gen/models/index.ts
CHANGED
|
@@ -2384,6 +2384,56 @@ export interface CallStatsLocation {
|
|
|
2384
2384
|
subdivision?: string;
|
|
2385
2385
|
}
|
|
2386
2386
|
|
|
2387
|
+
export interface CallStatsMapLocation {
|
|
2388
|
+
count: number;
|
|
2389
|
+
|
|
2390
|
+
live_count: number;
|
|
2391
|
+
|
|
2392
|
+
location?: CallStatsLocation;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
export interface CallStatsMapPublisher {
|
|
2396
|
+
is_live: boolean;
|
|
2397
|
+
|
|
2398
|
+
user_id: string;
|
|
2399
|
+
|
|
2400
|
+
user_session_id: string;
|
|
2401
|
+
|
|
2402
|
+
published_tracks: PublishedTrackFlags;
|
|
2403
|
+
|
|
2404
|
+
name?: string;
|
|
2405
|
+
|
|
2406
|
+
publisher_type?: string;
|
|
2407
|
+
|
|
2408
|
+
location?: CallStatsLocation;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
export interface CallStatsMapPublishers {
|
|
2412
|
+
publishers: CallStatsMapPublisher[];
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
export interface CallStatsMapSFUs {
|
|
2416
|
+
locations: SFULocationResponse[];
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
export interface CallStatsMapSubscriber {
|
|
2420
|
+
is_live: boolean;
|
|
2421
|
+
|
|
2422
|
+
user_id: string;
|
|
2423
|
+
|
|
2424
|
+
user_session_id: string;
|
|
2425
|
+
|
|
2426
|
+
name?: string;
|
|
2427
|
+
|
|
2428
|
+
location?: CallStatsLocation;
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
export interface CallStatsMapSubscribers {
|
|
2432
|
+
locations: CallStatsMapLocation[];
|
|
2433
|
+
|
|
2434
|
+
participants?: CallStatsMapSubscriber[];
|
|
2435
|
+
}
|
|
2436
|
+
|
|
2387
2437
|
export interface CallStatsParticipant {
|
|
2388
2438
|
user_id: string;
|
|
2389
2439
|
|
|
@@ -4039,6 +4089,12 @@ export interface ContentCountRuleParameters {
|
|
|
4039
4089
|
time_window?: string;
|
|
4040
4090
|
}
|
|
4041
4091
|
|
|
4092
|
+
export interface Coordinates {
|
|
4093
|
+
latitude: number;
|
|
4094
|
+
|
|
4095
|
+
longitude: number;
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4042
4098
|
export interface CountByMinuteResponse {
|
|
4043
4099
|
count: number;
|
|
4044
4100
|
|
|
@@ -4786,6 +4842,18 @@ export interface DeleteFeedViewResponse {
|
|
|
4786
4842
|
duration: string;
|
|
4787
4843
|
}
|
|
4788
4844
|
|
|
4845
|
+
export interface DeleteFeedsBatchRequest {
|
|
4846
|
+
feeds: string[];
|
|
4847
|
+
|
|
4848
|
+
hard_delete?: boolean;
|
|
4849
|
+
}
|
|
4850
|
+
|
|
4851
|
+
export interface DeleteFeedsBatchResponse {
|
|
4852
|
+
duration: string;
|
|
4853
|
+
|
|
4854
|
+
task_id: string;
|
|
4855
|
+
}
|
|
4856
|
+
|
|
4789
4857
|
export interface DeleteMessageRequest {
|
|
4790
4858
|
hard_delete?: boolean;
|
|
4791
4859
|
|
|
@@ -5140,6 +5208,42 @@ export interface EnrichedReaction {
|
|
|
5140
5208
|
user?: Data;
|
|
5141
5209
|
}
|
|
5142
5210
|
|
|
5211
|
+
export interface EnrichmentOptions {
|
|
5212
|
+
skip_activity?: boolean;
|
|
5213
|
+
|
|
5214
|
+
skip_activity_collections?: boolean;
|
|
5215
|
+
|
|
5216
|
+
skip_activity_comments?: boolean;
|
|
5217
|
+
|
|
5218
|
+
skip_activity_current_feed?: boolean;
|
|
5219
|
+
|
|
5220
|
+
skip_activity_mentioned_users?: boolean;
|
|
5221
|
+
|
|
5222
|
+
skip_activity_own_bookmarks?: boolean;
|
|
5223
|
+
|
|
5224
|
+
skip_activity_parents?: boolean;
|
|
5225
|
+
|
|
5226
|
+
skip_activity_poll?: boolean;
|
|
5227
|
+
|
|
5228
|
+
skip_activity_reactions?: boolean;
|
|
5229
|
+
|
|
5230
|
+
skip_activity_refresh_image_urls?: boolean;
|
|
5231
|
+
|
|
5232
|
+
skip_all?: boolean;
|
|
5233
|
+
|
|
5234
|
+
skip_feed_member_user?: boolean;
|
|
5235
|
+
|
|
5236
|
+
skip_followers?: boolean;
|
|
5237
|
+
|
|
5238
|
+
skip_following?: boolean;
|
|
5239
|
+
|
|
5240
|
+
skip_own_capabilities?: boolean;
|
|
5241
|
+
|
|
5242
|
+
skip_own_follows?: boolean;
|
|
5243
|
+
|
|
5244
|
+
skip_pins?: boolean;
|
|
5245
|
+
}
|
|
5246
|
+
|
|
5143
5247
|
export interface EntityCreatorResponse {
|
|
5144
5248
|
ban_count: number;
|
|
5145
5249
|
|
|
@@ -5614,6 +5718,14 @@ export const FeedOwnCapability = {
|
|
|
5614
5718
|
export type FeedOwnCapability =
|
|
5615
5719
|
(typeof FeedOwnCapability)[keyof typeof FeedOwnCapability];
|
|
5616
5720
|
|
|
5721
|
+
export interface FeedOwnData {
|
|
5722
|
+
own_capabilities?: FeedOwnCapability[];
|
|
5723
|
+
|
|
5724
|
+
own_follows?: FollowResponse[];
|
|
5725
|
+
|
|
5726
|
+
own_membership?: FeedMemberResponse;
|
|
5727
|
+
}
|
|
5728
|
+
|
|
5617
5729
|
export interface FeedRequest {
|
|
5618
5730
|
feed_group_id: string;
|
|
5619
5731
|
|
|
@@ -5635,6 +5747,8 @@ export interface FeedRequest {
|
|
|
5635
5747
|
}
|
|
5636
5748
|
|
|
5637
5749
|
export interface FeedResponse {
|
|
5750
|
+
activity_count: number;
|
|
5751
|
+
|
|
5638
5752
|
created_at: Date;
|
|
5639
5753
|
|
|
5640
5754
|
description: string;
|
|
@@ -5675,6 +5789,8 @@ export interface FeedResponse {
|
|
|
5675
5789
|
}
|
|
5676
5790
|
|
|
5677
5791
|
export interface FeedSuggestionResponse {
|
|
5792
|
+
activity_count: number;
|
|
5793
|
+
|
|
5678
5794
|
created_at: Date;
|
|
5679
5795
|
|
|
5680
5796
|
description: string;
|
|
@@ -5989,6 +6105,8 @@ export interface FollowBatchRequest {
|
|
|
5989
6105
|
export interface FollowBatchResponse {
|
|
5990
6106
|
duration: string;
|
|
5991
6107
|
|
|
6108
|
+
created: FollowResponse[];
|
|
6109
|
+
|
|
5992
6110
|
follows: FollowResponse[];
|
|
5993
6111
|
}
|
|
5994
6112
|
|
|
@@ -6630,6 +6748,8 @@ export interface GetOrCreateFeedRequest {
|
|
|
6630
6748
|
|
|
6631
6749
|
data?: FeedInput;
|
|
6632
6750
|
|
|
6751
|
+
enrichment_options?: EnrichmentOptions;
|
|
6752
|
+
|
|
6633
6753
|
external_ranking?: Record<string, any>;
|
|
6634
6754
|
|
|
6635
6755
|
filter?: Record<string, any>;
|
|
@@ -7330,6 +7450,14 @@ export interface ListTranscriptionsResponse {
|
|
|
7330
7450
|
transcriptions: CallTranscription[];
|
|
7331
7451
|
}
|
|
7332
7452
|
|
|
7453
|
+
export interface Location {
|
|
7454
|
+
continent_code: string;
|
|
7455
|
+
|
|
7456
|
+
country_iso_code: string;
|
|
7457
|
+
|
|
7458
|
+
subdivision_iso_code: string;
|
|
7459
|
+
}
|
|
7460
|
+
|
|
7333
7461
|
export interface MarkActivityRequest {
|
|
7334
7462
|
mark_all_read?: boolean;
|
|
7335
7463
|
|
|
@@ -8584,18 +8712,20 @@ export interface OverviewDashboardConfig {
|
|
|
8584
8712
|
visible_charts?: string[];
|
|
8585
8713
|
}
|
|
8586
8714
|
|
|
8587
|
-
export interface
|
|
8715
|
+
export interface OwnBatchRequest {
|
|
8588
8716
|
feeds: string[];
|
|
8589
8717
|
|
|
8590
8718
|
user_id?: string;
|
|
8591
8719
|
|
|
8720
|
+
fields?: string[];
|
|
8721
|
+
|
|
8592
8722
|
user?: UserRequest;
|
|
8593
8723
|
}
|
|
8594
8724
|
|
|
8595
|
-
export interface
|
|
8725
|
+
export interface OwnBatchResponse {
|
|
8596
8726
|
duration: string;
|
|
8597
8727
|
|
|
8598
|
-
|
|
8728
|
+
data: Record<string, FeedOwnData>;
|
|
8599
8729
|
}
|
|
8600
8730
|
|
|
8601
8731
|
export const OwnCapability = {
|
|
@@ -9722,6 +9852,36 @@ export interface QueryCallSessionParticipantStatsTimelineResponse {
|
|
|
9722
9852
|
events: CallParticipantTimeline[];
|
|
9723
9853
|
}
|
|
9724
9854
|
|
|
9855
|
+
export interface QueryCallStatsMapResponse {
|
|
9856
|
+
call_id: string;
|
|
9857
|
+
|
|
9858
|
+
call_session_id: string;
|
|
9859
|
+
|
|
9860
|
+
call_type: string;
|
|
9861
|
+
|
|
9862
|
+
duration: string;
|
|
9863
|
+
|
|
9864
|
+
counts: CallStatsParticipantCounts;
|
|
9865
|
+
|
|
9866
|
+
call_ended_at?: Date;
|
|
9867
|
+
|
|
9868
|
+
call_started_at?: Date;
|
|
9869
|
+
|
|
9870
|
+
data_source?: string;
|
|
9871
|
+
|
|
9872
|
+
end_time?: Date;
|
|
9873
|
+
|
|
9874
|
+
generated_at?: Date;
|
|
9875
|
+
|
|
9876
|
+
start_time?: Date;
|
|
9877
|
+
|
|
9878
|
+
publishers?: CallStatsMapPublishers;
|
|
9879
|
+
|
|
9880
|
+
sfus?: CallStatsMapSFUs;
|
|
9881
|
+
|
|
9882
|
+
subscribers?: CallStatsMapSubscribers;
|
|
9883
|
+
}
|
|
9884
|
+
|
|
9725
9885
|
export interface QueryCallStatsRequest {
|
|
9726
9886
|
limit?: number;
|
|
9727
9887
|
|
|
@@ -11150,6 +11310,18 @@ export interface SDKUsageReportResponse {
|
|
|
11150
11310
|
daily: DailyAggregateSDKUsageReportResponse[];
|
|
11151
11311
|
}
|
|
11152
11312
|
|
|
11313
|
+
export interface SFULocationResponse {
|
|
11314
|
+
datacenter: string;
|
|
11315
|
+
|
|
11316
|
+
id: string;
|
|
11317
|
+
|
|
11318
|
+
coordinates: Coordinates;
|
|
11319
|
+
|
|
11320
|
+
location: Location;
|
|
11321
|
+
|
|
11322
|
+
count?: number;
|
|
11323
|
+
}
|
|
11324
|
+
|
|
11153
11325
|
export interface SIPCallConfigsRequest {
|
|
11154
11326
|
custom_data?: Record<string, any>;
|
|
11155
11327
|
}
|
|
@@ -44,6 +44,7 @@ import {
|
|
|
44
44
|
QueryCallParticipantsResponse,
|
|
45
45
|
QueryCallSessionParticipantStatsResponse,
|
|
46
46
|
QueryCallSessionParticipantStatsTimelineResponse,
|
|
47
|
+
QueryCallStatsMapResponse,
|
|
47
48
|
QueryCallStatsRequest,
|
|
48
49
|
QueryCallStatsResponse,
|
|
49
50
|
QueryCallsRequest,
|
|
@@ -1256,6 +1257,43 @@ export class VideoApi {
|
|
|
1256
1257
|
return { ...response.body, metadata: response.metadata };
|
|
1257
1258
|
}
|
|
1258
1259
|
|
|
1260
|
+
async getCallStatsMap(request: {
|
|
1261
|
+
call_type: string;
|
|
1262
|
+
call_id: string;
|
|
1263
|
+
session: string;
|
|
1264
|
+
start_time?: Date;
|
|
1265
|
+
end_time?: Date;
|
|
1266
|
+
exclude_publishers?: boolean;
|
|
1267
|
+
exclude_subscribers?: boolean;
|
|
1268
|
+
exclude_sfus?: boolean;
|
|
1269
|
+
}): Promise<StreamResponse<QueryCallStatsMapResponse>> {
|
|
1270
|
+
const queryParams = {
|
|
1271
|
+
start_time: request?.start_time,
|
|
1272
|
+
end_time: request?.end_time,
|
|
1273
|
+
exclude_publishers: request?.exclude_publishers,
|
|
1274
|
+
exclude_subscribers: request?.exclude_subscribers,
|
|
1275
|
+
exclude_sfus: request?.exclude_sfus,
|
|
1276
|
+
};
|
|
1277
|
+
const pathParams = {
|
|
1278
|
+
call_type: request?.call_type,
|
|
1279
|
+
call_id: request?.call_id,
|
|
1280
|
+
session: request?.session,
|
|
1281
|
+
};
|
|
1282
|
+
|
|
1283
|
+
const response = await this.apiClient.sendRequest<
|
|
1284
|
+
StreamResponse<QueryCallStatsMapResponse>
|
|
1285
|
+
>(
|
|
1286
|
+
'GET',
|
|
1287
|
+
'/api/v2/video/call_stats/{call_type}/{call_id}/{session}/map',
|
|
1288
|
+
pathParams,
|
|
1289
|
+
queryParams,
|
|
1290
|
+
);
|
|
1291
|
+
|
|
1292
|
+
decoders.QueryCallStatsMapResponse?.(response.body);
|
|
1293
|
+
|
|
1294
|
+
return { ...response.body, metadata: response.metadata };
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1259
1297
|
async getCallSessionParticipantStatsDetails(request: {
|
|
1260
1298
|
call_type: string;
|
|
1261
1299
|
call_id: string;
|