UNPKG

@voiceflow/alexa-types

Version:
39 lines 2.31 kB
import type { BaseNode } from '@voiceflow/base-types'; import type * as AccountLinking from './accountLinking.js'; import type * as CancelPayment from './cancelPayment.js'; import type * as Capture from './capture.js'; import type * as CaptureV2 from './captureV2.js'; import type * as Display from './display.js'; import type * as Event from './event.js'; import type * as Interaction from './interaction.js'; import type * as Payment from './payment.js'; import type * as Permission from './permission.js'; import type * as Prompt from './prompt.js'; import type * as Reminder from './reminder.js'; import type * as Speak from './speak.js'; import type * as Stream from './stream.js'; import type * as UserInfo from './userInfo.js'; export * as AccountLinking from './accountLinking.js'; export * as CancelPayment from './cancelPayment.js'; export * as Capture from './capture.js'; export * as CaptureV2 from './captureV2.js'; export * from './constants.js'; export * as Display from './display.js'; export * as Event from './event.js'; export * as Interaction from './interaction.js'; export * as Payment from './payment.js'; export * as Permission from './permission.js'; export * as Prompt from './prompt.js'; export * as Reminder from './reminder.js'; export * as Speak from './speak.js'; export * as Stream from './stream.js'; export * as UserInfo from './userInfo.js'; export type AnyExtendedStep = Speak.Step | Prompt.Step | Capture.Step | CaptureV2.Step | Interaction.Step | Stream.Step; export type AnyExtendedNode = Speak.Node | Capture.Node | CaptureV2.Node | Interaction.Node | Stream.Node; export type AnyOnlyStep = AccountLinking.Step | Permission.Step | Reminder.Step | UserInfo.Step | Event.Step | Payment.Step | CancelPayment.Step | Display.Step; export type AnyOnlyNode = AccountLinking.Node | Permission.Node | Reminder.Node | UserInfo.Node | Payment.Node | CancelPayment.Node | Display.Node; export type AnyStep = BaseNode.AnyCommonStep | AnyExtendedStep | AnyOnlyStep | BaseNode.Directive.Step | BaseNode.Card.Step; export type AnyNode = BaseNode.AnyCommonNode | AnyExtendedNode | AnyOnlyNode | BaseNode.Directive.Node | BaseNode.Card.Node; export type AnyOnlyCommand = Event.Command; export type AnyCommand = BaseNode.AnyCommonCommand | AnyOnlyCommand; //# sourceMappingURL=index.d.ts.map