@voiceflow/alexa-types 1.52.61 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/diagram.d.ts +2 -2
- package/build/node/accountLinking.d.ts +1 -2
- package/build/node/event.d.ts +1 -2
- package/build/node/payment.d.ts +1 -2
- package/build/node/userInfo.d.ts +1 -2
- package/build/program.d.ts +2 -2
- package/build/project/index.d.ts +2 -2
- package/build/project/member.d.ts +1 -1
- package/build/version/index.d.ts +2 -2
- package/build/version/settings.d.ts +1 -1
- package/package.json +6 -7
package/build/diagram.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Models } from '@voiceflow/base-types';
|
|
2
2
|
import { AnyAlexaStep } from './node';
|
|
3
|
-
export interface AlexaDiagram extends Diagram<AnyAlexaStep> {
|
|
3
|
+
export interface AlexaDiagram extends Models.Diagram<AnyAlexaStep> {
|
|
4
4
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { UnknownRecord } from '@voiceflow/
|
|
2
|
-
import { Node } from '@voiceflow/base-types';
|
|
1
|
+
import { Node, UnknownRecord } from '@voiceflow/base-types';
|
|
3
2
|
import { NodeType } from './constants';
|
|
4
3
|
export declare type StepData = UnknownRecord;
|
|
5
4
|
export interface Step extends Node.Utils.BaseStep<StepData> {
|
package/build/node/event.d.ts
CHANGED
package/build/node/payment.d.ts
CHANGED
package/build/node/userInfo.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { Nullable } from '@voiceflow/
|
|
2
|
-
import { Node } from '@voiceflow/base-types';
|
|
1
|
+
import { Node, Nullable } from '@voiceflow/base-types';
|
|
3
2
|
import { NodeType, PermissionType } from './constants';
|
|
4
3
|
export interface UserInfo {
|
|
5
4
|
type: Nullable<PermissionType>;
|
package/build/program.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Models } from '@voiceflow/base-types';
|
|
2
2
|
import { AnyAlexaCommand, AnyAlexaNode } from './node';
|
|
3
|
-
export interface AlexaProgram extends Program<AnyAlexaNode, AnyAlexaCommand> {
|
|
3
|
+
export interface AlexaProgram extends Models.Program<AnyAlexaNode, AnyAlexaCommand> {
|
|
4
4
|
}
|
package/build/project/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Models } from '@voiceflow/base-types';
|
|
2
2
|
import { Project } from '@voiceflow/voice-types';
|
|
3
3
|
import { AlexaProjectMemberData } from './member';
|
|
4
4
|
import { AlexaProduct } from './product';
|
|
@@ -8,7 +8,7 @@ export interface AlexaProjectData {
|
|
|
8
8
|
products: Record<string, AlexaProduct>;
|
|
9
9
|
}
|
|
10
10
|
export interface AlexaProject extends Project.VoiceProject {
|
|
11
|
-
members: Member<AlexaProjectMemberData>[];
|
|
11
|
+
members: Models.Member<AlexaProjectMemberData>[];
|
|
12
12
|
platform: 'alexa';
|
|
13
13
|
platformData: AlexaProjectData;
|
|
14
14
|
}
|
package/build/version/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Models } from '@voiceflow/base-types';
|
|
2
2
|
import { Constants } from '@voiceflow/general-types';
|
|
3
3
|
import { Version } from '@voiceflow/voice-types';
|
|
4
4
|
import { Voice } from "../constants";
|
|
@@ -20,7 +20,7 @@ export interface AlexaVersionData extends Version.VoiceVersionData<Voice> {
|
|
|
20
20
|
publishing: AlexaVersionPublishing;
|
|
21
21
|
}
|
|
22
22
|
export interface AlexaVersion extends Version.VoiceVersion<Voice> {
|
|
23
|
-
prototype?: VersionPrototype<AnyAlexaCommand, Constants.Locale>;
|
|
23
|
+
prototype?: Models.VersionPrototype<AnyAlexaCommand, Constants.Locale>;
|
|
24
24
|
platformData: AlexaVersionData;
|
|
25
25
|
}
|
|
26
26
|
export declare const defaultAlexaVersionData: ({ status: { stage }, settings, publishing, ...generalVersionData }: Partial<AlexaVersionData>) => AlexaVersionData;
|
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voiceflow/alexa-types",
|
|
3
3
|
"description": "Alexa service types",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.2",
|
|
5
5
|
"author": "Voiceflow",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/voiceflow/libs/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@voiceflow/
|
|
11
|
-
"@voiceflow/
|
|
12
|
-
"@voiceflow/
|
|
13
|
-
"@voiceflow/
|
|
14
|
-
"@voiceflow/voice-types": "^1.4.32",
|
|
10
|
+
"@voiceflow/base-types": "^2.1.1",
|
|
11
|
+
"@voiceflow/common": "6.9.3",
|
|
12
|
+
"@voiceflow/general-types": "^3.0.2",
|
|
13
|
+
"@voiceflow/voice-types": "^2.0.2",
|
|
15
14
|
"ask-smapi-model": "1.14.0"
|
|
16
15
|
},
|
|
17
16
|
"files": [
|
|
@@ -41,5 +40,5 @@
|
|
|
41
40
|
"test:integration": "exit 0",
|
|
42
41
|
"test:unit": "exit 0"
|
|
43
42
|
},
|
|
44
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "b9c2f8f35b38e87a1b6954608fca9ba4522e198e"
|
|
45
44
|
}
|