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

@vivocha/public-entities

Package Overview
Dependencies
Maintainers
10
Versions
249
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vivocha/public-entities - npm Package Compare versions

Comparing version 6.1.0 to 6.2.0

12

dist/message.d.ts

@@ -49,9 +49,17 @@ export interface AttachmentMeta {

body: string;
quick_replies_orientation?: 'vertical' | 'horizontal';
quick_replies?: MessageQuickReply[];
template?: TemplateType;
template?: GenericTemplateType | ListTemplateType;
}
export interface TemplateType {
type: string;
type: 'generic' | 'list';
elements?: any[];
}
export interface GenericTemplateType extends TemplateType {
type: 'generic';
}
export interface ListTemplateType extends TemplateType {
type: 'list';
buttons?: any[];
}
export interface LinkMessage extends GenericMessage {

@@ -58,0 +66,0 @@ type: 'link';

2

package.json
{
"name": "@vivocha/public-entities",
"version": "6.1.0",
"version": "6.2.0",
"description": "Vivocha public entities and types",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -55,2 +55,8 @@ {

}
},
"buttons": {
"type": "array",
"items": {
"type": "object"
}
}

@@ -77,2 +83,8 @@ }

},
"quick_replies_orientation": {
"enum":[
"vertical",
"horizontal"
]
},
"quick_replies": {

@@ -79,0 +91,0 @@ "type": "array",

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