New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sendbird/chat-ai-widget

Package Overview
Dependencies
Maintainers
0
Versions
144
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sendbird/chat-ai-widget - npm Package Versions

13
15

1.8.4

Diff

Changelog

Source

[1.8.4] (Oct 22, 2024)

Fix:

  • Passed missing locale to DateSeparator component
sendbird
published 1.8.3 •

Changelog

Source

[1.8.3] (Oct 10, 2024)

Feat:

  • Added stack direction to message list and set as bottom
  • Added pending & failed icon to sent messages

Chore:

  • Added service name to playground
  • Added utm source to banner link
sendbird
published 1.8.2 •

Changelog

Source

[1.8.2] (Sep 19, 2024)

Fix:

  • Removed CSS styles that could potentially affect the client's website
sendbird
published 1.8.1 •

Changelog

Source

[1.8.1] (Sep 12, 2024)

Fix:

  • Fixed that prevent zoom when focusing on input in iOS mobile
sendbird
published 1.8.0 •

Changelog

Source

[1.8.0] (Sep 12, 2024)

Feat:

  • File Message Support: File attachment in messages is now supported. Of course, drag-and-drop and copy-paste actions are also supported.
  • Locale Support: Added a locale option to support multiple languages for welcome messages and suggested replies. If not specified, the browser's default language will be used. (support for multilingual settings will be available in the dashboard).
  • Carousel Adapter for Function Call: Introduced an adapter to convert function call responses into a carousel UI. Example usage is as follows:
    interface MealFunctionCallResponse {
      meals: { strYoutube: string; strMeal: string; strMealThumb: string }[];
    }
    
    function isMealsResponse(response: unknown): response is MealFunctionCallResponse {
      return !!response && typeof response === 'object' && 'meals' in response && Array.isArray(response.meals);
    }
    
    const App = () => {
      return (
        <ChatAiWidget
          tools={{
            functionCall: {
              carouselAdapter({ response }) {
                if (isMealsResponse(response)) {
                  return response.meals.map((it) => ({
                    title: it.strMeal, // Carousel card title
                    featured_image: it.strMealThumb, // Carousel card image
                    url: it.strYoutube, // URL to open when the carousel card is clicked
                  }));
                }
    
                return [];
              },
            },
          }}
        />
      );
    };
    
sendbird
published 1.8.0-beta.4 •

sendbird
published 1.8.0-beta.3 •

sendbird
published 1.8.0-beta.2 •

sendbird
published 1.7.10 •

Changelog

Source

[1.7.10] (Aug 29, 2024)

Update:

  • Improved user interface and experience of form message feature
sendbird
published 1.8.0-beta.1 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc