@stream-io/node-sdk 0.4.6 → 0.4.7
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 +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.mjs +1 -1
- package/dist/index.es.mjs.map +1 -1
- package/dist/src/gen/models/index.d.ts +12 -0
- package/package.json +3 -2
- package/src/gen/models/index.ts +18 -0
|
@@ -674,6 +674,7 @@ export interface CallSettings {
|
|
|
674
674
|
recording?: RecordSettings;
|
|
675
675
|
ring?: RingSettings;
|
|
676
676
|
screensharing?: ScreensharingSettings;
|
|
677
|
+
session?: SessionSettings;
|
|
677
678
|
thumbnails?: ThumbnailsSettings;
|
|
678
679
|
transcription?: TranscriptionSettings;
|
|
679
680
|
video?: VideoSettings;
|
|
@@ -687,6 +688,7 @@ export interface CallSettingsRequest {
|
|
|
687
688
|
recording?: RecordSettingsRequest;
|
|
688
689
|
ring?: RingSettingsRequest;
|
|
689
690
|
screensharing?: ScreensharingSettingsRequest;
|
|
691
|
+
session?: SessionSettingsRequest;
|
|
690
692
|
thumbnails?: ThumbnailsSettingsRequest;
|
|
691
693
|
transcription?: TranscriptionSettingsRequest;
|
|
692
694
|
video?: VideoSettingsRequest;
|
|
@@ -700,6 +702,7 @@ export interface CallSettingsResponse {
|
|
|
700
702
|
recording: RecordSettingsResponse;
|
|
701
703
|
ring: RingSettingsResponse;
|
|
702
704
|
screensharing: ScreensharingSettingsResponse;
|
|
705
|
+
session: SessionSettingsResponse;
|
|
703
706
|
thumbnails: ThumbnailsSettingsResponse;
|
|
704
707
|
transcription: TranscriptionSettingsResponse;
|
|
705
708
|
video: VideoSettingsResponse;
|
|
@@ -4065,6 +4068,15 @@ export interface SendReactionResponse {
|
|
|
4065
4068
|
export interface SendUserCustomEventRequest {
|
|
4066
4069
|
event: UserCustomEventRequest;
|
|
4067
4070
|
}
|
|
4071
|
+
export interface SessionSettings {
|
|
4072
|
+
inactivity_timeout_seconds: number;
|
|
4073
|
+
}
|
|
4074
|
+
export interface SessionSettingsRequest {
|
|
4075
|
+
inactivity_timeout_seconds: number;
|
|
4076
|
+
}
|
|
4077
|
+
export interface SessionSettingsResponse {
|
|
4078
|
+
inactivity_timeout_seconds: number;
|
|
4079
|
+
}
|
|
4068
4080
|
export interface ShowChannelRequest {
|
|
4069
4081
|
user_id?: string;
|
|
4070
4082
|
user?: UserRequest;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/node-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -76,5 +76,6 @@
|
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=18.0.0"
|
|
79
|
-
}
|
|
79
|
+
},
|
|
80
|
+
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
|
|
80
81
|
}
|
package/src/gen/models/index.ts
CHANGED
|
@@ -1193,6 +1193,8 @@ export interface CallSettings {
|
|
|
1193
1193
|
|
|
1194
1194
|
screensharing?: ScreensharingSettings;
|
|
1195
1195
|
|
|
1196
|
+
session?: SessionSettings;
|
|
1197
|
+
|
|
1196
1198
|
thumbnails?: ThumbnailsSettings;
|
|
1197
1199
|
|
|
1198
1200
|
transcription?: TranscriptionSettings;
|
|
@@ -1217,6 +1219,8 @@ export interface CallSettingsRequest {
|
|
|
1217
1219
|
|
|
1218
1220
|
screensharing?: ScreensharingSettingsRequest;
|
|
1219
1221
|
|
|
1222
|
+
session?: SessionSettingsRequest;
|
|
1223
|
+
|
|
1220
1224
|
thumbnails?: ThumbnailsSettingsRequest;
|
|
1221
1225
|
|
|
1222
1226
|
transcription?: TranscriptionSettingsRequest;
|
|
@@ -1241,6 +1245,8 @@ export interface CallSettingsResponse {
|
|
|
1241
1245
|
|
|
1242
1246
|
screensharing: ScreensharingSettingsResponse;
|
|
1243
1247
|
|
|
1248
|
+
session: SessionSettingsResponse;
|
|
1249
|
+
|
|
1244
1250
|
thumbnails: ThumbnailsSettingsResponse;
|
|
1245
1251
|
|
|
1246
1252
|
transcription: TranscriptionSettingsResponse;
|
|
@@ -7099,6 +7105,18 @@ export interface SendUserCustomEventRequest {
|
|
|
7099
7105
|
event: UserCustomEventRequest;
|
|
7100
7106
|
}
|
|
7101
7107
|
|
|
7108
|
+
export interface SessionSettings {
|
|
7109
|
+
inactivity_timeout_seconds: number;
|
|
7110
|
+
}
|
|
7111
|
+
|
|
7112
|
+
export interface SessionSettingsRequest {
|
|
7113
|
+
inactivity_timeout_seconds: number;
|
|
7114
|
+
}
|
|
7115
|
+
|
|
7116
|
+
export interface SessionSettingsResponse {
|
|
7117
|
+
inactivity_timeout_seconds: number;
|
|
7118
|
+
}
|
|
7119
|
+
|
|
7102
7120
|
export interface ShowChannelRequest {
|
|
7103
7121
|
user_id?: string;
|
|
7104
7122
|
|