@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 CHANGED
@@ -1203,10 +1203,11 @@ declare type UserFormTemplate = {
1203
1203
  };
1204
1204
 
1205
1205
  declare type HumanTaskDefinition = {
1206
- assignmentCompletionStrategy?: 'LEAVE_OPEN' | 'TERMINATE';
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?: 'LEAVE_OPEN' | 'TERMINATE';
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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@io-orkes/conductor-javascript",
3
3
  "description": "Typescript Client for Netflix Conductor",
4
- "version": "v2.1.2-alpha",
4
+ "version": "v2.1.3-alpha",
5
5
  "exports": {
6
6
  ".": {
7
7
  "require": "./dist/index.js",