jsegd-fluig-types 1.0.48 → 1.0.49
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 +344 -184
package/package.json
CHANGED
|
@@ -12,14 +12,18 @@ declare global {
|
|
|
12
12
|
getWorkflowEngineServicePort(): WorkflowEngineService
|
|
13
13
|
|
|
14
14
|
// Métodos de gerenciamento de processo
|
|
15
|
-
importProcess(
|
|
16
|
-
exportProcess(username: string, password: string, companyId: number, processId: string): string
|
|
17
|
-
exportProcessInZipFormat(
|
|
15
|
+
importProcess(
|
|
18
16
|
username: string,
|
|
19
17
|
password: string,
|
|
20
18
|
companyId: number,
|
|
21
|
-
processId: string
|
|
19
|
+
processId: string,
|
|
20
|
+
attachments: AttachmentArray,
|
|
21
|
+
newProcess: boolean,
|
|
22
|
+
overWrite: boolean,
|
|
23
|
+
colleagueId: string
|
|
22
24
|
): string
|
|
25
|
+
exportProcess(username: string, password: string, companyId: number, processId: string): string
|
|
26
|
+
exportProcessInZipFormat(username: string, password: string, companyId: number, processId: string): string
|
|
23
27
|
|
|
24
28
|
// Métodos de inicialização de processo
|
|
25
29
|
startProcess(
|
|
@@ -150,7 +154,12 @@ declare global {
|
|
|
150
154
|
): string
|
|
151
155
|
|
|
152
156
|
// Métodos de consulta
|
|
153
|
-
getAvailableProcess(
|
|
157
|
+
getAvailableProcess(
|
|
158
|
+
username: string,
|
|
159
|
+
password: string,
|
|
160
|
+
companyId: number,
|
|
161
|
+
userId: string
|
|
162
|
+
): ProcessDefinitionVersionDtoArray
|
|
154
163
|
getAvailableProcessOnDemand(
|
|
155
164
|
username: string,
|
|
156
165
|
password: string,
|
|
@@ -159,16 +168,8 @@ declare global {
|
|
|
159
168
|
limit: number,
|
|
160
169
|
lastRowId: number
|
|
161
170
|
): ProcessDefinitionVersionDtoArray
|
|
162
|
-
getAllProcessAvailableToExport(
|
|
163
|
-
|
|
164
|
-
password: string,
|
|
165
|
-
companyId: number
|
|
166
|
-
): ProcessDefinitionDtoArray
|
|
167
|
-
getAllProcessAvailableToImport(
|
|
168
|
-
username: string,
|
|
169
|
-
password: string,
|
|
170
|
-
companyId: number
|
|
171
|
-
): ProcessDefinitionDtoArray
|
|
171
|
+
getAllProcessAvailableToExport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
172
|
+
getAllProcessAvailableToImport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
172
173
|
searchProcess(
|
|
173
174
|
username: string,
|
|
174
175
|
password: string,
|
|
@@ -194,7 +195,7 @@ declare global {
|
|
|
194
195
|
processId: string,
|
|
195
196
|
processInstanceId: number,
|
|
196
197
|
threadSequence: number
|
|
197
|
-
):
|
|
198
|
+
): ProcessStateDtoArray
|
|
198
199
|
getAllActiveStates(
|
|
199
200
|
username: string,
|
|
200
201
|
password: string,
|
|
@@ -442,14 +443,18 @@ declare global {
|
|
|
442
443
|
// Interface do port/endpoint do webservice
|
|
443
444
|
interface WorkflowEngineService {
|
|
444
445
|
// Métodos de gerenciamento de processo
|
|
445
|
-
importProcess(
|
|
446
|
-
exportProcess(username: string, password: string, companyId: number, processId: string): string
|
|
447
|
-
exportProcessInZipFormat(
|
|
446
|
+
importProcess(
|
|
448
447
|
username: string,
|
|
449
448
|
password: string,
|
|
450
449
|
companyId: number,
|
|
451
|
-
processId: string
|
|
450
|
+
processId: string,
|
|
451
|
+
attachments: AttachmentArray,
|
|
452
|
+
newProcess: boolean,
|
|
453
|
+
overWrite: boolean,
|
|
454
|
+
colleagueId: string
|
|
452
455
|
): string
|
|
456
|
+
exportProcess(username: string, password: string, companyId: number, processId: string): string
|
|
457
|
+
exportProcessInZipFormat(username: string, password: string, companyId: number, processId: string): string
|
|
453
458
|
|
|
454
459
|
// Métodos de inicialização de processo
|
|
455
460
|
startProcess(
|
|
@@ -580,7 +585,12 @@ declare global {
|
|
|
580
585
|
): string
|
|
581
586
|
|
|
582
587
|
// Métodos de consulta
|
|
583
|
-
getAvailableProcess(
|
|
588
|
+
getAvailableProcess(
|
|
589
|
+
username: string,
|
|
590
|
+
password: string,
|
|
591
|
+
companyId: number,
|
|
592
|
+
userId: string
|
|
593
|
+
): ProcessDefinitionVersionDtoArray
|
|
584
594
|
getAvailableProcessOnDemand(
|
|
585
595
|
username: string,
|
|
586
596
|
password: string,
|
|
@@ -589,16 +599,8 @@ declare global {
|
|
|
589
599
|
limit: number,
|
|
590
600
|
lastRowId: number
|
|
591
601
|
): ProcessDefinitionVersionDtoArray
|
|
592
|
-
getAllProcessAvailableToExport(
|
|
593
|
-
|
|
594
|
-
password: string,
|
|
595
|
-
companyId: number
|
|
596
|
-
): ProcessDefinitionDtoArray
|
|
597
|
-
getAllProcessAvailableToImport(
|
|
598
|
-
username: string,
|
|
599
|
-
password: string,
|
|
600
|
-
companyId: number
|
|
601
|
-
): ProcessDefinitionDtoArray
|
|
602
|
+
getAllProcessAvailableToExport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
603
|
+
getAllProcessAvailableToImport(username: string, password: string, companyId: number): ProcessDefinitionDtoArray
|
|
602
604
|
searchProcess(
|
|
603
605
|
username: string,
|
|
604
606
|
password: string,
|
|
@@ -624,7 +626,7 @@ declare global {
|
|
|
624
626
|
processId: string,
|
|
625
627
|
processInstanceId: number,
|
|
626
628
|
threadSequence: number
|
|
627
|
-
):
|
|
629
|
+
): ProcessStateDtoArray
|
|
628
630
|
getAllActiveStates(
|
|
629
631
|
username: string,
|
|
630
632
|
password: string,
|
|
@@ -870,117 +872,210 @@ declare global {
|
|
|
870
872
|
}
|
|
871
873
|
|
|
872
874
|
// DTOs e tipos auxiliares
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
875
|
+
class Attachment {
|
|
876
|
+
constructor()
|
|
877
|
+
getAttach(): boolean
|
|
878
|
+
setAttach(value: boolean): void
|
|
879
|
+
getDescriptor(): boolean
|
|
880
|
+
setDescriptor(value: boolean): void
|
|
881
|
+
getEditing(): boolean
|
|
882
|
+
setEditing(value: boolean): void
|
|
883
|
+
getFileName(): string
|
|
884
|
+
setFileName(value: string): void
|
|
885
|
+
getFileSelected(): Attachment
|
|
886
|
+
setFileSelected(value: Attachment): void
|
|
887
|
+
getFileSize(): number
|
|
888
|
+
setFileSize(value: number): void
|
|
889
|
+
getFilecontent(): unknown
|
|
890
|
+
setFilecontent(value: unknown): void
|
|
891
|
+
getFullPatch(): string
|
|
892
|
+
setFullPatch(value: string): void
|
|
893
|
+
getIconPath(): string
|
|
894
|
+
setIconPath(value: string): void
|
|
895
|
+
getMobile(): boolean
|
|
896
|
+
setMobile(value: boolean): void
|
|
897
|
+
getPathName(): string
|
|
898
|
+
setPathName(value: string): void
|
|
899
|
+
getPrincipal(): boolean
|
|
900
|
+
setPrincipal(value: boolean): void
|
|
901
|
+
getSupportedNewViewer(): boolean
|
|
902
|
+
setSupportedNewViewer(value: boolean): void
|
|
887
903
|
}
|
|
888
904
|
|
|
889
|
-
|
|
890
|
-
|
|
905
|
+
class AttachmentArray {
|
|
906
|
+
constructor()
|
|
907
|
+
getItem(): Attachment[]
|
|
908
|
+
setItem(value: Attachment[]): void
|
|
891
909
|
}
|
|
892
910
|
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
911
|
+
class ProcessDefinitionDto {
|
|
912
|
+
constructor()
|
|
913
|
+
getActive(): boolean
|
|
914
|
+
setActive(value: boolean): void
|
|
915
|
+
getCompanyId(): number
|
|
916
|
+
setCompanyId(value: number): void
|
|
917
|
+
getProcessDescription(): string
|
|
918
|
+
setProcessDescription(value: string): void
|
|
919
|
+
getProcessId(): string
|
|
920
|
+
setProcessId(value: string): void
|
|
898
921
|
}
|
|
899
922
|
|
|
900
|
-
|
|
901
|
-
|
|
923
|
+
class ProcessDefinitionDtoArray {
|
|
924
|
+
constructor()
|
|
925
|
+
getItem(): ProcessDefinitionDto[]
|
|
926
|
+
setItem(value: ProcessDefinitionDto[]): void
|
|
902
927
|
}
|
|
903
928
|
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
929
|
+
class ProcessDefinitionVersionDto {
|
|
930
|
+
constructor()
|
|
931
|
+
getCategoryStructure(): string
|
|
932
|
+
setCategoryStructure(value: string): void
|
|
933
|
+
getCompanyId(): number
|
|
934
|
+
setCompanyId(value: number): void
|
|
935
|
+
getCounterSign(): boolean
|
|
936
|
+
setCounterSign(value: boolean): void
|
|
937
|
+
getFavorite(): boolean
|
|
938
|
+
setFavorite(value: boolean): void
|
|
939
|
+
getFormId(): number
|
|
940
|
+
setFormId(value: number): void
|
|
941
|
+
getFormVersion(): number
|
|
942
|
+
setFormVersion(value: number): void
|
|
943
|
+
getFullCategoryStructure(): string
|
|
944
|
+
setFullCategoryStructure(value: string): void
|
|
945
|
+
getInitialProcessState(): ProcessStateDto
|
|
946
|
+
setInitialProcessState(value: ProcessStateDto): void
|
|
947
|
+
getMobileReady(): boolean
|
|
948
|
+
setMobileReady(value: boolean): void
|
|
949
|
+
getProcessDescription(): string
|
|
950
|
+
setProcessDescription(value: string): void
|
|
951
|
+
getProcessId(): string
|
|
952
|
+
setProcessId(value: string): void
|
|
953
|
+
getRelatedDatasets(): string[]
|
|
954
|
+
setRelatedDatasets(value: string[]): void
|
|
955
|
+
getRowId(): number
|
|
956
|
+
setRowId(value: number): void
|
|
957
|
+
getVersion(): number
|
|
958
|
+
setVersion(value: number): void
|
|
959
|
+
getVersionDescription(): string
|
|
960
|
+
setVersionDescription(value: string): void
|
|
920
961
|
}
|
|
921
962
|
|
|
922
|
-
|
|
923
|
-
|
|
963
|
+
class ProcessDefinitionVersionDtoArray {
|
|
964
|
+
constructor()
|
|
965
|
+
getItem(): ProcessDefinitionVersionDto[]
|
|
966
|
+
setItem(value: ProcessDefinitionVersionDto[]): void
|
|
924
967
|
}
|
|
925
968
|
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
969
|
+
class ProcessStateDto {
|
|
970
|
+
constructor()
|
|
971
|
+
getCompanyId(): number
|
|
972
|
+
setCompanyId(value: number): void
|
|
973
|
+
getCounterSign(): boolean
|
|
974
|
+
setCounterSign(value: boolean): void
|
|
975
|
+
getSequence(): number
|
|
976
|
+
setSequence(value: number): void
|
|
977
|
+
getStateDescription(): string
|
|
978
|
+
setStateDescription(value: string): void
|
|
979
|
+
getStateName(): string
|
|
980
|
+
setStateName(value: string): void
|
|
932
981
|
}
|
|
933
982
|
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
colleagueName?: string
|
|
939
|
-
companyId: number
|
|
940
|
-
crc?: number
|
|
941
|
-
createDate?: string
|
|
942
|
-
createDateTimestamp?: number
|
|
943
|
-
deleted?: boolean
|
|
944
|
-
description?: string
|
|
945
|
-
documentId?: number
|
|
946
|
-
documentType?: string
|
|
947
|
-
fileName?: string
|
|
948
|
-
newAttach?: boolean
|
|
949
|
-
originalMovementSequence?: number
|
|
950
|
-
permission?: string
|
|
951
|
-
processInstanceId: number
|
|
952
|
-
size: number
|
|
953
|
-
version?: number
|
|
983
|
+
class ProcessStateDtoArray {
|
|
984
|
+
constructor()
|
|
985
|
+
getItem(): ProcessStateDto[]
|
|
986
|
+
setItem(value: ProcessStateDto[]): void
|
|
954
987
|
}
|
|
955
988
|
|
|
956
|
-
|
|
957
|
-
|
|
989
|
+
class ProcessAttachmentDto {
|
|
990
|
+
constructor()
|
|
991
|
+
getAttachmentSequence(): number
|
|
992
|
+
setAttachmentSequence(value: number): void
|
|
993
|
+
getAttachments(): Attachment[]
|
|
994
|
+
setAttachments(value: Attachment[]): void
|
|
995
|
+
getColleagueId(): string
|
|
996
|
+
setColleagueId(value: string): void
|
|
997
|
+
getColleagueName(): string
|
|
998
|
+
setColleagueName(value: string): void
|
|
999
|
+
getCompanyId(): number
|
|
1000
|
+
setCompanyId(value: number): void
|
|
1001
|
+
getCrc(): number
|
|
1002
|
+
setCrc(value: number): void
|
|
1003
|
+
getCreateDate(): string
|
|
1004
|
+
setCreateDate(value: string): void
|
|
1005
|
+
getCreateDateTimestamp(): number
|
|
1006
|
+
setCreateDateTimestamp(value: number): void
|
|
1007
|
+
getDeleted(): boolean
|
|
1008
|
+
setDeleted(value: boolean): void
|
|
1009
|
+
getDescription(): string
|
|
1010
|
+
setDescription(value: string): void
|
|
1011
|
+
getDocumentId(): number
|
|
1012
|
+
setDocumentId(value: number): void
|
|
1013
|
+
getDocumentType(): string
|
|
1014
|
+
setDocumentType(value: string): void
|
|
1015
|
+
getFileName(): string
|
|
1016
|
+
setFileName(value: string): void
|
|
1017
|
+
getNewAttach(): boolean
|
|
1018
|
+
setNewAttach(value: boolean): void
|
|
1019
|
+
getOriginalMovementSequence(): number
|
|
1020
|
+
setOriginalMovementSequence(value: number): void
|
|
1021
|
+
getPermission(): string
|
|
1022
|
+
setPermission(value: string): void
|
|
1023
|
+
getProcessInstanceId(): number
|
|
1024
|
+
setProcessInstanceId(value: number): void
|
|
1025
|
+
getSize(): number
|
|
1026
|
+
setSize(value: number): void
|
|
1027
|
+
getVersion(): number
|
|
1028
|
+
setVersion(value: number): void
|
|
958
1029
|
}
|
|
959
1030
|
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
colleagueId?: string
|
|
965
|
-
colleagueName?: string
|
|
966
|
-
companyId: number
|
|
967
|
-
isNewRecord?: boolean
|
|
968
|
-
movementSequence: number
|
|
969
|
-
processInstanceId: number
|
|
970
|
-
transferenceSequence: number
|
|
1031
|
+
class ProcessAttachmentDtoArray {
|
|
1032
|
+
constructor()
|
|
1033
|
+
getItem(): ProcessAttachmentDto[]
|
|
1034
|
+
setItem(value: ProcessAttachmentDto[]): void
|
|
971
1035
|
}
|
|
972
1036
|
|
|
973
|
-
|
|
974
|
-
|
|
1037
|
+
class ProcessTaskAppointmentDto {
|
|
1038
|
+
constructor()
|
|
1039
|
+
getAppointmentDate(): string
|
|
1040
|
+
setAppointmentDate(value: unknown): void
|
|
1041
|
+
getAppointmentSeconds(): number
|
|
1042
|
+
setAppointmentSeconds(value: number): void
|
|
1043
|
+
getAppointmentSequence(): number
|
|
1044
|
+
setAppointmentSequence(value: number): void
|
|
1045
|
+
getColleagueId(): string
|
|
1046
|
+
setColleagueId(value: string): void
|
|
1047
|
+
getColleagueName(): string
|
|
1048
|
+
setColleagueName(value: string): void
|
|
1049
|
+
getCompanyId(): number
|
|
1050
|
+
setCompanyId(value: number): void
|
|
1051
|
+
getIsNewRecord(): boolean
|
|
1052
|
+
setIsNewRecord(value: boolean): void
|
|
1053
|
+
getMovementSequence(): number
|
|
1054
|
+
setMovementSequence(value: number): void
|
|
1055
|
+
getProcessInstanceId(): number
|
|
1056
|
+
setProcessInstanceId(value: number): void
|
|
1057
|
+
getTransferenceSequence(): number
|
|
1058
|
+
setTransferenceSequence(value: number): void
|
|
975
1059
|
}
|
|
976
1060
|
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
1061
|
+
class ProcessTaskAppointmentDtoArray {
|
|
1062
|
+
constructor()
|
|
1063
|
+
getItem(): ProcessTaskAppointmentDto[]
|
|
1064
|
+
setItem(value: ProcessTaskAppointmentDto[]): void
|
|
980
1065
|
}
|
|
981
1066
|
|
|
982
|
-
|
|
983
|
-
|
|
1067
|
+
class KeyValueDto {
|
|
1068
|
+
constructor()
|
|
1069
|
+
getKey(): string
|
|
1070
|
+
setKey(value: string): void
|
|
1071
|
+
getValue(): string
|
|
1072
|
+
setValue(value: string): void
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
class KeyValueDtoArray {
|
|
1076
|
+
constructor()
|
|
1077
|
+
getItem(): KeyValueDto[]
|
|
1078
|
+
setItem(value: KeyValueDto[]): void
|
|
984
1079
|
}
|
|
985
1080
|
|
|
986
1081
|
interface CardEventDto {
|
|
@@ -1006,9 +1101,12 @@ declare global {
|
|
|
1006
1101
|
webServiceMessage?: string
|
|
1007
1102
|
}
|
|
1008
1103
|
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1104
|
+
class DeadLineDto {
|
|
1105
|
+
constructor()
|
|
1106
|
+
getDate(): string
|
|
1107
|
+
setDate(value: string): void
|
|
1108
|
+
getHora(): number
|
|
1109
|
+
setHora(value: number): void
|
|
1012
1110
|
}
|
|
1013
1111
|
|
|
1014
1112
|
interface DocumentDto {
|
|
@@ -1114,26 +1212,44 @@ declare global {
|
|
|
1114
1212
|
item?: DocumentDto[]
|
|
1115
1213
|
}
|
|
1116
1214
|
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1215
|
+
class ProcessHistoryDto {
|
|
1216
|
+
constructor()
|
|
1217
|
+
getActive(): boolean
|
|
1218
|
+
setActive(value: boolean): void
|
|
1219
|
+
getCompanyId(): number
|
|
1220
|
+
setCompanyId(value: number): void
|
|
1221
|
+
getConversionSequence(): number
|
|
1222
|
+
setConversionSequence(value: number): void
|
|
1223
|
+
getIsReturn(): boolean
|
|
1224
|
+
setIsReturn(value: boolean): void
|
|
1225
|
+
getLabelActivity(): string
|
|
1226
|
+
setLabelActivity(value: string): void
|
|
1227
|
+
getLabelLink(): string
|
|
1228
|
+
setLabelLink(value: string): void
|
|
1229
|
+
getMovementDate(): string
|
|
1230
|
+
setMovementDate(value: string): void
|
|
1231
|
+
getMovementHour(): string
|
|
1232
|
+
setMovementHour(value: string): void
|
|
1233
|
+
getMovementSequence(): number
|
|
1234
|
+
setMovementSequence(value: number): void
|
|
1235
|
+
getPreviousMovementSequence(): number
|
|
1236
|
+
setPreviousMovementSequence(value: number): void
|
|
1237
|
+
getProcessInstanceId(): number
|
|
1238
|
+
setProcessInstanceId(value: number): void
|
|
1239
|
+
getStateSequence(): number
|
|
1240
|
+
setStateSequence(value: number): void
|
|
1241
|
+
getSubProcessId(): number
|
|
1242
|
+
setSubProcessId(value: number): void
|
|
1243
|
+
getTasks(): ProcessTaskDto[]
|
|
1244
|
+
setTasks(value: ProcessTaskDto[]): void
|
|
1245
|
+
getThreadSequence(): number
|
|
1246
|
+
setThreadSequence(value: number): void
|
|
1133
1247
|
}
|
|
1134
1248
|
|
|
1135
|
-
|
|
1136
|
-
|
|
1249
|
+
class ProcessHistoryDtoArray {
|
|
1250
|
+
constructor()
|
|
1251
|
+
getItem(): ProcessHistoryDto[]
|
|
1252
|
+
setItem(value: ProcessHistoryDto[]): void
|
|
1137
1253
|
}
|
|
1138
1254
|
|
|
1139
1255
|
interface ProcessTaskDto {
|
|
@@ -1174,59 +1290,103 @@ declare global {
|
|
|
1174
1290
|
canTakeTask?: boolean
|
|
1175
1291
|
}
|
|
1176
1292
|
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1293
|
+
class AvailableUsersDto {
|
|
1294
|
+
constructor()
|
|
1295
|
+
getIsCollectiveTask(): boolean
|
|
1296
|
+
setIsCollectiveTask(value: boolean): void
|
|
1297
|
+
getUsers(): ColleagueDto[]
|
|
1298
|
+
setUsers(value: ColleagueDto[]): void
|
|
1299
|
+
getWillShowUsers(): boolean
|
|
1300
|
+
setWillShowUsers(value: boolean): void
|
|
1181
1301
|
}
|
|
1182
1302
|
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1303
|
+
class ColleagueDto {
|
|
1304
|
+
constructor()
|
|
1305
|
+
getActive(): boolean
|
|
1306
|
+
setActive(value: boolean): void
|
|
1307
|
+
getAdminUser(): boolean
|
|
1308
|
+
setAdminUser(value: boolean): void
|
|
1309
|
+
getArea1Id(): number
|
|
1310
|
+
setArea1Id(value: number): void
|
|
1311
|
+
getArea2Id(): number
|
|
1312
|
+
setArea2Id(value: number): void
|
|
1313
|
+
getArea3Id(): number
|
|
1314
|
+
setArea3Id(value: number): void
|
|
1315
|
+
getArea4Id(): number
|
|
1316
|
+
setArea4Id(value: number): void
|
|
1317
|
+
getArea5Id(): number
|
|
1318
|
+
setArea5Id(value: number): void
|
|
1319
|
+
getColleagueId(): string
|
|
1320
|
+
setColleagueId(value: string): void
|
|
1321
|
+
getColleagueName(): string
|
|
1322
|
+
setColleagueName(value: string): void
|
|
1323
|
+
getColleaguebackground(): string
|
|
1324
|
+
setColleaguebackground(value: string): void
|
|
1325
|
+
getCompanyId(): number
|
|
1326
|
+
setCompanyId(value: number): void
|
|
1327
|
+
getCurrentProject(): string
|
|
1328
|
+
setCurrentProject(value: string): void
|
|
1329
|
+
getDefaultLanguage(): string
|
|
1330
|
+
setDefaultLanguage(value: string): void
|
|
1331
|
+
getDialectId(): string
|
|
1332
|
+
setDialectId(value: string): void
|
|
1333
|
+
getEcmVersion(): string
|
|
1334
|
+
setEcmVersion(value: string): void
|
|
1335
|
+
getEmailHtml(): boolean
|
|
1336
|
+
setEmailHtml(value: boolean): void
|
|
1337
|
+
getEspecializationArea(): string
|
|
1338
|
+
setEspecializationArea(value: string): void
|
|
1339
|
+
getExtensionNr(): string
|
|
1340
|
+
setExtensionNr(value: string): void
|
|
1341
|
+
getGedUser(): boolean
|
|
1342
|
+
setGedUser(value: boolean): void
|
|
1343
|
+
getGroupId(): string
|
|
1344
|
+
setGroupId(value: string): void
|
|
1345
|
+
getGuestUser(): boolean
|
|
1346
|
+
setGuestUser(value: boolean): void
|
|
1347
|
+
getHomePage(): string
|
|
1348
|
+
setHomePage(value: string): void
|
|
1349
|
+
getLogin(): string
|
|
1350
|
+
setLogin(value: string): void
|
|
1351
|
+
getMail(): string
|
|
1352
|
+
setMail(value: string): void
|
|
1353
|
+
getMaxPrivateSize(): number
|
|
1354
|
+
setMaxPrivateSize(value: number): void
|
|
1355
|
+
getMenuConfig(): number
|
|
1356
|
+
setMenuConfig(value: number): void
|
|
1357
|
+
getNominalUser(): boolean
|
|
1358
|
+
setNominalUser(value: boolean): void
|
|
1359
|
+
getPasswd(): string
|
|
1360
|
+
setPasswd(value: string): void
|
|
1361
|
+
getPhotoPath(): string
|
|
1362
|
+
setPhotoPath(value: string): void
|
|
1363
|
+
getRowId(): number
|
|
1364
|
+
setRowId(value: number): void
|
|
1365
|
+
getSessionId(): string
|
|
1366
|
+
setSessionId(value: string): void
|
|
1367
|
+
getUsedSpace(): number
|
|
1368
|
+
setUsedSpace(value: number): void
|
|
1369
|
+
getVolumeId(): string
|
|
1370
|
+
setVolumeId(value: string): void
|
|
1217
1371
|
}
|
|
1218
1372
|
|
|
1219
1373
|
// Tipos para arrays simples
|
|
1220
|
-
|
|
1221
|
-
|
|
1374
|
+
class StringArray {
|
|
1375
|
+
constructor()
|
|
1376
|
+
getItem(): string[]
|
|
1377
|
+
setItem(value: string[]): void
|
|
1222
1378
|
}
|
|
1223
1379
|
|
|
1224
|
-
|
|
1225
|
-
|
|
1380
|
+
class IntArray {
|
|
1381
|
+
constructor()
|
|
1382
|
+
getItem(): number[]
|
|
1383
|
+
setItem(value: number[]): void
|
|
1226
1384
|
}
|
|
1227
1385
|
|
|
1228
|
-
|
|
1229
|
-
|
|
1386
|
+
class StringArrayArray {
|
|
1387
|
+
constructor()
|
|
1388
|
+
getItem(): StringArray[]
|
|
1389
|
+
setItem(value: StringArray[]): void
|
|
1230
1390
|
}
|
|
1231
1391
|
}
|
|
1232
1392
|
}
|