@asksuite/askflow-app-sdk 0.5.5 → 0.5.7
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/dist/types.d.ts +7 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export declare type IArgument = {
|
|
|
52
52
|
source?: ISource;
|
|
53
53
|
expose?: boolean;
|
|
54
54
|
hasIdAppConnection?: boolean;
|
|
55
|
+
disabled?: boolean;
|
|
55
56
|
};
|
|
56
57
|
export declare enum EventTriggerEnum {
|
|
57
58
|
'webhook' = "webhook",
|
|
@@ -97,6 +98,12 @@ export declare type IEvent = {
|
|
|
97
98
|
label: II18nData;
|
|
98
99
|
description?: II18nData;
|
|
99
100
|
uuidWorkflowDefault?: string;
|
|
101
|
+
details?: IDetails;
|
|
102
|
+
};
|
|
103
|
+
export declare type IDetails = {
|
|
104
|
+
description: II18nData;
|
|
105
|
+
tasks: II18nData[];
|
|
106
|
+
requirements: II18nData[];
|
|
100
107
|
};
|
|
101
108
|
export declare type IContext = {
|
|
102
109
|
connection: {
|