@asksuite/askflow-app-sdk 0.5.7 → 0.5.9
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 +8 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -98,12 +98,16 @@ export declare type IEvent = {
|
|
|
98
98
|
label: II18nData;
|
|
99
99
|
description?: II18nData;
|
|
100
100
|
uuidWorkflowDefault?: string;
|
|
101
|
-
|
|
101
|
+
workflowDetails?: IWorkflowDetails;
|
|
102
102
|
};
|
|
103
|
-
export declare type
|
|
103
|
+
export declare type IWorkflowDetails = {
|
|
104
|
+
title: II18nData;
|
|
105
|
+
description: II18nData;
|
|
106
|
+
dashboardTopics: IDashboardTopic[];
|
|
107
|
+
};
|
|
108
|
+
export declare type IDashboardTopic = {
|
|
109
|
+
title: II18nData;
|
|
104
110
|
description: II18nData;
|
|
105
|
-
tasks: II18nData[];
|
|
106
|
-
requirements: II18nData[];
|
|
107
111
|
};
|
|
108
112
|
export declare type IContext = {
|
|
109
113
|
connection: {
|