@valtimo/shared 13.43.0 → 13.45.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.
@@ -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: URI | null;
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: URI | null;
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: URI | null;
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: URI | null;
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: URI | null;
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,9 +1111,11 @@ 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;
1118
+ systemProcess: boolean;
893
1119
  }
894
1120
  export interface ProcessInstanceDiagramDto {
895
1121
  id: string;
@@ -903,6 +1129,16 @@ export interface ProcessInstanceStatisticsDTO {
903
1129
  duration: number;
904
1130
  processName: string;
905
1131
  }
1132
+ export interface ProcessVariableDto {
1133
+ name: string;
1134
+ type: string;
1135
+ value: any;
1136
+ }
1137
+ export interface ProcessVariableMutationRequest {
1138
+ name: string;
1139
+ type: ProcessVariableType;
1140
+ value: any;
1141
+ }
906
1142
  export interface StartFormDto {
907
1143
  formLocation: string;
908
1144
  formFields: FormField[];
@@ -917,30 +1153,174 @@ export interface TaskCompletionDTO {
917
1153
  export interface UserTeamDto {
918
1154
  key: string;
919
1155
  }
1156
+ export interface TemplatePreviewRequest {
1157
+ fileName: string;
1158
+ content: string;
1159
+ }
1160
+ export interface CreateTemplateRequest {
1161
+ key: string;
1162
+ caseDefinitionKey: string | null;
1163
+ caseDefinitionVersionTag: string | null;
1164
+ buildingBlockDefinitionKey: string | null;
1165
+ buildingBlockDefinitionVersionTag: string | null;
1166
+ type: string;
1167
+ metadata: {
1168
+ [index: string]: any | null;
1169
+ };
1170
+ }
1171
+ export interface DeleteTemplateRequest {
1172
+ caseDefinitionKey: string | null;
1173
+ caseDefinitionVersionTag: string | null;
1174
+ buildingBlockDefinitionKey: string | null;
1175
+ buildingBlockDefinitionVersionTag: string | null;
1176
+ templates: TemplateKeyType[];
1177
+ }
1178
+ export interface TemplateKeyType {
1179
+ key: string;
1180
+ type: string;
1181
+ }
1182
+ export interface TemplateListItemResponse {
1183
+ key: string;
1184
+ type: string;
1185
+ }
1186
+ export interface TemplateResponse {
1187
+ key: string;
1188
+ caseDefinitionKey: string | null;
1189
+ caseDefinitionVersionTag: string | null;
1190
+ buildingBlockDefinitionKey: string | null;
1191
+ buildingBlockDefinitionVersionTag: string | null;
1192
+ type: string;
1193
+ metadata: {
1194
+ [index: string]: any | null;
1195
+ };
1196
+ content: string;
1197
+ }
1198
+ export interface UpdateTemplateRequest {
1199
+ key: string;
1200
+ caseDefinitionKey: string | null;
1201
+ caseDefinitionVersionTag: string | null;
1202
+ buildingBlockDefinitionKey: string | null;
1203
+ buildingBlockDefinitionVersionTag: string | null;
1204
+ type: string;
1205
+ metadata: {
1206
+ [index: string]: any | null;
1207
+ };
1208
+ content: string;
1209
+ }
920
1210
  export interface WidgetDto {
921
1211
  type: string;
922
1212
  title: string;
923
- compact: boolean | null;
924
- color: WidgetColor | null;
925
1213
  icon: string | null;
1214
+ compact: boolean | null;
926
1215
  width: number;
927
- displayConditions: Condition<any>[] | null;
1216
+ color: WidgetColor | null;
928
1217
  highContrast: boolean;
1218
+ displayConditions: Condition<any>[] | null;
929
1219
  key: string;
930
1220
  actions: WidgetAction[];
931
1221
  }
1222
+ export interface CaseZaakdetailsInspectionDto {
1223
+ syncConfig: ZaakdetailsSyncConfigDto | null;
1224
+ zaakdetailsObject: ZaakdetailsObjectDto | null;
1225
+ }
1226
+ export interface ZaakdetailsObjectContentDto {
1227
+ resolved: boolean;
1228
+ record: any | null;
1229
+ message: string | null;
1230
+ objectUrl: string | null;
1231
+ }
1232
+ export interface ZaakdetailsObjectDto {
1233
+ documentId: string;
1234
+ objectUrl: string;
1235
+ linkedToZaak: boolean;
1236
+ }
1237
+ export interface ZaakdetailsSyncConfigDto {
1238
+ caseDefinitionKey: string;
1239
+ caseDefinitionVersionTag: string;
1240
+ objectManagementConfigurationId: string | null;
1241
+ objectManagementTitle: string | null;
1242
+ enabled: boolean;
1243
+ }
1244
+ export interface CaseZgwInspectionDto {
1245
+ zaakInstanceLink: ZaakInstanceLinkDto | null;
1246
+ zaak: any | null;
1247
+ eigenschappen: ZaakEigenschapDto[];
1248
+ rollen: ZaakRolDto[];
1249
+ statusHistory: ZaakStatusDto[];
1250
+ resultaat: ZaakResultaatDto | null;
1251
+ zaakObjecten: ZaakObjectDto[];
1252
+ zaakInformatieObjecten: ZaakInformatieObjectDto[];
1253
+ besluiten: ZaakBesluitDto[];
1254
+ warnings: string[];
1255
+ }
1256
+ export interface ZaakBesluitDto {
1257
+ url: string;
1258
+ besluit: string;
1259
+ }
1260
+ export interface ZaakEigenschapDto {
1261
+ url: string;
1262
+ eigenschap: string;
1263
+ naam: string | null;
1264
+ waarde: string;
1265
+ }
1266
+ export interface ZaakInformatieObjectDto {
1267
+ url: string;
1268
+ informatieobject: string;
1269
+ titel: string | null;
1270
+ registratiedatum: DateAsString;
1271
+ }
1272
+ export interface ZaakInstanceLinkDto {
1273
+ zaakInstanceUrl: string;
1274
+ zaakInstanceId: string;
1275
+ zaakTypeUrl: string;
1276
+ }
1277
+ export interface ZaakObjectDto {
1278
+ url: string;
1279
+ objectUrl: string;
1280
+ objectType: string;
1281
+ objectTypeOverige: string | null;
1282
+ relatieomschrijving: string | null;
1283
+ }
1284
+ export interface ZaakResultaatDto {
1285
+ url: string;
1286
+ resultaattype: string;
1287
+ toelichting: string | null;
1288
+ }
1289
+ export interface ZaakRolDto {
1290
+ url: string | null;
1291
+ betrokkeneType: string;
1292
+ roltype: string;
1293
+ omschrijving: string | null;
1294
+ omschrijvingGeneriek: string | null;
1295
+ indicatieMachtiging: string | null;
1296
+ betrokkeneIdentificatie: any | null;
1297
+ }
1298
+ export interface ZaakStatusDto {
1299
+ url: string;
1300
+ statustype: string;
1301
+ datumStatusGezet: DateAsString;
1302
+ statustoelichting: string | null;
1303
+ }
1304
+ export interface ZaakobjectResolveResultDto {
1305
+ resolved: boolean;
1306
+ record: any | null;
1307
+ message: string | null;
1308
+ objectUrl: string;
1309
+ }
932
1310
  export interface BuildingBlockInputMapping {
933
1311
  source: string;
934
1312
  target: string;
1313
+ prefixedTarget: string;
935
1314
  }
936
1315
  export interface BuildingBlockOutputMapping {
937
1316
  source: string;
938
1317
  target: string;
939
1318
  syncTiming: BuildingBlockSyncTiming;
1319
+ prefixedSource: string;
940
1320
  }
941
1321
  export interface CaseDefinitionId extends AbstractId<CaseDefinitionId>, BlueprintId {
942
1322
  key: string;
943
- versionTag: Semver;
1323
+ versionTag: string;
944
1324
  }
945
1325
  export interface CaseListItemDto {
946
1326
  key: string;
@@ -948,13 +1328,20 @@ export interface CaseListItemDto {
948
1328
  }
949
1329
  export interface ObjectNode extends ContainerNode<ObjectNode>, Serializable {
950
1330
  }
951
- export interface URI extends Comparable<URI>, Serializable {
1331
+ export interface DocumentDefinitionId {
1332
+ buildingBlockDefinitionId: BuildingBlockDefinitionId;
1333
+ caseDefinitionId: CaseDefinitionId;
1334
+ name: string;
1335
+ }
1336
+ export interface DocumentRelation {
1337
+ relationType: DocumentRelationType;
1338
+ id: string;
952
1339
  }
953
1340
  export interface RelatedFile {
954
- createdOn: DateAsString;
955
1341
  fileId: string;
956
- sizeInBytes: number;
1342
+ createdOn: DateAsString;
957
1343
  createdBy: string;
1344
+ sizeInBytes: number;
958
1345
  fileName: string;
959
1346
  }
960
1347
  export interface OperationError {
@@ -965,11 +1352,17 @@ export interface ComponentError {
965
1352
  component: string | null;
966
1353
  message: string;
967
1354
  }
1355
+ export interface BuildingBlockProcessReference {
1356
+ instanceId: string;
1357
+ definitionKey: string;
1358
+ definitionVersionTag: string;
1359
+ documentId: string;
1360
+ }
968
1361
  export interface ProcessLinkDeployDto {
969
1362
  processLinkType: "url";
970
1363
  activityId: string;
971
- activityType: ActivityTypeWithEventName;
972
1364
  processDefinitionId: string;
1365
+ activityType: ActivityTypeWithEventName;
973
1366
  }
974
1367
  export interface ProcessDefinitionCaseDefinition {
975
1368
  id: ProcessDefinitionCaseDefinitionId;
@@ -977,6 +1370,20 @@ export interface ProcessDefinitionCaseDefinition {
977
1370
  startableByUser: boolean;
978
1371
  processDefinitionName: string | null;
979
1372
  processDefinitionKey: string | null;
1373
+ draft: boolean;
1374
+ }
1375
+ export interface ProcessDefinitionValidationError {
1376
+ elementId: string;
1377
+ elementType: string;
1378
+ elementName: string | null;
1379
+ reason: string;
1380
+ errorCode: string | null;
1381
+ expression: string | null;
1382
+ severity: ValidationSeverity;
1383
+ invalidFields: string[] | null;
1384
+ invalidArguments: number[] | null;
1385
+ listenerType: string | null;
1386
+ listenerIndex: number | null;
980
1387
  }
981
1388
  export interface TaskInstanceWithIdentityLink {
982
1389
  businessKey: string;
@@ -1043,8 +1450,8 @@ export interface OperatonTaskDto {
1043
1450
  }
1044
1451
  export interface FormField {
1045
1452
  businessKey: boolean;
1046
- label: string;
1047
1453
  validationConstraints: FormFieldValidationConstraint[];
1454
+ label: string;
1048
1455
  value: TypedValue;
1049
1456
  typeName: string;
1050
1457
  properties: {
@@ -1074,23 +1481,23 @@ export interface ProcessDefinitionDto {
1074
1481
  startableInTasklist: boolean;
1075
1482
  }
1076
1483
  export interface HistoricActivityInstance {
1077
- executionId: string;
1484
+ rootProcessInstanceId: string;
1485
+ processDefinitionKey: string;
1078
1486
  canceled: boolean;
1079
1487
  removalTime: DateAsString;
1488
+ parentActivityInstanceId: string;
1489
+ calledProcessInstanceId: string;
1490
+ calledCaseInstanceId: string;
1080
1491
  activityId: string;
1081
- assignee: string;
1082
1492
  tenantId: string;
1493
+ executionId: string;
1494
+ assignee: string;
1495
+ taskId: string;
1083
1496
  startTime: DateAsString;
1084
1497
  endTime: DateAsString;
1085
- taskId: string;
1086
- activityType: string;
1087
1498
  processDefinitionId: string;
1088
- processDefinitionKey: string;
1089
- rootProcessInstanceId: string;
1090
- parentActivityInstanceId: string;
1091
- calledProcessInstanceId: string;
1092
- calledCaseInstanceId: string;
1093
1499
  processInstanceId: string;
1500
+ activityType: string;
1094
1501
  activityName: string;
1095
1502
  durationInMillis: number;
1096
1503
  completeScope: boolean;
@@ -1107,21 +1514,16 @@ export interface Condition<T> {
1107
1514
  }
1108
1515
  export interface WidgetAction {
1109
1516
  }
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
1517
  export interface BlueprintId {
1120
1518
  tagPrefix: string;
1121
1519
  idKey: string;
1122
1520
  }
1123
1521
  export interface Serializable {
1124
1522
  }
1523
+ export interface BuildingBlockDefinitionId extends AbstractId<BuildingBlockDefinitionId>, BlueprintId {
1524
+ key: string;
1525
+ versionTag: string;
1526
+ }
1125
1527
  export interface ProcessDefinitionCaseDefinitionId extends AbstractId<ProcessDefinitionCaseDefinitionId> {
1126
1528
  processDefinitionId: ProcessDefinitionId;
1127
1529
  caseDefinitionId: CaseDefinitionId;
@@ -1186,8 +1588,6 @@ export interface AbstractId<SELF> extends Identity, Serializable {
1186
1588
  }
1187
1589
  export interface ContainerNode<T> extends BaseJsonNode, JsonNodeCreator {
1188
1590
  }
1189
- export interface Comparable<T> {
1190
- }
1191
1591
  export interface ProcessDefinitionId {
1192
1592
  id: string;
1193
1593
  }
@@ -1213,8 +1613,13 @@ export interface JsonNodeCreator {
1213
1613
  }
1214
1614
  export type DateAsString = string;
1215
1615
  export type StartableItemType = "PROCESS" | "BUILDING_BLOCK";
1616
+ export type JobType = "TIMER" | "ASYNC_CONTINUATION" | "MESSAGE" | "BATCH" | "OTHER";
1617
+ export type MissingReferenceType = "SUB_PROCESS" | "DECISION_DEFINITION" | "FORM" | "FORM_FLOW" | "READ_ONLY_SYSTEM_PROCESS";
1618
+ export type ReplacedElementType = "PROCESS_DEFINITION" | "DECISION_DEFINITION" | "FORM";
1619
+ export type ProcessVariableType = "STRING" | "INTEGER" | "LONG" | "DOUBLE" | "BOOLEAN" | "JSON";
1216
1620
  export type ColumnDefaultSort = "ASC" | "DESC";
1217
1621
  export type CaseTabType = "standard" | "formio" | "custom" | "widgets";
1622
+ export type DashboardWidgetLayout = "MUURI_GAP_FREE" | "MUURI" | "BEAUTIFUL";
1218
1623
  export type CaseTagColor = "WARMGRAY" | "RED" | "MAGENTA" | "PURPLE" | "BLUE" | "CYAN" | "TEAL" | "GREEN" | "GRAY" | "COOLGRAY" | "HIGHCONTRAST" | "OUTLINE";
1219
1624
  export type InternalCaseStatusColor = "WARMGRAY" | "RED" | "MAGENTA" | "PURPLE" | "BLUE" | "CYAN" | "TEAL" | "GREEN" | "GRAY" | "COOLGRAY" | "HIGHCONTRAST" | "OUTLINE";
1220
1625
  export type DocumentStatusType = "in_bewerking" | "ter_vaststelling" | "definitief" | "gearchiveerd";
@@ -1224,8 +1629,11 @@ export type FormSizes = "extraSmall" | "small" | "medium" | "large";
1224
1629
  export type DataType = "text" | "number" | "date" | "datetime" | "time" | "boolean" | "bsn";
1225
1630
  export type FieldType = "text_contains" | "single" | "range" | "single-select-dropdown" | "multi-select-dropdown";
1226
1631
  export type SearchFieldMatchType = "like" | "exact";
1632
+ export type TabWidgetLayout = "MUURI_GAP_FREE" | "MUURI" | "BEAUTIFUL";
1227
1633
  export type WidgetColor = "YELLOW" | "ORANGE" | "RED" | "BROWN" | "GREEN" | "TURQOISE" | "PURPLE" | "PERIWINKLE" | "BLUE" | "HIGHCONTRAST" | "WHITE";
1228
1634
  export type BuildingBlockSyncTiming = "CONTINUOUS" | "END";
1635
+ export type DocumentRelationType = "PREVIOUS" | "NEXT" | "SUPPORTING";
1636
+ export type ValidationSeverity = "ERROR" | "WARNING";
1229
1637
  export type ExpressionOperator = "!=" | "==" | ">" | ">=" | "<" | "<=" | "list_contains" | "in";
1230
1638
  export type ProcessVariableDTOV2Union = StringProcessVariableDTOV2 | DateProcessVariableDTOV2 | BooleanProcessVariableDTOV2 | EnumProcessVariableDTOV2 | LongProcessVariableDTOV2 | FileUploadProcessVariableDTOV2;
1231
1639
  //# sourceMappingURL=generated-backend-types.d.ts.map