@valtimo/shared 13.12.0 → 13.14.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 +181 -6
- package/assets/core/nl.json +182 -7
- package/fesm2022/valtimo-shared.mjs +100 -57
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/constants/building-block-management-tab-token.d.ts +5 -0
- package/lib/constants/building-block-management-tab-token.d.ts.map +1 -0
- package/lib/constants/index.d.ts +1 -0
- package/lib/constants/index.d.ts.map +1 -1
- package/lib/generated/generated-backend-types.d.ts +1000 -0
- package/lib/generated/generated-backend-types.d.ts.map +1 -0
- package/lib/generated/index.d.ts +2 -0
- package/lib/generated/index.d.ts.map +1 -0
- package/lib/models/building-block-management.model.d.ts +14 -0
- package/lib/models/building-block-management.model.d.ts.map +1 -0
- package/lib/models/case-management.model.d.ts +2 -0
- package/lib/models/case-management.model.d.ts.map +1 -1
- package/lib/models/index.d.ts +2 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/management.model.d.ts +1 -1
- package/lib/models/management.model.d.ts.map +1 -1
- package/lib/models/search.model.d.ts +1 -1
- package/lib/models/search.model.d.ts.map +1 -1
- package/lib/models/tag-color.model.d.ts +1 -2
- package/lib/models/tag-color.model.d.ts.map +1 -1
- package/lib/services/edit-permissions.service.d.ts +2 -1
- package/lib/services/edit-permissions.service.d.ts.map +1 -1
- package/lib/utils/route-params.utils.d.ts +3 -2
- package/lib/utils/route-params.utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -1
- package/assets/core/de.json +0 -2284
- package/lib/models/condition.model.d.ts +0 -15
- package/lib/models/condition.model.d.ts.map +0 -1
|
@@ -0,0 +1,1000 @@
|
|
|
1
|
+
export interface BuildingBlockDefinitionArtworkDto {
|
|
2
|
+
key: string;
|
|
3
|
+
versionTag: string;
|
|
4
|
+
imageBase64: string;
|
|
5
|
+
}
|
|
6
|
+
export interface BuildingBlockDefinitionDto {
|
|
7
|
+
key: string;
|
|
8
|
+
versionTag: string;
|
|
9
|
+
name: string;
|
|
10
|
+
description: string | null;
|
|
11
|
+
createdBy: string | null;
|
|
12
|
+
createdDate: DateAsString | null;
|
|
13
|
+
basedOnVersionTag: string | null;
|
|
14
|
+
final: boolean;
|
|
15
|
+
imageBase64: string | null;
|
|
16
|
+
}
|
|
17
|
+
export interface BuildingBlockProcessDefinitionDto {
|
|
18
|
+
id: string;
|
|
19
|
+
key: string;
|
|
20
|
+
name: string | null;
|
|
21
|
+
versionTag: string | null;
|
|
22
|
+
main: boolean;
|
|
23
|
+
}
|
|
24
|
+
export interface BuildingBlockProcessDefinitionWithLinksDto {
|
|
25
|
+
processDefinition: ProcessDefinitionWithPropertiesDto;
|
|
26
|
+
processLinks: ProcessLinkResponseDto[];
|
|
27
|
+
bpmn20Xml: string;
|
|
28
|
+
}
|
|
29
|
+
export interface BuildingBlockVersionDto {
|
|
30
|
+
versionTag: string;
|
|
31
|
+
final: boolean;
|
|
32
|
+
}
|
|
33
|
+
export interface CreateBuildingBlockDefinitionArtworkDto {
|
|
34
|
+
imageBase64: string;
|
|
35
|
+
}
|
|
36
|
+
export interface CreateBuildingBlockDefinitionDto {
|
|
37
|
+
key: string;
|
|
38
|
+
versionTag: string;
|
|
39
|
+
name: string;
|
|
40
|
+
description: string | null;
|
|
41
|
+
}
|
|
42
|
+
export interface CreateBuildingBlockDraftDto {
|
|
43
|
+
versionTag: string;
|
|
44
|
+
}
|
|
45
|
+
export interface UpdateBuildingBlockDefinitionArtworkDto {
|
|
46
|
+
imageBase64: string;
|
|
47
|
+
}
|
|
48
|
+
export interface UpdateBuildingBlockDefinitionDto {
|
|
49
|
+
name: string;
|
|
50
|
+
description: string | null;
|
|
51
|
+
}
|
|
52
|
+
export interface CaseDefinitionCheckResponse {
|
|
53
|
+
canUpdateGlobalConfiguration: boolean;
|
|
54
|
+
}
|
|
55
|
+
export interface CaseDefinitionDraftCreateRequest {
|
|
56
|
+
caseDefinitionKey: string;
|
|
57
|
+
caseDefinitionVersion: string;
|
|
58
|
+
name: string | null;
|
|
59
|
+
description: string | null;
|
|
60
|
+
basedOnCaseDefinitionVersion: string | null;
|
|
61
|
+
caseDefinitionId: CaseDefinitionId;
|
|
62
|
+
basedOnCaseDefinitionId: CaseDefinitionId | null;
|
|
63
|
+
}
|
|
64
|
+
export interface CaseDefinitionQuickSearchDto {
|
|
65
|
+
queryPath: string;
|
|
66
|
+
title: string;
|
|
67
|
+
}
|
|
68
|
+
export interface CaseDefinitionResponseDto {
|
|
69
|
+
caseDefinitionKey: string;
|
|
70
|
+
caseDefinitionVersionTag: string;
|
|
71
|
+
name: string;
|
|
72
|
+
description: string | null;
|
|
73
|
+
createdBy: string | null;
|
|
74
|
+
createdDate: DateAsString | null;
|
|
75
|
+
basedOnVersionTag: string | null;
|
|
76
|
+
final: boolean;
|
|
77
|
+
active: boolean;
|
|
78
|
+
canHaveAssignee: boolean;
|
|
79
|
+
autoAssignTasks: boolean;
|
|
80
|
+
hasExternalStartForm: boolean | null;
|
|
81
|
+
externalStartFormUrl: string | null;
|
|
82
|
+
externalStartFormDescription: string | null;
|
|
83
|
+
conflictingVersions: string | null;
|
|
84
|
+
}
|
|
85
|
+
export interface CaseDefinitionSettingsResponseDto {
|
|
86
|
+
caseDefinitionKey: string;
|
|
87
|
+
caseDefinitionVersionTag: string;
|
|
88
|
+
canHaveAssignee: boolean;
|
|
89
|
+
autoAssignTasks: boolean;
|
|
90
|
+
hasExternalStartForm: boolean | null;
|
|
91
|
+
externalStartFormUrl: string | null;
|
|
92
|
+
externalStartFormDescription: string | null;
|
|
93
|
+
}
|
|
94
|
+
export interface CaseDefinitionUpdateRequest {
|
|
95
|
+
name: string | null;
|
|
96
|
+
description: string | null;
|
|
97
|
+
}
|
|
98
|
+
export interface CaseListColumnDto {
|
|
99
|
+
title: string | null;
|
|
100
|
+
key: string;
|
|
101
|
+
path: string;
|
|
102
|
+
displayType: any;
|
|
103
|
+
sortable: boolean;
|
|
104
|
+
defaultSort: ColumnDefaultSort | null;
|
|
105
|
+
order: number | null;
|
|
106
|
+
exportable: boolean;
|
|
107
|
+
}
|
|
108
|
+
export interface CaseListRowDto {
|
|
109
|
+
id: string;
|
|
110
|
+
items: CaseListItemDto[];
|
|
111
|
+
}
|
|
112
|
+
export interface CaseSettingsDto {
|
|
113
|
+
canHaveAssignee: boolean | null;
|
|
114
|
+
autoAssignTasks: boolean | null;
|
|
115
|
+
hasExternalStartForm: boolean | null;
|
|
116
|
+
externalStartFormUrl: string | null;
|
|
117
|
+
externalStartFormDescription: string | null;
|
|
118
|
+
}
|
|
119
|
+
export interface CaseTabDto {
|
|
120
|
+
key: string;
|
|
121
|
+
name: string | null;
|
|
122
|
+
type: CaseTabType;
|
|
123
|
+
contentKey: string;
|
|
124
|
+
showTasks: boolean;
|
|
125
|
+
}
|
|
126
|
+
export interface CaseTabUpdateDto {
|
|
127
|
+
name: string | null;
|
|
128
|
+
type: CaseTabType;
|
|
129
|
+
contentKey: string;
|
|
130
|
+
showTasks: boolean;
|
|
131
|
+
}
|
|
132
|
+
export interface CaseTabUpdateOrderDto {
|
|
133
|
+
key: string;
|
|
134
|
+
name: string | null;
|
|
135
|
+
type: CaseTabType;
|
|
136
|
+
contentKey: string;
|
|
137
|
+
showTasks: boolean;
|
|
138
|
+
}
|
|
139
|
+
export interface CaseTabWithMetadataDto {
|
|
140
|
+
key: string;
|
|
141
|
+
name: string | null;
|
|
142
|
+
type: CaseTabType;
|
|
143
|
+
contentKey: string;
|
|
144
|
+
createdOn: DateAsString | null;
|
|
145
|
+
createdBy: string | null;
|
|
146
|
+
showTasks: boolean;
|
|
147
|
+
}
|
|
148
|
+
export interface CaseVersionDto {
|
|
149
|
+
versionTag: string;
|
|
150
|
+
active: boolean;
|
|
151
|
+
final: boolean;
|
|
152
|
+
}
|
|
153
|
+
export interface HiddenCaseListColumnDto {
|
|
154
|
+
columnKey: string;
|
|
155
|
+
}
|
|
156
|
+
export interface TaskListColumnDto {
|
|
157
|
+
title: string | null;
|
|
158
|
+
key: string;
|
|
159
|
+
path: string;
|
|
160
|
+
displayType: any;
|
|
161
|
+
sortable: boolean;
|
|
162
|
+
defaultSort: ColumnDefaultSort | null;
|
|
163
|
+
order: number | null;
|
|
164
|
+
}
|
|
165
|
+
export interface AdminWidgetConfigurationResponseDto {
|
|
166
|
+
key: string;
|
|
167
|
+
title: string;
|
|
168
|
+
dataSourceKey: string;
|
|
169
|
+
displayType: string;
|
|
170
|
+
dataSourceProperties: ObjectNode;
|
|
171
|
+
displayTypeProperties: ObjectNode;
|
|
172
|
+
url: URI | null;
|
|
173
|
+
}
|
|
174
|
+
export interface DashboardCreateRequestDto {
|
|
175
|
+
title: string;
|
|
176
|
+
description: string;
|
|
177
|
+
}
|
|
178
|
+
export interface DashboardResponseDto {
|
|
179
|
+
key: string;
|
|
180
|
+
title: string;
|
|
181
|
+
description: string;
|
|
182
|
+
createdBy: string;
|
|
183
|
+
createdOn: DateAsString;
|
|
184
|
+
}
|
|
185
|
+
export interface DashboardUpdateRequestDto {
|
|
186
|
+
key: string;
|
|
187
|
+
title: string;
|
|
188
|
+
description: string;
|
|
189
|
+
}
|
|
190
|
+
export interface DashboardWidgetDataResultDto {
|
|
191
|
+
key: string;
|
|
192
|
+
data: any;
|
|
193
|
+
}
|
|
194
|
+
export interface DashboardWithWidgetsResponseDto {
|
|
195
|
+
key: string;
|
|
196
|
+
title: string;
|
|
197
|
+
widgets: WidgetConfigurationResponseDto[];
|
|
198
|
+
}
|
|
199
|
+
export interface SingleWidgetConfigurationUpdateRequestDto {
|
|
200
|
+
title: string;
|
|
201
|
+
dataSourceKey: string;
|
|
202
|
+
displayType: string;
|
|
203
|
+
dataSourceProperties: ObjectNode;
|
|
204
|
+
displayTypeProperties: ObjectNode;
|
|
205
|
+
url: URI | null;
|
|
206
|
+
}
|
|
207
|
+
export interface WidgetConfigurationCreateRequestDto {
|
|
208
|
+
title: string;
|
|
209
|
+
dataSourceKey: string;
|
|
210
|
+
displayType: string;
|
|
211
|
+
dataSourceProperties: ObjectNode;
|
|
212
|
+
displayTypeProperties: ObjectNode;
|
|
213
|
+
url: URI | null;
|
|
214
|
+
}
|
|
215
|
+
export interface WidgetConfigurationResponseDto {
|
|
216
|
+
key: string;
|
|
217
|
+
title: string;
|
|
218
|
+
displayType: string;
|
|
219
|
+
displayTypeProperties: ObjectNode;
|
|
220
|
+
url: URI | null;
|
|
221
|
+
}
|
|
222
|
+
export interface WidgetConfigurationUpdateRequestDto {
|
|
223
|
+
key: string;
|
|
224
|
+
title: string;
|
|
225
|
+
dataSourceKey: string;
|
|
226
|
+
displayType: string;
|
|
227
|
+
dataSourceProperties: ObjectNode;
|
|
228
|
+
displayTypeProperties: ObjectNode;
|
|
229
|
+
url: URI | null;
|
|
230
|
+
}
|
|
231
|
+
export interface CaseTagCreateRequestDto {
|
|
232
|
+
key: string;
|
|
233
|
+
title: string;
|
|
234
|
+
color: CaseTagColor;
|
|
235
|
+
}
|
|
236
|
+
export interface CaseTagResponseDto {
|
|
237
|
+
key: string;
|
|
238
|
+
caseDefinitionKey: string;
|
|
239
|
+
caseDefinitionVersionTag: string;
|
|
240
|
+
title: string;
|
|
241
|
+
color: CaseTagColor;
|
|
242
|
+
order: number;
|
|
243
|
+
}
|
|
244
|
+
export interface CaseTagUpdateRequestDto {
|
|
245
|
+
key: string;
|
|
246
|
+
title: string;
|
|
247
|
+
color: CaseTagColor;
|
|
248
|
+
}
|
|
249
|
+
export interface InternalCaseStatusCreateRequestDto {
|
|
250
|
+
key: string;
|
|
251
|
+
title: string;
|
|
252
|
+
visibleInCaseListByDefault: boolean;
|
|
253
|
+
color: InternalCaseStatusColor;
|
|
254
|
+
}
|
|
255
|
+
export interface InternalCaseStatusResponseDto {
|
|
256
|
+
key: string;
|
|
257
|
+
caseDefinitionName: string;
|
|
258
|
+
title: string;
|
|
259
|
+
visibleInCaseListByDefault: boolean;
|
|
260
|
+
order: number;
|
|
261
|
+
color: InternalCaseStatusColor;
|
|
262
|
+
}
|
|
263
|
+
export interface InternalCaseStatusUpdateOrderRequestDto {
|
|
264
|
+
key: string;
|
|
265
|
+
title: string;
|
|
266
|
+
visibleInCaseListByDefault: boolean;
|
|
267
|
+
color: InternalCaseStatusColor;
|
|
268
|
+
}
|
|
269
|
+
export interface InternalCaseStatusUpdateRequestDto {
|
|
270
|
+
key: string;
|
|
271
|
+
title: string;
|
|
272
|
+
visibleInCaseListByDefault: boolean;
|
|
273
|
+
color: InternalCaseStatusColor;
|
|
274
|
+
}
|
|
275
|
+
export interface ColumnKeyResponse {
|
|
276
|
+
key: string;
|
|
277
|
+
sortable: boolean;
|
|
278
|
+
filterable: boolean;
|
|
279
|
+
}
|
|
280
|
+
export interface ColumnResponse {
|
|
281
|
+
key: string;
|
|
282
|
+
sortable: boolean;
|
|
283
|
+
filterable: boolean;
|
|
284
|
+
defaultSort: string | null;
|
|
285
|
+
}
|
|
286
|
+
export interface DocumentSearchRequest {
|
|
287
|
+
informatieobjecttype: string | null;
|
|
288
|
+
titel: string | null;
|
|
289
|
+
vertrouwelijkheidaanduiding: string | null;
|
|
290
|
+
creatiedatumFrom: DateAsString | null;
|
|
291
|
+
creatiedatumTo: DateAsString | null;
|
|
292
|
+
auteur: string | null;
|
|
293
|
+
trefwoorden: string[] | null;
|
|
294
|
+
}
|
|
295
|
+
export interface DocumentenApiDocumentDto {
|
|
296
|
+
fileId: string;
|
|
297
|
+
pluginConfigurationId: string;
|
|
298
|
+
bestandsnaam: string | null;
|
|
299
|
+
bestandsomvang: number | null;
|
|
300
|
+
creatiedatum: DateAsString;
|
|
301
|
+
auteur: string | null;
|
|
302
|
+
titel: string | null;
|
|
303
|
+
status: string | null;
|
|
304
|
+
taal: string | null;
|
|
305
|
+
identificatie: string | null;
|
|
306
|
+
beschrijving: string | null;
|
|
307
|
+
informatieobjecttype: string | null;
|
|
308
|
+
informatieobjecttypeOmschrijving: string | null;
|
|
309
|
+
trefwoorden: string[] | null;
|
|
310
|
+
formaat: string | null;
|
|
311
|
+
verzenddatum: DateAsString | null;
|
|
312
|
+
ontvangstdatum: DateAsString | null;
|
|
313
|
+
vertrouwelijkheidaanduiding: string | null;
|
|
314
|
+
versie: number | null;
|
|
315
|
+
indicatieGebruiksrecht: boolean | null;
|
|
316
|
+
}
|
|
317
|
+
export interface DocumentenApiUploadFieldDto {
|
|
318
|
+
key: string;
|
|
319
|
+
defaultValue: string | null;
|
|
320
|
+
visible: boolean;
|
|
321
|
+
readonly: boolean;
|
|
322
|
+
}
|
|
323
|
+
export interface DocumentenApiVersionDto {
|
|
324
|
+
selectedVersion: string | null;
|
|
325
|
+
supportsFilterableColumns: boolean;
|
|
326
|
+
supportsSortableColumns: boolean;
|
|
327
|
+
supportsTrefwoorden: boolean;
|
|
328
|
+
supportsUpdatingDefinitiveDocument: boolean;
|
|
329
|
+
}
|
|
330
|
+
export interface DocumentenApiVersionManagementDto {
|
|
331
|
+
selectedVersion: string | null;
|
|
332
|
+
detectedVersions: string[];
|
|
333
|
+
supportsFilterableColumns: boolean;
|
|
334
|
+
supportsSortableColumns: boolean;
|
|
335
|
+
supportsTrefwoorden: boolean;
|
|
336
|
+
}
|
|
337
|
+
export interface DocumentenApiVersionsManagementDto {
|
|
338
|
+
versions: string[];
|
|
339
|
+
}
|
|
340
|
+
export interface ModifyDocumentRequest {
|
|
341
|
+
creatiedatum: DateAsString;
|
|
342
|
+
titel: string;
|
|
343
|
+
auteur: string;
|
|
344
|
+
status: DocumentStatusType | null;
|
|
345
|
+
taal: string;
|
|
346
|
+
bestandsnaam: string | null;
|
|
347
|
+
beschrijving: string | null;
|
|
348
|
+
ontvangstdatum: DateAsString | null;
|
|
349
|
+
verzenddatum: DateAsString | null;
|
|
350
|
+
indicatieGebruiksrecht: boolean | null;
|
|
351
|
+
vertrouwelijkheidaanduiding: string | null;
|
|
352
|
+
informatieobjecttype: string | null;
|
|
353
|
+
trefwoorden: string[] | null;
|
|
354
|
+
}
|
|
355
|
+
export interface RelatedFileDto extends RelatedFile {
|
|
356
|
+
fileName: string | null;
|
|
357
|
+
sizeInBytes: number | null;
|
|
358
|
+
pluginConfigurationId: string;
|
|
359
|
+
author: string | null;
|
|
360
|
+
title: string | null;
|
|
361
|
+
status: string | null;
|
|
362
|
+
language: string | null;
|
|
363
|
+
identification: string | null;
|
|
364
|
+
description: string | null;
|
|
365
|
+
informatieobjecttype: string | null;
|
|
366
|
+
informatieobjecttypeOmschrijving: string | null;
|
|
367
|
+
keywords: string[] | null;
|
|
368
|
+
format: string | null;
|
|
369
|
+
sendDate: DateAsString | null;
|
|
370
|
+
receiptDate: DateAsString | null;
|
|
371
|
+
confidentialityLevel: string | null;
|
|
372
|
+
version: number | null;
|
|
373
|
+
indicationUsageRights: boolean | null;
|
|
374
|
+
}
|
|
375
|
+
export interface ReorderColumnRequest {
|
|
376
|
+
key: string;
|
|
377
|
+
defaultSort: string | null;
|
|
378
|
+
}
|
|
379
|
+
export interface UpdateColumnRequest {
|
|
380
|
+
defaultSort: string | null;
|
|
381
|
+
}
|
|
382
|
+
export interface FormOption {
|
|
383
|
+
id: string;
|
|
384
|
+
name: string;
|
|
385
|
+
}
|
|
386
|
+
export interface FormProcessLinkCreateRequestDto extends ProcessLinkCreateRequestDto {
|
|
387
|
+
formDefinitionId: string;
|
|
388
|
+
viewModelEnabled: boolean | null;
|
|
389
|
+
formDisplayType: FormDisplayType | null;
|
|
390
|
+
formSize: FormSizes | null;
|
|
391
|
+
subtitles: string[] | null;
|
|
392
|
+
}
|
|
393
|
+
export interface FormProcessLinkExportResponseDto extends ProcessLinkExportResponseDto {
|
|
394
|
+
formDefinitionName: string;
|
|
395
|
+
viewModelEnabled: boolean;
|
|
396
|
+
formDisplayType: FormDisplayType;
|
|
397
|
+
formSize: FormSizes;
|
|
398
|
+
subtitles: string[] | null;
|
|
399
|
+
}
|
|
400
|
+
export interface FormProcessLinkResponseDto extends ProcessLinkResponseDto {
|
|
401
|
+
formDefinitionId: string;
|
|
402
|
+
viewModelEnabled: boolean;
|
|
403
|
+
formDisplayType: FormDisplayType;
|
|
404
|
+
formSize: FormSizes;
|
|
405
|
+
subtitles: string[] | null;
|
|
406
|
+
}
|
|
407
|
+
export interface FormProcessLinkUpdateRequestDto extends ProcessLinkUpdateRequestDto {
|
|
408
|
+
formDefinitionId: string;
|
|
409
|
+
viewModelEnabled: boolean | null;
|
|
410
|
+
formDisplayType: FormDisplayType | null;
|
|
411
|
+
formSize: FormSizes | null;
|
|
412
|
+
subtitles: string[] | null;
|
|
413
|
+
}
|
|
414
|
+
export interface FormSubmissionResult {
|
|
415
|
+
documentId: string | null;
|
|
416
|
+
errors: OperationError[];
|
|
417
|
+
}
|
|
418
|
+
export interface FormSubmissionResultFailed extends FormSubmissionResult, TransactionalResult {
|
|
419
|
+
}
|
|
420
|
+
export interface FormSubmissionResultSucceeded extends FormSubmissionResult {
|
|
421
|
+
documentId: string;
|
|
422
|
+
}
|
|
423
|
+
export interface IntermediateSaveRequest {
|
|
424
|
+
submission: ObjectNode;
|
|
425
|
+
taskInstanceId: string;
|
|
426
|
+
}
|
|
427
|
+
export interface IntermediateSubmission {
|
|
428
|
+
submission: ObjectNode;
|
|
429
|
+
taskInstanceId: string;
|
|
430
|
+
createdBy: string;
|
|
431
|
+
createdOn: DateAsString;
|
|
432
|
+
editedBy: string | null;
|
|
433
|
+
editedOn: DateAsString | null;
|
|
434
|
+
}
|
|
435
|
+
export interface IntermediateSubmissionKt {
|
|
436
|
+
}
|
|
437
|
+
export interface FormFlowBreadcrumbResponse {
|
|
438
|
+
title: string | null;
|
|
439
|
+
key: string;
|
|
440
|
+
stepInstanceId: string | null;
|
|
441
|
+
completed: boolean;
|
|
442
|
+
}
|
|
443
|
+
export interface FormFlowBreadcrumbsResponse {
|
|
444
|
+
currentStepIndex: number;
|
|
445
|
+
breadcrumbs: FormFlowBreadcrumbResponse[];
|
|
446
|
+
}
|
|
447
|
+
export interface FormFlowProcessLinkCreateRequestDto extends ProcessLinkCreateRequestDto {
|
|
448
|
+
formFlowDefinitionKey: string;
|
|
449
|
+
formDisplayType: FormDisplayType | null;
|
|
450
|
+
formSize: FormSizes | null;
|
|
451
|
+
subtitles: string[] | null;
|
|
452
|
+
}
|
|
453
|
+
export interface FormFlowProcessLinkExportResponseDto extends ProcessLinkExportResponseDto {
|
|
454
|
+
formFlowDefinitionKey: string;
|
|
455
|
+
formDisplayType: FormDisplayType;
|
|
456
|
+
formSize: FormSizes;
|
|
457
|
+
subtitles: string[] | null;
|
|
458
|
+
}
|
|
459
|
+
export interface FormFlowProcessLinkResponseDto extends ProcessLinkResponseDto {
|
|
460
|
+
formFlowDefinitionKey: string;
|
|
461
|
+
formDisplayType: FormDisplayType;
|
|
462
|
+
formSize: FormSizes;
|
|
463
|
+
subtitles: string[] | null;
|
|
464
|
+
}
|
|
465
|
+
export interface FormFlowProcessLinkUpdateRequestDto extends ProcessLinkUpdateRequestDto {
|
|
466
|
+
formFlowDefinitionKey: string;
|
|
467
|
+
formDisplayType: FormDisplayType | null;
|
|
468
|
+
formSize: FormSizes | null;
|
|
469
|
+
subtitles: string[] | null;
|
|
470
|
+
}
|
|
471
|
+
export interface MultipleFormErrors {
|
|
472
|
+
componentErrors: ComponentError[];
|
|
473
|
+
}
|
|
474
|
+
export interface SingleFormError {
|
|
475
|
+
error: string;
|
|
476
|
+
component: string | null;
|
|
477
|
+
}
|
|
478
|
+
export interface StartFormSubmissionResult {
|
|
479
|
+
documentId: string | null;
|
|
480
|
+
}
|
|
481
|
+
export interface LocalizationResponseDto {
|
|
482
|
+
languageKey: string;
|
|
483
|
+
content: ObjectNode;
|
|
484
|
+
}
|
|
485
|
+
export interface LocalizationUpdateRequestDto {
|
|
486
|
+
languageKey: string;
|
|
487
|
+
content: ObjectNode;
|
|
488
|
+
}
|
|
489
|
+
export interface LoggingEventPropertyDto {
|
|
490
|
+
key: string;
|
|
491
|
+
value: string;
|
|
492
|
+
}
|
|
493
|
+
export interface LoggingEventResponse {
|
|
494
|
+
timestamp: DateAsString;
|
|
495
|
+
formattedMessage: string;
|
|
496
|
+
level: string;
|
|
497
|
+
properties: LoggingEventPropertyDto[];
|
|
498
|
+
stacktrace: string | null;
|
|
499
|
+
}
|
|
500
|
+
export interface LoggingEventSearchRequest {
|
|
501
|
+
afterTimestamp: DateAsString | null;
|
|
502
|
+
beforeTimestamp: DateAsString | null;
|
|
503
|
+
level: string | null;
|
|
504
|
+
likeFormattedMessage: string | null;
|
|
505
|
+
properties: LoggingEventPropertyDto[];
|
|
506
|
+
}
|
|
507
|
+
export interface NoteCreateRequestDto {
|
|
508
|
+
content: string;
|
|
509
|
+
}
|
|
510
|
+
export interface NoteResponseDto {
|
|
511
|
+
id: string;
|
|
512
|
+
createdByUserId: string;
|
|
513
|
+
createdByUserFullName: string;
|
|
514
|
+
createdDate: DateAsString;
|
|
515
|
+
content: string;
|
|
516
|
+
documentId: string;
|
|
517
|
+
}
|
|
518
|
+
export interface NoteUpdateRequestDto {
|
|
519
|
+
content: string;
|
|
520
|
+
}
|
|
521
|
+
export interface URLProcessLinkCreateRequestDto extends ProcessLinkCreateRequestDto {
|
|
522
|
+
url: string;
|
|
523
|
+
}
|
|
524
|
+
export interface URLProcessLinkDeployDto extends ProcessLinkDeployDto {
|
|
525
|
+
processLinkType: "url";
|
|
526
|
+
url: string;
|
|
527
|
+
}
|
|
528
|
+
export interface URLProcessLinkExportResponseDto extends ProcessLinkExportResponseDto {
|
|
529
|
+
url: string;
|
|
530
|
+
}
|
|
531
|
+
export interface URLProcessLinkResponseDto extends ProcessLinkResponseDto {
|
|
532
|
+
url: string;
|
|
533
|
+
}
|
|
534
|
+
export interface URLProcessLinkUpdateRequestDto extends ProcessLinkUpdateRequestDto {
|
|
535
|
+
url: string;
|
|
536
|
+
}
|
|
537
|
+
export interface URLSubmissionResult {
|
|
538
|
+
errors: string[];
|
|
539
|
+
documentId: string;
|
|
540
|
+
}
|
|
541
|
+
export interface URLVariables {
|
|
542
|
+
variables: {
|
|
543
|
+
[index: string]: string;
|
|
544
|
+
};
|
|
545
|
+
}
|
|
546
|
+
export interface CaseProcessDefinitionResponseDto {
|
|
547
|
+
processDefinition: ProcessDefinitionWithPropertiesDto;
|
|
548
|
+
processCaseLink: ProcessDefinitionCaseDefinition;
|
|
549
|
+
processLinks: ProcessLinkResponseDto[];
|
|
550
|
+
bpmn20Xml: string;
|
|
551
|
+
}
|
|
552
|
+
export interface ProcessDefinitionResponseDto {
|
|
553
|
+
processDefinition: ProcessDefinitionWithPropertiesDto;
|
|
554
|
+
processLinks: ProcessLinkResponseDto[];
|
|
555
|
+
bpmn20Xml: string;
|
|
556
|
+
}
|
|
557
|
+
export interface ProcessLinkActivityResult<T> {
|
|
558
|
+
processLinkId: string;
|
|
559
|
+
type: string;
|
|
560
|
+
properties: T;
|
|
561
|
+
}
|
|
562
|
+
export interface ProcessLinkActivityResultWithTask {
|
|
563
|
+
task: TaskInstanceWithIdentityLink;
|
|
564
|
+
processLinkActivityResult: ProcessLinkActivityResult<any> | null;
|
|
565
|
+
}
|
|
566
|
+
export interface ProcessLinkCreateRequestDto {
|
|
567
|
+
processLinkType: string;
|
|
568
|
+
activityId: string;
|
|
569
|
+
activityType: ActivityTypeWithEventName;
|
|
570
|
+
processDefinitionId: string;
|
|
571
|
+
}
|
|
572
|
+
export interface ProcessLinkExportResponseDto {
|
|
573
|
+
processLinkType: string;
|
|
574
|
+
activityId: string;
|
|
575
|
+
activityType: ActivityTypeWithEventName;
|
|
576
|
+
}
|
|
577
|
+
export interface ProcessLinkResponseDto {
|
|
578
|
+
processLinkType: string;
|
|
579
|
+
activityId: string;
|
|
580
|
+
activityType: ActivityTypeWithEventName;
|
|
581
|
+
processDefinitionId: string;
|
|
582
|
+
id: string;
|
|
583
|
+
}
|
|
584
|
+
export interface ProcessLinkUpdateRequestDto {
|
|
585
|
+
processLinkType: string;
|
|
586
|
+
id: string;
|
|
587
|
+
}
|
|
588
|
+
export interface SearchFieldV2Dto {
|
|
589
|
+
id: string;
|
|
590
|
+
ownerId: string;
|
|
591
|
+
ownerType: string;
|
|
592
|
+
key: string;
|
|
593
|
+
title: string | null;
|
|
594
|
+
path: string;
|
|
595
|
+
order: number;
|
|
596
|
+
dataType: DataType;
|
|
597
|
+
fieldType: FieldType;
|
|
598
|
+
matchType: SearchFieldMatchType | null;
|
|
599
|
+
dropdownDataProvider: string | null;
|
|
600
|
+
required: boolean;
|
|
601
|
+
}
|
|
602
|
+
export interface TabDto {
|
|
603
|
+
key: string;
|
|
604
|
+
title: string | null;
|
|
605
|
+
type: string;
|
|
606
|
+
}
|
|
607
|
+
export interface BatchAssignTaskDTO {
|
|
608
|
+
assignee: string;
|
|
609
|
+
tasksIds: string[];
|
|
610
|
+
}
|
|
611
|
+
export interface ChoiceFieldCreateRequestDTO {
|
|
612
|
+
keyName: string;
|
|
613
|
+
title: string;
|
|
614
|
+
}
|
|
615
|
+
export interface ChoiceFieldDTO {
|
|
616
|
+
id: number;
|
|
617
|
+
keyName: string;
|
|
618
|
+
choiceFieldValues: ChoiceFieldValue[];
|
|
619
|
+
}
|
|
620
|
+
export interface ChoiceFieldUpdateRequestDTO {
|
|
621
|
+
id: number;
|
|
622
|
+
keyName: string;
|
|
623
|
+
title: string;
|
|
624
|
+
}
|
|
625
|
+
export interface ChoiceFieldValueCreateRequestDTO {
|
|
626
|
+
name: string;
|
|
627
|
+
deprecated: boolean;
|
|
628
|
+
sortOrder: number;
|
|
629
|
+
value: string;
|
|
630
|
+
}
|
|
631
|
+
export interface ChoiceFieldValueUpdateRequestDTO {
|
|
632
|
+
id: number;
|
|
633
|
+
name: string;
|
|
634
|
+
deprecated: boolean;
|
|
635
|
+
sortOrder: number;
|
|
636
|
+
value: string;
|
|
637
|
+
}
|
|
638
|
+
export interface CommentDto {
|
|
639
|
+
text: string;
|
|
640
|
+
}
|
|
641
|
+
export interface CustomTaskDto {
|
|
642
|
+
task: OperatonTaskDto;
|
|
643
|
+
formFields: FormField[];
|
|
644
|
+
variables: {
|
|
645
|
+
[index: string]: any;
|
|
646
|
+
};
|
|
647
|
+
formLocation: string;
|
|
648
|
+
processName: string;
|
|
649
|
+
processKey: string;
|
|
650
|
+
processVersion: string;
|
|
651
|
+
businessKey: string;
|
|
652
|
+
}
|
|
653
|
+
export interface DefinitionDeploymentResponseDto {
|
|
654
|
+
identifier: string;
|
|
655
|
+
}
|
|
656
|
+
export interface FlowNodeMigrationDTO {
|
|
657
|
+
sourceFlowNodeMap: {
|
|
658
|
+
[index: string]: string;
|
|
659
|
+
};
|
|
660
|
+
targetFlowNodeMap: {
|
|
661
|
+
[index: string]: string;
|
|
662
|
+
};
|
|
663
|
+
uniqueFlowNodeMap: {
|
|
664
|
+
[index: string]: string;
|
|
665
|
+
};
|
|
666
|
+
}
|
|
667
|
+
export interface HeatmapTaskAverageDurationDTO extends HeatmapTaskDTO {
|
|
668
|
+
averageDurationInMilliseconds: number;
|
|
669
|
+
}
|
|
670
|
+
export interface HeatmapTaskCountDTO extends HeatmapTaskDTO {
|
|
671
|
+
}
|
|
672
|
+
export interface HeatmapTaskDTO {
|
|
673
|
+
name: string;
|
|
674
|
+
count: number;
|
|
675
|
+
totalCount: number;
|
|
676
|
+
}
|
|
677
|
+
export interface KeyAndPasswordDTO {
|
|
678
|
+
key: string;
|
|
679
|
+
newPassword: string;
|
|
680
|
+
}
|
|
681
|
+
export interface LoginDTO {
|
|
682
|
+
username: string;
|
|
683
|
+
password: string;
|
|
684
|
+
rememberMe: boolean;
|
|
685
|
+
}
|
|
686
|
+
export interface ProcessDefinitionDiagramWithPropertyDto {
|
|
687
|
+
id: string;
|
|
688
|
+
bpmn20Xml: string;
|
|
689
|
+
readOnly: boolean;
|
|
690
|
+
systemProcess: boolean;
|
|
691
|
+
}
|
|
692
|
+
export interface ProcessDefinitionWithPropertiesDto extends ProcessDefinitionDto {
|
|
693
|
+
readOnly: boolean;
|
|
694
|
+
}
|
|
695
|
+
export interface ProcessInstanceDiagramDto {
|
|
696
|
+
id: string;
|
|
697
|
+
bpmn20Xml: string;
|
|
698
|
+
historicActivityInstances: HistoricActivityInstance[];
|
|
699
|
+
}
|
|
700
|
+
export interface ProcessInstanceSearchDTO {
|
|
701
|
+
processVariables: ProcessVariableDTOV2Union[];
|
|
702
|
+
}
|
|
703
|
+
export interface ProcessInstanceStatisticsDTO {
|
|
704
|
+
duration: number;
|
|
705
|
+
processName: string;
|
|
706
|
+
}
|
|
707
|
+
export interface StartFormDto {
|
|
708
|
+
formLocation: string;
|
|
709
|
+
formFields: FormField[];
|
|
710
|
+
genericForm: boolean;
|
|
711
|
+
}
|
|
712
|
+
export interface TaskCompletionDTO {
|
|
713
|
+
variables: {
|
|
714
|
+
[index: string]: any;
|
|
715
|
+
};
|
|
716
|
+
filesToDelete: string[];
|
|
717
|
+
}
|
|
718
|
+
export interface WidgetDto {
|
|
719
|
+
type: string;
|
|
720
|
+
displayConditions: Condition<any>[] | null;
|
|
721
|
+
highContrast: boolean;
|
|
722
|
+
title: string;
|
|
723
|
+
icon: string | null;
|
|
724
|
+
compact: boolean | null;
|
|
725
|
+
width: number;
|
|
726
|
+
key: string;
|
|
727
|
+
actions: WidgetAction[];
|
|
728
|
+
}
|
|
729
|
+
export interface CaseDefinitionId extends AbstractId<CaseDefinitionId>, BlueprintId {
|
|
730
|
+
key: string;
|
|
731
|
+
versionTag: Semver;
|
|
732
|
+
}
|
|
733
|
+
export interface CaseListItemDto {
|
|
734
|
+
key: string;
|
|
735
|
+
value: any | null;
|
|
736
|
+
}
|
|
737
|
+
export interface ObjectNode extends ContainerNode<ObjectNode>, Serializable {
|
|
738
|
+
}
|
|
739
|
+
export interface URI extends Comparable<URI>, Serializable {
|
|
740
|
+
}
|
|
741
|
+
export interface RelatedFile {
|
|
742
|
+
sizeInBytes: number;
|
|
743
|
+
createdBy: string;
|
|
744
|
+
createdOn: DateAsString;
|
|
745
|
+
fileId: string;
|
|
746
|
+
fileName: string;
|
|
747
|
+
}
|
|
748
|
+
export interface OperationError {
|
|
749
|
+
}
|
|
750
|
+
export interface TransactionalResult {
|
|
751
|
+
}
|
|
752
|
+
export interface ComponentError {
|
|
753
|
+
component: string | null;
|
|
754
|
+
message: string;
|
|
755
|
+
}
|
|
756
|
+
export interface ProcessLinkDeployDto {
|
|
757
|
+
processLinkType: "url";
|
|
758
|
+
activityId: string;
|
|
759
|
+
activityType: ActivityTypeWithEventName;
|
|
760
|
+
processDefinitionId: string;
|
|
761
|
+
}
|
|
762
|
+
export interface ProcessDefinitionCaseDefinition {
|
|
763
|
+
id: ProcessDefinitionCaseDefinitionId;
|
|
764
|
+
canInitializeDocument: boolean;
|
|
765
|
+
startableByUser: boolean;
|
|
766
|
+
processDefinitionName: string | null;
|
|
767
|
+
processDefinitionKey: string | null;
|
|
768
|
+
}
|
|
769
|
+
export interface TaskInstanceWithIdentityLink {
|
|
770
|
+
businessKey: string;
|
|
771
|
+
id: string | null;
|
|
772
|
+
name: string | null;
|
|
773
|
+
assignee: string | null;
|
|
774
|
+
created: DateAsString | null;
|
|
775
|
+
due: DateAsString | null;
|
|
776
|
+
followUp: DateAsString | null;
|
|
777
|
+
lastUpdated: DateAsString | null;
|
|
778
|
+
delegationState: string | null;
|
|
779
|
+
description: string | null;
|
|
780
|
+
executionId: string | null;
|
|
781
|
+
owner: string | null;
|
|
782
|
+
parentTaskId: string | null;
|
|
783
|
+
priority: number;
|
|
784
|
+
processDefinitionId: string | null;
|
|
785
|
+
processInstanceId: string | null;
|
|
786
|
+
taskDefinitionKey: string | null;
|
|
787
|
+
caseExecutionId: string | null;
|
|
788
|
+
caseInstanceId: string | null;
|
|
789
|
+
caseDefinitionId: string | null;
|
|
790
|
+
suspended: boolean;
|
|
791
|
+
tenantId: string | null;
|
|
792
|
+
external: boolean;
|
|
793
|
+
processDefinitionKey: string;
|
|
794
|
+
identityLinks: OperatonIdentityLinkDto[];
|
|
795
|
+
subtitles: string[];
|
|
796
|
+
}
|
|
797
|
+
export interface ChoiceFieldValue extends AbstractAuditingEntity, Serializable {
|
|
798
|
+
id: number;
|
|
799
|
+
name: string;
|
|
800
|
+
deprecated: boolean;
|
|
801
|
+
sortOrder: number;
|
|
802
|
+
value: string;
|
|
803
|
+
choiceField: ChoiceField;
|
|
804
|
+
}
|
|
805
|
+
export interface OperatonTaskDto {
|
|
806
|
+
id: string | null;
|
|
807
|
+
name: string | null;
|
|
808
|
+
assignee: string | null;
|
|
809
|
+
created: DateAsString | null;
|
|
810
|
+
due: DateAsString | null;
|
|
811
|
+
followUp: DateAsString | null;
|
|
812
|
+
lastUpdated: DateAsString | null;
|
|
813
|
+
delegationState: string | null;
|
|
814
|
+
description: string | null;
|
|
815
|
+
executionId: string | null;
|
|
816
|
+
owner: string | null;
|
|
817
|
+
parentTaskId: string | null;
|
|
818
|
+
priority: number;
|
|
819
|
+
processDefinitionId: string | null;
|
|
820
|
+
processInstanceId: string | null;
|
|
821
|
+
taskDefinitionKey: string | null;
|
|
822
|
+
caseExecutionId: string | null;
|
|
823
|
+
caseInstanceId: string | null;
|
|
824
|
+
caseDefinitionId: string | null;
|
|
825
|
+
suspended: boolean;
|
|
826
|
+
tenantId: string | null;
|
|
827
|
+
}
|
|
828
|
+
export interface FormField {
|
|
829
|
+
validationConstraints: FormFieldValidationConstraint[];
|
|
830
|
+
businessKey: boolean;
|
|
831
|
+
label: string;
|
|
832
|
+
value: TypedValue;
|
|
833
|
+
typeName: string;
|
|
834
|
+
properties: {
|
|
835
|
+
[index: string]: string;
|
|
836
|
+
};
|
|
837
|
+
id: string;
|
|
838
|
+
type: FormType;
|
|
839
|
+
/**
|
|
840
|
+
* @deprecated since 1.0
|
|
841
|
+
*/
|
|
842
|
+
defaultValue: any;
|
|
843
|
+
}
|
|
844
|
+
export interface ProcessDefinitionDto {
|
|
845
|
+
id: string;
|
|
846
|
+
key: string;
|
|
847
|
+
category: string;
|
|
848
|
+
description: string;
|
|
849
|
+
name: string;
|
|
850
|
+
version: number;
|
|
851
|
+
resource: string;
|
|
852
|
+
deploymentId: string;
|
|
853
|
+
diagram: string;
|
|
854
|
+
suspended: boolean;
|
|
855
|
+
tenantId: string;
|
|
856
|
+
versionTag: string;
|
|
857
|
+
historyTimeToLive: number;
|
|
858
|
+
startableInTasklist: boolean;
|
|
859
|
+
}
|
|
860
|
+
export interface HistoricActivityInstance {
|
|
861
|
+
processDefinitionKey: string;
|
|
862
|
+
assignee: string;
|
|
863
|
+
processInstanceId: string;
|
|
864
|
+
activityName: string;
|
|
865
|
+
durationInMillis: number;
|
|
866
|
+
completeScope: boolean;
|
|
867
|
+
rootProcessInstanceId: string;
|
|
868
|
+
parentActivityInstanceId: string;
|
|
869
|
+
calledProcessInstanceId: string;
|
|
870
|
+
calledCaseInstanceId: string;
|
|
871
|
+
executionId: string;
|
|
872
|
+
canceled: boolean;
|
|
873
|
+
removalTime: DateAsString;
|
|
874
|
+
activityId: string;
|
|
875
|
+
tenantId: string;
|
|
876
|
+
activityType: string;
|
|
877
|
+
processDefinitionId: string;
|
|
878
|
+
endTime: DateAsString;
|
|
879
|
+
taskId: string;
|
|
880
|
+
startTime: DateAsString;
|
|
881
|
+
id: string;
|
|
882
|
+
}
|
|
883
|
+
export interface ProcessVariableDTOV2 {
|
|
884
|
+
"@type": "string" | "date" | "boolean" | "enum" | "long" | "fileUpload";
|
|
885
|
+
name: string;
|
|
886
|
+
}
|
|
887
|
+
export interface Condition<T> {
|
|
888
|
+
path: string;
|
|
889
|
+
operator: ExpressionOperator;
|
|
890
|
+
value: T;
|
|
891
|
+
}
|
|
892
|
+
export interface WidgetAction {
|
|
893
|
+
}
|
|
894
|
+
export interface Semver extends Comparable<Semver> {
|
|
895
|
+
major: number;
|
|
896
|
+
minor: number;
|
|
897
|
+
patch: number;
|
|
898
|
+
preRelease: string[];
|
|
899
|
+
build: string[];
|
|
900
|
+
version: string;
|
|
901
|
+
stable: boolean;
|
|
902
|
+
}
|
|
903
|
+
export interface BlueprintId {
|
|
904
|
+
tagPrefix: string;
|
|
905
|
+
idKey: string;
|
|
906
|
+
}
|
|
907
|
+
export interface Serializable {
|
|
908
|
+
}
|
|
909
|
+
export interface ProcessDefinitionCaseDefinitionId extends AbstractId<ProcessDefinitionCaseDefinitionId> {
|
|
910
|
+
processDefinitionId: ProcessDefinitionId;
|
|
911
|
+
caseDefinitionId: CaseDefinitionId;
|
|
912
|
+
}
|
|
913
|
+
export interface OperatonIdentityLinkDto {
|
|
914
|
+
userId: string | null;
|
|
915
|
+
groupId: string | null;
|
|
916
|
+
type: string | null;
|
|
917
|
+
}
|
|
918
|
+
export interface ChoiceField extends AbstractAuditingEntity, Serializable {
|
|
919
|
+
id: number;
|
|
920
|
+
keyName: string;
|
|
921
|
+
title: string;
|
|
922
|
+
}
|
|
923
|
+
export interface AbstractAuditingEntity {
|
|
924
|
+
}
|
|
925
|
+
export interface FormFieldValidationConstraint {
|
|
926
|
+
configuration: any;
|
|
927
|
+
name: string;
|
|
928
|
+
}
|
|
929
|
+
export interface TypedValue extends Serializable {
|
|
930
|
+
value: any;
|
|
931
|
+
type: ValueType;
|
|
932
|
+
transient: boolean;
|
|
933
|
+
}
|
|
934
|
+
export interface FormType {
|
|
935
|
+
name: string;
|
|
936
|
+
}
|
|
937
|
+
export interface StringProcessVariableDTOV2 extends ProcessVariableDTOV2 {
|
|
938
|
+
"@type": "string";
|
|
939
|
+
value: string;
|
|
940
|
+
}
|
|
941
|
+
export interface DateProcessVariableDTOV2 extends ProcessVariableDTOV2 {
|
|
942
|
+
"@type": "date";
|
|
943
|
+
range: DateRange;
|
|
944
|
+
}
|
|
945
|
+
export interface BooleanProcessVariableDTOV2 extends ProcessVariableDTOV2 {
|
|
946
|
+
"@type": "boolean";
|
|
947
|
+
value: boolean;
|
|
948
|
+
}
|
|
949
|
+
export interface EnumProcessVariableDTOV2 extends ProcessVariableDTOV2 {
|
|
950
|
+
"@type": "enum";
|
|
951
|
+
values: string[];
|
|
952
|
+
}
|
|
953
|
+
export interface LongProcessVariableDTOV2 extends ProcessVariableDTOV2 {
|
|
954
|
+
"@type": "long";
|
|
955
|
+
value: number;
|
|
956
|
+
}
|
|
957
|
+
export interface FileUploadProcessVariableDTOV2 extends ProcessVariableDTOV2 {
|
|
958
|
+
"@type": "fileUpload";
|
|
959
|
+
value: boolean;
|
|
960
|
+
}
|
|
961
|
+
export interface AbstractId<SELF> extends Identity, Serializable {
|
|
962
|
+
}
|
|
963
|
+
export interface ContainerNode<T> extends BaseJsonNode, JsonNodeCreator {
|
|
964
|
+
}
|
|
965
|
+
export interface Comparable<T> {
|
|
966
|
+
}
|
|
967
|
+
export interface ProcessDefinitionId {
|
|
968
|
+
id: string;
|
|
969
|
+
}
|
|
970
|
+
export interface ValueType extends Serializable {
|
|
971
|
+
primitiveValueType: boolean;
|
|
972
|
+
name: string;
|
|
973
|
+
parent: ValueType;
|
|
974
|
+
abstract: boolean;
|
|
975
|
+
}
|
|
976
|
+
export interface DateRange {
|
|
977
|
+
from: DateAsString;
|
|
978
|
+
to: DateAsString;
|
|
979
|
+
}
|
|
980
|
+
export interface Identity {
|
|
981
|
+
}
|
|
982
|
+
export interface BaseJsonNode extends Serializable {
|
|
983
|
+
}
|
|
984
|
+
export interface JsonNodeCreator {
|
|
985
|
+
}
|
|
986
|
+
export type DateAsString = string;
|
|
987
|
+
export type ColumnDefaultSort = "ASC" | "DESC";
|
|
988
|
+
export type CaseTabType = "standard" | "formio" | "custom" | "widgets";
|
|
989
|
+
export type CaseTagColor = "WARMGRAY" | "RED" | "MAGENTA" | "PURPLE" | "BLUE" | "CYAN" | "TEAL" | "GREEN" | "GRAY" | "COOLGRAY" | "HIGHCONTRAST" | "OUTLINE";
|
|
990
|
+
export type InternalCaseStatusColor = "WARMGRAY" | "RED" | "MAGENTA" | "PURPLE" | "BLUE" | "CYAN" | "TEAL" | "GREEN" | "GRAY" | "COOLGRAY" | "HIGHCONTRAST" | "OUTLINE";
|
|
991
|
+
export type DocumentStatusType = "in_bewerking" | "ter_vaststelling" | "definitief" | "gearchiveerd";
|
|
992
|
+
export type ActivityTypeWithEventName = "bpmn:MultiInstanceBody:start" | "bpmn:MultiInstanceBody:end" | "bpmn:ExclusiveGateway:start" | "bpmn:ExclusiveGateway:end" | "bpmn:InclusiveGateway:start" | "bpmn:InclusiveGateway:end" | "bpmn:ParallelGateway:start" | "bpmn:ParallelGateway:end" | "bpmn:ComplexGateway:start" | "bpmn:ComplexGateway:end" | "bpmn:EventBasedGateway:start" | "bpmn:EventBasedGateway:end" | "bpmn:Task:start" | "bpmn:Task:end" | "bpmn:ScriptTask:start" | "bpmn:ScriptTask:end" | "bpmn:ServiceTask:start" | "bpmn:ServiceTask:end" | "bpmn:BusinessRuleTask:start" | "bpmn:BusinessRuleTask:end" | "bpmn:ManualTask:start" | "bpmn:ManualTask:end" | "bpmn:UserTask:create" | "bpmn:UserTask:assignment" | "bpmn:UserTask:complete" | "bpmn:UserTask:update" | "bpmn:UserTask:delete" | "bpmn:UserTask:timeout" | "bpmn:UserTask:start" | "bpmn:UserTask:end" | "bpmn:SendTask:start" | "bpmn:SendTask:end" | "bpmn:ReceiveTask:start" | "bpmn:ReceiveTask:end" | "bpmn:SubProcess:start" | "bpmn:SubProcess:end" | "bpmn:AdHocSubProcess:start" | "bpmn:AdHocSubProcess:end" | "bpmn:CallActivity:start" | "bpmn:CallActivity:end" | "bpmn:Transaction:start" | "bpmn:Transaction:end" | "bpmn:BoundaryTimer:start" | "bpmn:BoundaryTimer:end" | "bpmn:BoundaryMessage:start" | "bpmn:BoundaryMessage:end" | "bpmn:BoundarySignal:start" | "bpmn:BoundarySignal:end" | "bpmn:CompensationBoundaryCatch:start" | "bpmn:CompensationBoundaryCatch:end" | "bpmn:BoundaryError:start" | "bpmn:BoundaryError:end" | "bpmn:BoundaryEscalation:start" | "bpmn:BoundaryEscalation:end" | "bpmn:CancelBoundaryCatch:start" | "bpmn:CancelBoundaryCatch:end" | "bpmn:BoundaryConditional:start" | "bpmn:BoundaryConditional:end" | "bpmn:StartEvent:start" | "bpmn:StartEvent:end" | "bpmn:StartTimerEvent:start" | "bpmn:StartTimerEvent:end" | "bpmn:MessageStartEvent:start" | "bpmn:MessageStartEvent:end" | "bpmn:SignalStartEvent:start" | "bpmn:SignalStartEvent:end" | "bpmn:EscalationStartEvent:start" | "bpmn:EscalationStartEvent:end" | "bpmn:CompensationStartEvent:start" | "bpmn:CompensationStartEvent:end" | "bpmn:ErrorStartEvent:start" | "bpmn:ErrorStartEvent:end" | "bpmn:ConditionalStartEvent:start" | "bpmn:ConditionalStartEvent:end" | "bpmn:IntermediateCatchEvent:start" | "bpmn:IntermediateCatchEvent:end" | "bpmn:IntermediateMessageCatch:start" | "bpmn:IntermediateMessageCatch:end" | "bpmn:IntermediateTimer:start" | "bpmn:IntermediateTimer:end" | "bpmn:IntermediateLinkCatch:start" | "bpmn:IntermediateLinkCatch:end" | "bpmn:IntermediateSignalCatch:start" | "bpmn:IntermediateSignalCatch:end" | "bpmn:IntermediateConditional:start" | "bpmn:IntermediateConditional:end" | "bpmn:IntermediateThrowEvent:start" | "bpmn:IntermediateThrowEvent:end" | "bpmn:IntermediateSignalThrow:start" | "bpmn:IntermediateSignalThrow:end" | "bpmn:IntermediateCompensationThrowEvent:start" | "bpmn:IntermediateCompensationThrowEvent:end" | "bpmn:IntermediateMessageThrowEvent:start" | "bpmn:IntermediateMessageThrowEvent:end" | "bpmn:IntermediateNoneThrowEvent:start" | "bpmn:IntermediateNoneThrowEvent:end" | "bpmn:IntermediateEscalationThrowEvent:start" | "bpmn:IntermediateEscalationThrowEvent:end" | "bpmn:ErrorEndEvent:start" | "bpmn:ErrorEndEvent:end" | "bpmn:CancelEndEvent:start" | "bpmn:CancelEndEvent:end" | "bpmn:TerminateEndEvent:start" | "bpmn:TerminateEndEvent:end" | "bpmn:MessageEndEvent:start" | "bpmn:MessageEndEvent:end" | "bpmn:SignalEndEvent:start" | "bpmn:SignalEndEvent:end" | "bpmn:CompensationEndEvent:start" | "bpmn:CompensationEndEvent:end" | "bpmn:EscalationEndEvent:start" | "bpmn:EscalationEndEvent:end" | "bpmn:NoneEndEvent:start" | "bpmn:NoneEndEvent:end";
|
|
993
|
+
export type FormDisplayType = "modal" | "panel";
|
|
994
|
+
export type FormSizes = "extraSmall" | "small" | "medium" | "large";
|
|
995
|
+
export type DataType = "text" | "number" | "date" | "datetime" | "time" | "boolean" | "bsn";
|
|
996
|
+
export type FieldType = "text_contains" | "single" | "range" | "single-select-dropdown" | "multi-select-dropdown";
|
|
997
|
+
export type SearchFieldMatchType = "like" | "exact";
|
|
998
|
+
export type ExpressionOperator = "!=" | "==" | ">" | ">=" | "<" | "<=" | "list_contains" | "in";
|
|
999
|
+
export type ProcessVariableDTOV2Union = StringProcessVariableDTOV2 | DateProcessVariableDTOV2 | BooleanProcessVariableDTOV2 | EnumProcessVariableDTOV2 | LongProcessVariableDTOV2 | FileUploadProcessVariableDTOV2;
|
|
1000
|
+
//# sourceMappingURL=generated-backend-types.d.ts.map
|