From 59221a7e74b05f636bfcfa66af565829e111d497 Mon Sep 17 00:00:00 2001 From: nijeeshjoshy Date: Fri, 22 May 2026 14:12:48 +0200 Subject: [PATCH] feat(common): expose before_message_send_hook_attempt_timeout_ms (CHA-3267) Adds UpdateApp request field and optional app response typing per GetStream/chat#13541. --- src/gen/common/CommonApi.ts | 2 ++ src/gen/models/index.ts | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/src/gen/common/CommonApi.ts b/src/gen/common/CommonApi.ts index cc972d6..ab14e97 100644 --- a/src/gen/common/CommonApi.ts +++ b/src/gen/common/CommonApi.ts @@ -133,6 +133,8 @@ export class CommonApi { async_url_enrich_enabled: request?.async_url_enrich_enabled, auto_translation_enabled: request?.auto_translation_enabled, before_message_send_hook_url: request?.before_message_send_hook_url, + before_message_send_hook_attempt_timeout_ms: + request?.before_message_send_hook_attempt_timeout_ms, cdn_expiration_seconds: request?.cdn_expiration_seconds, channel_hide_members_only: request?.channel_hide_members_only, custom_action_handler_url: request?.custom_action_handler_url, diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index a41e1ed..5c8bbc6 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -1734,6 +1734,8 @@ export interface AppResponseFields { before_message_send_hook_url?: string; + before_message_send_hook_attempt_timeout_ms?: number; + moderation_s3_image_access_role_arn?: string; revoke_tokens_issued_before?: Date; @@ -21687,6 +21689,8 @@ export interface UpdateAppRequest { before_message_send_hook_url?: string; + before_message_send_hook_attempt_timeout_ms?: number; + cdn_expiration_seconds?: number; channel_hide_members_only?: boolean;