@voiceflow/alexa-types 2.9.0 → 2.9.3
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/common/node/cancelPayment.d.ts +1 -1
- package/build/common/node/payment.d.ts +1 -1
- package/build/common/node/reminder.d.ts +1 -1
- package/build/common/node/userInfo.d.ts +1 -1
- package/build/esm/node/cancelPayment.d.ts +1 -1
- package/build/esm/node/payment.d.ts +1 -1
- package/build/esm/node/reminder.d.ts +1 -1
- package/build/esm/node/userInfo.d.ts +1 -1
- package/package.json +5 -5
|
@@ -3,7 +3,7 @@ import { NodeType } from './constants';
|
|
|
3
3
|
export interface StepData {
|
|
4
4
|
productID: string;
|
|
5
5
|
}
|
|
6
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
6
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
7
7
|
}
|
|
8
8
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
9
9
|
type: NodeType.CANCEL_PAYMENT;
|
|
@@ -3,7 +3,7 @@ import { NodeType } from './constants';
|
|
|
3
3
|
export interface StepData {
|
|
4
4
|
productID: Nullable<string>;
|
|
5
5
|
}
|
|
6
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
6
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
7
7
|
}
|
|
8
8
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
9
9
|
type: NodeType.PAYMENT;
|
|
@@ -32,7 +32,7 @@ export interface Reminder {
|
|
|
32
32
|
export interface StepData {
|
|
33
33
|
reminder: Reminder;
|
|
34
34
|
}
|
|
35
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
35
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
36
36
|
}
|
|
37
37
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
38
38
|
type: NodeType.REMINDER;
|
|
@@ -19,7 +19,7 @@ export interface Permission {
|
|
|
19
19
|
value: string;
|
|
20
20
|
}>;
|
|
21
21
|
}
|
|
22
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
22
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
23
23
|
}
|
|
24
24
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
25
25
|
type: NodeType.USER_INFO;
|
|
@@ -3,7 +3,7 @@ import { NodeType } from './constants';
|
|
|
3
3
|
export interface StepData {
|
|
4
4
|
productID: string;
|
|
5
5
|
}
|
|
6
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
6
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
7
7
|
}
|
|
8
8
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
9
9
|
type: NodeType.CANCEL_PAYMENT;
|
|
@@ -3,7 +3,7 @@ import { NodeType } from './constants';
|
|
|
3
3
|
export interface StepData {
|
|
4
4
|
productID: Nullable<string>;
|
|
5
5
|
}
|
|
6
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
6
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
7
7
|
}
|
|
8
8
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
9
9
|
type: NodeType.PAYMENT;
|
|
@@ -32,7 +32,7 @@ export interface Reminder {
|
|
|
32
32
|
export interface StepData {
|
|
33
33
|
reminder: Reminder;
|
|
34
34
|
}
|
|
35
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
35
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
36
36
|
}
|
|
37
37
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
38
38
|
type: NodeType.REMINDER;
|
|
@@ -19,7 +19,7 @@ export interface Permission {
|
|
|
19
19
|
value: string;
|
|
20
20
|
}>;
|
|
21
21
|
}
|
|
22
|
-
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts {
|
|
22
|
+
export interface StepPorts extends BaseNode.Utils.SuccessFailStepPorts<[]> {
|
|
23
23
|
}
|
|
24
24
|
export interface Step extends BaseNode.Utils.BaseStep<StepData, StepPorts> {
|
|
25
25
|
type: NodeType.USER_INFO;
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voiceflow/alexa-types",
|
|
3
3
|
"description": "Alexa service types",
|
|
4
|
-
"version": "2.9.
|
|
4
|
+
"version": "2.9.3",
|
|
5
5
|
"author": "Voiceflow",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/voiceflow/libs/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@voiceflow/base-types": "^2.
|
|
10
|
+
"@voiceflow/base-types": "^2.42.1",
|
|
11
11
|
"@voiceflow/common": "^7.27.0",
|
|
12
|
-
"@voiceflow/voice-types": "^2.5.
|
|
13
|
-
"@voiceflow/voiceflow-types": "^3.16.
|
|
12
|
+
"@voiceflow/voice-types": "^2.5.51",
|
|
13
|
+
"@voiceflow/voiceflow-types": "^3.16.9",
|
|
14
14
|
"ask-smapi-model": "1.14.0"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"test:integration": "exit 0",
|
|
46
46
|
"test:unit": "exit 0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "f57624bb299bcf11ad01cd8588d1fcd2e77dbd7e"
|
|
49
49
|
}
|