@valtimo/shared 13.42.0 → 13.44.0
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/assets/core/en.json +207 -11
- package/assets/core/nl.json +210 -12
- package/fesm2022/valtimo-shared.mjs +13 -15
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/generated/generated-backend-types.d.ts +455 -48
- package/lib/generated/generated-backend-types.d.ts.map +1 -1
- package/lib/models/config.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
export interface AccentColorsDto {
|
|
2
|
+
colors: {
|
|
3
|
+
[index: string]: string;
|
|
4
|
+
};
|
|
5
|
+
}
|
|
6
|
+
export interface AdminSettingsLogoDto {
|
|
7
|
+
logoType: string;
|
|
8
|
+
imageBase64: string;
|
|
9
|
+
}
|
|
10
|
+
export interface AdminSettingsLogosDto {
|
|
11
|
+
logo: AdminSettingsLogoDto | null;
|
|
12
|
+
logoDarkMode: AdminSettingsLogoDto | null;
|
|
13
|
+
}
|
|
14
|
+
export interface CreateAdminSettingsLogoDto {
|
|
15
|
+
imageBase64: string;
|
|
16
|
+
}
|
|
17
|
+
export interface FeatureToggleOverridesDto {
|
|
18
|
+
overrides: {
|
|
19
|
+
[index: string]: boolean;
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
export interface UpdateFeatureToggleDto {
|
|
23
|
+
key: string;
|
|
24
|
+
enabled: boolean;
|
|
25
|
+
}
|
|
1
26
|
export interface PbacConditionFieldDto {
|
|
2
27
|
name: string;
|
|
3
28
|
type: string;
|
|
@@ -32,17 +57,6 @@ export interface PbacResourceDto {
|
|
|
32
57
|
hasSpecificationFactory: boolean;
|
|
33
58
|
containerTargets: string[];
|
|
34
59
|
}
|
|
35
|
-
export interface AdminSettingsLogoDto {
|
|
36
|
-
logoType: string;
|
|
37
|
-
imageBase64: string;
|
|
38
|
-
}
|
|
39
|
-
export interface AdminSettingsLogosDto {
|
|
40
|
-
logo: AdminSettingsLogoDto | null;
|
|
41
|
-
logoDarkMode: AdminSettingsLogoDto | null;
|
|
42
|
-
}
|
|
43
|
-
export interface CreateAdminSettingsLogoDto {
|
|
44
|
-
imageBase64: string;
|
|
45
|
-
}
|
|
46
60
|
export interface BuildingBlockDefinitionArtworkDto {
|
|
47
61
|
key: string;
|
|
48
62
|
versionTag: string;
|
|
@@ -65,6 +79,18 @@ export interface BuildingBlockFormDefinitionDto {
|
|
|
65
79
|
formDefinition: any;
|
|
66
80
|
readOnly: boolean;
|
|
67
81
|
}
|
|
82
|
+
export interface BuildingBlockInstanceDto {
|
|
83
|
+
id: string;
|
|
84
|
+
documentId: string;
|
|
85
|
+
caseDocumentId: string | null;
|
|
86
|
+
definitionKey: string;
|
|
87
|
+
definitionVersionTag: string;
|
|
88
|
+
activityId: string | null;
|
|
89
|
+
callerProcessDefinitionId: string | null;
|
|
90
|
+
processInstanceId: string | null;
|
|
91
|
+
parentBuildingBlockInstanceId: string | null;
|
|
92
|
+
rootBuildingBlockInstanceId: string | null;
|
|
93
|
+
}
|
|
68
94
|
export interface BuildingBlockProcessDefinitionDto {
|
|
69
95
|
id: string;
|
|
70
96
|
key: string;
|
|
@@ -155,13 +181,14 @@ export interface CaseDefinitionDraftCreateRequest {
|
|
|
155
181
|
name: string | null;
|
|
156
182
|
description: string | null;
|
|
157
183
|
basedOnCaseDefinitionVersion: string | null;
|
|
158
|
-
caseDefinitionId: CaseDefinitionId;
|
|
159
184
|
basedOnCaseDefinitionId: CaseDefinitionId | null;
|
|
185
|
+
caseDefinitionId: CaseDefinitionId;
|
|
160
186
|
}
|
|
161
187
|
export interface CaseDefinitionImportPreviewResponse {
|
|
162
188
|
key: string;
|
|
163
189
|
name: string;
|
|
164
190
|
versionTag: string;
|
|
191
|
+
pluginConfigurations: PluginConfigurationPreviewDto[];
|
|
165
192
|
final: boolean;
|
|
166
193
|
}
|
|
167
194
|
export interface CaseDefinitionImportResponse {
|
|
@@ -267,6 +294,9 @@ export interface CreateStartableItemRequest {
|
|
|
267
294
|
export interface HiddenCaseListColumnDto {
|
|
268
295
|
columnKey: string;
|
|
269
296
|
}
|
|
297
|
+
export interface HiddenTaskListColumnDto {
|
|
298
|
+
columnKey: string;
|
|
299
|
+
}
|
|
270
300
|
export interface ManagementStartableItemDto {
|
|
271
301
|
type: StartableItemType;
|
|
272
302
|
name: string | null;
|
|
@@ -275,12 +305,21 @@ export interface ManagementStartableItemDto {
|
|
|
275
305
|
processDefinitionId: string | null;
|
|
276
306
|
sortOrder: number | null;
|
|
277
307
|
}
|
|
308
|
+
export interface PluginConfigurationPreviewDto {
|
|
309
|
+
pluginConfigurationId: string;
|
|
310
|
+
pluginDefinitionKey: string | null;
|
|
311
|
+
pluginActionDefinitionKey: string;
|
|
312
|
+
processDefinitionKey: string;
|
|
313
|
+
activityId: string;
|
|
314
|
+
existsInTargetEnvironment: boolean;
|
|
315
|
+
}
|
|
278
316
|
export interface StartableItemDto {
|
|
279
317
|
type: StartableItemType;
|
|
280
318
|
name: string | null;
|
|
281
319
|
key: string;
|
|
282
320
|
versionTag: string | null;
|
|
283
321
|
processDefinitionId: string | null;
|
|
322
|
+
draft: boolean;
|
|
284
323
|
}
|
|
285
324
|
export interface StartableItemOrderEntry {
|
|
286
325
|
key: string;
|
|
@@ -311,11 +350,12 @@ export interface AdminWidgetConfigurationResponseDto {
|
|
|
311
350
|
displayType: string;
|
|
312
351
|
dataSourceProperties: ObjectNode;
|
|
313
352
|
displayTypeProperties: ObjectNode;
|
|
314
|
-
url:
|
|
353
|
+
url: string | null;
|
|
315
354
|
}
|
|
316
355
|
export interface DashboardCreateRequestDto {
|
|
317
356
|
title: string;
|
|
318
357
|
description: string;
|
|
358
|
+
widgetLayout: DashboardWidgetLayout | null;
|
|
319
359
|
}
|
|
320
360
|
export interface DashboardResponseDto {
|
|
321
361
|
key: string;
|
|
@@ -323,11 +363,13 @@ export interface DashboardResponseDto {
|
|
|
323
363
|
description: string;
|
|
324
364
|
createdBy: string;
|
|
325
365
|
createdOn: DateAsString;
|
|
366
|
+
widgetLayout: DashboardWidgetLayout | null;
|
|
326
367
|
}
|
|
327
368
|
export interface DashboardUpdateRequestDto {
|
|
328
369
|
key: string;
|
|
329
370
|
title: string;
|
|
330
371
|
description: string;
|
|
372
|
+
widgetLayout: DashboardWidgetLayout | null;
|
|
331
373
|
}
|
|
332
374
|
export interface DashboardWidgetDataResultDto {
|
|
333
375
|
key: string;
|
|
@@ -337,6 +379,7 @@ export interface DashboardWithWidgetsResponseDto {
|
|
|
337
379
|
key: string;
|
|
338
380
|
title: string;
|
|
339
381
|
widgets: WidgetConfigurationResponseDto[];
|
|
382
|
+
widgetLayout: DashboardWidgetLayout | null;
|
|
340
383
|
}
|
|
341
384
|
export interface SingleWidgetConfigurationUpdateRequestDto {
|
|
342
385
|
title: string;
|
|
@@ -344,7 +387,7 @@ export interface SingleWidgetConfigurationUpdateRequestDto {
|
|
|
344
387
|
displayType: string;
|
|
345
388
|
dataSourceProperties: ObjectNode;
|
|
346
389
|
displayTypeProperties: ObjectNode;
|
|
347
|
-
url:
|
|
390
|
+
url: string | null;
|
|
348
391
|
}
|
|
349
392
|
export interface WidgetConfigurationCreateRequestDto {
|
|
350
393
|
title: string;
|
|
@@ -352,14 +395,14 @@ export interface WidgetConfigurationCreateRequestDto {
|
|
|
352
395
|
displayType: string;
|
|
353
396
|
dataSourceProperties: ObjectNode;
|
|
354
397
|
displayTypeProperties: ObjectNode;
|
|
355
|
-
url:
|
|
398
|
+
url: string | null;
|
|
356
399
|
}
|
|
357
400
|
export interface WidgetConfigurationResponseDto {
|
|
358
401
|
key: string;
|
|
359
402
|
title: string;
|
|
360
403
|
displayType: string;
|
|
361
404
|
displayTypeProperties: ObjectNode;
|
|
362
|
-
url:
|
|
405
|
+
url: string | null;
|
|
363
406
|
}
|
|
364
407
|
export interface WidgetConfigurationUpdateRequestDto {
|
|
365
408
|
key: string;
|
|
@@ -368,7 +411,7 @@ export interface WidgetConfigurationUpdateRequestDto {
|
|
|
368
411
|
displayType: string;
|
|
369
412
|
dataSourceProperties: ObjectNode;
|
|
370
413
|
displayTypeProperties: ObjectNode;
|
|
371
|
-
url:
|
|
414
|
+
url: string | null;
|
|
372
415
|
}
|
|
373
416
|
export interface CaseTagCreateRequestDto {
|
|
374
417
|
key: string;
|
|
@@ -388,12 +431,31 @@ export interface CaseTagUpdateRequestDto {
|
|
|
388
431
|
title: string;
|
|
389
432
|
color: CaseTagColor;
|
|
390
433
|
}
|
|
434
|
+
export interface DocumentInspectionDto {
|
|
435
|
+
id: string;
|
|
436
|
+
definitionId: DocumentDefinitionId;
|
|
437
|
+
createdOn: DateAsString;
|
|
438
|
+
modifiedOn: DateAsString;
|
|
439
|
+
createdBy: string;
|
|
440
|
+
sequence: number;
|
|
441
|
+
version: number;
|
|
442
|
+
assigneeId: string;
|
|
443
|
+
assigneeFullName: string;
|
|
444
|
+
assignedTeamKey: string;
|
|
445
|
+
assignedTeamTitle: string;
|
|
446
|
+
internalStatus: string;
|
|
447
|
+
caseTags: CaseTagResponseDto[];
|
|
448
|
+
relations: DocumentRelation[];
|
|
449
|
+
relatedFiles: RelatedFile[];
|
|
450
|
+
content: any;
|
|
451
|
+
}
|
|
391
452
|
export interface InternalCaseStatusCreateRequestDto {
|
|
392
453
|
key: string;
|
|
393
454
|
title: string;
|
|
394
455
|
visibleInCaseListByDefault: boolean;
|
|
395
456
|
retentionPeriodInDays: number;
|
|
396
457
|
color: InternalCaseStatusColor;
|
|
458
|
+
label: string | null;
|
|
397
459
|
}
|
|
398
460
|
export interface InternalCaseStatusResponseDto {
|
|
399
461
|
key: string;
|
|
@@ -403,6 +465,7 @@ export interface InternalCaseStatusResponseDto {
|
|
|
403
465
|
retentionPeriodInDays: number;
|
|
404
466
|
order: number;
|
|
405
467
|
color: InternalCaseStatusColor;
|
|
468
|
+
label: string | null;
|
|
406
469
|
}
|
|
407
470
|
export interface InternalCaseStatusUpdateOrderRequestDto {
|
|
408
471
|
key: string;
|
|
@@ -410,6 +473,7 @@ export interface InternalCaseStatusUpdateOrderRequestDto {
|
|
|
410
473
|
visibleInCaseListByDefault: boolean;
|
|
411
474
|
retentionPeriodInDays: number;
|
|
412
475
|
color: InternalCaseStatusColor;
|
|
476
|
+
label: string | null;
|
|
413
477
|
}
|
|
414
478
|
export interface InternalCaseStatusUpdateRequestDto {
|
|
415
479
|
key: string;
|
|
@@ -417,6 +481,7 @@ export interface InternalCaseStatusUpdateRequestDto {
|
|
|
417
481
|
visibleInCaseListByDefault: boolean;
|
|
418
482
|
retentionPeriodInDays: number;
|
|
419
483
|
color: InternalCaseStatusColor;
|
|
484
|
+
label: string | null;
|
|
420
485
|
}
|
|
421
486
|
export interface ColumnKeyResponse {
|
|
422
487
|
key: string;
|
|
@@ -597,6 +662,11 @@ export interface IntermediateSubmission {
|
|
|
597
662
|
}
|
|
598
663
|
export interface IntermediateSubmissionKt {
|
|
599
664
|
}
|
|
665
|
+
export interface FormFlowAdditionalPropertyDto {
|
|
666
|
+
name: string;
|
|
667
|
+
context: string;
|
|
668
|
+
alwaysPresent: boolean;
|
|
669
|
+
}
|
|
600
670
|
export interface FormFlowBreadcrumbResponse {
|
|
601
671
|
title: string | null;
|
|
602
672
|
key: string;
|
|
@@ -607,6 +677,19 @@ export interface FormFlowBreadcrumbsResponse {
|
|
|
607
677
|
currentStepIndex: number;
|
|
608
678
|
breadcrumbs: FormFlowBreadcrumbResponse[];
|
|
609
679
|
}
|
|
680
|
+
export interface FormFlowExpressionBeanDto {
|
|
681
|
+
name: string;
|
|
682
|
+
methods: FormFlowExpressionMethodDto[];
|
|
683
|
+
}
|
|
684
|
+
export interface FormFlowExpressionMethodDto {
|
|
685
|
+
name: string;
|
|
686
|
+
parameters: FormFlowExpressionParameterDto[];
|
|
687
|
+
returnType: string;
|
|
688
|
+
}
|
|
689
|
+
export interface FormFlowExpressionParameterDto {
|
|
690
|
+
name: string;
|
|
691
|
+
type: string;
|
|
692
|
+
}
|
|
610
693
|
export interface FormFlowProcessLinkCreateRequestDto extends ProcessLinkCreateRequestDto {
|
|
611
694
|
formFlowDefinitionKey: string;
|
|
612
695
|
formDisplayType: FormDisplayType | null;
|
|
@@ -631,6 +714,19 @@ export interface FormFlowProcessLinkUpdateRequestDto extends ProcessLinkUpdateRe
|
|
|
631
714
|
formSize: FormSizes | null;
|
|
632
715
|
subtitles: string[] | null;
|
|
633
716
|
}
|
|
717
|
+
export interface FormFlowRegistryDto {
|
|
718
|
+
stepTypes: FormFlowStepTypeDto[];
|
|
719
|
+
expressionBeans: FormFlowExpressionBeanDto[];
|
|
720
|
+
additionalProperties: FormFlowAdditionalPropertyDto[];
|
|
721
|
+
}
|
|
722
|
+
export interface FormFlowStepTypeDto {
|
|
723
|
+
name: string;
|
|
724
|
+
properties: FormFlowStepTypePropertyDto[];
|
|
725
|
+
}
|
|
726
|
+
export interface FormFlowStepTypePropertyDto {
|
|
727
|
+
name: string;
|
|
728
|
+
type: string;
|
|
729
|
+
}
|
|
634
730
|
export interface MultipleFormErrors {
|
|
635
731
|
componentErrors: ComponentError[];
|
|
636
732
|
}
|
|
@@ -681,6 +777,49 @@ export interface NoteResponseDto {
|
|
|
681
777
|
export interface NoteUpdateRequestDto {
|
|
682
778
|
content: string;
|
|
683
779
|
}
|
|
780
|
+
export interface JobInspectionDto {
|
|
781
|
+
id: string;
|
|
782
|
+
jobDefinitionId: string | null;
|
|
783
|
+
executionId: string | null;
|
|
784
|
+
activityId: string | null;
|
|
785
|
+
jobType: JobType;
|
|
786
|
+
retries: number;
|
|
787
|
+
exceptionMessage: string | null;
|
|
788
|
+
dueDate: DateAsString | null;
|
|
789
|
+
suspended: boolean;
|
|
790
|
+
}
|
|
791
|
+
export interface LogInspectionSearchRequest {
|
|
792
|
+
level: string | null;
|
|
793
|
+
likeFormattedMessage: string | null;
|
|
794
|
+
afterTimestamp: DateAsString | null;
|
|
795
|
+
beforeTimestamp: DateAsString | null;
|
|
796
|
+
additionalProperties: LoggingEventPropertyDto[];
|
|
797
|
+
}
|
|
798
|
+
export interface ProcessInstanceInspectionDto {
|
|
799
|
+
processInstanceId: string;
|
|
800
|
+
processDefinitionId: string | null;
|
|
801
|
+
processDefinitionKey: string | null;
|
|
802
|
+
processName: string | null;
|
|
803
|
+
version: number;
|
|
804
|
+
latestVersion: number;
|
|
805
|
+
active: boolean;
|
|
806
|
+
startedBy: string | null;
|
|
807
|
+
startedByUserId: string | null;
|
|
808
|
+
startedOn: DateAsString | null;
|
|
809
|
+
incidents: IncidentDto[];
|
|
810
|
+
tasks: TaskInspectionDto[];
|
|
811
|
+
variables: ProcessVariableDto[];
|
|
812
|
+
jobs: JobInspectionDto[];
|
|
813
|
+
buildingBlock: BuildingBlockProcessReference | null;
|
|
814
|
+
}
|
|
815
|
+
export interface TaskInspectionDto {
|
|
816
|
+
id: string;
|
|
817
|
+
name: string | null;
|
|
818
|
+
assignee: string | null;
|
|
819
|
+
created: DateAsString | null;
|
|
820
|
+
dueDate: DateAsString | null;
|
|
821
|
+
taskDefinitionKey: string | null;
|
|
822
|
+
}
|
|
684
823
|
export interface URLProcessLinkCreateRequestDto extends ProcessLinkCreateRequestDto {
|
|
685
824
|
url: string;
|
|
686
825
|
}
|
|
@@ -712,11 +851,49 @@ export interface CaseProcessDefinitionResponseDto {
|
|
|
712
851
|
processLinks: ProcessLinkResponseDto[];
|
|
713
852
|
bpmn20Xml: string;
|
|
714
853
|
draft: boolean;
|
|
854
|
+
autofilledElements: AutofilledElementDto[];
|
|
855
|
+
}
|
|
856
|
+
export interface MissingReferenceDto {
|
|
857
|
+
type: MissingReferenceType;
|
|
858
|
+
reference: string;
|
|
859
|
+
activityId: string | null;
|
|
860
|
+
processDefinitionKey: string | null;
|
|
861
|
+
blocksImport: boolean;
|
|
862
|
+
}
|
|
863
|
+
export interface ProcessDefinitionConflictResponseDto {
|
|
864
|
+
processDefinitionKey: string;
|
|
865
|
+
processDefinitionId: string;
|
|
866
|
+
processDefinitionName: string | null;
|
|
867
|
+
}
|
|
868
|
+
export interface ProcessDefinitionImportPreviewResponseDto {
|
|
869
|
+
processDefinitionKeys: string[];
|
|
870
|
+
existingProcessDefinitionKeys: string[];
|
|
871
|
+
pluginConfigurations: ProcessLinkPluginConfigurationPreviewDto[];
|
|
872
|
+
missingReferences: MissingReferenceDto[];
|
|
873
|
+
elementsToReplace: ReplacedElementDto[];
|
|
874
|
+
canImport: boolean;
|
|
875
|
+
}
|
|
876
|
+
export interface ProcessDefinitionImportResponseDto {
|
|
877
|
+
processDefinitionKeys: string[];
|
|
878
|
+
missingReferences: MissingReferenceDto[];
|
|
715
879
|
}
|
|
716
880
|
export interface ProcessDefinitionResponseDto {
|
|
717
881
|
processDefinition: ProcessDefinitionWithPropertiesDto;
|
|
718
882
|
processLinks: ProcessLinkResponseDto[];
|
|
719
883
|
bpmn20Xml: string;
|
|
884
|
+
draft: boolean;
|
|
885
|
+
autofilledElements: AutofilledElementDto[];
|
|
886
|
+
}
|
|
887
|
+
export interface ProcessDefinitionValidateRequestDto {
|
|
888
|
+
bpmnXml: string;
|
|
889
|
+
processLinks: ProcessLinkCreateRequestDto[];
|
|
890
|
+
canInitializeDocument: boolean;
|
|
891
|
+
startableByUser: boolean;
|
|
892
|
+
}
|
|
893
|
+
export interface ProcessDefinitionValidateResponseDto {
|
|
894
|
+
hasWarnings: boolean;
|
|
895
|
+
errors: ProcessDefinitionValidationError[];
|
|
896
|
+
valid: boolean;
|
|
720
897
|
}
|
|
721
898
|
export interface ProcessLinkActivityResult<T> {
|
|
722
899
|
processLinkId: string;
|
|
@@ -731,26 +908,38 @@ export interface ProcessLinkActivityResultWithTask {
|
|
|
731
908
|
}
|
|
732
909
|
export interface ProcessLinkCreateRequestDto {
|
|
733
910
|
activityId: string;
|
|
911
|
+
processDefinitionId: string;
|
|
734
912
|
activityType: ActivityTypeWithEventName;
|
|
735
913
|
processLinkType: string;
|
|
736
|
-
processDefinitionId: string;
|
|
737
914
|
}
|
|
738
915
|
export interface ProcessLinkExportResponseDto {
|
|
739
916
|
activityId: string;
|
|
740
917
|
activityType: ActivityTypeWithEventName;
|
|
741
918
|
processLinkType: string;
|
|
742
919
|
}
|
|
920
|
+
export interface ProcessLinkPluginConfigurationPreviewDto {
|
|
921
|
+
pluginConfigurationId: string;
|
|
922
|
+
pluginDefinitionKey: string | null;
|
|
923
|
+
pluginActionDefinitionKey: string;
|
|
924
|
+
processDefinitionKey: string;
|
|
925
|
+
activityId: string;
|
|
926
|
+
existsInTargetEnvironment: boolean;
|
|
927
|
+
}
|
|
743
928
|
export interface ProcessLinkResponseDto {
|
|
744
929
|
activityId: string;
|
|
930
|
+
processDefinitionId: string;
|
|
745
931
|
activityType: ActivityTypeWithEventName;
|
|
746
932
|
processLinkType: string;
|
|
747
|
-
processDefinitionId: string;
|
|
748
933
|
id: string;
|
|
749
934
|
}
|
|
750
935
|
export interface ProcessLinkUpdateRequestDto {
|
|
751
936
|
processLinkType: string;
|
|
752
937
|
id: string;
|
|
753
938
|
}
|
|
939
|
+
export interface ReplacedElementDto {
|
|
940
|
+
type: ReplacedElementType;
|
|
941
|
+
key: string;
|
|
942
|
+
}
|
|
754
943
|
export interface SearchFieldV2Dto {
|
|
755
944
|
id: string;
|
|
756
945
|
ownerId: string;
|
|
@@ -772,6 +961,7 @@ export interface TabDto {
|
|
|
772
961
|
properties: {
|
|
773
962
|
[index: string]: any | null;
|
|
774
963
|
} | null;
|
|
964
|
+
widgetLayout: TabWidgetLayout | null;
|
|
775
965
|
}
|
|
776
966
|
export interface TeamCreateRequestDto {
|
|
777
967
|
key: string;
|
|
@@ -802,6 +992,11 @@ export interface TeamUserResponseDto {
|
|
|
802
992
|
fullName: string | null;
|
|
803
993
|
email: string | null;
|
|
804
994
|
}
|
|
995
|
+
export interface AutofilledElementDto {
|
|
996
|
+
activityId: string;
|
|
997
|
+
modificationType: string;
|
|
998
|
+
appliedValue: string;
|
|
999
|
+
}
|
|
805
1000
|
export interface BatchAssignTaskDTO {
|
|
806
1001
|
assignee: string;
|
|
807
1002
|
assignedTeamKey: string;
|
|
@@ -849,6 +1044,20 @@ export interface CustomTaskDto {
|
|
|
849
1044
|
processVersion: string;
|
|
850
1045
|
businessKey: string;
|
|
851
1046
|
}
|
|
1047
|
+
export interface DecisionDefinitionResponseDto {
|
|
1048
|
+
id: string;
|
|
1049
|
+
key: string;
|
|
1050
|
+
category: string | null;
|
|
1051
|
+
name: string | null;
|
|
1052
|
+
version: number;
|
|
1053
|
+
resource: string | null;
|
|
1054
|
+
deploymentId: string | null;
|
|
1055
|
+
tenantId: string | null;
|
|
1056
|
+
decisionRequirementsDefinitionId: string | null;
|
|
1057
|
+
decisionRequirementsDefinitionKey: string | null;
|
|
1058
|
+
versionTag: string | null;
|
|
1059
|
+
historyTimeToLive: number | null;
|
|
1060
|
+
}
|
|
852
1061
|
export interface DefinitionDeploymentResponseDto {
|
|
853
1062
|
identifier: string;
|
|
854
1063
|
}
|
|
@@ -873,6 +1082,21 @@ export interface HeatmapTaskDTO {
|
|
|
873
1082
|
count: number;
|
|
874
1083
|
totalCount: number;
|
|
875
1084
|
}
|
|
1085
|
+
export interface IncidentDto {
|
|
1086
|
+
id: string;
|
|
1087
|
+
processInstanceId: string;
|
|
1088
|
+
processDefinitionId: string;
|
|
1089
|
+
executionId: string;
|
|
1090
|
+
activityId: string;
|
|
1091
|
+
incidentType: string;
|
|
1092
|
+
incidentMessage: string;
|
|
1093
|
+
incidentTimestamp: DateAsString;
|
|
1094
|
+
causeIncidentId: string;
|
|
1095
|
+
rootCauseIncidentId: string;
|
|
1096
|
+
configuration: string;
|
|
1097
|
+
tenantId: string;
|
|
1098
|
+
jobDefinitionId: string;
|
|
1099
|
+
}
|
|
876
1100
|
export interface KeyAndPasswordDTO {
|
|
877
1101
|
key: string;
|
|
878
1102
|
newPassword: string;
|
|
@@ -887,6 +1111,7 @@ export interface ProcessDefinitionDiagramWithPropertyDto {
|
|
|
887
1111
|
bpmn20Xml: string;
|
|
888
1112
|
readOnly: boolean;
|
|
889
1113
|
systemProcess: boolean;
|
|
1114
|
+
autofilledElements: AutofilledElementDto[];
|
|
890
1115
|
}
|
|
891
1116
|
export interface ProcessDefinitionWithPropertiesDto extends ProcessDefinitionDto {
|
|
892
1117
|
readOnly: boolean;
|
|
@@ -903,6 +1128,16 @@ export interface ProcessInstanceStatisticsDTO {
|
|
|
903
1128
|
duration: number;
|
|
904
1129
|
processName: string;
|
|
905
1130
|
}
|
|
1131
|
+
export interface ProcessVariableDto {
|
|
1132
|
+
name: string;
|
|
1133
|
+
type: string;
|
|
1134
|
+
value: any;
|
|
1135
|
+
}
|
|
1136
|
+
export interface ProcessVariableMutationRequest {
|
|
1137
|
+
name: string;
|
|
1138
|
+
type: ProcessVariableType;
|
|
1139
|
+
value: any;
|
|
1140
|
+
}
|
|
906
1141
|
export interface StartFormDto {
|
|
907
1142
|
formLocation: string;
|
|
908
1143
|
formFields: FormField[];
|
|
@@ -917,30 +1152,174 @@ export interface TaskCompletionDTO {
|
|
|
917
1152
|
export interface UserTeamDto {
|
|
918
1153
|
key: string;
|
|
919
1154
|
}
|
|
1155
|
+
export interface TemplatePreviewRequest {
|
|
1156
|
+
fileName: string;
|
|
1157
|
+
content: string;
|
|
1158
|
+
}
|
|
1159
|
+
export interface CreateTemplateRequest {
|
|
1160
|
+
key: string;
|
|
1161
|
+
caseDefinitionKey: string | null;
|
|
1162
|
+
caseDefinitionVersionTag: string | null;
|
|
1163
|
+
buildingBlockDefinitionKey: string | null;
|
|
1164
|
+
buildingBlockDefinitionVersionTag: string | null;
|
|
1165
|
+
type: string;
|
|
1166
|
+
metadata: {
|
|
1167
|
+
[index: string]: any | null;
|
|
1168
|
+
};
|
|
1169
|
+
}
|
|
1170
|
+
export interface DeleteTemplateRequest {
|
|
1171
|
+
caseDefinitionKey: string | null;
|
|
1172
|
+
caseDefinitionVersionTag: string | null;
|
|
1173
|
+
buildingBlockDefinitionKey: string | null;
|
|
1174
|
+
buildingBlockDefinitionVersionTag: string | null;
|
|
1175
|
+
templates: TemplateKeyType[];
|
|
1176
|
+
}
|
|
1177
|
+
export interface TemplateKeyType {
|
|
1178
|
+
key: string;
|
|
1179
|
+
type: string;
|
|
1180
|
+
}
|
|
1181
|
+
export interface TemplateListItemResponse {
|
|
1182
|
+
key: string;
|
|
1183
|
+
type: string;
|
|
1184
|
+
}
|
|
1185
|
+
export interface TemplateResponse {
|
|
1186
|
+
key: string;
|
|
1187
|
+
caseDefinitionKey: string | null;
|
|
1188
|
+
caseDefinitionVersionTag: string | null;
|
|
1189
|
+
buildingBlockDefinitionKey: string | null;
|
|
1190
|
+
buildingBlockDefinitionVersionTag: string | null;
|
|
1191
|
+
type: string;
|
|
1192
|
+
metadata: {
|
|
1193
|
+
[index: string]: any | null;
|
|
1194
|
+
};
|
|
1195
|
+
content: string;
|
|
1196
|
+
}
|
|
1197
|
+
export interface UpdateTemplateRequest {
|
|
1198
|
+
key: string;
|
|
1199
|
+
caseDefinitionKey: string | null;
|
|
1200
|
+
caseDefinitionVersionTag: string | null;
|
|
1201
|
+
buildingBlockDefinitionKey: string | null;
|
|
1202
|
+
buildingBlockDefinitionVersionTag: string | null;
|
|
1203
|
+
type: string;
|
|
1204
|
+
metadata: {
|
|
1205
|
+
[index: string]: any | null;
|
|
1206
|
+
};
|
|
1207
|
+
content: string;
|
|
1208
|
+
}
|
|
920
1209
|
export interface WidgetDto {
|
|
921
1210
|
type: string;
|
|
922
1211
|
title: string;
|
|
923
|
-
compact: boolean | null;
|
|
924
|
-
color: WidgetColor | null;
|
|
925
1212
|
icon: string | null;
|
|
1213
|
+
compact: boolean | null;
|
|
926
1214
|
width: number;
|
|
927
|
-
|
|
1215
|
+
color: WidgetColor | null;
|
|
928
1216
|
highContrast: boolean;
|
|
1217
|
+
displayConditions: Condition<any>[] | null;
|
|
929
1218
|
key: string;
|
|
930
1219
|
actions: WidgetAction[];
|
|
931
1220
|
}
|
|
1221
|
+
export interface CaseZaakdetailsInspectionDto {
|
|
1222
|
+
syncConfig: ZaakdetailsSyncConfigDto | null;
|
|
1223
|
+
zaakdetailsObject: ZaakdetailsObjectDto | null;
|
|
1224
|
+
}
|
|
1225
|
+
export interface ZaakdetailsObjectContentDto {
|
|
1226
|
+
resolved: boolean;
|
|
1227
|
+
record: any | null;
|
|
1228
|
+
message: string | null;
|
|
1229
|
+
objectUrl: string | null;
|
|
1230
|
+
}
|
|
1231
|
+
export interface ZaakdetailsObjectDto {
|
|
1232
|
+
documentId: string;
|
|
1233
|
+
objectUrl: string;
|
|
1234
|
+
linkedToZaak: boolean;
|
|
1235
|
+
}
|
|
1236
|
+
export interface ZaakdetailsSyncConfigDto {
|
|
1237
|
+
caseDefinitionKey: string;
|
|
1238
|
+
caseDefinitionVersionTag: string;
|
|
1239
|
+
objectManagementConfigurationId: string | null;
|
|
1240
|
+
objectManagementTitle: string | null;
|
|
1241
|
+
enabled: boolean;
|
|
1242
|
+
}
|
|
1243
|
+
export interface CaseZgwInspectionDto {
|
|
1244
|
+
zaakInstanceLink: ZaakInstanceLinkDto | null;
|
|
1245
|
+
zaak: any | null;
|
|
1246
|
+
eigenschappen: ZaakEigenschapDto[];
|
|
1247
|
+
rollen: ZaakRolDto[];
|
|
1248
|
+
statusHistory: ZaakStatusDto[];
|
|
1249
|
+
resultaat: ZaakResultaatDto | null;
|
|
1250
|
+
zaakObjecten: ZaakObjectDto[];
|
|
1251
|
+
zaakInformatieObjecten: ZaakInformatieObjectDto[];
|
|
1252
|
+
besluiten: ZaakBesluitDto[];
|
|
1253
|
+
warnings: string[];
|
|
1254
|
+
}
|
|
1255
|
+
export interface ZaakBesluitDto {
|
|
1256
|
+
url: string;
|
|
1257
|
+
besluit: string;
|
|
1258
|
+
}
|
|
1259
|
+
export interface ZaakEigenschapDto {
|
|
1260
|
+
url: string;
|
|
1261
|
+
eigenschap: string;
|
|
1262
|
+
naam: string | null;
|
|
1263
|
+
waarde: string;
|
|
1264
|
+
}
|
|
1265
|
+
export interface ZaakInformatieObjectDto {
|
|
1266
|
+
url: string;
|
|
1267
|
+
informatieobject: string;
|
|
1268
|
+
titel: string | null;
|
|
1269
|
+
registratiedatum: DateAsString;
|
|
1270
|
+
}
|
|
1271
|
+
export interface ZaakInstanceLinkDto {
|
|
1272
|
+
zaakInstanceUrl: string;
|
|
1273
|
+
zaakInstanceId: string;
|
|
1274
|
+
zaakTypeUrl: string;
|
|
1275
|
+
}
|
|
1276
|
+
export interface ZaakObjectDto {
|
|
1277
|
+
url: string;
|
|
1278
|
+
objectUrl: string;
|
|
1279
|
+
objectType: string;
|
|
1280
|
+
objectTypeOverige: string | null;
|
|
1281
|
+
relatieomschrijving: string | null;
|
|
1282
|
+
}
|
|
1283
|
+
export interface ZaakResultaatDto {
|
|
1284
|
+
url: string;
|
|
1285
|
+
resultaattype: string;
|
|
1286
|
+
toelichting: string | null;
|
|
1287
|
+
}
|
|
1288
|
+
export interface ZaakRolDto {
|
|
1289
|
+
url: string | null;
|
|
1290
|
+
betrokkeneType: string;
|
|
1291
|
+
roltype: string;
|
|
1292
|
+
omschrijving: string | null;
|
|
1293
|
+
omschrijvingGeneriek: string | null;
|
|
1294
|
+
indicatieMachtiging: string | null;
|
|
1295
|
+
betrokkeneIdentificatie: any | null;
|
|
1296
|
+
}
|
|
1297
|
+
export interface ZaakStatusDto {
|
|
1298
|
+
url: string;
|
|
1299
|
+
statustype: string;
|
|
1300
|
+
datumStatusGezet: DateAsString;
|
|
1301
|
+
statustoelichting: string | null;
|
|
1302
|
+
}
|
|
1303
|
+
export interface ZaakobjectResolveResultDto {
|
|
1304
|
+
resolved: boolean;
|
|
1305
|
+
record: any | null;
|
|
1306
|
+
message: string | null;
|
|
1307
|
+
objectUrl: string;
|
|
1308
|
+
}
|
|
932
1309
|
export interface BuildingBlockInputMapping {
|
|
933
1310
|
source: string;
|
|
934
1311
|
target: string;
|
|
1312
|
+
prefixedTarget: string;
|
|
935
1313
|
}
|
|
936
1314
|
export interface BuildingBlockOutputMapping {
|
|
937
1315
|
source: string;
|
|
938
1316
|
target: string;
|
|
939
1317
|
syncTiming: BuildingBlockSyncTiming;
|
|
1318
|
+
prefixedSource: string;
|
|
940
1319
|
}
|
|
941
1320
|
export interface CaseDefinitionId extends AbstractId<CaseDefinitionId>, BlueprintId {
|
|
942
1321
|
key: string;
|
|
943
|
-
versionTag:
|
|
1322
|
+
versionTag: string;
|
|
944
1323
|
}
|
|
945
1324
|
export interface CaseListItemDto {
|
|
946
1325
|
key: string;
|
|
@@ -948,13 +1327,20 @@ export interface CaseListItemDto {
|
|
|
948
1327
|
}
|
|
949
1328
|
export interface ObjectNode extends ContainerNode<ObjectNode>, Serializable {
|
|
950
1329
|
}
|
|
951
|
-
export interface
|
|
1330
|
+
export interface DocumentDefinitionId {
|
|
1331
|
+
buildingBlockDefinitionId: BuildingBlockDefinitionId;
|
|
1332
|
+
caseDefinitionId: CaseDefinitionId;
|
|
1333
|
+
name: string;
|
|
1334
|
+
}
|
|
1335
|
+
export interface DocumentRelation {
|
|
1336
|
+
relationType: DocumentRelationType;
|
|
1337
|
+
id: string;
|
|
952
1338
|
}
|
|
953
1339
|
export interface RelatedFile {
|
|
954
|
-
createdOn: DateAsString;
|
|
955
1340
|
fileId: string;
|
|
956
|
-
|
|
1341
|
+
createdOn: DateAsString;
|
|
957
1342
|
createdBy: string;
|
|
1343
|
+
sizeInBytes: number;
|
|
958
1344
|
fileName: string;
|
|
959
1345
|
}
|
|
960
1346
|
export interface OperationError {
|
|
@@ -965,11 +1351,17 @@ export interface ComponentError {
|
|
|
965
1351
|
component: string | null;
|
|
966
1352
|
message: string;
|
|
967
1353
|
}
|
|
1354
|
+
export interface BuildingBlockProcessReference {
|
|
1355
|
+
instanceId: string;
|
|
1356
|
+
definitionKey: string;
|
|
1357
|
+
definitionVersionTag: string;
|
|
1358
|
+
documentId: string;
|
|
1359
|
+
}
|
|
968
1360
|
export interface ProcessLinkDeployDto {
|
|
969
1361
|
processLinkType: "url";
|
|
970
1362
|
activityId: string;
|
|
971
|
-
activityType: ActivityTypeWithEventName;
|
|
972
1363
|
processDefinitionId: string;
|
|
1364
|
+
activityType: ActivityTypeWithEventName;
|
|
973
1365
|
}
|
|
974
1366
|
export interface ProcessDefinitionCaseDefinition {
|
|
975
1367
|
id: ProcessDefinitionCaseDefinitionId;
|
|
@@ -977,6 +1369,20 @@ export interface ProcessDefinitionCaseDefinition {
|
|
|
977
1369
|
startableByUser: boolean;
|
|
978
1370
|
processDefinitionName: string | null;
|
|
979
1371
|
processDefinitionKey: string | null;
|
|
1372
|
+
draft: boolean;
|
|
1373
|
+
}
|
|
1374
|
+
export interface ProcessDefinitionValidationError {
|
|
1375
|
+
elementId: string;
|
|
1376
|
+
elementType: string;
|
|
1377
|
+
elementName: string | null;
|
|
1378
|
+
reason: string;
|
|
1379
|
+
errorCode: string | null;
|
|
1380
|
+
expression: string | null;
|
|
1381
|
+
severity: ValidationSeverity;
|
|
1382
|
+
invalidFields: string[] | null;
|
|
1383
|
+
invalidArguments: number[] | null;
|
|
1384
|
+
listenerType: string | null;
|
|
1385
|
+
listenerIndex: number | null;
|
|
980
1386
|
}
|
|
981
1387
|
export interface TaskInstanceWithIdentityLink {
|
|
982
1388
|
businessKey: string;
|
|
@@ -1043,8 +1449,8 @@ export interface OperatonTaskDto {
|
|
|
1043
1449
|
}
|
|
1044
1450
|
export interface FormField {
|
|
1045
1451
|
businessKey: boolean;
|
|
1046
|
-
label: string;
|
|
1047
1452
|
validationConstraints: FormFieldValidationConstraint[];
|
|
1453
|
+
label: string;
|
|
1048
1454
|
value: TypedValue;
|
|
1049
1455
|
typeName: string;
|
|
1050
1456
|
properties: {
|
|
@@ -1074,23 +1480,23 @@ export interface ProcessDefinitionDto {
|
|
|
1074
1480
|
startableInTasklist: boolean;
|
|
1075
1481
|
}
|
|
1076
1482
|
export interface HistoricActivityInstance {
|
|
1077
|
-
|
|
1483
|
+
rootProcessInstanceId: string;
|
|
1484
|
+
processDefinitionKey: string;
|
|
1078
1485
|
canceled: boolean;
|
|
1079
1486
|
removalTime: DateAsString;
|
|
1487
|
+
parentActivityInstanceId: string;
|
|
1488
|
+
calledProcessInstanceId: string;
|
|
1489
|
+
calledCaseInstanceId: string;
|
|
1080
1490
|
activityId: string;
|
|
1081
|
-
assignee: string;
|
|
1082
1491
|
tenantId: string;
|
|
1492
|
+
executionId: string;
|
|
1493
|
+
assignee: string;
|
|
1494
|
+
taskId: string;
|
|
1083
1495
|
startTime: DateAsString;
|
|
1084
1496
|
endTime: DateAsString;
|
|
1085
|
-
taskId: string;
|
|
1086
|
-
activityType: string;
|
|
1087
1497
|
processDefinitionId: string;
|
|
1088
|
-
processDefinitionKey: string;
|
|
1089
|
-
rootProcessInstanceId: string;
|
|
1090
|
-
parentActivityInstanceId: string;
|
|
1091
|
-
calledProcessInstanceId: string;
|
|
1092
|
-
calledCaseInstanceId: string;
|
|
1093
1498
|
processInstanceId: string;
|
|
1499
|
+
activityType: string;
|
|
1094
1500
|
activityName: string;
|
|
1095
1501
|
durationInMillis: number;
|
|
1096
1502
|
completeScope: boolean;
|
|
@@ -1107,21 +1513,16 @@ export interface Condition<T> {
|
|
|
1107
1513
|
}
|
|
1108
1514
|
export interface WidgetAction {
|
|
1109
1515
|
}
|
|
1110
|
-
export interface Semver extends Comparable<Semver> {
|
|
1111
|
-
major: number;
|
|
1112
|
-
minor: number;
|
|
1113
|
-
patch: number;
|
|
1114
|
-
preRelease: string[];
|
|
1115
|
-
build: string[];
|
|
1116
|
-
version: string;
|
|
1117
|
-
stable: boolean;
|
|
1118
|
-
}
|
|
1119
1516
|
export interface BlueprintId {
|
|
1120
1517
|
tagPrefix: string;
|
|
1121
1518
|
idKey: string;
|
|
1122
1519
|
}
|
|
1123
1520
|
export interface Serializable {
|
|
1124
1521
|
}
|
|
1522
|
+
export interface BuildingBlockDefinitionId extends AbstractId<BuildingBlockDefinitionId>, BlueprintId {
|
|
1523
|
+
key: string;
|
|
1524
|
+
versionTag: string;
|
|
1525
|
+
}
|
|
1125
1526
|
export interface ProcessDefinitionCaseDefinitionId extends AbstractId<ProcessDefinitionCaseDefinitionId> {
|
|
1126
1527
|
processDefinitionId: ProcessDefinitionId;
|
|
1127
1528
|
caseDefinitionId: CaseDefinitionId;
|
|
@@ -1186,8 +1587,6 @@ export interface AbstractId<SELF> extends Identity, Serializable {
|
|
|
1186
1587
|
}
|
|
1187
1588
|
export interface ContainerNode<T> extends BaseJsonNode, JsonNodeCreator {
|
|
1188
1589
|
}
|
|
1189
|
-
export interface Comparable<T> {
|
|
1190
|
-
}
|
|
1191
1590
|
export interface ProcessDefinitionId {
|
|
1192
1591
|
id: string;
|
|
1193
1592
|
}
|
|
@@ -1213,8 +1612,13 @@ export interface JsonNodeCreator {
|
|
|
1213
1612
|
}
|
|
1214
1613
|
export type DateAsString = string;
|
|
1215
1614
|
export type StartableItemType = "PROCESS" | "BUILDING_BLOCK";
|
|
1615
|
+
export type JobType = "TIMER" | "ASYNC_CONTINUATION" | "MESSAGE" | "BATCH" | "OTHER";
|
|
1616
|
+
export type MissingReferenceType = "SUB_PROCESS" | "DECISION_DEFINITION" | "FORM" | "FORM_FLOW" | "READ_ONLY_SYSTEM_PROCESS";
|
|
1617
|
+
export type ReplacedElementType = "PROCESS_DEFINITION" | "DECISION_DEFINITION" | "FORM";
|
|
1618
|
+
export type ProcessVariableType = "STRING" | "INTEGER" | "LONG" | "DOUBLE" | "BOOLEAN" | "JSON";
|
|
1216
1619
|
export type ColumnDefaultSort = "ASC" | "DESC";
|
|
1217
1620
|
export type CaseTabType = "standard" | "formio" | "custom" | "widgets";
|
|
1621
|
+
export type DashboardWidgetLayout = "MUURI_GAP_FREE" | "MUURI" | "BEAUTIFUL";
|
|
1218
1622
|
export type CaseTagColor = "WARMGRAY" | "RED" | "MAGENTA" | "PURPLE" | "BLUE" | "CYAN" | "TEAL" | "GREEN" | "GRAY" | "COOLGRAY" | "HIGHCONTRAST" | "OUTLINE";
|
|
1219
1623
|
export type InternalCaseStatusColor = "WARMGRAY" | "RED" | "MAGENTA" | "PURPLE" | "BLUE" | "CYAN" | "TEAL" | "GREEN" | "GRAY" | "COOLGRAY" | "HIGHCONTRAST" | "OUTLINE";
|
|
1220
1624
|
export type DocumentStatusType = "in_bewerking" | "ter_vaststelling" | "definitief" | "gearchiveerd";
|
|
@@ -1224,8 +1628,11 @@ export type FormSizes = "extraSmall" | "small" | "medium" | "large";
|
|
|
1224
1628
|
export type DataType = "text" | "number" | "date" | "datetime" | "time" | "boolean" | "bsn";
|
|
1225
1629
|
export type FieldType = "text_contains" | "single" | "range" | "single-select-dropdown" | "multi-select-dropdown";
|
|
1226
1630
|
export type SearchFieldMatchType = "like" | "exact";
|
|
1631
|
+
export type TabWidgetLayout = "MUURI_GAP_FREE" | "MUURI" | "BEAUTIFUL";
|
|
1227
1632
|
export type WidgetColor = "YELLOW" | "ORANGE" | "RED" | "BROWN" | "GREEN" | "TURQOISE" | "PURPLE" | "PERIWINKLE" | "BLUE" | "HIGHCONTRAST" | "WHITE";
|
|
1228
1633
|
export type BuildingBlockSyncTiming = "CONTINUOUS" | "END";
|
|
1634
|
+
export type DocumentRelationType = "PREVIOUS" | "NEXT" | "SUPPORTING";
|
|
1635
|
+
export type ValidationSeverity = "ERROR" | "WARNING";
|
|
1229
1636
|
export type ExpressionOperator = "!=" | "==" | ">" | ">=" | "<" | "<=" | "list_contains" | "in";
|
|
1230
1637
|
export type ProcessVariableDTOV2Union = StringProcessVariableDTOV2 | DateProcessVariableDTOV2 | BooleanProcessVariableDTOV2 | EnumProcessVariableDTOV2 | LongProcessVariableDTOV2 | FileUploadProcessVariableDTOV2;
|
|
1231
1638
|
//# sourceMappingURL=generated-backend-types.d.ts.map
|