@sendbird/ai-agent-messenger-react 1.26.0 → 1.26.1

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.d.ts CHANGED
@@ -1756,7 +1756,7 @@ export declare const ConversationLayout: {
1756
1756
  declare interface ConversationLayoutTemplateProps {
1757
1757
  }
1758
1758
 
1759
- export declare const ConversationList: ({ conversationListLimit, conversationListFilter, children, onOpenConversationView, style, }: Props_4) => JSX.Element;
1759
+ export declare const ConversationList: ({ conversationListLimit, conversationListFilter, children, onOpenConversationView, announcementsEnabled, style, }: Props_4) => JSX.Element;
1760
1760
 
1761
1761
  /**
1762
1762
  * A collection for managing AI agent group channels with real-time updates and pagination.
@@ -2155,12 +2155,14 @@ declare interface ConversationListContextProps {
2155
2155
  conversationListLimit?: number;
2156
2156
  conversationListFilter?: Partial<AIAgentGroupChannelFilter>;
2157
2157
  onOpenConversationView?: (channelUrl: string, status: 'open' | 'closed') => void;
2158
+ announcementsEnabled?: boolean;
2158
2159
  }
2159
2160
 
2160
- export declare function ConversationListContextProvider({ conversationListLimit, conversationListFilter, onOpenConversationView, children, }: PropsWithChildren<ConversationListContextProps>): JSX.Element;
2161
+ export declare function ConversationListContextProvider({ conversationListLimit, conversationListFilter, onOpenConversationView, announcementsEnabled, children, }: PropsWithChildren<ConversationListContextProps>): JSX.Element;
2161
2162
 
2162
2163
  declare interface ConversationListContextValue extends AIAgentConversationListContextValue {
2163
2164
  onOpenConversationView: (channelUrl: string, status: 'open' | 'closed') => void;
2165
+ announcementsEnabled: boolean;
2164
2166
  }
2165
2167
 
2166
2168
  export declare const ConversationListHeaderLayout: {
@@ -4435,6 +4437,7 @@ declare type Props_4 = PropsWithChildren<{
4435
4437
  conversationListLimit?: number;
4436
4438
  conversationListFilter?: Partial<AIAgentGroupChannelFilter>;
4437
4439
  onOpenConversationView?: (channelUrl: string, status: 'open' | 'closed') => void;
4440
+ announcementsEnabled?: boolean;
4438
4441
  /** Custom styles for the conversation list container. */
4439
4442
  style?: CSSProperties;
4440
4443
  }>;