diff --git a/CHANGELOG.md b/CHANGELOG.md index c64cf44..6c688ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.7](https://github.com/GetStream/stream-node/compare/v0.4.6...v0.4.7) (2025-01-07) + + +### Features + +* update to API version 142.4.0 ([#69](https://github.com/GetStream/stream-node/issues/69)) ([c1a0d02](https://github.com/GetStream/stream-node/commit/c1a0d02b13581379875a7f8c5428ba9edad09d88)) + ## [0.4.6](https://github.com/GetStream/stream-node/compare/v0.4.5...v0.4.6) (2024-12-30) diff --git a/package.json b/package.json index a2455ed..8438507 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stream-io/node-sdk", - "version": "0.4.6", + "version": "0.4.7", "description": "", "exports": { ".": { @@ -76,5 +76,6 @@ }, "engines": { "node": ">=18.0.0" - } + }, + "packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610" } diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index f8099dc..6c277f9 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -1193,6 +1193,8 @@ export interface CallSettings { screensharing?: ScreensharingSettings; + session?: SessionSettings; + thumbnails?: ThumbnailsSettings; transcription?: TranscriptionSettings; @@ -1217,6 +1219,8 @@ export interface CallSettingsRequest { screensharing?: ScreensharingSettingsRequest; + session?: SessionSettingsRequest; + thumbnails?: ThumbnailsSettingsRequest; transcription?: TranscriptionSettingsRequest; @@ -1241,6 +1245,8 @@ export interface CallSettingsResponse { screensharing: ScreensharingSettingsResponse; + session: SessionSettingsResponse; + thumbnails: ThumbnailsSettingsResponse; transcription: TranscriptionSettingsResponse; @@ -7099,6 +7105,18 @@ export interface SendUserCustomEventRequest { event: UserCustomEventRequest; } +export interface SessionSettings { + inactivity_timeout_seconds: number; +} + +export interface SessionSettingsRequest { + inactivity_timeout_seconds: number; +} + +export interface SessionSettingsResponse { + inactivity_timeout_seconds: number; +} + export interface ShowChannelRequest { user_id?: string;