Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aacebo/echo

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aacebo/echo - npm Package Compare versions

Comparing version 0.0.35 to 0.0.36

14

dist/blocks.d.ts

@@ -47,3 +47,3 @@ export interface Action<T = any> {

}
export type ControlBlock = Input | Option | Select | ChatSelect | UserSelect;
export type ControlBlock = Input | Option | Select | ChatSelect | UserSelect | Poll | PollOption;
export interface Input {

@@ -92,2 +92,14 @@ readonly id?: string;

}
export interface Poll {
readonly id?: string;
readonly type: 'poll';
readonly title: string;
readonly options: PollOption[];
}
export interface PollOption {
readonly id?: string;
readonly type: 'poll_option';
readonly label: string;
readonly value: number;
}
export type MediaBlock = Audio | File | Image | Video;

@@ -94,0 +106,0 @@ export interface Audio {

2

package.json
{
"name": "@aacebo/echo",
"version": "0.0.35",
"version": "0.0.36",
"description": "",

@@ -5,0 +5,0 @@ "author": "",

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