jsegd-fluig-types 1.0.50 → 1.0.51
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/package.json +1 -1
- package/types/fluig/fluig.webservice.d.ts +172 -182
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ declare global {
|
|
|
9
9
|
constructor()
|
|
10
10
|
|
|
11
11
|
// Método para obter a porta do serviço
|
|
12
|
-
getWorkflowEngineServicePort(): WorkflowEngineService
|
|
12
|
+
getWorkflowEngineServicePort(): com.totvs.technology.ecm.workflow.ws.WorkflowEngineService
|
|
13
13
|
|
|
14
14
|
// Métodos de gerenciamento de processo
|
|
15
15
|
importProcess(
|
|
@@ -17,7 +17,7 @@ declare global {
|
|
|
17
17
|
password: string,
|
|
18
18
|
companyId: number,
|
|
19
19
|
processId: string,
|
|
20
|
-
attachments: AttachmentArray,
|
|
20
|
+
attachments: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
21
21
|
newProcess: boolean,
|
|
22
22
|
overWrite: boolean,
|
|
23
23
|
colleagueId: string
|
|
@@ -32,38 +32,38 @@ declare global {
|
|
|
32
32
|
companyId: number,
|
|
33
33
|
processId: string,
|
|
34
34
|
choosedState: number,
|
|
35
|
-
colleagueIds: StringArray,
|
|
35
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
36
36
|
comments: string,
|
|
37
37
|
userId: string,
|
|
38
38
|
completeTask: boolean,
|
|
39
|
-
attachments: ProcessAttachmentDtoArray,
|
|
40
|
-
cardData: StringArrayArray,
|
|
41
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
39
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
40
|
+
cardData: net.java.dev.jaxb.array.StringArrayArray,
|
|
41
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
42
42
|
managerMode: boolean
|
|
43
|
-
): StringArrayArray
|
|
43
|
+
): net.java.dev.jaxb.array.StringArrayArray
|
|
44
44
|
startProcessClassic(
|
|
45
45
|
username: string,
|
|
46
46
|
password: string,
|
|
47
47
|
companyId: number,
|
|
48
48
|
processId: string,
|
|
49
49
|
choosedState: number,
|
|
50
|
-
colleagueIds: StringArray,
|
|
50
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
51
51
|
comments: string,
|
|
52
52
|
userId: string,
|
|
53
53
|
completeTask: boolean,
|
|
54
|
-
attachments: ProcessAttachmentDtoArray,
|
|
55
|
-
cardData: KeyValueDtoArray,
|
|
56
|
-
appointment: ProcessTaskAppointmentDtoArray
|
|
57
|
-
): KeyValueDtoArray
|
|
54
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
55
|
+
cardData: com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray,
|
|
56
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray
|
|
57
|
+
): com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray
|
|
58
58
|
simpleStartProcess(
|
|
59
59
|
username: string,
|
|
60
60
|
password: string,
|
|
61
61
|
companyId: number,
|
|
62
62
|
processId: string,
|
|
63
63
|
comments: string,
|
|
64
|
-
attachments: ProcessAttachmentDtoArray,
|
|
65
|
-
cardData: StringArrayArray
|
|
66
|
-
): StringArray
|
|
64
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
65
|
+
cardData: net.java.dev.jaxb.array.StringArrayArray
|
|
66
|
+
): net.java.dev.jaxb.array.StringArray
|
|
67
67
|
|
|
68
68
|
// Métodos de gerenciamento de tarefas
|
|
69
69
|
saveAndSendTask(
|
|
@@ -72,48 +72,48 @@ declare global {
|
|
|
72
72
|
companyId: number,
|
|
73
73
|
processInstanceId: number,
|
|
74
74
|
choosedState: number,
|
|
75
|
-
colleagueIds: StringArray,
|
|
75
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
76
76
|
comments: string,
|
|
77
77
|
userId: string,
|
|
78
78
|
completeTask: boolean,
|
|
79
|
-
attachments: ProcessAttachmentDtoArray,
|
|
80
|
-
cardData: StringArrayArray,
|
|
81
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
79
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
80
|
+
cardData: net.java.dev.jaxb.array.StringArrayArray,
|
|
81
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
82
82
|
managerMode: boolean,
|
|
83
83
|
threadSequence: number
|
|
84
|
-
): StringArrayArray
|
|
84
|
+
): net.java.dev.jaxb.array.StringArrayArray
|
|
85
85
|
saveAndSendTaskClassic(
|
|
86
86
|
username: string,
|
|
87
87
|
password: string,
|
|
88
88
|
companyId: number,
|
|
89
89
|
processInstanceId: number,
|
|
90
90
|
choosedState: number,
|
|
91
|
-
colleagueIds: StringArray,
|
|
91
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
92
92
|
comments: string,
|
|
93
93
|
userId: string,
|
|
94
94
|
completeTask: boolean,
|
|
95
|
-
attachments: ProcessAttachmentDtoArray,
|
|
96
|
-
cardData: KeyValueDtoArray,
|
|
97
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
95
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
96
|
+
cardData: com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray,
|
|
97
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
98
98
|
threadSequence: number
|
|
99
|
-
): KeyValueDtoArray
|
|
99
|
+
): com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray
|
|
100
100
|
saveAndSendTaskByReplacement(
|
|
101
101
|
username: string,
|
|
102
102
|
password: string,
|
|
103
103
|
companyId: number,
|
|
104
104
|
processInstanceId: number,
|
|
105
105
|
choosedState: number,
|
|
106
|
-
colleagueIds: StringArray,
|
|
106
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
107
107
|
comments: string,
|
|
108
108
|
userId: string,
|
|
109
109
|
completeTask: boolean,
|
|
110
|
-
attachments: ProcessAttachmentDtoArray,
|
|
111
|
-
cardData:
|
|
112
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
110
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
111
|
+
cardData: com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray,
|
|
112
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
113
113
|
managerMode: boolean,
|
|
114
114
|
threadSequence: number,
|
|
115
115
|
replacementId: string
|
|
116
|
-
):
|
|
116
|
+
): com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray
|
|
117
117
|
|
|
118
118
|
// Métodos de tarefa
|
|
119
119
|
takeProcessTask(
|
|
@@ -159,7 +159,7 @@ declare global {
|
|
|
159
159
|
password: string,
|
|
160
160
|
companyId: number,
|
|
161
161
|
userId: string
|
|
162
|
-
): ProcessDefinitionVersionDtoArray
|
|
162
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDtoArray
|
|
163
163
|
getAvailableProcessOnDemand(
|
|
164
164
|
username: string,
|
|
165
165
|
password: string,
|
|
@@ -167,9 +167,9 @@ declare global {
|
|
|
167
167
|
userId: string,
|
|
168
168
|
limit: number,
|
|
169
169
|
lastRowId: number
|
|
170
|
-
): ProcessDefinitionVersionDtoArray
|
|
171
|
-
getAllProcessAvailableToExport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
172
|
-
getAllProcessAvailableToImport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
170
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDtoArray
|
|
171
|
+
getAllProcessAvailableToExport(username: string, password: string, companyId: number): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionDtoArray
|
|
172
|
+
getAllProcessAvailableToImport(username: string, password: string, companyId: number): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionDtoArray
|
|
173
173
|
searchProcess(
|
|
174
174
|
username: string,
|
|
175
175
|
password: string,
|
|
@@ -177,7 +177,7 @@ declare global {
|
|
|
177
177
|
colleagueId: string,
|
|
178
178
|
content: string,
|
|
179
179
|
favorite: boolean
|
|
180
|
-
): ProcessDefinitionVersionDtoArray
|
|
180
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDtoArray
|
|
181
181
|
|
|
182
182
|
// Métodos de estados
|
|
183
183
|
getAvailableStates(
|
|
@@ -187,7 +187,7 @@ declare global {
|
|
|
187
187
|
processId: string,
|
|
188
188
|
processInstanceId: number,
|
|
189
189
|
threadSequence: number
|
|
190
|
-
): IntArray
|
|
190
|
+
): net.java.dev.jaxb.array.IntArray
|
|
191
191
|
getAvailableStatesDetail(
|
|
192
192
|
username: string,
|
|
193
193
|
password: string,
|
|
@@ -195,14 +195,14 @@ declare global {
|
|
|
195
195
|
processId: string,
|
|
196
196
|
processInstanceId: number,
|
|
197
197
|
threadSequence: number
|
|
198
|
-
): ProcessStateDtoArray
|
|
198
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessStateDtoArray
|
|
199
199
|
getAllActiveStates(
|
|
200
200
|
username: string,
|
|
201
201
|
password: string,
|
|
202
202
|
companyId: number,
|
|
203
203
|
userId: string,
|
|
204
204
|
processInstanceId: number
|
|
205
|
-
): IntArray
|
|
205
|
+
): net.java.dev.jaxb.array.IntArray
|
|
206
206
|
|
|
207
207
|
// Métodos de usuários
|
|
208
208
|
getAvailableUsers(
|
|
@@ -212,7 +212,7 @@ declare global {
|
|
|
212
212
|
processInstanceId: number,
|
|
213
213
|
state: number,
|
|
214
214
|
threadSequence: number
|
|
215
|
-
): StringArray
|
|
215
|
+
): net.java.dev.jaxb.array.StringArray
|
|
216
216
|
getAvailableUsersOnDemand(
|
|
217
217
|
username: string,
|
|
218
218
|
password: string,
|
|
@@ -223,7 +223,7 @@ declare global {
|
|
|
223
223
|
limit: number,
|
|
224
224
|
initialUser: number,
|
|
225
225
|
userSearch: string
|
|
226
|
-
): AvailableUsersDto
|
|
226
|
+
): com.totvs.technology.ecm.workflow.ws.AvailableUsersDto
|
|
227
227
|
getAvailableUsersStart(
|
|
228
228
|
username: string,
|
|
229
229
|
password: string,
|
|
@@ -231,7 +231,7 @@ declare global {
|
|
|
231
231
|
processId: string,
|
|
232
232
|
state: number,
|
|
233
233
|
threadSequence: number
|
|
234
|
-
): StringArray
|
|
234
|
+
): net.java.dev.jaxb.array.StringArray
|
|
235
235
|
getAvailableUsersStartOnDemand(
|
|
236
236
|
username: string,
|
|
237
237
|
password: string,
|
|
@@ -242,7 +242,7 @@ declare global {
|
|
|
242
242
|
limit: number,
|
|
243
243
|
initialUser: number,
|
|
244
244
|
userSearch: string
|
|
245
|
-
): AvailableUsersDto
|
|
245
|
+
): com.totvs.technology.ecm.workflow.ws.AvailableUsersDto
|
|
246
246
|
|
|
247
247
|
// Métodos de dados do cartão
|
|
248
248
|
getInstanceCardData(
|
|
@@ -251,7 +251,7 @@ declare global {
|
|
|
251
251
|
companyId: number,
|
|
252
252
|
userId: string,
|
|
253
253
|
processInstanceId: number
|
|
254
|
-
): StringArrayArray
|
|
254
|
+
): net.java.dev.jaxb.array.StringArrayArray
|
|
255
255
|
getCardValue(
|
|
256
256
|
username: string,
|
|
257
257
|
password: string,
|
|
@@ -281,7 +281,7 @@ declare global {
|
|
|
281
281
|
hora: number,
|
|
282
282
|
prazo: number,
|
|
283
283
|
periodId: string
|
|
284
|
-
): DeadLineDto
|
|
284
|
+
): com.totvs.technology.ecm.workflow.ws.DeadLineDto
|
|
285
285
|
calculateDeadLineTime(
|
|
286
286
|
username: string,
|
|
287
287
|
password: string,
|
|
@@ -291,7 +291,7 @@ declare global {
|
|
|
291
291
|
hora: number,
|
|
292
292
|
prazo: number,
|
|
293
293
|
periodId: string
|
|
294
|
-
): DeadLineDto
|
|
294
|
+
): com.totvs.technology.ecm.workflow.ws.DeadLineDto
|
|
295
295
|
|
|
296
296
|
// Métodos diversos
|
|
297
297
|
getActualThread(
|
|
@@ -309,14 +309,14 @@ declare global {
|
|
|
309
309
|
companyId: number,
|
|
310
310
|
userId: string,
|
|
311
311
|
processInstanceId: number
|
|
312
|
-
): ProcessAttachmentDtoArray
|
|
312
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray
|
|
313
313
|
getHistories(
|
|
314
314
|
username: string,
|
|
315
315
|
password: string,
|
|
316
316
|
companyId: number,
|
|
317
317
|
userId: string,
|
|
318
318
|
processInstanceId: number
|
|
319
|
-
): ProcessHistoryDtoArray
|
|
319
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessHistoryDtoArray
|
|
320
320
|
|
|
321
321
|
// Métodos de comentários
|
|
322
322
|
setTasksComments(
|
|
@@ -338,12 +338,12 @@ declare global {
|
|
|
338
338
|
iTaskAutom: number,
|
|
339
339
|
iTask: number,
|
|
340
340
|
condition: number,
|
|
341
|
-
colleagueIds: StringArray,
|
|
341
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
342
342
|
comments: string,
|
|
343
343
|
userId: string,
|
|
344
344
|
managerMode: boolean,
|
|
345
345
|
threadSequence: number
|
|
346
|
-
): KeyValueDtoArray
|
|
346
|
+
): com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray
|
|
347
347
|
|
|
348
348
|
// Métodos de versão de processo
|
|
349
349
|
createWorkFlowProcessVersion(username: string, password: string, companyId: number, processId: string): string
|
|
@@ -355,7 +355,7 @@ declare global {
|
|
|
355
355
|
password: string,
|
|
356
356
|
companyId: number,
|
|
357
357
|
processId: string,
|
|
358
|
-
processAttachs: AttachmentArray,
|
|
358
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
359
359
|
newProcess: boolean,
|
|
360
360
|
overWrite: boolean,
|
|
361
361
|
colleagueId: string,
|
|
@@ -363,16 +363,16 @@ declare global {
|
|
|
363
363
|
documentDescription: string,
|
|
364
364
|
cardDescription: string,
|
|
365
365
|
datasetName: string,
|
|
366
|
-
cardAttachs: AttachmentArray,
|
|
367
|
-
customEvents: CardEventDtoArray,
|
|
366
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
367
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
368
368
|
update: boolean
|
|
369
|
-
): WebServiceMessage
|
|
369
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
370
370
|
importProcessWithCardAndRelatedDatasets(
|
|
371
371
|
username: string,
|
|
372
372
|
password: string,
|
|
373
373
|
companyId: number,
|
|
374
374
|
processId: string,
|
|
375
|
-
processAttachs: AttachmentArray,
|
|
375
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
376
376
|
newProcess: boolean,
|
|
377
377
|
overWrite: boolean,
|
|
378
378
|
colleagueId: string,
|
|
@@ -380,19 +380,19 @@ declare global {
|
|
|
380
380
|
documentDescription: string,
|
|
381
381
|
cardDescription: string,
|
|
382
382
|
datasetName: string,
|
|
383
|
-
cardAttachs: AttachmentArray,
|
|
384
|
-
customEvents: CardEventDtoArray,
|
|
385
|
-
generalInfo: GeneralInfoDto,
|
|
383
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
384
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
385
|
+
generalInfo: com.totvs.technology.ecm.workflow.ws.GeneralInfoDto,
|
|
386
386
|
update: boolean,
|
|
387
387
|
persistenceType: number,
|
|
388
|
-
relatedDatasets: StringArray
|
|
389
|
-
): WebServiceMessage
|
|
388
|
+
relatedDatasets: net.java.dev.jaxb.array.StringArray
|
|
389
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
390
390
|
importProcessWithCardAndPersistenceType(
|
|
391
391
|
username: string,
|
|
392
392
|
password: string,
|
|
393
393
|
companyId: number,
|
|
394
394
|
processId: string,
|
|
395
|
-
processAttachs: AttachmentArray,
|
|
395
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
396
396
|
newProcess: boolean,
|
|
397
397
|
overWrite: boolean,
|
|
398
398
|
colleagueId: string,
|
|
@@ -400,17 +400,17 @@ declare global {
|
|
|
400
400
|
documentDescription: string,
|
|
401
401
|
cardDescription: string,
|
|
402
402
|
datasetName: string,
|
|
403
|
-
cardAttachs: AttachmentArray,
|
|
404
|
-
customEvents: CardEventDtoArray,
|
|
403
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
404
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
405
405
|
update: boolean,
|
|
406
406
|
persistenceType: number
|
|
407
|
-
): WebServiceMessage
|
|
407
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
408
408
|
importProcessWithCardAndGeneralInfo(
|
|
409
409
|
username: string,
|
|
410
410
|
password: string,
|
|
411
411
|
companyId: number,
|
|
412
412
|
processId: string,
|
|
413
|
-
processAttachs: AttachmentArray,
|
|
413
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
414
414
|
newProcess: boolean,
|
|
415
415
|
overWrite: boolean,
|
|
416
416
|
colleagueId: string,
|
|
@@ -418,12 +418,12 @@ declare global {
|
|
|
418
418
|
documentDescription: string,
|
|
419
419
|
cardDescription: string,
|
|
420
420
|
datasetName: string,
|
|
421
|
-
cardAttachs: AttachmentArray,
|
|
422
|
-
customEvents: CardEventDtoArray,
|
|
423
|
-
generalInfo: GeneralInfoDto,
|
|
421
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
422
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
423
|
+
generalInfo: com.totvs.technology.ecm.workflow.ws.GeneralInfoDto,
|
|
424
424
|
update: boolean,
|
|
425
425
|
persistenceType: number
|
|
426
|
-
): WebServiceMessage
|
|
426
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
427
427
|
|
|
428
428
|
// Métodos de anexo
|
|
429
429
|
updateWorkflowAttachment(
|
|
@@ -432,8 +432,8 @@ declare global {
|
|
|
432
432
|
companyId: number,
|
|
433
433
|
processInstanceId: number,
|
|
434
434
|
usuario: string,
|
|
435
|
-
document: DocumentDtoArray,
|
|
436
|
-
attachments: AttachmentArray
|
|
435
|
+
document: com.totvs.technology.ecm.workflow.ws.DocumentDtoArray,
|
|
436
|
+
attachments: com.totvs.technology.ecm.workflow.ws.AttachmentArray
|
|
437
437
|
): string
|
|
438
438
|
|
|
439
439
|
// Métodos de liberação
|
|
@@ -448,7 +448,7 @@ declare global {
|
|
|
448
448
|
password: string,
|
|
449
449
|
companyId: number,
|
|
450
450
|
processId: string,
|
|
451
|
-
attachments: AttachmentArray,
|
|
451
|
+
attachments: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
452
452
|
newProcess: boolean,
|
|
453
453
|
overWrite: boolean,
|
|
454
454
|
colleagueId: string
|
|
@@ -463,38 +463,38 @@ declare global {
|
|
|
463
463
|
companyId: number,
|
|
464
464
|
processId: string,
|
|
465
465
|
choosedState: number,
|
|
466
|
-
colleagueIds: StringArray,
|
|
466
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
467
467
|
comments: string,
|
|
468
468
|
userId: string,
|
|
469
469
|
completeTask: boolean,
|
|
470
|
-
attachments: ProcessAttachmentDtoArray,
|
|
471
|
-
cardData: StringArrayArray,
|
|
472
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
470
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
471
|
+
cardData: net.java.dev.jaxb.array.StringArrayArray,
|
|
472
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
473
473
|
managerMode: boolean
|
|
474
|
-
): StringArrayArray
|
|
474
|
+
): net.java.dev.jaxb.array.StringArrayArray
|
|
475
475
|
startProcessClassic(
|
|
476
476
|
username: string,
|
|
477
477
|
password: string,
|
|
478
478
|
companyId: number,
|
|
479
479
|
processId: string,
|
|
480
480
|
choosedState: number,
|
|
481
|
-
colleagueIds: StringArray,
|
|
481
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
482
482
|
comments: string,
|
|
483
483
|
userId: string,
|
|
484
484
|
completeTask: boolean,
|
|
485
|
-
attachments: ProcessAttachmentDtoArray,
|
|
486
|
-
cardData: KeyValueDtoArray,
|
|
487
|
-
appointment: ProcessTaskAppointmentDtoArray
|
|
488
|
-
): KeyValueDtoArray
|
|
485
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
486
|
+
cardData: com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray,
|
|
487
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray
|
|
488
|
+
): com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray
|
|
489
489
|
simpleStartProcess(
|
|
490
490
|
username: string,
|
|
491
491
|
password: string,
|
|
492
492
|
companyId: number,
|
|
493
493
|
processId: string,
|
|
494
494
|
comments: string,
|
|
495
|
-
attachments: ProcessAttachmentDtoArray,
|
|
496
|
-
cardData: StringArrayArray
|
|
497
|
-
): StringArray
|
|
495
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
496
|
+
cardData: net.java.dev.jaxb.array.StringArrayArray
|
|
497
|
+
): net.java.dev.jaxb.array.StringArray
|
|
498
498
|
|
|
499
499
|
// Métodos de gerenciamento de tarefas
|
|
500
500
|
saveAndSendTask(
|
|
@@ -503,48 +503,48 @@ declare global {
|
|
|
503
503
|
companyId: number,
|
|
504
504
|
processInstanceId: number,
|
|
505
505
|
choosedState: number,
|
|
506
|
-
colleagueIds: StringArray,
|
|
506
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
507
507
|
comments: string,
|
|
508
508
|
userId: string,
|
|
509
509
|
completeTask: boolean,
|
|
510
|
-
attachments: ProcessAttachmentDtoArray,
|
|
511
|
-
cardData: StringArrayArray,
|
|
512
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
510
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
511
|
+
cardData: net.java.dev.jaxb.array.StringArrayArray,
|
|
512
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
513
513
|
managerMode: boolean,
|
|
514
514
|
threadSequence: number
|
|
515
|
-
): StringArrayArray
|
|
515
|
+
): net.java.dev.jaxb.array.StringArrayArray
|
|
516
516
|
saveAndSendTaskClassic(
|
|
517
517
|
username: string,
|
|
518
518
|
password: string,
|
|
519
519
|
companyId: number,
|
|
520
520
|
processInstanceId: number,
|
|
521
521
|
choosedState: number,
|
|
522
|
-
colleagueIds: StringArray,
|
|
522
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
523
523
|
comments: string,
|
|
524
524
|
userId: string,
|
|
525
525
|
completeTask: boolean,
|
|
526
|
-
attachments: ProcessAttachmentDtoArray,
|
|
527
|
-
cardData: KeyValueDtoArray,
|
|
528
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
526
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
527
|
+
cardData: com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray,
|
|
528
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
529
529
|
threadSequence: number
|
|
530
|
-
): KeyValueDtoArray
|
|
530
|
+
): com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray
|
|
531
531
|
saveAndSendTaskByReplacement(
|
|
532
532
|
username: string,
|
|
533
533
|
password: string,
|
|
534
534
|
companyId: number,
|
|
535
535
|
processInstanceId: number,
|
|
536
536
|
choosedState: number,
|
|
537
|
-
colleagueIds: StringArray,
|
|
537
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
538
538
|
comments: string,
|
|
539
539
|
userId: string,
|
|
540
540
|
completeTask: boolean,
|
|
541
|
-
attachments: ProcessAttachmentDtoArray,
|
|
542
|
-
cardData: StringArrayArray,
|
|
543
|
-
appointment: ProcessTaskAppointmentDtoArray,
|
|
541
|
+
attachments: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray,
|
|
542
|
+
cardData: net.java.dev.jaxb.array.StringArrayArray,
|
|
543
|
+
appointment: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDtoArray,
|
|
544
544
|
managerMode: boolean,
|
|
545
545
|
threadSequence: number,
|
|
546
546
|
replacementId: string
|
|
547
|
-
): StringArrayArray
|
|
547
|
+
): net.java.dev.jaxb.array.StringArrayArray
|
|
548
548
|
|
|
549
549
|
// Métodos de tarefa
|
|
550
550
|
takeProcessTask(
|
|
@@ -590,7 +590,7 @@ declare global {
|
|
|
590
590
|
password: string,
|
|
591
591
|
companyId: number,
|
|
592
592
|
userId: string
|
|
593
|
-
): ProcessDefinitionVersionDtoArray
|
|
593
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDtoArray
|
|
594
594
|
getAvailableProcessOnDemand(
|
|
595
595
|
username: string,
|
|
596
596
|
password: string,
|
|
@@ -598,9 +598,9 @@ declare global {
|
|
|
598
598
|
userId: string,
|
|
599
599
|
limit: number,
|
|
600
600
|
lastRowId: number
|
|
601
|
-
): ProcessDefinitionVersionDtoArray
|
|
602
|
-
getAllProcessAvailableToExport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
603
|
-
getAllProcessAvailableToImport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
601
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDtoArray
|
|
602
|
+
getAllProcessAvailableToExport(username: string, password: string, companyId: number): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionDtoArray
|
|
603
|
+
getAllProcessAvailableToImport(username: string, password: string, companyId: number): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionDtoArray
|
|
604
604
|
searchProcess(
|
|
605
605
|
username: string,
|
|
606
606
|
password: string,
|
|
@@ -608,7 +608,7 @@ declare global {
|
|
|
608
608
|
colleagueId: string,
|
|
609
609
|
content: string,
|
|
610
610
|
favorite: boolean
|
|
611
|
-
): ProcessDefinitionVersionDtoArray
|
|
611
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDtoArray
|
|
612
612
|
|
|
613
613
|
// Métodos de estados
|
|
614
614
|
getAvailableStates(
|
|
@@ -618,7 +618,7 @@ declare global {
|
|
|
618
618
|
processId: string,
|
|
619
619
|
processInstanceId: number,
|
|
620
620
|
threadSequence: number
|
|
621
|
-
): IntArray
|
|
621
|
+
): net.java.dev.jaxb.array.IntArray
|
|
622
622
|
getAvailableStatesDetail(
|
|
623
623
|
username: string,
|
|
624
624
|
password: string,
|
|
@@ -626,14 +626,14 @@ declare global {
|
|
|
626
626
|
processId: string,
|
|
627
627
|
processInstanceId: number,
|
|
628
628
|
threadSequence: number
|
|
629
|
-
): ProcessStateDtoArray
|
|
629
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessStateDtoArray
|
|
630
630
|
getAllActiveStates(
|
|
631
631
|
username: string,
|
|
632
632
|
password: string,
|
|
633
633
|
companyId: number,
|
|
634
634
|
userId: string,
|
|
635
635
|
processInstanceId: number
|
|
636
|
-
): IntArray
|
|
636
|
+
): net.java.dev.jaxb.array.IntArray
|
|
637
637
|
|
|
638
638
|
// Métodos de usuários
|
|
639
639
|
getAvailableUsers(
|
|
@@ -643,7 +643,7 @@ declare global {
|
|
|
643
643
|
processInstanceId: number,
|
|
644
644
|
state: number,
|
|
645
645
|
threadSequence: number
|
|
646
|
-
): StringArray
|
|
646
|
+
): net.java.dev.jaxb.array.StringArray
|
|
647
647
|
getAvailableUsersOnDemand(
|
|
648
648
|
username: string,
|
|
649
649
|
password: string,
|
|
@@ -654,7 +654,7 @@ declare global {
|
|
|
654
654
|
limit: number,
|
|
655
655
|
initialUser: number,
|
|
656
656
|
userSearch: string
|
|
657
|
-
): AvailableUsersDto
|
|
657
|
+
): com.totvs.technology.ecm.workflow.ws.AvailableUsersDto
|
|
658
658
|
getAvailableUsersStart(
|
|
659
659
|
username: string,
|
|
660
660
|
password: string,
|
|
@@ -662,7 +662,7 @@ declare global {
|
|
|
662
662
|
processId: string,
|
|
663
663
|
state: number,
|
|
664
664
|
threadSequence: number
|
|
665
|
-
): StringArray
|
|
665
|
+
): net.java.dev.jaxb.array.StringArray
|
|
666
666
|
getAvailableUsersStartOnDemand(
|
|
667
667
|
username: string,
|
|
668
668
|
password: string,
|
|
@@ -673,7 +673,7 @@ declare global {
|
|
|
673
673
|
limit: number,
|
|
674
674
|
initialUser: number,
|
|
675
675
|
userSearch: string
|
|
676
|
-
): AvailableUsersDto
|
|
676
|
+
): com.totvs.technology.ecm.workflow.ws.AvailableUsersDto
|
|
677
677
|
|
|
678
678
|
// Métodos de dados do cartão
|
|
679
679
|
getInstanceCardData(
|
|
@@ -682,7 +682,7 @@ declare global {
|
|
|
682
682
|
companyId: number,
|
|
683
683
|
userId: string,
|
|
684
684
|
processInstanceId: number
|
|
685
|
-
): StringArrayArray
|
|
685
|
+
): net.java.dev.jaxb.array.StringArrayArray
|
|
686
686
|
getCardValue(
|
|
687
687
|
username: string,
|
|
688
688
|
password: string,
|
|
@@ -712,7 +712,7 @@ declare global {
|
|
|
712
712
|
hora: number,
|
|
713
713
|
prazo: number,
|
|
714
714
|
periodId: string
|
|
715
|
-
): DeadLineDto
|
|
715
|
+
): com.totvs.technology.ecm.workflow.ws.DeadLineDto
|
|
716
716
|
calculateDeadLineTime(
|
|
717
717
|
username: string,
|
|
718
718
|
password: string,
|
|
@@ -722,7 +722,7 @@ declare global {
|
|
|
722
722
|
hora: number,
|
|
723
723
|
prazo: number,
|
|
724
724
|
periodId: string
|
|
725
|
-
): DeadLineDto
|
|
725
|
+
): com.totvs.technology.ecm.workflow.ws.DeadLineDto
|
|
726
726
|
|
|
727
727
|
// Métodos diversos
|
|
728
728
|
getActualThread(
|
|
@@ -740,14 +740,14 @@ declare global {
|
|
|
740
740
|
companyId: number,
|
|
741
741
|
userId: string,
|
|
742
742
|
processInstanceId: number
|
|
743
|
-
): ProcessAttachmentDtoArray
|
|
743
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDtoArray
|
|
744
744
|
getHistories(
|
|
745
745
|
username: string,
|
|
746
746
|
password: string,
|
|
747
747
|
companyId: number,
|
|
748
748
|
userId: string,
|
|
749
749
|
processInstanceId: number
|
|
750
|
-
): ProcessHistoryDtoArray
|
|
750
|
+
): com.totvs.technology.ecm.workflow.ws.ProcessHistoryDtoArray
|
|
751
751
|
|
|
752
752
|
// Métodos de comentários
|
|
753
753
|
setTasksComments(
|
|
@@ -769,12 +769,12 @@ declare global {
|
|
|
769
769
|
iTaskAutom: number,
|
|
770
770
|
iTask: number,
|
|
771
771
|
condition: number,
|
|
772
|
-
colleagueIds: StringArray,
|
|
772
|
+
colleagueIds: net.java.dev.jaxb.array.StringArray,
|
|
773
773
|
comments: string,
|
|
774
774
|
userId: string,
|
|
775
775
|
managerMode: boolean,
|
|
776
776
|
threadSequence: number
|
|
777
|
-
): KeyValueDtoArray
|
|
777
|
+
): com.totvs.technology.ecm.workflow.ws.KeyValueDtoArray
|
|
778
778
|
|
|
779
779
|
// Métodos de versão de processo
|
|
780
780
|
createWorkFlowProcessVersion(username: string, password: string, companyId: number, processId: string): string
|
|
@@ -786,7 +786,7 @@ declare global {
|
|
|
786
786
|
password: string,
|
|
787
787
|
companyId: number,
|
|
788
788
|
processId: string,
|
|
789
|
-
processAttachs: AttachmentArray,
|
|
789
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
790
790
|
newProcess: boolean,
|
|
791
791
|
overWrite: boolean,
|
|
792
792
|
colleagueId: string,
|
|
@@ -794,16 +794,16 @@ declare global {
|
|
|
794
794
|
documentDescription: string,
|
|
795
795
|
cardDescription: string,
|
|
796
796
|
datasetName: string,
|
|
797
|
-
cardAttachs: AttachmentArray,
|
|
798
|
-
customEvents: CardEventDtoArray,
|
|
797
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
798
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
799
799
|
update: boolean
|
|
800
|
-
): WebServiceMessage
|
|
800
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
801
801
|
importProcessWithCardAndRelatedDatasets(
|
|
802
802
|
username: string,
|
|
803
803
|
password: string,
|
|
804
804
|
companyId: number,
|
|
805
805
|
processId: string,
|
|
806
|
-
processAttachs: AttachmentArray,
|
|
806
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
807
807
|
newProcess: boolean,
|
|
808
808
|
overWrite: boolean,
|
|
809
809
|
colleagueId: string,
|
|
@@ -811,19 +811,19 @@ declare global {
|
|
|
811
811
|
documentDescription: string,
|
|
812
812
|
cardDescription: string,
|
|
813
813
|
datasetName: string,
|
|
814
|
-
cardAttachs: AttachmentArray,
|
|
815
|
-
customEvents: CardEventDtoArray,
|
|
816
|
-
generalInfo: GeneralInfoDto,
|
|
814
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
815
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
816
|
+
generalInfo: com.totvs.technology.ecm.workflow.ws.GeneralInfoDto,
|
|
817
817
|
update: boolean,
|
|
818
818
|
persistenceType: number,
|
|
819
|
-
relatedDatasets: StringArray
|
|
820
|
-
): WebServiceMessage
|
|
819
|
+
relatedDatasets: net.java.dev.jaxb.array.StringArray
|
|
820
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
821
821
|
importProcessWithCardAndPersistenceType(
|
|
822
822
|
username: string,
|
|
823
823
|
password: string,
|
|
824
824
|
companyId: number,
|
|
825
825
|
processId: string,
|
|
826
|
-
processAttachs: AttachmentArray,
|
|
826
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
827
827
|
newProcess: boolean,
|
|
828
828
|
overWrite: boolean,
|
|
829
829
|
colleagueId: string,
|
|
@@ -831,17 +831,17 @@ declare global {
|
|
|
831
831
|
documentDescription: string,
|
|
832
832
|
cardDescription: string,
|
|
833
833
|
datasetName: string,
|
|
834
|
-
cardAttachs: AttachmentArray,
|
|
835
|
-
customEvents: CardEventDtoArray,
|
|
834
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
835
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
836
836
|
update: boolean,
|
|
837
837
|
persistenceType: number
|
|
838
|
-
): WebServiceMessage
|
|
838
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
839
839
|
importProcessWithCardAndGeneralInfo(
|
|
840
840
|
username: string,
|
|
841
841
|
password: string,
|
|
842
842
|
companyId: number,
|
|
843
843
|
processId: string,
|
|
844
|
-
processAttachs: AttachmentArray,
|
|
844
|
+
processAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
845
845
|
newProcess: boolean,
|
|
846
846
|
overWrite: boolean,
|
|
847
847
|
colleagueId: string,
|
|
@@ -849,12 +849,12 @@ declare global {
|
|
|
849
849
|
documentDescription: string,
|
|
850
850
|
cardDescription: string,
|
|
851
851
|
datasetName: string,
|
|
852
|
-
cardAttachs: AttachmentArray,
|
|
853
|
-
customEvents: CardEventDtoArray,
|
|
854
|
-
generalInfo: GeneralInfoDto,
|
|
852
|
+
cardAttachs: com.totvs.technology.ecm.workflow.ws.AttachmentArray,
|
|
853
|
+
customEvents: com.totvs.technology.ecm.workflow.ws.CardEventDtoArray,
|
|
854
|
+
generalInfo: com.totvs.technology.ecm.workflow.ws.GeneralInfoDto,
|
|
855
855
|
update: boolean,
|
|
856
856
|
persistenceType: number
|
|
857
|
-
): WebServiceMessage
|
|
857
|
+
): com.totvs.technology.ecm.workflow.ws.WebServiceMessage
|
|
858
858
|
|
|
859
859
|
// Métodos de anexo
|
|
860
860
|
updateWorkflowAttachment(
|
|
@@ -863,8 +863,8 @@ declare global {
|
|
|
863
863
|
companyId: number,
|
|
864
864
|
processInstanceId: number,
|
|
865
865
|
usuario: string,
|
|
866
|
-
document: DocumentDtoArray,
|
|
867
|
-
attachments: AttachmentArray
|
|
866
|
+
document: com.totvs.technology.ecm.workflow.ws.DocumentDtoArray,
|
|
867
|
+
attachments: com.totvs.technology.ecm.workflow.ws.AttachmentArray
|
|
868
868
|
): string
|
|
869
869
|
|
|
870
870
|
// Métodos de liberação
|
|
@@ -882,8 +882,8 @@ declare global {
|
|
|
882
882
|
setEditing(value: boolean): void
|
|
883
883
|
getFileName(): string
|
|
884
884
|
setFileName(value: string): void
|
|
885
|
-
getFileSelected(): Attachment
|
|
886
|
-
setFileSelected(value: Attachment): void
|
|
885
|
+
getFileSelected(): com.totvs.technology.ecm.workflow.ws.Attachment
|
|
886
|
+
setFileSelected(value: com.totvs.technology.ecm.workflow.ws.Attachment): void
|
|
887
887
|
getFileSize(): number
|
|
888
888
|
setFileSize(value: number): void
|
|
889
889
|
getFilecontent(): unknown
|
|
@@ -904,8 +904,8 @@ declare global {
|
|
|
904
904
|
|
|
905
905
|
class AttachmentArray {
|
|
906
906
|
constructor()
|
|
907
|
-
getItem(): Attachment[]
|
|
908
|
-
setItem(value: Attachment[]): void
|
|
907
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.Attachment[]
|
|
908
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.Attachment[]): void
|
|
909
909
|
}
|
|
910
910
|
|
|
911
911
|
class ProcessDefinitionDto {
|
|
@@ -922,8 +922,8 @@ declare global {
|
|
|
922
922
|
|
|
923
923
|
class ProcessDefinitionDtoArray {
|
|
924
924
|
constructor()
|
|
925
|
-
getItem(): ProcessDefinitionDto[]
|
|
926
|
-
setItem(value: ProcessDefinitionDto[]): void
|
|
925
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionDto[]
|
|
926
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.ProcessDefinitionDto[]): void
|
|
927
927
|
}
|
|
928
928
|
|
|
929
929
|
class ProcessDefinitionVersionDto {
|
|
@@ -942,8 +942,8 @@ declare global {
|
|
|
942
942
|
setFormVersion(value: number): void
|
|
943
943
|
getFullCategoryStructure(): string
|
|
944
944
|
setFullCategoryStructure(value: string): void
|
|
945
|
-
getInitialProcessState(): ProcessStateDto
|
|
946
|
-
setInitialProcessState(value: ProcessStateDto): void
|
|
945
|
+
getInitialProcessState(): com.totvs.technology.ecm.workflow.ws.ProcessStateDto
|
|
946
|
+
setInitialProcessState(value: com.totvs.technology.ecm.workflow.ws.ProcessStateDto): void
|
|
947
947
|
getMobileReady(): boolean
|
|
948
948
|
setMobileReady(value: boolean): void
|
|
949
949
|
getProcessDescription(): string
|
|
@@ -962,8 +962,8 @@ declare global {
|
|
|
962
962
|
|
|
963
963
|
class ProcessDefinitionVersionDtoArray {
|
|
964
964
|
constructor()
|
|
965
|
-
getItem(): ProcessDefinitionVersionDto[]
|
|
966
|
-
setItem(value: ProcessDefinitionVersionDto[]): void
|
|
965
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDto[]
|
|
966
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.ProcessDefinitionVersionDto[]): void
|
|
967
967
|
}
|
|
968
968
|
|
|
969
969
|
class ProcessStateDto {
|
|
@@ -982,16 +982,16 @@ declare global {
|
|
|
982
982
|
|
|
983
983
|
class ProcessStateDtoArray {
|
|
984
984
|
constructor()
|
|
985
|
-
getItem(): ProcessStateDto[]
|
|
986
|
-
setItem(value: ProcessStateDto[]): void
|
|
985
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.ProcessStateDto[]
|
|
986
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.ProcessStateDto[]): void
|
|
987
987
|
}
|
|
988
988
|
|
|
989
989
|
class ProcessAttachmentDto {
|
|
990
990
|
constructor()
|
|
991
991
|
getAttachmentSequence(): number
|
|
992
992
|
setAttachmentSequence(value: number): void
|
|
993
|
-
getAttachments(): Attachment[]
|
|
994
|
-
setAttachments(value: Attachment[]): void
|
|
993
|
+
getAttachments(): com.totvs.technology.ecm.workflow.ws.Attachment[]
|
|
994
|
+
setAttachments(value: com.totvs.technology.ecm.workflow.ws.Attachment[]): void
|
|
995
995
|
getColleagueId(): string
|
|
996
996
|
setColleagueId(value: string): void
|
|
997
997
|
getColleagueName(): string
|
|
@@ -1030,8 +1030,8 @@ declare global {
|
|
|
1030
1030
|
|
|
1031
1031
|
class ProcessAttachmentDtoArray {
|
|
1032
1032
|
constructor()
|
|
1033
|
-
getItem(): ProcessAttachmentDto[]
|
|
1034
|
-
setItem(value: ProcessAttachmentDto[]): void
|
|
1033
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDto[]
|
|
1034
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.ProcessAttachmentDto[]): void
|
|
1035
1035
|
}
|
|
1036
1036
|
|
|
1037
1037
|
class ProcessTaskAppointmentDto {
|
|
@@ -1060,8 +1060,8 @@ declare global {
|
|
|
1060
1060
|
|
|
1061
1061
|
class ProcessTaskAppointmentDtoArray {
|
|
1062
1062
|
constructor()
|
|
1063
|
-
getItem(): ProcessTaskAppointmentDto[]
|
|
1064
|
-
setItem(value: ProcessTaskAppointmentDto[]): void
|
|
1063
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDto[]
|
|
1064
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.ProcessTaskAppointmentDto[]): void
|
|
1065
1065
|
}
|
|
1066
1066
|
|
|
1067
1067
|
class KeyValueDto {
|
|
@@ -1074,8 +1074,8 @@ declare global {
|
|
|
1074
1074
|
|
|
1075
1075
|
class KeyValueDtoArray {
|
|
1076
1076
|
constructor()
|
|
1077
|
-
getItem(): KeyValueDto[]
|
|
1078
|
-
setItem(value: KeyValueDto[]): void
|
|
1077
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.KeyValueDto[]
|
|
1078
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.KeyValueDto[]): void
|
|
1079
1079
|
}
|
|
1080
1080
|
|
|
1081
1081
|
interface CardEventDto {
|
|
@@ -1085,7 +1085,7 @@ declare global {
|
|
|
1085
1085
|
}
|
|
1086
1086
|
|
|
1087
1087
|
interface CardEventDtoArray {
|
|
1088
|
-
item?: CardEventDto[]
|
|
1088
|
+
item?: com.totvs.technology.ecm.workflow.ws.CardEventDto[]
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
1091
1091
|
interface GeneralInfoDto {
|
|
@@ -1119,7 +1119,7 @@ declare global {
|
|
|
1119
1119
|
approved?: boolean
|
|
1120
1120
|
approvedDate?: string
|
|
1121
1121
|
articleContent?: string
|
|
1122
|
-
attachments?: Attachment[]
|
|
1122
|
+
attachments?: com.totvs.technology.ecm.workflow.ws.Attachment[]
|
|
1123
1123
|
atualizationId?: number
|
|
1124
1124
|
backgroundColor?: string
|
|
1125
1125
|
backgroundImage?: string
|
|
@@ -1209,7 +1209,7 @@ declare global {
|
|
|
1209
1209
|
}
|
|
1210
1210
|
|
|
1211
1211
|
interface DocumentDtoArray {
|
|
1212
|
-
item?: DocumentDto[]
|
|
1212
|
+
item?: com.totvs.technology.ecm.workflow.ws.DocumentDto[]
|
|
1213
1213
|
}
|
|
1214
1214
|
|
|
1215
1215
|
class ProcessHistoryDto {
|
|
@@ -1240,16 +1240,16 @@ declare global {
|
|
|
1240
1240
|
setStateSequence(value: number): void
|
|
1241
1241
|
getSubProcessId(): number
|
|
1242
1242
|
setSubProcessId(value: number): void
|
|
1243
|
-
getTasks(): ProcessTaskDto[]
|
|
1244
|
-
setTasks(value: ProcessTaskDto[]): void
|
|
1243
|
+
getTasks(): com.totvs.technology.ecm.workflow.ws.ProcessTaskDto[]
|
|
1244
|
+
setTasks(value: com.totvs.technology.ecm.workflow.ws.ProcessTaskDto[]): void
|
|
1245
1245
|
getThreadSequence(): number
|
|
1246
1246
|
setThreadSequence(value: number): void
|
|
1247
1247
|
}
|
|
1248
1248
|
|
|
1249
1249
|
class ProcessHistoryDtoArray {
|
|
1250
1250
|
constructor()
|
|
1251
|
-
getItem(): ProcessHistoryDto[]
|
|
1252
|
-
setItem(value: ProcessHistoryDto[]): void
|
|
1251
|
+
getItem(): com.totvs.technology.ecm.workflow.ws.ProcessHistoryDto[]
|
|
1252
|
+
setItem(value: com.totvs.technology.ecm.workflow.ws.ProcessHistoryDto[]): void
|
|
1253
1253
|
}
|
|
1254
1254
|
|
|
1255
1255
|
interface ProcessTaskDto {
|
|
@@ -1278,7 +1278,7 @@ declare global {
|
|
|
1278
1278
|
}
|
|
1279
1279
|
|
|
1280
1280
|
interface AvailableStatesDetailDto {
|
|
1281
|
-
item?: StateDetailDto[]
|
|
1281
|
+
item?: com.totvs.technology.ecm.workflow.ws.StateDetailDto[]
|
|
1282
1282
|
}
|
|
1283
1283
|
|
|
1284
1284
|
interface StateDetailDto {
|
|
@@ -1294,8 +1294,8 @@ declare global {
|
|
|
1294
1294
|
constructor()
|
|
1295
1295
|
getIsCollectiveTask(): boolean
|
|
1296
1296
|
setIsCollectiveTask(value: boolean): void
|
|
1297
|
-
getUsers(): ColleagueDto[]
|
|
1298
|
-
setUsers(value: ColleagueDto[]): void
|
|
1297
|
+
getUsers(): com.totvs.technology.ecm.workflow.ws.ColleagueDto[]
|
|
1298
|
+
setUsers(value: com.totvs.technology.ecm.workflow.ws.ColleagueDto[]): void
|
|
1299
1299
|
getWillShowUsers(): boolean
|
|
1300
1300
|
setWillShowUsers(value: boolean): void
|
|
1301
1301
|
}
|
|
@@ -1369,20 +1369,13 @@ declare global {
|
|
|
1369
1369
|
getVolumeId(): string
|
|
1370
1370
|
setVolumeId(value: string): void
|
|
1371
1371
|
}
|
|
1372
|
-
|
|
1373
|
-
// Tipos para arrays simples (pacote real: net.java.dev.jaxb.array)
|
|
1374
|
-
type StringArray = net.java.dev.jaxb.array.StringArray
|
|
1375
|
-
type IntArray = net.java.dev.jaxb.array.IntArray
|
|
1376
|
-
type StringArrayArray = net.java.dev.jaxb.array.StringArrayArray
|
|
1377
1372
|
}
|
|
1378
1373
|
}
|
|
1379
1374
|
}
|
|
1380
1375
|
}
|
|
1381
1376
|
}
|
|
1382
1377
|
}
|
|
1383
|
-
}
|
|
1384
1378
|
|
|
1385
|
-
declare global {
|
|
1386
1379
|
namespace net {
|
|
1387
1380
|
namespace java {
|
|
1388
1381
|
namespace dev {
|
|
@@ -1390,20 +1383,17 @@ declare global {
|
|
|
1390
1383
|
namespace array {
|
|
1391
1384
|
class StringArray {
|
|
1392
1385
|
constructor()
|
|
1393
|
-
getItem(): string
|
|
1394
|
-
setItem(value: string[]): void
|
|
1386
|
+
getItem(): java.util.List<string>
|
|
1395
1387
|
}
|
|
1396
1388
|
|
|
1397
1389
|
class IntArray {
|
|
1398
1390
|
constructor()
|
|
1399
|
-
getItem(): number
|
|
1400
|
-
setItem(value: number[]): void
|
|
1391
|
+
getItem(): java.util.List<number>
|
|
1401
1392
|
}
|
|
1402
1393
|
|
|
1403
1394
|
class StringArrayArray {
|
|
1404
1395
|
constructor()
|
|
1405
|
-
getItem(): StringArray
|
|
1406
|
-
setItem(value: StringArray[]): void
|
|
1396
|
+
getItem(): java.util.List<net.java.dev.jaxb.array.StringArray>
|
|
1407
1397
|
}
|
|
1408
1398
|
}
|
|
1409
1399
|
}
|