@voiceflow/alexa-types
Advanced tools
Comparing version 1.1.1 to 1.1.2
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; |
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
190954
98
3874