@io-orkes/conductor-javascript 2.1.3-alpha → 2.1.3-alpha1
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 +12 -12
- package/dist/index.d.ts +12 -12
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1192,6 +1192,17 @@ declare type HumanTaskAssignment = {
|
|
|
1192
1192
|
slaMinutes?: number;
|
|
1193
1193
|
};
|
|
1194
1194
|
|
|
1195
|
+
declare type HumanTaskTemplate = {
|
|
1196
|
+
createdBy?: string;
|
|
1197
|
+
createdOn?: number;
|
|
1198
|
+
jsonSchema: Record<string, any>;
|
|
1199
|
+
name: string;
|
|
1200
|
+
templateUI: Record<string, any>;
|
|
1201
|
+
updatedBy?: string;
|
|
1202
|
+
updatedOn?: number;
|
|
1203
|
+
version: number;
|
|
1204
|
+
};
|
|
1205
|
+
|
|
1195
1206
|
declare type HumanTaskTrigger = {
|
|
1196
1207
|
startWorkflowRequest?: StartWorkflowRequest;
|
|
1197
1208
|
triggerType?: 'ASSIGNEE_CHANGED' | 'PENDING' | 'IN_PROGRESS' | 'ASSIGNED' | 'COMPLETED' | 'TIMED_OUT';
|
|
@@ -1207,7 +1218,7 @@ declare type HumanTaskDefinition = {
|
|
|
1207
1218
|
assignments?: Array<HumanTaskAssignment>;
|
|
1208
1219
|
taskTriggers?: Array<HumanTaskTrigger>;
|
|
1209
1220
|
userFormTemplate?: UserFormTemplate;
|
|
1210
|
-
fullTemplate
|
|
1221
|
+
fullTemplate?: HumanTaskTemplate;
|
|
1211
1222
|
};
|
|
1212
1223
|
|
|
1213
1224
|
declare type HumanTaskEntry = {
|
|
@@ -1249,17 +1260,6 @@ declare type HumanTaskSearchResult = {
|
|
|
1249
1260
|
totalHits?: number;
|
|
1250
1261
|
};
|
|
1251
1262
|
|
|
1252
|
-
declare type HumanTaskTemplate = {
|
|
1253
|
-
createdBy?: string;
|
|
1254
|
-
createdOn?: number;
|
|
1255
|
-
jsonSchema: Record<string, any>;
|
|
1256
|
-
name: string;
|
|
1257
|
-
templateUI: Record<string, any>;
|
|
1258
|
-
updatedBy?: string;
|
|
1259
|
-
updatedOn?: number;
|
|
1260
|
-
version: number;
|
|
1261
|
-
};
|
|
1262
|
-
|
|
1263
1263
|
declare class HumanTaskService {
|
|
1264
1264
|
readonly httpRequest: BaseHttpRequest;
|
|
1265
1265
|
constructor(httpRequest: BaseHttpRequest);
|
package/dist/index.d.ts
CHANGED
|
@@ -1192,6 +1192,17 @@ declare type HumanTaskAssignment = {
|
|
|
1192
1192
|
slaMinutes?: number;
|
|
1193
1193
|
};
|
|
1194
1194
|
|
|
1195
|
+
declare type HumanTaskTemplate = {
|
|
1196
|
+
createdBy?: string;
|
|
1197
|
+
createdOn?: number;
|
|
1198
|
+
jsonSchema: Record<string, any>;
|
|
1199
|
+
name: string;
|
|
1200
|
+
templateUI: Record<string, any>;
|
|
1201
|
+
updatedBy?: string;
|
|
1202
|
+
updatedOn?: number;
|
|
1203
|
+
version: number;
|
|
1204
|
+
};
|
|
1205
|
+
|
|
1195
1206
|
declare type HumanTaskTrigger = {
|
|
1196
1207
|
startWorkflowRequest?: StartWorkflowRequest;
|
|
1197
1208
|
triggerType?: 'ASSIGNEE_CHANGED' | 'PENDING' | 'IN_PROGRESS' | 'ASSIGNED' | 'COMPLETED' | 'TIMED_OUT';
|
|
@@ -1207,7 +1218,7 @@ declare type HumanTaskDefinition = {
|
|
|
1207
1218
|
assignments?: Array<HumanTaskAssignment>;
|
|
1208
1219
|
taskTriggers?: Array<HumanTaskTrigger>;
|
|
1209
1220
|
userFormTemplate?: UserFormTemplate;
|
|
1210
|
-
fullTemplate
|
|
1221
|
+
fullTemplate?: HumanTaskTemplate;
|
|
1211
1222
|
};
|
|
1212
1223
|
|
|
1213
1224
|
declare type HumanTaskEntry = {
|
|
@@ -1249,17 +1260,6 @@ declare type HumanTaskSearchResult = {
|
|
|
1249
1260
|
totalHits?: number;
|
|
1250
1261
|
};
|
|
1251
1262
|
|
|
1252
|
-
declare type HumanTaskTemplate = {
|
|
1253
|
-
createdBy?: string;
|
|
1254
|
-
createdOn?: number;
|
|
1255
|
-
jsonSchema: Record<string, any>;
|
|
1256
|
-
name: string;
|
|
1257
|
-
templateUI: Record<string, any>;
|
|
1258
|
-
updatedBy?: string;
|
|
1259
|
-
updatedOn?: number;
|
|
1260
|
-
version: number;
|
|
1261
|
-
};
|
|
1262
|
-
|
|
1263
1263
|
declare class HumanTaskService {
|
|
1264
1264
|
readonly httpRequest: BaseHttpRequest;
|
|
1265
1265
|
constructor(httpRequest: BaseHttpRequest);
|