@io-orkes/conductor-javascript 2.1.2-alpha → 2.1.3-alpha
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/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1203,10 +1203,11 @@ declare type UserFormTemplate = {
|
|
|
1203
1203
|
};
|
|
1204
1204
|
|
|
1205
1205
|
declare type HumanTaskDefinition = {
|
|
1206
|
-
assignmentCompletionStrategy?:
|
|
1206
|
+
assignmentCompletionStrategy?: "LEAVE_OPEN" | "TERMINATE";
|
|
1207
1207
|
assignments?: Array<HumanTaskAssignment>;
|
|
1208
1208
|
taskTriggers?: Array<HumanTaskTrigger>;
|
|
1209
1209
|
userFormTemplate?: UserFormTemplate;
|
|
1210
|
+
fullTemplate: Record<string, any>;
|
|
1210
1211
|
};
|
|
1211
1212
|
|
|
1212
1213
|
declare type HumanTaskEntry = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1203,10 +1203,11 @@ declare type UserFormTemplate = {
|
|
|
1203
1203
|
};
|
|
1204
1204
|
|
|
1205
1205
|
declare type HumanTaskDefinition = {
|
|
1206
|
-
assignmentCompletionStrategy?:
|
|
1206
|
+
assignmentCompletionStrategy?: "LEAVE_OPEN" | "TERMINATE";
|
|
1207
1207
|
assignments?: Array<HumanTaskAssignment>;
|
|
1208
1208
|
taskTriggers?: Array<HumanTaskTrigger>;
|
|
1209
1209
|
userFormTemplate?: UserFormTemplate;
|
|
1210
|
+
fullTemplate: Record<string, any>;
|
|
1210
1211
|
};
|
|
1211
1212
|
|
|
1212
1213
|
declare type HumanTaskEntry = {
|