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

@voiceflow/alexa-types

Package Overview
Dependencies
Maintainers
14
Versions
539
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@voiceflow/alexa-types - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

build/nodes/start.d.ts

5

build/nodes/index.d.ts
import * as Flow from './flow';
import * as Speak from './speak';
import * as Start from './start';
export * from './types';
export declare type AlexaSteps = Speak.Step | Flow.Step;
export declare type AlexaNodes = Speak.Node | Flow.Node;
export declare type AlexaSteps = Start.Step | Speak.Step | Flow.Step;
export declare type AlexaNodes = Start.Node | Speak.Node | Flow.Node;

3

build/nodes/types.d.ts
export { Step as DefaultStep, Node as DefaultNode } from '@voiceflow/api-sdk';
export declare enum NodeType {
SPEAK = "speak",
FLOW = "flow"
FLOW = "flow",
START = "start"
}

@@ -8,3 +8,4 @@ "use strict";

NodeType["FLOW"] = "flow";
NodeType["START"] = "start";
})(NodeType = exports.NodeType || (exports.NodeType = {}));
//# sourceMappingURL=types.js.map

@@ -9,5 +9,7 @@ export declare type SlotInput = {

name: string;
type?: string;
type: {
value?: string;
};
color?: string;
inputs: string[];
};
import * as Flow from './flow';
import * as Speak from './speak';
import * as Start from './start';
export * from './types';
export type AlexaSteps = Speak.Step | Flow.Step;
export type AlexaSteps = Start.Step | Speak.Step | Flow.Step;
export type AlexaNodes = Speak.Node | Flow.Node;
export type AlexaNodes = Start.Node | Speak.Node | Flow.Node;

@@ -6,2 +6,3 @@ export { Step as DefaultStep, Node as DefaultNode } from '@voiceflow/api-sdk';

FLOW = 'flow',
START = 'start',
}

@@ -10,5 +10,5 @@ export type SlotInput = {

name: string;
type?: string;
type: { value?: string };
color?: string;
inputs: string[];
};
{
"name": "@voiceflow/alexa-types",
"description": "Alexa service types",
"version": "1.1.1",
"version": "1.1.2",
"author": "Voiceflow",

@@ -6,0 +6,0 @@ "bugs": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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