@docsvision/webclient 6.1.9-beta.1 → 6.1.10
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/BackOffice/ContentText.d.ts +20 -0
- package/BackOffice/DisplayPerformersStoriesData.d.ts +2 -2
- package/BackOffice/MultipleEmployeesStoriesData.d.ts +10 -6
- package/BackOffice/TaskGroupStatusComponent.d.ts +7 -0
- package/BackOffice/TaskGroupStatusTableComponent.d.ts +5 -0
- package/BackOffice/TaskGroupStatusTableRowComponent.d.ts +9 -0
- package/BackOffice/TaskGroupWorkStatus.d.ts +22 -0
- package/BackOffice/TaskGroupWorkStatusContainer.d.ts +11 -0
- package/BackOffice/TaskGroupWorkStatusLogic.d.ts +13 -0
- package/BackOffice/TaskGroupWorkStatusOptions.d.ts +18 -0
- package/BackOffice/TaskGroupWorkStatusView.d.ts +10 -0
- package/BackOffice/TaskGroupWrapper.d.ts +3 -0
- package/Generated/DocsVision.WebClient.Controllers.d.ts +7 -0
- package/Generated/DocsVision.WebClient.Models.d.ts +331 -2592
- package/Platform/ExportESignButton.d.ts +2 -0
- package/Platform/FileExtensions.d.ts +2 -1
- package/Platform/FolderCardsDashboardWidget.d.ts +2 -0
- package/Platform/GroupingResponseResolver.d.ts +13 -0
- package/Platform/RecentCardsDashboardWidget.d.ts +2 -0
- package/Platform/RecentCardsDashboardWidgetDataLoader.d.ts +2 -2
- package/Platform/UnreadCounter.d.ts +2 -1
- package/System/RealtimeServerSender.d.ts +2 -1
- package/System/TaskGroupWorkStatusStub.d.ts +62 -0
- package/package.json +1 -1
- package/Legacy/TaskGroupWorkStatusRazorControl.d.ts +0 -5
|
@@ -64,57 +64,17 @@ export declare namespace GenModels {
|
|
|
64
64
|
}
|
|
65
65
|
export declare namespace GenModels {
|
|
66
66
|
interface EmployeeDataModel extends GenModels.IDirectoryItemData {
|
|
67
|
-
/**
|
|
68
|
-
* Unique identificator of employee
|
|
69
|
-
*
|
|
70
|
-
* @format datatype.uuid
|
|
71
|
-
*/
|
|
72
67
|
id: string;
|
|
73
|
-
/**
|
|
74
|
-
* Define if user is current
|
|
75
|
-
*/
|
|
76
68
|
isCurrent: boolean;
|
|
77
|
-
/**
|
|
78
|
-
* Employee display name
|
|
79
|
-
*/
|
|
80
69
|
displayName: string;
|
|
81
|
-
/**
|
|
82
|
-
* Employee first name
|
|
83
|
-
*/
|
|
84
70
|
firstName: string;
|
|
85
|
-
/**
|
|
86
|
-
* Employee last name
|
|
87
|
-
*/
|
|
88
71
|
lastName: string;
|
|
89
|
-
/**
|
|
90
|
-
* Employee middle name
|
|
91
|
-
*/
|
|
92
72
|
middleName: string;
|
|
93
|
-
/**
|
|
94
|
-
* Employee position
|
|
95
|
-
*/
|
|
96
73
|
position: string;
|
|
97
|
-
/**
|
|
98
|
-
* Section and field name
|
|
99
|
-
*/
|
|
100
74
|
fieldPath: string;
|
|
101
|
-
/**
|
|
102
|
-
* Section and field name
|
|
103
|
-
*
|
|
104
|
-
* @format datatype.uuid
|
|
105
|
-
*/
|
|
106
75
|
unitId: string;
|
|
107
|
-
/**
|
|
108
|
-
* Path in directory
|
|
109
|
-
*/
|
|
110
76
|
pathInDirectory: Array<GenModels.DepartmentExtendedModel>;
|
|
111
|
-
/**
|
|
112
|
-
* Type of the data
|
|
113
|
-
*/
|
|
114
77
|
dataType: GenModels.DirectoryDataType;
|
|
115
|
-
/**
|
|
116
|
-
* Employee status
|
|
117
|
-
*/
|
|
118
78
|
status: GenModels.StaffEmployeeStatus;
|
|
119
79
|
}
|
|
120
80
|
}
|
|
@@ -318,61 +278,24 @@ export declare namespace GenModels {
|
|
|
318
278
|
}
|
|
319
279
|
export declare namespace GenModels {
|
|
320
280
|
interface StageNode {
|
|
321
|
-
/**
|
|
322
|
-
* Gets or sets stage identifier
|
|
323
|
-
*
|
|
324
|
-
* @format datatype.uuid
|
|
325
|
-
*/
|
|
326
281
|
id: string;
|
|
327
|
-
/**
|
|
328
|
-
* Gets or sets stage name
|
|
329
|
-
*/
|
|
330
282
|
name: string;
|
|
331
|
-
/**
|
|
332
|
-
* Gets or sets value indicating whether stage is first
|
|
333
|
-
*/
|
|
334
283
|
first: boolean;
|
|
335
|
-
/**
|
|
336
|
-
* Gets or sets stage task sending mode
|
|
337
|
-
*/
|
|
338
284
|
taskSendingMode: GenModels.StageTaskSendingMode;
|
|
339
|
-
/**
|
|
340
|
-
* Gets or sets stage repeat mode
|
|
341
|
-
*/
|
|
342
285
|
repeatMode: GenModels.StageRepeatMode;
|
|
343
|
-
/**
|
|
344
|
-
* Gets or sets stage start condition type
|
|
345
|
-
*/
|
|
346
286
|
startConditionType: GenModels.ConditionType;
|
|
347
287
|
}
|
|
348
288
|
}
|
|
349
289
|
export declare namespace GenModels {
|
|
350
290
|
interface Arrow {
|
|
351
|
-
/**
|
|
352
|
-
* Gets or sets decision semantics
|
|
353
|
-
*/
|
|
354
291
|
decisionSemantics: GenModels.DecisionSemantics;
|
|
355
|
-
/**
|
|
356
|
-
* Gets or sets source node
|
|
357
|
-
*/
|
|
358
292
|
sourceNode: GenModels.NodeReference;
|
|
359
|
-
/**
|
|
360
|
-
* Gets or sets target node
|
|
361
|
-
*/
|
|
362
293
|
targetNode: GenModels.NodeReference;
|
|
363
294
|
}
|
|
364
295
|
}
|
|
365
296
|
export declare namespace GenModels {
|
|
366
297
|
interface NodeReference {
|
|
367
|
-
/**
|
|
368
|
-
* Gets or sets node identifier
|
|
369
|
-
*
|
|
370
|
-
* @format datatype.uuid
|
|
371
|
-
*/
|
|
372
298
|
id: string;
|
|
373
|
-
/**
|
|
374
|
-
* Gets or sets node type
|
|
375
|
-
*/
|
|
376
299
|
nodeType: GenModels.NodeType;
|
|
377
300
|
}
|
|
378
301
|
}
|
|
@@ -1050,13 +973,7 @@ export declare namespace GenModels {
|
|
|
1050
973
|
}
|
|
1051
974
|
export declare namespace GenModels {
|
|
1052
975
|
interface LayoutCardsPresentationExtensionArgs {
|
|
1053
|
-
/**
|
|
1054
|
-
* User device type
|
|
1055
|
-
*/
|
|
1056
976
|
deviceType: GenModels.DeviceType;
|
|
1057
|
-
/**
|
|
1058
|
-
* Parent layouts
|
|
1059
|
-
*/
|
|
1060
977
|
parentLayoutIds: Array<string>;
|
|
1061
978
|
}
|
|
1062
979
|
}
|
|
@@ -1096,13 +1013,7 @@ export declare namespace GenModels {
|
|
|
1096
1013
|
}
|
|
1097
1014
|
export declare namespace GenModels {
|
|
1098
1015
|
interface CommentsRequestModel {
|
|
1099
|
-
/**
|
|
1100
|
-
* Gets or sets comments data source
|
|
1101
|
-
*/
|
|
1102
1016
|
dataSourceInfo: GenModels.CommentsDataSourceInfoModel;
|
|
1103
|
-
/**
|
|
1104
|
-
* Gets or sets max count
|
|
1105
|
-
*/
|
|
1106
1017
|
maxCount: number;
|
|
1107
1018
|
}
|
|
1108
1019
|
}
|
|
@@ -1212,93 +1123,32 @@ export declare namespace GenModels {
|
|
|
1212
1123
|
}
|
|
1213
1124
|
export declare namespace GenModels {
|
|
1214
1125
|
interface AddCommentRequestModel {
|
|
1215
|
-
/**
|
|
1216
|
-
* Gets or sets comments data source
|
|
1217
|
-
*/
|
|
1218
1126
|
dataSourceInfo: GenModels.CommentsDataSourceInfoModel;
|
|
1219
|
-
/**
|
|
1220
|
-
* Gets or sets card identifier
|
|
1221
|
-
*
|
|
1222
|
-
* @format datatype.uuid
|
|
1223
|
-
*/
|
|
1224
1127
|
cardId: string;
|
|
1225
|
-
/**
|
|
1226
|
-
* Gets or sets text
|
|
1227
|
-
*/
|
|
1228
1128
|
text: string;
|
|
1229
1129
|
}
|
|
1230
1130
|
}
|
|
1231
1131
|
export declare namespace GenModels {
|
|
1232
1132
|
interface RestoreCommentModel {
|
|
1233
|
-
/**
|
|
1234
|
-
* Gets or sets comments data source
|
|
1235
|
-
*/
|
|
1236
1133
|
dataSourceInfo: GenModels.CommentsDataSourceInfoModel;
|
|
1237
|
-
/**
|
|
1238
|
-
* Gets or sets card identifier
|
|
1239
|
-
*
|
|
1240
|
-
* @format datatype.uuid
|
|
1241
|
-
*/
|
|
1242
1134
|
cardId: string;
|
|
1243
|
-
/**
|
|
1244
|
-
* Gets or sets text
|
|
1245
|
-
*/
|
|
1246
1135
|
text: string;
|
|
1247
|
-
/**
|
|
1248
|
-
* Gets or sets employee id
|
|
1249
|
-
*
|
|
1250
|
-
* @format datatype.uuid
|
|
1251
|
-
*/
|
|
1252
1136
|
employeeId: string;
|
|
1253
|
-
/**
|
|
1254
|
-
* gets or sets date
|
|
1255
|
-
*
|
|
1256
|
-
* @format datatype.datetime
|
|
1257
|
-
*/
|
|
1258
1137
|
date?: string;
|
|
1259
1138
|
}
|
|
1260
1139
|
}
|
|
1261
1140
|
export declare namespace GenModels {
|
|
1262
1141
|
interface UpdateCommentRequestModel {
|
|
1263
|
-
/**
|
|
1264
|
-
* Gets or sets comments data source
|
|
1265
|
-
*/
|
|
1266
1142
|
dataSourceInfo: GenModels.CommentsDataSourceInfoModel;
|
|
1267
|
-
/**
|
|
1268
|
-
* Gets or sets card identifier
|
|
1269
|
-
*
|
|
1270
|
-
* @format datatype.uuid
|
|
1271
|
-
*/
|
|
1272
1143
|
cardId: string;
|
|
1273
|
-
/**
|
|
1274
|
-
* Gets or sets comment identifier
|
|
1275
|
-
*
|
|
1276
|
-
* @format datatype.uuid
|
|
1277
|
-
*/
|
|
1278
1144
|
commentId: string;
|
|
1279
|
-
/**
|
|
1280
|
-
* Gets or sets text
|
|
1281
|
-
*/
|
|
1282
1145
|
text: string;
|
|
1283
1146
|
}
|
|
1284
1147
|
}
|
|
1285
1148
|
export declare namespace GenModels {
|
|
1286
1149
|
interface DeleteCommentRequestModel {
|
|
1287
|
-
/**
|
|
1288
|
-
* Gets or sets comments data source
|
|
1289
|
-
*/
|
|
1290
1150
|
dataSourceInfo: GenModels.CommentsDataSourceInfoModel;
|
|
1291
|
-
/**
|
|
1292
|
-
* Gets or sets card identifier
|
|
1293
|
-
*
|
|
1294
|
-
* @format datatype.uuid
|
|
1295
|
-
*/
|
|
1296
1151
|
cardId: string;
|
|
1297
|
-
/**
|
|
1298
|
-
* Gets or sets comment identifier
|
|
1299
|
-
*
|
|
1300
|
-
* @format datatype.uuid
|
|
1301
|
-
*/
|
|
1302
1152
|
commentId: string;
|
|
1303
1153
|
}
|
|
1304
1154
|
}
|
|
@@ -1718,259 +1568,82 @@ export declare namespace GenModels {
|
|
|
1718
1568
|
}
|
|
1719
1569
|
export declare namespace GenModels {
|
|
1720
1570
|
interface GridViewModel {
|
|
1721
|
-
/**
|
|
1722
|
-
* Gets or sets instanceId
|
|
1723
|
-
*
|
|
1724
|
-
* @format datatype.uuid
|
|
1725
|
-
*/
|
|
1726
1571
|
instanceId: string;
|
|
1727
|
-
/**
|
|
1728
|
-
* Gets or sets current view cursor id
|
|
1729
|
-
*
|
|
1730
|
-
* @format datatype.uuid
|
|
1731
|
-
*/
|
|
1732
1572
|
cursorId: string;
|
|
1733
|
-
/**
|
|
1734
|
-
* Gets or sets size
|
|
1735
|
-
*/
|
|
1736
1573
|
pageSize: number;
|
|
1737
|
-
/**
|
|
1738
|
-
* Gets or sets model size
|
|
1739
|
-
*/
|
|
1740
1574
|
modelSize: number;
|
|
1741
|
-
/**
|
|
1742
|
-
* Gets or sets whether is final model size
|
|
1743
|
-
*/
|
|
1744
1575
|
isAllPagesLoaded: boolean;
|
|
1745
|
-
/**
|
|
1746
|
-
* Gets or sets IsUnknownModelSize
|
|
1747
|
-
*/
|
|
1748
1576
|
isUnknownModelSize: boolean;
|
|
1749
|
-
/**
|
|
1750
|
-
* Gets or sets whether filter allowed
|
|
1751
|
-
*/
|
|
1752
1577
|
isFilterAllowed: boolean;
|
|
1753
|
-
/**
|
|
1754
|
-
* Gets or sets paging mode
|
|
1755
|
-
*/
|
|
1756
1578
|
isPagingMode: boolean;
|
|
1757
|
-
/**
|
|
1758
|
-
* Gets or sets whether last page
|
|
1759
|
-
*/
|
|
1760
1579
|
isLastPage: boolean;
|
|
1761
|
-
/**
|
|
1762
|
-
* Gets or sets whether to highlight unread cards
|
|
1763
|
-
*/
|
|
1764
1580
|
markUnread: boolean;
|
|
1765
|
-
/**
|
|
1766
|
-
* Gets or sets CheckCardAccess
|
|
1767
|
-
*/
|
|
1768
1581
|
checkCardAccess: boolean;
|
|
1769
|
-
/**
|
|
1770
|
-
* Gets or sets whether to allow resize rows
|
|
1771
|
-
*/
|
|
1772
1582
|
allowRowResize: boolean;
|
|
1773
|
-
/**
|
|
1774
|
-
* Gets sorting key
|
|
1775
|
-
*/
|
|
1776
1583
|
sortingKey: string;
|
|
1777
|
-
/**
|
|
1778
|
-
* Gets columns
|
|
1779
|
-
*/
|
|
1780
1584
|
columns: Array<GenModels.GridColumn>;
|
|
1781
|
-
/**
|
|
1782
|
-
* Gets values
|
|
1783
|
-
*/
|
|
1784
1585
|
rows: Array<GenModels.GridRow>;
|
|
1785
|
-
/**
|
|
1786
|
-
* Gets or sets folder view request used to acquire ViewContext-specific grid settings
|
|
1787
|
-
*/
|
|
1788
1586
|
request: GenModels.QueryViewRequest;
|
|
1789
|
-
/**
|
|
1790
|
-
* Current session id.
|
|
1791
|
-
*
|
|
1792
|
-
* @format datatype.uuid
|
|
1793
|
-
*/
|
|
1794
1587
|
fullTextSearchSessionId: string;
|
|
1795
|
-
/**
|
|
1796
|
-
* Gets or sets grid user settings data
|
|
1797
|
-
*/
|
|
1798
1588
|
gridUserSettings: GenModels.GridUserSettingsData;
|
|
1799
|
-
/**
|
|
1800
|
-
* Gets or sets whether grouping allowed
|
|
1801
|
-
*/
|
|
1802
1589
|
isGroupingAllowed: boolean;
|
|
1803
|
-
/**
|
|
1804
|
-
* Gets or sets whether show grouping columns
|
|
1805
|
-
*/
|
|
1806
1590
|
showGroupingColumns: boolean;
|
|
1807
|
-
/**
|
|
1808
|
-
* Gets or sets base cursor row count
|
|
1809
|
-
*/
|
|
1810
1591
|
baseCursorRowCount: number;
|
|
1811
|
-
/**
|
|
1812
|
-
* Gets or sets whether it has default grouping
|
|
1813
|
-
*/
|
|
1814
1592
|
hasDefaultGrouping: boolean;
|
|
1815
|
-
/**
|
|
1816
|
-
* Gets or sets key column name
|
|
1817
|
-
*/
|
|
1818
1593
|
keyColumnName: string;
|
|
1819
|
-
/**
|
|
1820
|
-
* Get sorting column settings
|
|
1821
|
-
*/
|
|
1822
1594
|
sortingColumns: Array<GenModels.GridSorting>;
|
|
1823
|
-
/**
|
|
1824
|
-
* Get grouping column names
|
|
1825
|
-
*/
|
|
1826
1595
|
groupingColumnNames: Array<GenModels.GridGrouping>;
|
|
1827
1596
|
}
|
|
1828
1597
|
}
|
|
1829
1598
|
export declare namespace GenModels {
|
|
1830
1599
|
interface GridColumn {
|
|
1831
|
-
/**
|
|
1832
|
-
* Gets or sets display name
|
|
1833
|
-
*/
|
|
1834
1600
|
displayName: string;
|
|
1835
|
-
/**
|
|
1836
|
-
* Gets or sets sorting
|
|
1837
|
-
*/
|
|
1838
1601
|
sorting: boolean;
|
|
1839
|
-
/**
|
|
1840
|
-
* Gets or sets css class name
|
|
1841
|
-
*/
|
|
1842
1602
|
cssClassName: string;
|
|
1843
|
-
/**
|
|
1844
|
-
* Gets or sets column type
|
|
1845
|
-
*/
|
|
1846
1603
|
type: GenModels.ColumnType;
|
|
1847
|
-
/**
|
|
1848
|
-
* Gets or sets column sort direction
|
|
1849
|
-
*/
|
|
1850
1604
|
sortDirection?: GenModels.SortDirection;
|
|
1851
|
-
/**
|
|
1852
|
-
* Date format
|
|
1853
|
-
*/
|
|
1854
1605
|
dateFormat: string;
|
|
1855
|
-
/**
|
|
1856
|
-
* Gets or set whether column is marked as sort direction
|
|
1857
|
-
*/
|
|
1858
1606
|
isDefaultSort: boolean;
|
|
1859
|
-
/**
|
|
1860
|
-
* Get view column name
|
|
1861
|
-
*/
|
|
1862
1607
|
name: string;
|
|
1863
|
-
/**
|
|
1864
|
-
* Get value indicated whether view column is system column
|
|
1865
|
-
*/
|
|
1866
1608
|
isSystemColumn: boolean;
|
|
1867
|
-
/**
|
|
1868
|
-
* Get value indicated whether view column is hidden in view settings
|
|
1869
|
-
*/
|
|
1870
1609
|
isHiddenColumn: boolean;
|
|
1871
|
-
/**
|
|
1872
|
-
* Get value indicated whether view column content needed show as HTML (without escaping)
|
|
1873
|
-
*/
|
|
1874
1610
|
displayAsHTML: boolean;
|
|
1875
|
-
/**
|
|
1876
|
-
* Gets or sets value indicated whether column is unresizable
|
|
1877
|
-
*/
|
|
1878
1611
|
unresizable: boolean;
|
|
1879
|
-
/**
|
|
1880
|
-
* Gets or sets column width
|
|
1881
|
-
*/
|
|
1882
1612
|
width: string;
|
|
1883
|
-
/**
|
|
1884
|
-
* Gets or sets column order
|
|
1885
|
-
*/
|
|
1886
1613
|
order: number;
|
|
1887
|
-
/**
|
|
1888
|
-
* Is Filtration Enabled?
|
|
1889
|
-
*/
|
|
1890
1614
|
isFilteringAllowed: boolean;
|
|
1891
|
-
/**
|
|
1892
|
-
* Gets or sets whether grouping allowed
|
|
1893
|
-
*/
|
|
1894
1615
|
isGroupingAllowed: boolean;
|
|
1895
|
-
/**
|
|
1896
|
-
* Eval row function
|
|
1897
|
-
*/
|
|
1898
1616
|
evalRow: any;
|
|
1899
|
-
/**
|
|
1900
|
-
* Eval get grid field data
|
|
1901
|
-
*/
|
|
1902
1617
|
getGridFieldData: any;
|
|
1903
1618
|
}
|
|
1904
1619
|
}
|
|
1905
1620
|
export declare namespace GenModels {
|
|
1906
1621
|
interface GridRow {
|
|
1907
|
-
/**
|
|
1908
|
-
* Get ot sets params
|
|
1909
|
-
*/
|
|
1910
1622
|
params: Array<GenModels.GridRowParam>;
|
|
1911
|
-
/**
|
|
1912
|
-
* Gets or sets back color for row
|
|
1913
|
-
*/
|
|
1914
1623
|
backColor: string;
|
|
1915
|
-
/**
|
|
1916
|
-
* Gets or sets back color for row
|
|
1917
|
-
*/
|
|
1918
1624
|
foreColor: string;
|
|
1919
|
-
/**
|
|
1920
|
-
* Gets or sets row was read
|
|
1921
|
-
*/
|
|
1922
1625
|
wasRead: boolean;
|
|
1923
|
-
/**
|
|
1924
|
-
* Gets or sets row is archived
|
|
1925
|
-
*/
|
|
1926
1626
|
isArchived: boolean;
|
|
1927
1627
|
}
|
|
1928
1628
|
}
|
|
1929
1629
|
export declare namespace GenModels {
|
|
1930
1630
|
interface GridRowParam {
|
|
1931
|
-
/**
|
|
1932
|
-
* Gets or sets column name
|
|
1933
|
-
*/
|
|
1934
1631
|
columnName: string;
|
|
1935
|
-
/**
|
|
1936
|
-
* Gets or sets value
|
|
1937
|
-
*/
|
|
1938
1632
|
value: any;
|
|
1939
|
-
/**
|
|
1940
|
-
* Gets or sets typed value
|
|
1941
|
-
*/
|
|
1942
1633
|
rawValue: any;
|
|
1943
1634
|
}
|
|
1944
1635
|
}
|
|
1945
1636
|
export declare namespace GenModels {
|
|
1946
1637
|
interface GridSorting {
|
|
1947
|
-
/**
|
|
1948
|
-
* sorting column name
|
|
1949
|
-
*/
|
|
1950
1638
|
columnName: string;
|
|
1951
|
-
/**
|
|
1952
|
-
* column sorting order
|
|
1953
|
-
*/
|
|
1954
1639
|
order: number;
|
|
1955
|
-
/**
|
|
1956
|
-
* Sorting direction
|
|
1957
|
-
*/
|
|
1958
1640
|
ascending: boolean;
|
|
1959
1641
|
}
|
|
1960
1642
|
}
|
|
1961
1643
|
export declare namespace GenModels {
|
|
1962
1644
|
interface GridGrouping {
|
|
1963
|
-
/**
|
|
1964
|
-
* sorting column name
|
|
1965
|
-
*/
|
|
1966
1645
|
columnName: string;
|
|
1967
|
-
/**
|
|
1968
|
-
* Sorting direction
|
|
1969
|
-
*/
|
|
1970
1646
|
ascending: boolean;
|
|
1971
|
-
/**
|
|
1972
|
-
* Show expanded
|
|
1973
|
-
*/
|
|
1974
1647
|
showExpanded: boolean;
|
|
1975
1648
|
}
|
|
1976
1649
|
}
|
|
@@ -2128,9 +1801,6 @@ export declare namespace GenModels {
|
|
|
2128
1801
|
}
|
|
2129
1802
|
export declare namespace GenModels {
|
|
2130
1803
|
interface LayoutViewModel extends GenModels.ILayoutViewModel {
|
|
2131
|
-
/**
|
|
2132
|
-
* Gets or sets a layout model
|
|
2133
|
-
*/
|
|
2134
1804
|
layoutModel: GenModels.LayoutModel;
|
|
2135
1805
|
}
|
|
2136
1806
|
}
|
|
@@ -2224,9 +1894,6 @@ export declare namespace GenModels {
|
|
|
2224
1894
|
}
|
|
2225
1895
|
export declare namespace GenModels {
|
|
2226
1896
|
interface GridViewModelEx extends GenModels.GridViewModel {
|
|
2227
|
-
/**
|
|
2228
|
-
* Gets or sets search parameters layout
|
|
2229
|
-
*/
|
|
2230
1897
|
searchParametersLayout?: GenModels.ILayoutViewModel;
|
|
2231
1898
|
}
|
|
2232
1899
|
}
|
|
@@ -2534,13 +2201,7 @@ export declare namespace GenModels {
|
|
|
2534
2201
|
}
|
|
2535
2202
|
export declare namespace GenModels {
|
|
2536
2203
|
interface ParamModel {
|
|
2537
|
-
/**
|
|
2538
|
-
* key
|
|
2539
|
-
*/
|
|
2540
2204
|
key: string;
|
|
2541
|
-
/**
|
|
2542
|
-
* value
|
|
2543
|
-
*/
|
|
2544
2205
|
value: string;
|
|
2545
2206
|
}
|
|
2546
2207
|
}
|
|
@@ -2661,49 +2322,14 @@ export declare namespace GenModels {
|
|
|
2661
2322
|
}
|
|
2662
2323
|
export declare namespace GenModels {
|
|
2663
2324
|
interface HistorySearchQuery {
|
|
2664
|
-
/**
|
|
2665
|
-
* Card id
|
|
2666
|
-
*
|
|
2667
|
-
* @format datatype.uuid
|
|
2668
|
-
*/
|
|
2669
2325
|
cardId: string;
|
|
2670
|
-
/**
|
|
2671
|
-
* Employee name
|
|
2672
|
-
*/
|
|
2673
2326
|
employeeName: string;
|
|
2674
|
-
/**
|
|
2675
|
-
* Date
|
|
2676
|
-
*
|
|
2677
|
-
* @format datatype.datetime
|
|
2678
|
-
*/
|
|
2679
2327
|
date?: string;
|
|
2680
|
-
/**
|
|
2681
|
-
* Event name
|
|
2682
|
-
*/
|
|
2683
2328
|
eventSearch: string;
|
|
2684
|
-
/**
|
|
2685
|
-
* List of operations ids to hide
|
|
2686
|
-
*/
|
|
2687
2329
|
operationsToHide: Array<string>;
|
|
2688
|
-
/**
|
|
2689
|
-
* Cache id
|
|
2690
|
-
*
|
|
2691
|
-
* @format datatype.uuid
|
|
2692
|
-
*/
|
|
2693
2330
|
cacheId: string;
|
|
2694
|
-
/**
|
|
2695
|
-
* Count of items to skip (paginator logic)
|
|
2696
|
-
*/
|
|
2697
2331
|
skip?: number;
|
|
2698
|
-
/**
|
|
2699
|
-
* Max items count in the result (paginator logic)
|
|
2700
|
-
*/
|
|
2701
2332
|
maxCount?: number;
|
|
2702
|
-
/**
|
|
2703
|
-
* Edit operation id
|
|
2704
|
-
*
|
|
2705
|
-
* @format datatype.uuid
|
|
2706
|
-
*/
|
|
2707
2333
|
editOperation: string;
|
|
2708
2334
|
}
|
|
2709
2335
|
}
|
|
@@ -2767,128 +2393,54 @@ export declare namespace GenModels {
|
|
|
2767
2393
|
}
|
|
2768
2394
|
export declare namespace GenModels {
|
|
2769
2395
|
interface PartnerQuickSearchQuery {
|
|
2770
|
-
/**
|
|
2771
|
-
* Search mode
|
|
2772
|
-
*/
|
|
2773
2396
|
searchMode: GenModels.PartnerSearchMode;
|
|
2774
2397
|
searchText: string;
|
|
2775
|
-
/**
|
|
2776
|
-
* @format datatype.uuid
|
|
2777
|
-
*/
|
|
2778
2398
|
departmentId?: string;
|
|
2779
|
-
/**
|
|
2780
|
-
* Partners count to skip from begin (pagination). Real skip = Skip - SkipDepartments;
|
|
2781
|
-
*/
|
|
2782
2399
|
skip?: number;
|
|
2783
|
-
/**
|
|
2784
|
-
* Departments count to skip from begin (pagination). Real skip = Skip - SkipDepartments;
|
|
2785
|
-
*/
|
|
2786
2400
|
skipDepartments?: number;
|
|
2787
|
-
/**
|
|
2788
|
-
* Max partners in pagination result
|
|
2789
|
-
*/
|
|
2790
2401
|
maxCount?: number;
|
|
2791
2402
|
}
|
|
2792
2403
|
}
|
|
2793
2404
|
export declare namespace GenModels {
|
|
2794
2405
|
interface PartnerQuickSearchResponse {
|
|
2795
|
-
/**
|
|
2796
|
-
* List of {@link GenModels}
|
|
2797
|
-
*/
|
|
2798
2406
|
items: Array<GenModels.PartnerDirectoryItem>;
|
|
2799
|
-
/**
|
|
2800
|
-
* Has more items
|
|
2801
|
-
*/
|
|
2802
2407
|
hasMore: boolean;
|
|
2803
2408
|
}
|
|
2804
2409
|
}
|
|
2805
2410
|
export declare namespace GenModels {
|
|
2806
2411
|
interface PartnerDirectoryItem {
|
|
2807
|
-
/**
|
|
2808
|
-
* Partner item type
|
|
2809
|
-
*/
|
|
2810
2412
|
itemType: GenModels.PartnerItemType;
|
|
2811
|
-
/**
|
|
2812
|
-
* Item data
|
|
2813
|
-
*/
|
|
2814
2413
|
data: any;
|
|
2815
|
-
/**
|
|
2816
|
-
* Has item any children
|
|
2817
|
-
*/
|
|
2818
2414
|
hasChildren: boolean;
|
|
2819
2415
|
}
|
|
2820
2416
|
}
|
|
2821
2417
|
export declare namespace GenModels {
|
|
2822
2418
|
interface PartnerLoadQuery {
|
|
2823
|
-
/**
|
|
2824
|
-
* Search mode
|
|
2825
|
-
*/
|
|
2826
2419
|
searchMode: GenModels.PartnerSearchMode;
|
|
2827
|
-
/**
|
|
2828
|
-
* Department id
|
|
2829
|
-
*
|
|
2830
|
-
* @format datatype.uuid
|
|
2831
|
-
*/
|
|
2832
2420
|
departmentId?: string;
|
|
2833
|
-
/**
|
|
2834
|
-
* Skip (pagination)
|
|
2835
|
-
*/
|
|
2836
2421
|
skip?: number;
|
|
2837
|
-
/**
|
|
2838
|
-
* Skip departments (pagination)
|
|
2839
|
-
*/
|
|
2840
2422
|
skipDepartments?: number;
|
|
2841
|
-
/**
|
|
2842
|
-
* Max count (pagination)
|
|
2843
|
-
*/
|
|
2844
2423
|
maxCount?: number;
|
|
2845
|
-
/**
|
|
2846
|
-
* Random value for refresh cache
|
|
2847
|
-
*/
|
|
2848
2424
|
refreshToken?: number;
|
|
2849
2425
|
}
|
|
2850
2426
|
}
|
|
2851
2427
|
export declare namespace GenModels {
|
|
2852
2428
|
interface PartnerTreeLoadResponse {
|
|
2853
|
-
/**
|
|
2854
|
-
* List of partner directory items
|
|
2855
|
-
*/
|
|
2856
2429
|
items: Array<GenModels.PartnerDirectoryItem>;
|
|
2857
|
-
/**
|
|
2858
|
-
* Total partners count
|
|
2859
|
-
*/
|
|
2860
2430
|
totalItemsCount: number;
|
|
2861
|
-
/**
|
|
2862
|
-
* Directory timestamp
|
|
2863
|
-
*/
|
|
2864
2431
|
directoryTimestamp: number;
|
|
2865
2432
|
}
|
|
2866
2433
|
}
|
|
2867
2434
|
export declare namespace GenModels {
|
|
2868
2435
|
interface PartnerSearchResponse {
|
|
2869
|
-
/**
|
|
2870
|
-
* List of {@link GenModels}
|
|
2871
|
-
*/
|
|
2872
2436
|
items: Array<GenModels.PartnerDirectorySearchItem>;
|
|
2873
|
-
/**
|
|
2874
|
-
* Has more items
|
|
2875
|
-
*/
|
|
2876
2437
|
hasMore: boolean;
|
|
2877
|
-
/**
|
|
2878
|
-
* Directory timestamp
|
|
2879
|
-
*/
|
|
2880
2438
|
directoryTimestamp: number;
|
|
2881
2439
|
}
|
|
2882
2440
|
}
|
|
2883
2441
|
export declare namespace GenModels {
|
|
2884
2442
|
interface PartnerDirectorySearchItem extends GenModels.PartnerDirectoryItem {
|
|
2885
|
-
/**
|
|
2886
|
-
* Search info
|
|
2887
|
-
*/
|
|
2888
2443
|
searchInfo: GenModels.PartnerSearchInfo;
|
|
2889
|
-
/**
|
|
2890
|
-
* Search path in departments
|
|
2891
|
-
*/
|
|
2892
2444
|
path: Array<GenModels.DepartmentModel>;
|
|
2893
2445
|
}
|
|
2894
2446
|
}
|
|
@@ -2898,21 +2450,12 @@ export declare namespace GenModels {
|
|
|
2898
2450
|
}
|
|
2899
2451
|
export declare namespace GenModels {
|
|
2900
2452
|
interface MainMenuSettings {
|
|
2901
|
-
/**
|
|
2902
|
-
* List of main menu settings
|
|
2903
|
-
*/
|
|
2904
2453
|
items: Array<GenModels.MainMenuItemSetting>;
|
|
2905
2454
|
}
|
|
2906
2455
|
}
|
|
2907
2456
|
export declare namespace GenModels {
|
|
2908
2457
|
interface MainMenuItemSetting {
|
|
2909
|
-
/**
|
|
2910
|
-
* Main menu item unique identifier
|
|
2911
|
-
*/
|
|
2912
2458
|
id: string;
|
|
2913
|
-
/**
|
|
2914
|
-
* Is item hidden by user
|
|
2915
|
-
*/
|
|
2916
2459
|
hidden: boolean;
|
|
2917
2460
|
}
|
|
2918
2461
|
}
|
|
@@ -3265,91 +2808,38 @@ export declare namespace GenModels {
|
|
|
3265
2808
|
}
|
|
3266
2809
|
export declare namespace GenModels {
|
|
3267
2810
|
interface DataGridControlParams {
|
|
3268
|
-
/**
|
|
3269
|
-
* Plugin name
|
|
3270
|
-
*/
|
|
3271
2811
|
pluginName: string;
|
|
3272
|
-
/**
|
|
3273
|
-
* Parameters
|
|
3274
|
-
*/
|
|
3275
2812
|
parameters: Array<GenModels.ParamModel>;
|
|
3276
|
-
/**
|
|
3277
|
-
* Source id
|
|
3278
|
-
*
|
|
3279
|
-
* @format datatype.uuid
|
|
3280
|
-
*/
|
|
3281
2813
|
sourceId?: string;
|
|
3282
2814
|
}
|
|
3283
2815
|
}
|
|
3284
2816
|
export declare namespace GenModels {
|
|
3285
2817
|
interface TableModel {
|
|
3286
|
-
/**
|
|
3287
|
-
* Table id
|
|
3288
|
-
*/
|
|
3289
2818
|
id: string;
|
|
3290
|
-
/**
|
|
3291
|
-
* Source id in the system
|
|
3292
|
-
*/
|
|
3293
2819
|
sourceId: string;
|
|
3294
|
-
/**
|
|
3295
|
-
* Column models
|
|
3296
|
-
*/
|
|
3297
2820
|
columns: Array<GenModels.ColumnModel>;
|
|
3298
|
-
/**
|
|
3299
|
-
* Row models
|
|
3300
|
-
*/
|
|
3301
2821
|
rows: Array<GenModels.RowModel>;
|
|
3302
2822
|
}
|
|
3303
2823
|
}
|
|
3304
2824
|
export declare namespace GenModels {
|
|
3305
2825
|
interface ColumnModel {
|
|
3306
|
-
/**
|
|
3307
|
-
* Column id
|
|
3308
|
-
*/
|
|
3309
2826
|
id: string;
|
|
3310
|
-
/**
|
|
3311
|
-
* Column name
|
|
3312
|
-
*/
|
|
3313
2827
|
name: string;
|
|
3314
|
-
/**
|
|
3315
|
-
* Visability flag
|
|
3316
|
-
*/
|
|
3317
2828
|
hidden?: boolean;
|
|
3318
|
-
/**
|
|
3319
|
-
* Column order
|
|
3320
|
-
*/
|
|
3321
2829
|
order?: number;
|
|
3322
|
-
/**
|
|
3323
|
-
* Column type
|
|
3324
|
-
*/
|
|
3325
2830
|
type?: GenModels.ColumnType;
|
|
3326
2831
|
}
|
|
3327
2832
|
}
|
|
3328
2833
|
export declare namespace GenModels {
|
|
3329
2834
|
interface RowModel {
|
|
3330
|
-
/**
|
|
3331
|
-
* Row id
|
|
3332
|
-
*/
|
|
3333
2835
|
id: string;
|
|
3334
|
-
/**
|
|
3335
|
-
* Entity id in the system
|
|
3336
|
-
*/
|
|
3337
2836
|
entityId: string;
|
|
3338
|
-
/**
|
|
3339
|
-
* Cells data
|
|
3340
|
-
*/
|
|
3341
2837
|
cells: Array<GenModels.CellModel>;
|
|
3342
2838
|
}
|
|
3343
2839
|
}
|
|
3344
2840
|
export declare namespace GenModels {
|
|
3345
2841
|
interface CellModel {
|
|
3346
|
-
/**
|
|
3347
|
-
* Column id
|
|
3348
|
-
*/
|
|
3349
2842
|
columnId: string;
|
|
3350
|
-
/**
|
|
3351
|
-
* Value
|
|
3352
|
-
*/
|
|
3353
2843
|
value: any;
|
|
3354
2844
|
}
|
|
3355
2845
|
}
|
|
@@ -3389,97 +2879,30 @@ export declare namespace GenModels {
|
|
|
3389
2879
|
}
|
|
3390
2880
|
export declare namespace GenModels {
|
|
3391
2881
|
interface FileListDataModelBase {
|
|
3392
|
-
/**
|
|
3393
|
-
* New timestamp of the card
|
|
3394
|
-
*/
|
|
3395
2882
|
timestamp: number;
|
|
3396
|
-
/**
|
|
3397
|
-
* Updated list of the files in the card
|
|
3398
|
-
*/
|
|
3399
2883
|
files: Array<GenModels.LayoutFileModel>;
|
|
3400
|
-
/**
|
|
3401
|
-
* Gets whether document has any signature
|
|
3402
|
-
*/
|
|
3403
2884
|
hasAnySignature: boolean;
|
|
3404
|
-
/**
|
|
3405
|
-
* Total count of files
|
|
3406
|
-
*/
|
|
3407
2885
|
totalCount: number;
|
|
3408
2886
|
}
|
|
3409
2887
|
}
|
|
3410
2888
|
export declare namespace GenModels {
|
|
3411
2889
|
interface LayoutFileModel {
|
|
3412
|
-
/**
|
|
3413
|
-
* File name with extension
|
|
3414
|
-
*/
|
|
3415
2890
|
name: string;
|
|
3416
|
-
/**
|
|
3417
|
-
* File card ID
|
|
3418
|
-
*
|
|
3419
|
-
* @format datatype.uuid
|
|
3420
|
-
*/
|
|
3421
2891
|
fileCardId: string;
|
|
3422
|
-
/**
|
|
3423
|
-
* File ID
|
|
3424
|
-
*
|
|
3425
|
-
* @format datatype.uuid
|
|
3426
|
-
*/
|
|
3427
2892
|
fileId: string;
|
|
3428
|
-
/**
|
|
3429
|
-
* Is file locked
|
|
3430
|
-
*/
|
|
3431
2893
|
isLocked: boolean;
|
|
3432
|
-
/**
|
|
3433
|
-
* Is file preview supported
|
|
3434
|
-
*/
|
|
3435
2894
|
isFilePreviewSupported: boolean;
|
|
3436
|
-
/**
|
|
3437
|
-
* allowed generate electronic signature visualization
|
|
3438
|
-
*/
|
|
3439
2895
|
isESExportAllowed: boolean;
|
|
3440
|
-
/**
|
|
3441
|
-
* file extension
|
|
3442
|
-
*/
|
|
3443
2896
|
fileExtension: string;
|
|
3444
|
-
/**
|
|
3445
|
-
* Previous versions of the file
|
|
3446
|
-
*/
|
|
3447
2897
|
childVersions: Array<GenModels.VersionedFileModel>;
|
|
3448
|
-
/**
|
|
3449
|
-
* Current version of the file
|
|
3450
|
-
*/
|
|
3451
2898
|
currentVersion: GenModels.VersionedFileModel;
|
|
3452
|
-
/**
|
|
3453
|
-
* Has file digital signature or not
|
|
3454
|
-
*/
|
|
3455
2899
|
hasFileSignature: boolean;
|
|
3456
|
-
/**
|
|
3457
|
-
* Has file digital signature with certificate or not
|
|
3458
|
-
*/
|
|
3459
2900
|
hasFileCertificatedSignature: boolean;
|
|
3460
|
-
/**
|
|
3461
|
-
* Is file main or additional
|
|
3462
|
-
*/
|
|
3463
2901
|
isMain: boolean;
|
|
3464
|
-
/**
|
|
3465
|
-
* Gets or sets a flag that determines whether current file can be edited.
|
|
3466
|
-
*/
|
|
3467
2902
|
allowEdit: boolean;
|
|
3468
|
-
/**
|
|
3469
|
-
* Link for open file via WebDav
|
|
3470
|
-
*/
|
|
3471
2903
|
webDavLink: string;
|
|
3472
|
-
/**
|
|
3473
|
-
* Link for open file via WebDav in readonly mode
|
|
3474
|
-
*/
|
|
3475
2904
|
webDavReadonlyLink: string;
|
|
3476
|
-
/**
|
|
3477
|
-
* File versions count
|
|
3478
|
-
*/
|
|
3479
2905
|
versionsCount: number;
|
|
3480
|
-
/**
|
|
3481
|
-
* File size
|
|
3482
|
-
*/
|
|
3483
2906
|
size: number;
|
|
3484
2907
|
}
|
|
3485
2908
|
}
|
|
@@ -4355,143 +3778,43 @@ export declare namespace GenModels {
|
|
|
4355
3778
|
}
|
|
4356
3779
|
export declare namespace GenModels {
|
|
4357
3780
|
interface MergeGroupModel {
|
|
4358
|
-
/**
|
|
4359
|
-
* Gets or sets versioned file card identifier
|
|
4360
|
-
*
|
|
4361
|
-
* @format datatype.uuid
|
|
4362
|
-
*/
|
|
4363
3781
|
versionedFileCardId: string;
|
|
4364
|
-
/**
|
|
4365
|
-
* Gets or sets stage version card identifier
|
|
4366
|
-
*
|
|
4367
|
-
* @format datatype.uuid
|
|
4368
|
-
*/
|
|
4369
3782
|
stageVersionId: string;
|
|
4370
|
-
/**
|
|
4371
|
-
* Gets or sets stage version file model
|
|
4372
|
-
*/
|
|
4373
3783
|
stageVersionFileModel: GenModels.VersionFileModel;
|
|
4374
|
-
/**
|
|
4375
|
-
* Gets or sets approver version file models
|
|
4376
|
-
*/
|
|
4377
3784
|
approverVersionFileModels: Array<GenModels.VersionFileModel>;
|
|
4378
3785
|
}
|
|
4379
3786
|
}
|
|
4380
3787
|
export declare namespace GenModels {
|
|
4381
3788
|
interface VersionFileModel {
|
|
4382
|
-
/**
|
|
4383
|
-
* Gets or sets file identifier
|
|
4384
|
-
*
|
|
4385
|
-
* @format datatype.uuid
|
|
4386
|
-
*/
|
|
4387
3789
|
fileId: string;
|
|
4388
|
-
/**
|
|
4389
|
-
* Gets or sets file name
|
|
4390
|
-
*/
|
|
4391
3790
|
name: string;
|
|
4392
3791
|
}
|
|
4393
3792
|
}
|
|
4394
3793
|
export declare namespace GenModels {
|
|
4395
3794
|
interface TasksDataModel {
|
|
4396
|
-
/**
|
|
4397
|
-
* Updated list of the main files in the card
|
|
4398
|
-
*/
|
|
4399
3795
|
tasks: Array<GenModels.TaskDataModel>;
|
|
4400
|
-
/**
|
|
4401
|
-
* Do model contains links or not
|
|
4402
|
-
*/
|
|
4403
3796
|
tasksLoaded: boolean;
|
|
4404
|
-
/**
|
|
4405
|
-
* Task id
|
|
4406
|
-
*
|
|
4407
|
-
* @format datatype.uuid
|
|
4408
|
-
*/
|
|
4409
3797
|
taskID: string;
|
|
4410
|
-
/**
|
|
4411
|
-
* TaskList ID
|
|
4412
|
-
*
|
|
4413
|
-
* @format datatype.uuid
|
|
4414
|
-
*/
|
|
4415
3798
|
taskListId: string;
|
|
4416
|
-
/**
|
|
4417
|
-
* Task kind display name
|
|
4418
|
-
*/
|
|
4419
3799
|
taskKindName: string;
|
|
4420
|
-
/**
|
|
4421
|
-
* Available kinds
|
|
4422
|
-
*/
|
|
4423
3800
|
availableKinds: Array<string>;
|
|
4424
|
-
/**
|
|
4425
|
-
* Total count of tasks, including not loaded
|
|
4426
|
-
*/
|
|
4427
3801
|
totalTasksCount: number;
|
|
4428
3802
|
}
|
|
4429
3803
|
}
|
|
4430
3804
|
export declare namespace GenModels {
|
|
4431
3805
|
interface TaskDataModel {
|
|
4432
|
-
/**
|
|
4433
|
-
* Gets card identifier
|
|
4434
|
-
*
|
|
4435
|
-
* @format datatype.uuid
|
|
4436
|
-
*/
|
|
4437
3806
|
cardId: string;
|
|
4438
|
-
/**
|
|
4439
|
-
* Gets card type identifier
|
|
4440
|
-
*
|
|
4441
|
-
* @format datatype.uuid
|
|
4442
|
-
*/
|
|
4443
3807
|
cardTypeId: string;
|
|
4444
|
-
/**
|
|
4445
|
-
* Gets kind identifier
|
|
4446
|
-
*
|
|
4447
|
-
* @format datatype.uuid
|
|
4448
|
-
*/
|
|
4449
3808
|
kindId: string;
|
|
4450
|
-
/**
|
|
4451
|
-
* Gets task name
|
|
4452
|
-
*/
|
|
4453
3809
|
taskName: string;
|
|
4454
|
-
/**
|
|
4455
|
-
* Gets view route name
|
|
4456
|
-
*/
|
|
4457
3810
|
viewRouteName: string;
|
|
4458
|
-
/**
|
|
4459
|
-
* Gets group task flag
|
|
4460
|
-
*/
|
|
4461
3811
|
isGroupTask: boolean;
|
|
4462
|
-
/**
|
|
4463
|
-
* Gets state name
|
|
4464
|
-
*/
|
|
4465
3812
|
stateDisplayName: string;
|
|
4466
|
-
/**
|
|
4467
|
-
* Gets task state class name
|
|
4468
|
-
*/
|
|
4469
3813
|
stateClassName: string;
|
|
4470
|
-
/**
|
|
4471
|
-
* Gets task state type
|
|
4472
|
-
*/
|
|
4473
3814
|
stateType: number;
|
|
4474
|
-
/**
|
|
4475
|
-
* Gets performer name
|
|
4476
|
-
*/
|
|
4477
3815
|
performerDisplayName: string;
|
|
4478
|
-
/**
|
|
4479
|
-
* Gets start date
|
|
4480
|
-
*
|
|
4481
|
-
* @format datatype.datetime
|
|
4482
|
-
*/
|
|
4483
3816
|
startDate?: string;
|
|
4484
|
-
/**
|
|
4485
|
-
* Gets end date
|
|
4486
|
-
*
|
|
4487
|
-
* @format datatype.datetime
|
|
4488
|
-
*/
|
|
4489
3817
|
endDate?: string;
|
|
4490
|
-
/**
|
|
4491
|
-
* Gets date of task complete
|
|
4492
|
-
*
|
|
4493
|
-
* @format datatype.datetime
|
|
4494
|
-
*/
|
|
4495
3818
|
endDateActual?: string;
|
|
4496
3819
|
}
|
|
4497
3820
|
}
|
|
@@ -5124,277 +4447,98 @@ export declare namespace GenModels {
|
|
|
5124
4447
|
}
|
|
5125
4448
|
export declare namespace GenModels {
|
|
5126
4449
|
interface AgreementListModel {
|
|
5127
|
-
/**
|
|
5128
|
-
* Gets document number
|
|
5129
|
-
*/
|
|
5130
4450
|
documentNumber: string;
|
|
5131
|
-
/**
|
|
5132
|
-
* Gets document name
|
|
5133
|
-
*/
|
|
5134
4451
|
documentName: string;
|
|
5135
|
-
/**
|
|
5136
|
-
* Gets items
|
|
5137
|
-
*/
|
|
5138
4452
|
items: Array<GenModels.AgreementListItemModel>;
|
|
5139
4453
|
}
|
|
5140
4454
|
}
|
|
5141
4455
|
export declare namespace GenModels {
|
|
5142
4456
|
interface AgreementListItemModel {
|
|
5143
|
-
/**
|
|
5144
|
-
* Gets date
|
|
5145
|
-
*
|
|
5146
|
-
* @format datatype.datetime
|
|
5147
|
-
*/
|
|
5148
4457
|
date: string;
|
|
5149
|
-
/**
|
|
5150
|
-
* Gets employee display text
|
|
5151
|
-
*/
|
|
5152
4458
|
employeeDisplayText: string;
|
|
5153
|
-
/**
|
|
5154
|
-
* Gets department name
|
|
5155
|
-
*/
|
|
5156
4459
|
departmentName: string;
|
|
5157
|
-
/**
|
|
5158
|
-
* Gets comment
|
|
5159
|
-
*/
|
|
5160
4460
|
comment: string;
|
|
5161
|
-
/**
|
|
5162
|
-
* Gets decision text
|
|
5163
|
-
*/
|
|
5164
4461
|
decisionText: string;
|
|
5165
|
-
/**
|
|
5166
|
-
* Gets position name
|
|
5167
|
-
*/
|
|
5168
4462
|
positionName: string;
|
|
5169
4463
|
}
|
|
5170
4464
|
}
|
|
5171
4465
|
export declare namespace GenModels {
|
|
5172
4466
|
interface AgreementManagementStartModel {
|
|
5173
|
-
/**
|
|
5174
|
-
* Gets is main file exists
|
|
5175
|
-
*/
|
|
5176
4467
|
agreementManagement: GenModels.AgreementManagementModel;
|
|
5177
4468
|
templates: Array<GenModels.AgreementTemplateModel>;
|
|
5178
4469
|
}
|
|
5179
4470
|
}
|
|
5180
4471
|
export declare namespace GenModels {
|
|
5181
4472
|
interface AgreementManagementModel {
|
|
5182
|
-
/**
|
|
5183
|
-
* Gets reconciliation card identifier
|
|
5184
|
-
*
|
|
5185
|
-
* @format datatype.uuid
|
|
5186
|
-
*/
|
|
5187
4473
|
reconciliationCardId: string;
|
|
5188
|
-
/**
|
|
5189
|
-
* Gets is main file exists
|
|
5190
|
-
*/
|
|
5191
4474
|
isMainFileExists: boolean;
|
|
5192
|
-
/**
|
|
5193
|
-
* Gets is new
|
|
5194
|
-
*/
|
|
5195
4475
|
isNew: boolean;
|
|
5196
|
-
/**
|
|
5197
|
-
* Gets state type
|
|
5198
|
-
*/
|
|
5199
4476
|
stateType: GenModels.AgreementStateType;
|
|
5200
|
-
/**
|
|
5201
|
-
* Does ReconciliationList section contains records
|
|
5202
|
-
*/
|
|
5203
4477
|
reconciliationListHasRecords: boolean;
|
|
5204
4478
|
}
|
|
5205
4479
|
}
|
|
5206
4480
|
export declare namespace GenModels {
|
|
5207
4481
|
interface AgreementTemplateModel {
|
|
5208
|
-
/**
|
|
5209
|
-
* Gets or sets card creation setting row identifier
|
|
5210
|
-
*
|
|
5211
|
-
* @format datatype.uuid
|
|
5212
|
-
*/
|
|
5213
4482
|
creationSettingId: string;
|
|
5214
|
-
/**
|
|
5215
|
-
* Gets or sets reconcile template identifier
|
|
5216
|
-
*
|
|
5217
|
-
* @format datatype.uuid
|
|
5218
|
-
*/
|
|
5219
4483
|
templateId: string;
|
|
5220
|
-
/**
|
|
5221
|
-
* Gets or sets creation mode name
|
|
5222
|
-
*/
|
|
5223
4484
|
name: string;
|
|
5224
|
-
/**
|
|
5225
|
-
* Gets stages collection
|
|
5226
|
-
*/
|
|
5227
4485
|
stages: Array<GenModels.StageModel>;
|
|
5228
|
-
/**
|
|
5229
|
-
* Gets or sets value indicating whether reconciliation can be started without files
|
|
5230
|
-
*/
|
|
5231
4486
|
startNoFiles: boolean;
|
|
5232
|
-
/**
|
|
5233
|
-
* Gets or sets start without showing flag
|
|
5234
|
-
*/
|
|
5235
4487
|
startNoEdit: boolean;
|
|
5236
|
-
/**
|
|
5237
|
-
* Gets or sets stage infoloaded flag
|
|
5238
|
-
*/
|
|
5239
4488
|
loaded: boolean;
|
|
5240
4489
|
}
|
|
5241
4490
|
}
|
|
5242
4491
|
export declare namespace GenModels {
|
|
5243
4492
|
interface StageModel {
|
|
5244
4493
|
stageId: string;
|
|
5245
|
-
/**
|
|
5246
|
-
* Gets or sets stage name
|
|
5247
|
-
*/
|
|
5248
4494
|
name: string;
|
|
5249
|
-
/**
|
|
5250
|
-
* Gets or sets value indicating whether stage can be edited
|
|
5251
|
-
*/
|
|
5252
4495
|
allowEdit: boolean;
|
|
5253
|
-
/**
|
|
5254
|
-
* Gets or sets duration
|
|
5255
|
-
*/
|
|
5256
4496
|
duration: number;
|
|
5257
|
-
/**
|
|
5258
|
-
* Gets or sets value indicating whether duration specified for every approver or for all approvers together
|
|
5259
|
-
*/
|
|
5260
4497
|
specificDuration: boolean;
|
|
5261
|
-
/**
|
|
5262
|
-
* Gets or sets approval type
|
|
5263
|
-
*/
|
|
5264
4498
|
approvalType: GenModels.ApprovalType;
|
|
5265
|
-
/**
|
|
5266
|
-
* Gets or sets value indicating whether approvers can be calculated (when stage not uses business process)
|
|
5267
|
-
*/
|
|
5268
4499
|
hasBusinessProcess: boolean;
|
|
5269
|
-
/**
|
|
5270
|
-
* Gets or sets value indicating whether stage is excluded
|
|
5271
|
-
*/
|
|
5272
4500
|
excluded: boolean;
|
|
5273
|
-
/**
|
|
5274
|
-
* Gets or sets order
|
|
5275
|
-
*/
|
|
5276
4501
|
order: number;
|
|
5277
|
-
/**
|
|
5278
|
-
* Has order specified for the stage
|
|
5279
|
-
*/
|
|
5280
4502
|
orderSpecified: boolean;
|
|
5281
|
-
/**
|
|
5282
|
-
* Allows exclude stage
|
|
5283
|
-
*/
|
|
5284
4503
|
allowExcludeStage: boolean;
|
|
5285
|
-
/**
|
|
5286
|
-
* Gets or sets stage instance information (for running or completed reconciliation only)
|
|
5287
|
-
*/
|
|
5288
4504
|
stageInstanceInfo: GenModels.ActualStageData;
|
|
5289
|
-
/**
|
|
5290
|
-
* Gets approvers list
|
|
5291
|
-
*/
|
|
5292
4505
|
approvers: Array<GenModels.ApproverModel>;
|
|
5293
|
-
/**
|
|
5294
|
-
* Allows edit approval type
|
|
5295
|
-
*/
|
|
5296
4506
|
allowEditApprovalType: boolean;
|
|
5297
|
-
/**
|
|
5298
|
-
* Template id
|
|
5299
|
-
*
|
|
5300
|
-
* @format datatype.uuid
|
|
5301
|
-
*/
|
|
5302
4507
|
templateId: string;
|
|
5303
4508
|
}
|
|
5304
4509
|
}
|
|
5305
4510
|
export declare namespace GenModels {
|
|
5306
4511
|
interface ActualStageData {
|
|
5307
|
-
/**
|
|
5308
|
-
* Gets or sets stage semantics
|
|
5309
|
-
*/
|
|
5310
4512
|
stageSemantics: GenModels.StageSemantics;
|
|
5311
|
-
/**
|
|
5312
|
-
* Gets or sets value indicating whether stage is active
|
|
5313
|
-
*/
|
|
5314
4513
|
currentStage: boolean;
|
|
5315
|
-
/**
|
|
5316
|
-
* Gets or sets stage pass
|
|
5317
|
-
*/
|
|
5318
4514
|
pass: number;
|
|
5319
4515
|
}
|
|
5320
4516
|
}
|
|
5321
4517
|
export declare namespace GenModels {
|
|
5322
4518
|
interface ApproverModel {
|
|
5323
|
-
/**
|
|
5324
|
-
* Gets or sets employee model
|
|
5325
|
-
*/
|
|
5326
4519
|
employee: GenModels.ApproverEmployeeModel;
|
|
5327
|
-
/**
|
|
5328
|
-
* Gets or sets value indicating whether approver is temporary excluded
|
|
5329
|
-
*/
|
|
5330
4520
|
excluded: boolean;
|
|
5331
4521
|
}
|
|
5332
4522
|
}
|
|
5333
4523
|
export declare namespace GenModels {
|
|
5334
4524
|
interface ApproverEmployeeModel {
|
|
5335
|
-
/**
|
|
5336
|
-
* Unique identificator of employee
|
|
5337
|
-
*
|
|
5338
|
-
* @format datatype.uuid
|
|
5339
|
-
*/
|
|
5340
4525
|
id: string;
|
|
5341
|
-
/**
|
|
5342
|
-
* Define if user is current
|
|
5343
|
-
*/
|
|
5344
4526
|
isCurrent: boolean;
|
|
5345
|
-
/**
|
|
5346
|
-
* Employee display name
|
|
5347
|
-
*/
|
|
5348
4527
|
displayName: string;
|
|
5349
|
-
/**
|
|
5350
|
-
* Employee first name
|
|
5351
|
-
*/
|
|
5352
4528
|
firstName: string;
|
|
5353
|
-
/**
|
|
5354
|
-
* Employee last name
|
|
5355
|
-
*/
|
|
5356
4529
|
lastName: string;
|
|
5357
|
-
/**
|
|
5358
|
-
* Employee middle name
|
|
5359
|
-
*/
|
|
5360
4530
|
middleName: string;
|
|
5361
|
-
/**
|
|
5362
|
-
* Employee position
|
|
5363
|
-
*/
|
|
5364
4531
|
position: string;
|
|
5365
|
-
/**
|
|
5366
|
-
* Represents value indicating whether employee is favourite performer
|
|
5367
|
-
*/
|
|
5368
4532
|
isFavoritePerformer: boolean;
|
|
5369
|
-
/**
|
|
5370
|
-
* Gets or sets unit identifier
|
|
5371
|
-
*
|
|
5372
|
-
* @format datatype.uuid
|
|
5373
|
-
*/
|
|
5374
4533
|
unitId: string;
|
|
5375
|
-
/**
|
|
5376
|
-
* Employee category
|
|
5377
|
-
*/
|
|
5378
4534
|
dataType: GenModels.DirectoryDataType;
|
|
5379
4535
|
}
|
|
5380
4536
|
}
|
|
5381
4537
|
export declare namespace GenModels {
|
|
5382
4538
|
interface AgreementManagementEditModel {
|
|
5383
|
-
/**
|
|
5384
|
-
* Gets is main file exists
|
|
5385
|
-
*/
|
|
5386
4539
|
agreementManagement: GenModels.AgreementManagementModel;
|
|
5387
|
-
/**
|
|
5388
|
-
* Available agreement operations
|
|
5389
|
-
*/
|
|
5390
4540
|
availableAgreementOperations: Array<GenModels.ApprovalOperationKind>;
|
|
5391
|
-
/**
|
|
5392
|
-
* Gets stages collection
|
|
5393
|
-
*/
|
|
5394
4541
|
stages: Array<GenModels.StageModel>;
|
|
5395
|
-
/**
|
|
5396
|
-
* Gets value indicating whether interrupt current stages can be executed
|
|
5397
|
-
*/
|
|
5398
4542
|
canInterruptCurrentStages: boolean;
|
|
5399
4543
|
}
|
|
5400
4544
|
}
|
|
@@ -5408,35 +4552,12 @@ export declare namespace GenModels {
|
|
|
5408
4552
|
}
|
|
5409
4553
|
export declare namespace GenModels {
|
|
5410
4554
|
interface StageChangeModel {
|
|
5411
|
-
/**
|
|
5412
|
-
* Gets or sets stage identifier
|
|
5413
|
-
*
|
|
5414
|
-
* @format datatype.uuid
|
|
5415
|
-
*/
|
|
5416
4555
|
stageId: string;
|
|
5417
|
-
/**
|
|
5418
|
-
* Gets or sets stage order
|
|
5419
|
-
*/
|
|
5420
4556
|
order: number;
|
|
5421
|
-
/**
|
|
5422
|
-
* Gets or sets value indicating whether stage is excluded
|
|
5423
|
-
*/
|
|
5424
4557
|
excluded: boolean;
|
|
5425
|
-
/**
|
|
5426
|
-
* Gets or sets duration
|
|
5427
|
-
*/
|
|
5428
4558
|
duration: number;
|
|
5429
|
-
/**
|
|
5430
|
-
* Gets or sets value indicating whether duration specified for every approver or for all approvers together
|
|
5431
|
-
*/
|
|
5432
4559
|
specificDuration: boolean;
|
|
5433
|
-
/**
|
|
5434
|
-
* Gets or sets approval type
|
|
5435
|
-
*/
|
|
5436
4560
|
approvalType: GenModels.ApprovalType;
|
|
5437
|
-
/**
|
|
5438
|
-
* Gets or sets value indicating whether approvers changed
|
|
5439
|
-
*/
|
|
5440
4561
|
approversChanged: boolean;
|
|
5441
4562
|
approvers: Array<GenModels.ApproverModel>;
|
|
5442
4563
|
}
|
|
@@ -5450,141 +4571,43 @@ export declare namespace GenModels {
|
|
|
5450
4571
|
}
|
|
5451
4572
|
export declare namespace GenModels {
|
|
5452
4573
|
interface ApprovalHistoryViewModel {
|
|
5453
|
-
/**
|
|
5454
|
-
* Gets or sets display name of this approval.
|
|
5455
|
-
*/
|
|
5456
4574
|
displayName: string;
|
|
5457
|
-
/**
|
|
5458
|
-
* Gets or set approval reconcile card identifier
|
|
5459
|
-
*
|
|
5460
|
-
* @format datatype.uuid
|
|
5461
|
-
*/
|
|
5462
4575
|
approvalReconcileCardId: string;
|
|
5463
|
-
/**
|
|
5464
|
-
* Gets ors sets approval task card identifier
|
|
5465
|
-
*
|
|
5466
|
-
* @format datatype.uuid
|
|
5467
|
-
*/
|
|
5468
4576
|
approvalTaskCardId: string;
|
|
5469
|
-
/**
|
|
5470
|
-
* Gets or sets current cycle
|
|
5471
|
-
*/
|
|
5472
4577
|
currentCycle: GenModels.ApprovalHistoryCycleModel;
|
|
5473
|
-
/**
|
|
5474
|
-
* Gets or sets cycles
|
|
5475
|
-
*/
|
|
5476
4578
|
cycles: Array<GenModels.ApprovalHistoryCycleModel>;
|
|
5477
4579
|
}
|
|
5478
4580
|
}
|
|
5479
4581
|
export declare namespace GenModels {
|
|
5480
4582
|
interface ApprovalHistoryCycleModel {
|
|
5481
|
-
/**
|
|
5482
|
-
* Gets cycle number
|
|
5483
|
-
*/
|
|
5484
4583
|
number: number;
|
|
5485
|
-
/**
|
|
5486
|
-
* Gets value indicating whether cycle is current
|
|
5487
|
-
*/
|
|
5488
4584
|
isCurrent: boolean;
|
|
5489
|
-
/**
|
|
5490
|
-
* Gets cycle stages collection
|
|
5491
|
-
*/
|
|
5492
4585
|
stages: Array<GenModels.ApprovalHistoryStageModel>;
|
|
5493
|
-
/**
|
|
5494
|
-
* Gets owner card identifier for preview
|
|
5495
|
-
*
|
|
5496
|
-
* @format datatype.uuid
|
|
5497
|
-
*/
|
|
5498
4586
|
ownerCardId: string;
|
|
5499
4587
|
}
|
|
5500
4588
|
}
|
|
5501
4589
|
export declare namespace GenModels {
|
|
5502
4590
|
interface ApprovalHistoryStageModel {
|
|
5503
|
-
/**
|
|
5504
|
-
* Gets stage name
|
|
5505
|
-
*/
|
|
5506
4591
|
name: string;
|
|
5507
|
-
/**
|
|
5508
|
-
* Gets stage id
|
|
5509
|
-
*
|
|
5510
|
-
* @format datatype.uuid
|
|
5511
|
-
*/
|
|
5512
4592
|
id: string;
|
|
5513
|
-
/**
|
|
5514
|
-
* Gets approval type localized caption
|
|
5515
|
-
*/
|
|
5516
4593
|
approvalType?: GenModels.ApprovalType;
|
|
5517
|
-
/**
|
|
5518
|
-
* Gets stage's begin date
|
|
5519
|
-
*
|
|
5520
|
-
* @format datatype.datetime
|
|
5521
|
-
*/
|
|
5522
4594
|
beginDate: string;
|
|
5523
|
-
/**
|
|
5524
|
-
* Gets stage's pass
|
|
5525
|
-
*/
|
|
5526
4595
|
pass: number;
|
|
5527
|
-
/**
|
|
5528
|
-
* Gets stage items collection
|
|
5529
|
-
*/
|
|
5530
4596
|
stageItems: Array<GenModels.ApprovalHistoryStageItemModel>;
|
|
5531
4597
|
}
|
|
5532
4598
|
}
|
|
5533
4599
|
export declare namespace GenModels {
|
|
5534
4600
|
interface ApprovalHistoryStageItemModel {
|
|
5535
|
-
/**
|
|
5536
|
-
* Gets employee display name
|
|
5537
|
-
*/
|
|
5538
4601
|
employeeText: string;
|
|
5539
|
-
/**
|
|
5540
|
-
* Gets employee id
|
|
5541
|
-
*
|
|
5542
|
-
* @format datatype.uuid
|
|
5543
|
-
*/
|
|
5544
4602
|
employeeId: string;
|
|
5545
|
-
/**
|
|
5546
|
-
* Gets decision date
|
|
5547
|
-
*
|
|
5548
|
-
* @format datatype.datetime
|
|
5549
|
-
*/
|
|
5550
4603
|
decisionDate: string;
|
|
5551
|
-
/**
|
|
5552
|
-
* Gets end date
|
|
5553
|
-
*
|
|
5554
|
-
* @format datatype.datetime
|
|
5555
|
-
*/
|
|
5556
4604
|
endDate?: string;
|
|
5557
|
-
/**
|
|
5558
|
-
* Gets end date actual
|
|
5559
|
-
*
|
|
5560
|
-
* @format datatype.datetime
|
|
5561
|
-
*/
|
|
5562
4605
|
endDateActual?: string;
|
|
5563
|
-
/**
|
|
5564
|
-
* Task id
|
|
5565
|
-
*
|
|
5566
|
-
* @format datatype.uuid
|
|
5567
|
-
*/
|
|
5568
4606
|
taskId: string;
|
|
5569
|
-
/**
|
|
5570
|
-
* Gets comment
|
|
5571
|
-
*/
|
|
5572
4607
|
comment: string;
|
|
5573
|
-
/**
|
|
5574
|
-
* Gets value indicating that comment not empty
|
|
5575
|
-
*/
|
|
5576
4608
|
hasComment: boolean;
|
|
5577
|
-
/**
|
|
5578
|
-
* Gets or sets decision name
|
|
5579
|
-
*/
|
|
5580
4609
|
decisionName: string;
|
|
5581
|
-
/**
|
|
5582
|
-
* Gets or sets decision semantics
|
|
5583
|
-
*/
|
|
5584
4610
|
decision?: GenModels.DecisionSemantics;
|
|
5585
|
-
/**
|
|
5586
|
-
* Gets or sets stage decision semantics
|
|
5587
|
-
*/
|
|
5588
4611
|
stageDecision?: GenModels.StageSemantics;
|
|
5589
4612
|
addedFileCardModels: Array<GenModels.ApprovalHistoryFileModel>;
|
|
5590
4613
|
commentFileData: GenModels.ApprovalHistoryFileCommentModel;
|
|
@@ -5592,19 +4615,8 @@ export declare namespace GenModels {
|
|
|
5592
4615
|
}
|
|
5593
4616
|
export declare namespace GenModels {
|
|
5594
4617
|
interface ApprovalHistoryFileModel {
|
|
5595
|
-
/**
|
|
5596
|
-
* Gets file card identifier
|
|
5597
|
-
*
|
|
5598
|
-
* @format datatype.uuid
|
|
5599
|
-
*/
|
|
5600
4618
|
fileCardId: string;
|
|
5601
|
-
/**
|
|
5602
|
-
* Gets file card identifier
|
|
5603
|
-
*/
|
|
5604
4619
|
name: string;
|
|
5605
|
-
/**
|
|
5606
|
-
* file extension
|
|
5607
|
-
*/
|
|
5608
4620
|
fileExtension: string;
|
|
5609
4621
|
currentVersion: GenModels.ApprovalHistoryFileVersionModel;
|
|
5610
4622
|
}
|
|
@@ -5617,115 +4629,33 @@ export declare namespace GenModels {
|
|
|
5617
4629
|
}
|
|
5618
4630
|
export declare namespace GenModels {
|
|
5619
4631
|
interface ApprovalHistoryFileCommentModel {
|
|
5620
|
-
/**
|
|
5621
|
-
* Gets file identifier
|
|
5622
|
-
*
|
|
5623
|
-
* @format datatype.uuid
|
|
5624
|
-
*/
|
|
5625
4632
|
fileId: string;
|
|
5626
|
-
/**
|
|
5627
|
-
* Gets file name
|
|
5628
|
-
*/
|
|
5629
4633
|
name: string;
|
|
5630
4634
|
}
|
|
5631
4635
|
}
|
|
5632
4636
|
export declare namespace GenModels {
|
|
5633
4637
|
interface LayoutCardCreateParams {
|
|
5634
|
-
/**
|
|
5635
|
-
* Card type identifier
|
|
5636
|
-
*
|
|
5637
|
-
* @format datatype.uuid
|
|
5638
|
-
*/
|
|
5639
4638
|
cardTypeId?: string;
|
|
5640
|
-
/**
|
|
5641
|
-
* Kind identifier
|
|
5642
|
-
*
|
|
5643
|
-
* @format datatype.uuid
|
|
5644
|
-
*/
|
|
5645
4639
|
kindId?: string;
|
|
5646
|
-
/**
|
|
5647
|
-
* Folder identifier
|
|
5648
|
-
*
|
|
5649
|
-
* @format datatype.uuid
|
|
5650
|
-
*/
|
|
5651
4640
|
folderId?: string;
|
|
5652
|
-
/**
|
|
5653
|
-
* Template identifier
|
|
5654
|
-
*
|
|
5655
|
-
* @format datatype.uuid
|
|
5656
|
-
*/
|
|
5657
4641
|
templateId?: string;
|
|
5658
|
-
/**
|
|
5659
|
-
* Parent card identifier
|
|
5660
|
-
*
|
|
5661
|
-
* @format datatype.uuid
|
|
5662
|
-
*/
|
|
5663
4642
|
parentCardId?: string;
|
|
5664
|
-
/**
|
|
5665
|
-
* Gets or sets layout mode
|
|
5666
|
-
*
|
|
5667
|
-
* @format datatype.uuid
|
|
5668
|
-
*/
|
|
5669
4643
|
layoutMode?: string;
|
|
5670
|
-
/**
|
|
5671
|
-
* Create new card as link in another card
|
|
5672
|
-
*/
|
|
5673
4644
|
createAsLink: GenModels.CreateAsLinkParams;
|
|
5674
|
-
/**
|
|
5675
|
-
* Gets related card creator info
|
|
5676
|
-
*/
|
|
5677
4645
|
relatedCreatorCardInfo: GenModels.RelatedCreatorCardInfo;
|
|
5678
|
-
/**
|
|
5679
|
-
* Layout load options
|
|
5680
|
-
*/
|
|
5681
4646
|
layoutParams: Array<GenModels.LayoutParamModel>;
|
|
5682
|
-
/**
|
|
5683
|
-
* Source layout mode (View, Edit, Create)
|
|
5684
|
-
*
|
|
5685
|
-
* @format datatype.uuid
|
|
5686
|
-
*/
|
|
5687
4647
|
sourceLayoutMode?: string;
|
|
5688
|
-
/**
|
|
5689
|
-
* Some data, provided by extensions for bypassing to lifecycle.
|
|
5690
|
-
*/
|
|
5691
4648
|
customContext?: any;
|
|
5692
4649
|
}
|
|
5693
4650
|
}
|
|
5694
4651
|
export declare namespace GenModels {
|
|
5695
4652
|
interface CreateAsLinkParams {
|
|
5696
|
-
/**
|
|
5697
|
-
* Source link card
|
|
5698
|
-
*
|
|
5699
|
-
* @format datatype.uuid
|
|
5700
|
-
*/
|
|
5701
4653
|
sourceCardId: string;
|
|
5702
|
-
/**
|
|
5703
|
-
* Timestamp of the source card
|
|
5704
|
-
*/
|
|
5705
4654
|
sourceCardTimestamp: number;
|
|
5706
|
-
/**
|
|
5707
|
-
* Link kind
|
|
5708
|
-
*
|
|
5709
|
-
* @format datatype.uuid
|
|
5710
|
-
*/
|
|
5711
4655
|
linkTypeId: string;
|
|
5712
|
-
/**
|
|
5713
|
-
* Where links placed in the card
|
|
5714
|
-
*/
|
|
5715
4656
|
linksBinding: GenModels.SimpleBindingInfo;
|
|
5716
|
-
/**
|
|
5717
|
-
* If link is hard link, then removing source card will also remove destination card
|
|
5718
|
-
*/
|
|
5719
4657
|
saveHardLink: boolean;
|
|
5720
|
-
/**
|
|
5721
|
-
* If link is report
|
|
5722
|
-
*/
|
|
5723
4658
|
isReport: boolean;
|
|
5724
|
-
/**
|
|
5725
|
-
* Edit operation
|
|
5726
|
-
*
|
|
5727
|
-
* @format datatype.uuid
|
|
5728
|
-
*/
|
|
5729
4659
|
editOperation: string;
|
|
5730
4660
|
}
|
|
5731
4661
|
}
|
|
@@ -5751,19 +4681,8 @@ export declare namespace GenModels {
|
|
|
5751
4681
|
}
|
|
5752
4682
|
export declare namespace GenModels {
|
|
5753
4683
|
interface RelatedCreatorCardInfo {
|
|
5754
|
-
/**
|
|
5755
|
-
* Gets or sets initial card id
|
|
5756
|
-
*
|
|
5757
|
-
* @format datatype.uuid
|
|
5758
|
-
*/
|
|
5759
4684
|
initialCardId: string;
|
|
5760
|
-
/**
|
|
5761
|
-
* Gets or sets createRelatedCardModel
|
|
5762
|
-
*/
|
|
5763
4685
|
createRelatedCardModel: GenModels.CreateRelatedCardModel;
|
|
5764
|
-
/**
|
|
5765
|
-
* Gets or sets parameters
|
|
5766
|
-
*/
|
|
5767
4686
|
parameters: Array<GenModels.ParamModel>;
|
|
5768
4687
|
}
|
|
5769
4688
|
}
|
|
@@ -5827,89 +4746,29 @@ export declare namespace GenModels {
|
|
|
5827
4746
|
}
|
|
5828
4747
|
export declare namespace GenModels {
|
|
5829
4748
|
interface LayoutCardViewModel extends GenModels.LayoutViewModel {
|
|
5830
|
-
/**
|
|
5831
|
-
* Gets card info model
|
|
5832
|
-
*/
|
|
5833
4749
|
cardInfo: GenModels.CardInfoModel;
|
|
5834
4750
|
}
|
|
5835
4751
|
}
|
|
5836
4752
|
export declare namespace GenModels {
|
|
5837
4753
|
interface BaseInfoModel {
|
|
5838
|
-
/**
|
|
5839
|
-
* Gets or sets id
|
|
5840
|
-
*
|
|
5841
|
-
* @format datatype.uuid
|
|
5842
|
-
*/
|
|
5843
4754
|
id: string;
|
|
5844
|
-
/**
|
|
5845
|
-
* Gets or sets a timestamp of the entity.
|
|
5846
|
-
*/
|
|
5847
4755
|
timestamp: number;
|
|
5848
|
-
/**
|
|
5849
|
-
* Disables anyone work with an entity whether set true
|
|
5850
|
-
*/
|
|
5851
4756
|
disabled: boolean;
|
|
5852
|
-
/**
|
|
5853
|
-
* Gets or sets reason
|
|
5854
|
-
*/
|
|
5855
4757
|
reason?: GenModels.Reason;
|
|
5856
|
-
/**
|
|
5857
|
-
* Gets or sets creation date
|
|
5858
|
-
*
|
|
5859
|
-
* @format datatype.datetime
|
|
5860
|
-
*/
|
|
5861
4758
|
createDate: string;
|
|
5862
4759
|
}
|
|
5863
4760
|
}
|
|
5864
4761
|
export declare namespace GenModels {
|
|
5865
4762
|
interface CardInfoModel extends GenModels.BaseInfoModel {
|
|
5866
|
-
/**
|
|
5867
|
-
* Gets or sets card type id
|
|
5868
|
-
*
|
|
5869
|
-
* @format datatype.uuid
|
|
5870
|
-
*/
|
|
5871
4763
|
typeId: string;
|
|
5872
|
-
/**
|
|
5873
|
-
* Gets or sets card kind id
|
|
5874
|
-
*
|
|
5875
|
-
* @format datatype.uuid
|
|
5876
|
-
*/
|
|
5877
4764
|
kindId?: string;
|
|
5878
|
-
/**
|
|
5879
|
-
* Gets or sets state identifier
|
|
5880
|
-
*/
|
|
5881
4765
|
state: GenModels.StateModel;
|
|
5882
|
-
/**
|
|
5883
|
-
* Create card as link in another card
|
|
5884
|
-
*/
|
|
5885
4766
|
createAsLink: GenModels.CreateAsLinkParams;
|
|
5886
|
-
/**
|
|
5887
|
-
* Parent card identifier
|
|
5888
|
-
*
|
|
5889
|
-
* @format datatype.uuid
|
|
5890
|
-
*/
|
|
5891
4767
|
parentCardId?: string;
|
|
5892
|
-
/**
|
|
5893
|
-
* Folder, that specified in url parameter
|
|
5894
|
-
*
|
|
5895
|
-
* @format datatype.uuid
|
|
5896
|
-
*/
|
|
5897
4768
|
createInFolder?: string;
|
|
5898
|
-
/**
|
|
5899
|
-
* If true, specified card can't be created in the folder, that specified in url parameter
|
|
5900
|
-
*/
|
|
5901
4769
|
createInCurrentFolderForbidden: boolean;
|
|
5902
|
-
/**
|
|
5903
|
-
* Gets or sets card lock info
|
|
5904
|
-
*/
|
|
5905
4770
|
lockInfo: GenModels.LockInfoViewModel;
|
|
5906
|
-
/**
|
|
5907
|
-
* Gets or sets CreateRelatedCardModel
|
|
5908
|
-
*/
|
|
5909
4771
|
relatedCreatorCardInfo: GenModels.RelatedCreatorCardInfo;
|
|
5910
|
-
/**
|
|
5911
|
-
* Is Card Archived
|
|
5912
|
-
*/
|
|
5913
4772
|
isArchived: boolean;
|
|
5914
4773
|
}
|
|
5915
4774
|
}
|
|
@@ -5935,13 +4794,7 @@ export declare namespace GenModels {
|
|
|
5935
4794
|
}
|
|
5936
4795
|
export declare namespace GenModels {
|
|
5937
4796
|
interface LockInfoViewModel {
|
|
5938
|
-
/**
|
|
5939
|
-
* Gets or sets whether card a locked
|
|
5940
|
-
*/
|
|
5941
4797
|
isLocked: boolean;
|
|
5942
|
-
/**
|
|
5943
|
-
* Gets or sets locking user account name
|
|
5944
|
-
*/
|
|
5945
4798
|
accountName: string;
|
|
5946
4799
|
}
|
|
5947
4800
|
}
|
|
@@ -6031,55 +4884,19 @@ export declare namespace GenModels {
|
|
|
6031
4884
|
}
|
|
6032
4885
|
export declare namespace GenModels {
|
|
6033
4886
|
interface CardLayoutParams {
|
|
6034
|
-
/**
|
|
6035
|
-
* Card id.
|
|
6036
|
-
*
|
|
6037
|
-
* @format datatype.uuid
|
|
6038
|
-
*/
|
|
6039
4887
|
cardId: string;
|
|
6040
|
-
/**
|
|
6041
|
-
* Add card to recent cards folder or not.
|
|
6042
|
-
*/
|
|
6043
4888
|
addToRecent: boolean;
|
|
6044
|
-
/**
|
|
6045
|
-
* Add log message to card history.
|
|
6046
|
-
*/
|
|
6047
4889
|
addCardLogMessage: boolean;
|
|
6048
|
-
/**
|
|
6049
|
-
* Mark card as read by user.
|
|
6050
|
-
*/
|
|
6051
4890
|
markAsRead: boolean;
|
|
6052
|
-
/**
|
|
6053
|
-
* Data passed from caller
|
|
6054
|
-
*/
|
|
6055
4891
|
layoutParams: Array<GenModels.LayoutParamModel>;
|
|
6056
4892
|
}
|
|
6057
4893
|
}
|
|
6058
4894
|
export declare namespace GenModels {
|
|
6059
4895
|
interface LayoutPartParams {
|
|
6060
|
-
/**
|
|
6061
|
-
* Gets or sets card identifier
|
|
6062
|
-
*
|
|
6063
|
-
* @format datatype.uuid
|
|
6064
|
-
*/
|
|
6065
4896
|
cardId: string;
|
|
6066
|
-
/**
|
|
6067
|
-
* Gets or sets layout type
|
|
6068
|
-
*
|
|
6069
|
-
* @format datatype.uuid
|
|
6070
|
-
*/
|
|
6071
4897
|
layoutMode?: string;
|
|
6072
|
-
/**
|
|
6073
|
-
* Get or sets root control name
|
|
6074
|
-
*/
|
|
6075
4898
|
rootControlName: string;
|
|
6076
|
-
/**
|
|
6077
|
-
* Get or set include root
|
|
6078
|
-
*/
|
|
6079
4899
|
includeRootControl: boolean;
|
|
6080
|
-
/**
|
|
6081
|
-
* Data passed from caller
|
|
6082
|
-
*/
|
|
6083
4900
|
contextData: {
|
|
6084
4901
|
key: string;
|
|
6085
4902
|
value: any;
|
|
@@ -6088,99 +4905,28 @@ export declare namespace GenModels {
|
|
|
6088
4905
|
}
|
|
6089
4906
|
export declare namespace GenModels {
|
|
6090
4907
|
interface LayoutPartParamsEx {
|
|
6091
|
-
/**
|
|
6092
|
-
* Gets or sets card identifier
|
|
6093
|
-
*
|
|
6094
|
-
* @format datatype.uuid
|
|
6095
|
-
*/
|
|
6096
4908
|
cardId: string;
|
|
6097
|
-
/**
|
|
6098
|
-
* Gets or sets layout type
|
|
6099
|
-
*
|
|
6100
|
-
* @format datatype.uuid
|
|
6101
|
-
*/
|
|
6102
4909
|
layoutMode?: string;
|
|
6103
|
-
/**
|
|
6104
|
-
* Get or sets root control name
|
|
6105
|
-
*/
|
|
6106
4910
|
rootControlName: string;
|
|
6107
|
-
/**
|
|
6108
|
-
* Get or set include root
|
|
6109
|
-
*/
|
|
6110
4911
|
includeRootControl: boolean;
|
|
6111
|
-
/**
|
|
6112
|
-
* Data passed from caller
|
|
6113
|
-
*/
|
|
6114
4912
|
contextData: Array<GenModels.LayoutParamModel>;
|
|
6115
4913
|
}
|
|
6116
4914
|
}
|
|
6117
4915
|
export declare namespace GenModels {
|
|
6118
4916
|
interface SaveControlDataModel {
|
|
6119
|
-
/**
|
|
6120
|
-
* Gets or sets a card id
|
|
6121
|
-
*
|
|
6122
|
-
* @format datatype.uuid
|
|
6123
|
-
*/
|
|
6124
4917
|
cardId: string;
|
|
6125
|
-
/**
|
|
6126
|
-
* Gets or sets a card timestamp
|
|
6127
|
-
*/
|
|
6128
4918
|
timestamp: number;
|
|
6129
|
-
/**
|
|
6130
|
-
* Gets or sets mode
|
|
6131
|
-
*
|
|
6132
|
-
* @format datatype.uuid
|
|
6133
|
-
*/
|
|
6134
4919
|
layoutMode?: string;
|
|
6135
|
-
/**
|
|
6136
|
-
* Gets or sets layout type
|
|
6137
|
-
*/
|
|
6138
4920
|
layoutAction: GenModels.LayoutAction;
|
|
6139
|
-
/**
|
|
6140
|
-
* Gets or sets control data
|
|
6141
|
-
*/
|
|
6142
4921
|
bindings: Array<GenModels.BindingsWriteRequest>;
|
|
6143
|
-
/**
|
|
6144
|
-
* Gets or sets control data
|
|
6145
|
-
*/
|
|
6146
4922
|
extendedDataSourceInfos: Array<GenModels.ExtendedDataSourceInfoModel>;
|
|
6147
|
-
/**
|
|
6148
|
-
* Create card as link in another card
|
|
6149
|
-
*/
|
|
6150
4923
|
createAsLink: GenModels.CreateAsLinkParams;
|
|
6151
|
-
/**
|
|
6152
|
-
* Folder, where card should be placed
|
|
6153
|
-
*
|
|
6154
|
-
* @format datatype.uuid
|
|
6155
|
-
*/
|
|
6156
4924
|
createInFolder: string;
|
|
6157
|
-
/**
|
|
6158
|
-
* Gets or sets a parent card id (actual for tasks)
|
|
6159
|
-
*
|
|
6160
|
-
* @format datatype.uuid
|
|
6161
|
-
*/
|
|
6162
4925
|
parentCardId?: string;
|
|
6163
|
-
/**
|
|
6164
|
-
* Gets or sets a card type id
|
|
6165
|
-
*
|
|
6166
|
-
* @format datatype.uuid
|
|
6167
|
-
*/
|
|
6168
4926
|
cardTypeId: string;
|
|
6169
|
-
/**
|
|
6170
|
-
* Gets related card creator info
|
|
6171
|
-
*/
|
|
6172
4927
|
relatedCreatorCardInfo: GenModels.RelatedCreatorCardInfo;
|
|
6173
|
-
/**
|
|
6174
|
-
* Layout load options
|
|
6175
|
-
*/
|
|
6176
4928
|
layoutParams: Array<GenModels.LayoutParamModel>;
|
|
6177
|
-
/**
|
|
6178
|
-
* Indicates, that this save completes entity creation and remove all temp data.
|
|
6179
|
-
*/
|
|
6180
4929
|
completeCreation: boolean;
|
|
6181
|
-
/**
|
|
6182
|
-
* Some data, provided by extensions for bypassing to lifecycle.
|
|
6183
|
-
*/
|
|
6184
4930
|
customContext?: any;
|
|
6185
4931
|
}
|
|
6186
4932
|
}
|
|
@@ -6208,35 +4954,11 @@ export declare namespace GenModels {
|
|
|
6208
4954
|
}
|
|
6209
4955
|
export declare namespace GenModels {
|
|
6210
4956
|
interface ChangeStateDataModel {
|
|
6211
|
-
/**
|
|
6212
|
-
* Gets or sets card identifier
|
|
6213
|
-
*
|
|
6214
|
-
* @format datatype.uuid
|
|
6215
|
-
*/
|
|
6216
4957
|
cardId: string;
|
|
6217
|
-
/**
|
|
6218
|
-
* Gets or sets operation identifier
|
|
6219
|
-
*
|
|
6220
|
-
* @format datatype.uuid
|
|
6221
|
-
*/
|
|
6222
4958
|
operationId: string;
|
|
6223
|
-
/**
|
|
6224
|
-
* Gets or sets layout type
|
|
6225
|
-
*
|
|
6226
|
-
* @format datatype.uuid
|
|
6227
|
-
*/
|
|
6228
4959
|
layoutMode?: string;
|
|
6229
|
-
/**
|
|
6230
|
-
* Gets or sets change state comment
|
|
6231
|
-
*/
|
|
6232
4960
|
comment: string;
|
|
6233
|
-
/**
|
|
6234
|
-
* Card timestamp
|
|
6235
|
-
*/
|
|
6236
4961
|
timestamp: number;
|
|
6237
|
-
/**
|
|
6238
|
-
* Operation as field value
|
|
6239
|
-
*/
|
|
6240
4962
|
fieldInfo?: GenModels.OperationFieldInfo;
|
|
6241
4963
|
}
|
|
6242
4964
|
}
|
|
@@ -6270,9 +4992,6 @@ export declare namespace GenModels {
|
|
|
6270
4992
|
}
|
|
6271
4993
|
export declare namespace GenModels {
|
|
6272
4994
|
interface ChangeStateDataModelWithParams extends GenModels.ChangeStateDataModel {
|
|
6273
|
-
/**
|
|
6274
|
-
* Layout loading parameters.
|
|
6275
|
-
*/
|
|
6276
4995
|
layoutParams: Array<GenModels.LayoutParamModel>;
|
|
6277
4996
|
}
|
|
6278
4997
|
}
|
|
@@ -6314,19 +5033,8 @@ export declare namespace GenModels {
|
|
|
6314
5033
|
}
|
|
6315
5034
|
export declare namespace GenModels {
|
|
6316
5035
|
interface DirectoryDesignerSearchQuery {
|
|
6317
|
-
/**
|
|
6318
|
-
* search string
|
|
6319
|
-
*/
|
|
6320
5036
|
searchText: string;
|
|
6321
|
-
/**
|
|
6322
|
-
* Data source
|
|
6323
|
-
*/
|
|
6324
5037
|
searchArea?: GenModels.DirectoryDesignerSearchArea;
|
|
6325
|
-
/**
|
|
6326
|
-
* Department types to search
|
|
6327
|
-
*
|
|
6328
|
-
* @format datatype.uuid
|
|
6329
|
-
*/
|
|
6330
5038
|
rootNodeId?: string;
|
|
6331
5039
|
}
|
|
6332
5040
|
}
|
|
@@ -6344,21 +5052,8 @@ export declare namespace GenModels {
|
|
|
6344
5052
|
}
|
|
6345
5053
|
export declare namespace GenModels {
|
|
6346
5054
|
interface DirectoryDesignerLoadTreeQuery {
|
|
6347
|
-
/**
|
|
6348
|
-
* Department types to search
|
|
6349
|
-
*
|
|
6350
|
-
* @format datatype.uuid
|
|
6351
|
-
*/
|
|
6352
5055
|
rootNodeId?: string;
|
|
6353
|
-
/**
|
|
6354
|
-
* Data source
|
|
6355
|
-
*/
|
|
6356
5056
|
searchArea?: GenModels.DirectoryDesignerSearchArea;
|
|
6357
|
-
/**
|
|
6358
|
-
* current node id
|
|
6359
|
-
*
|
|
6360
|
-
* @format datatype.uuid
|
|
6361
|
-
*/
|
|
6362
5057
|
currentNodeId?: string;
|
|
6363
5058
|
}
|
|
6364
5059
|
}
|
|
@@ -6394,27 +5089,10 @@ export declare namespace GenModels {
|
|
|
6394
5089
|
}
|
|
6395
5090
|
export declare namespace GenModels {
|
|
6396
5091
|
interface DirectoryDesignerSearchTreeQuery {
|
|
6397
|
-
/**
|
|
6398
|
-
* Data source
|
|
6399
|
-
*/
|
|
6400
5092
|
searchArea?: GenModels.DirectoryDesignerSearchArea;
|
|
6401
|
-
/**
|
|
6402
|
-
* Department types to search
|
|
6403
|
-
*
|
|
6404
|
-
* @format datatype.uuid
|
|
6405
|
-
*/
|
|
6406
5093
|
rootNodeId?: string;
|
|
6407
|
-
/**
|
|
6408
|
-
* Search string
|
|
6409
|
-
*/
|
|
6410
5094
|
searchQuery: string;
|
|
6411
|
-
/**
|
|
6412
|
-
* Search result number
|
|
6413
|
-
*/
|
|
6414
5095
|
searchResultNumber: number;
|
|
6415
|
-
/**
|
|
6416
|
-
* Search mode
|
|
6417
|
-
*/
|
|
6418
5096
|
searchMode?: GenModels.DirectoryDesignerSearchMode;
|
|
6419
5097
|
}
|
|
6420
5098
|
}
|
|
@@ -6663,24 +5341,31 @@ export declare namespace GenModels {
|
|
|
6663
5341
|
}
|
|
6664
5342
|
}
|
|
6665
5343
|
export declare namespace GenModels {
|
|
6666
|
-
interface
|
|
5344
|
+
interface ExportSignatureRequest {
|
|
6667
5345
|
/**
|
|
6668
|
-
* Document card
|
|
5346
|
+
* Document card id
|
|
6669
5347
|
*
|
|
6670
5348
|
* @format datatype.uuid
|
|
6671
5349
|
*/
|
|
6672
|
-
|
|
5350
|
+
cardId: string;
|
|
6673
5351
|
/**
|
|
6674
|
-
* Signature
|
|
6675
|
-
*
|
|
6676
|
-
* @format datatype.uuid
|
|
5352
|
+
* Signature export format
|
|
6677
5353
|
*/
|
|
6678
|
-
|
|
5354
|
+
signatureFormat: GenModels.SignatureFormat;
|
|
6679
5355
|
/**
|
|
6680
|
-
*
|
|
6681
|
-
*
|
|
6682
|
-
* @format datatype.uuid
|
|
5356
|
+
* Include export of the powers of attorney specified at time of signing, with their signatures
|
|
6683
5357
|
*/
|
|
5358
|
+
withPowersOfAttorney: boolean;
|
|
5359
|
+
/**
|
|
5360
|
+
* Include export with visualization ESign
|
|
5361
|
+
*/
|
|
5362
|
+
withStamp: boolean;
|
|
5363
|
+
}
|
|
5364
|
+
}
|
|
5365
|
+
export declare namespace GenModels {
|
|
5366
|
+
interface SignatureRequest {
|
|
5367
|
+
documentId: string;
|
|
5368
|
+
signatureId: string;
|
|
6684
5369
|
signaturePartId: string;
|
|
6685
5370
|
}
|
|
6686
5371
|
}
|
|
@@ -6750,25 +5435,9 @@ export declare namespace GenModels {
|
|
|
6750
5435
|
}
|
|
6751
5436
|
export declare namespace GenModels {
|
|
6752
5437
|
interface GetAcknowledgemenListRequest {
|
|
6753
|
-
/**
|
|
6754
|
-
* Card id
|
|
6755
|
-
*
|
|
6756
|
-
* @format datatype.uuid
|
|
6757
|
-
*/
|
|
6758
5438
|
documentId: string;
|
|
6759
|
-
/**
|
|
6760
|
-
* Content of card document transformation
|
|
6761
|
-
*/
|
|
6762
5439
|
transformationAlias: string;
|
|
6763
|
-
/**
|
|
6764
|
-
* List of task kind ids which should be included in acknowledgemen list
|
|
6765
|
-
*/
|
|
6766
5440
|
taskKindIds: Array<string>;
|
|
6767
|
-
/**
|
|
6768
|
-
* Flag indicating the need to include tasks of all levels in acknowledgemen list
|
|
6769
|
-
*
|
|
6770
|
-
* If value is FALSE (default), in acknowledgemen list should include only the tasks of the first level
|
|
6771
|
-
*/
|
|
6772
5441
|
includeTasksAllLevels: boolean;
|
|
6773
5442
|
}
|
|
6774
5443
|
}
|
|
@@ -6788,13 +5457,7 @@ export declare namespace GenModels {
|
|
|
6788
5457
|
}
|
|
6789
5458
|
export declare namespace GenModels {
|
|
6790
5459
|
interface GetFilesQueryOptions {
|
|
6791
|
-
/**
|
|
6792
|
-
* Count of items to skip
|
|
6793
|
-
*/
|
|
6794
5460
|
skipCount: number;
|
|
6795
|
-
/**
|
|
6796
|
-
* Max items count in the result
|
|
6797
|
-
*/
|
|
6798
5461
|
maxCount?: number;
|
|
6799
5462
|
}
|
|
6800
5463
|
}
|
|
@@ -6810,9 +5473,6 @@ export declare namespace GenModels {
|
|
|
6810
5473
|
}
|
|
6811
5474
|
export declare namespace GenModels {
|
|
6812
5475
|
interface FileListVersionsDataModel {
|
|
6813
|
-
/**
|
|
6814
|
-
* Updated list of the files versions in the card
|
|
6815
|
-
*/
|
|
6816
5476
|
versions: Array<GenModels.VersionedFileModel>;
|
|
6817
5477
|
}
|
|
6818
5478
|
}
|
|
@@ -6898,69 +5558,20 @@ export declare namespace GenModels {
|
|
|
6898
5558
|
}
|
|
6899
5559
|
export declare namespace GenModels {
|
|
6900
5560
|
interface VersionedFileCommentCreateModel {
|
|
6901
|
-
/**
|
|
6902
|
-
* Gets or sets comment identifier
|
|
6903
|
-
*
|
|
6904
|
-
* @format datatype.uuid
|
|
6905
|
-
*/
|
|
6906
5561
|
commentId?: string;
|
|
6907
|
-
/**
|
|
6908
|
-
* Gets or sets container card identifier
|
|
6909
|
-
*
|
|
6910
|
-
* @format datatype.uuid
|
|
6911
|
-
*/
|
|
6912
5562
|
cardId: string;
|
|
6913
|
-
/**
|
|
6914
|
-
* Gets or sets timestamp
|
|
6915
|
-
*/
|
|
6916
5563
|
timestamp: number;
|
|
6917
|
-
/**
|
|
6918
|
-
* Gets or sets comment
|
|
6919
|
-
*/
|
|
6920
5564
|
comment: string;
|
|
6921
|
-
/**
|
|
6922
|
-
* Gets or sets file card identifier
|
|
6923
|
-
*
|
|
6924
|
-
* @format datatype.uuid
|
|
6925
|
-
*/
|
|
6926
5565
|
fileCardId: string;
|
|
6927
|
-
/**
|
|
6928
|
-
* Gets or sets version identifier
|
|
6929
|
-
*
|
|
6930
|
-
* @format datatype.uuid
|
|
6931
|
-
*/
|
|
6932
5566
|
versionId: string;
|
|
6933
5567
|
}
|
|
6934
5568
|
}
|
|
6935
5569
|
export declare namespace GenModels {
|
|
6936
5570
|
interface VersionedFileCommentDeleteModel {
|
|
6937
|
-
/**
|
|
6938
|
-
* Gets or sets comment identifier
|
|
6939
|
-
*
|
|
6940
|
-
* @format datatype.uuid
|
|
6941
|
-
*/
|
|
6942
5571
|
commentId: string;
|
|
6943
|
-
/**
|
|
6944
|
-
* Gets or sets container card identifier
|
|
6945
|
-
*
|
|
6946
|
-
* @format datatype.uuid
|
|
6947
|
-
*/
|
|
6948
5572
|
cardId: string;
|
|
6949
|
-
/**
|
|
6950
|
-
* Gets or sets timestamp
|
|
6951
|
-
*/
|
|
6952
5573
|
timestamp: number;
|
|
6953
|
-
/**
|
|
6954
|
-
* Gets or sets file card identifier
|
|
6955
|
-
*
|
|
6956
|
-
* @format datatype.uuid
|
|
6957
|
-
*/
|
|
6958
5574
|
fileCardId: string;
|
|
6959
|
-
/**
|
|
6960
|
-
* Gets or sets version identifier
|
|
6961
|
-
*
|
|
6962
|
-
* @format datatype.uuid
|
|
6963
|
-
*/
|
|
6964
5575
|
versionId: string;
|
|
6965
5576
|
}
|
|
6966
5577
|
}
|
|
@@ -7020,57 +5631,23 @@ export declare namespace GenModels {
|
|
|
7020
5631
|
}
|
|
7021
5632
|
export declare namespace GenModels {
|
|
7022
5633
|
interface FileQuotes {
|
|
7023
|
-
/**
|
|
7024
|
-
* File Id
|
|
7025
|
-
*
|
|
7026
|
-
* @format datatype.uuid
|
|
7027
|
-
*/
|
|
7028
5634
|
fileId: string;
|
|
7029
|
-
/**
|
|
7030
|
-
* Owner Card Id
|
|
7031
|
-
*
|
|
7032
|
-
* @format datatype.uuid
|
|
7033
|
-
*/
|
|
7034
5635
|
ownerCardId?: string;
|
|
7035
|
-
/**
|
|
7036
|
-
* File name
|
|
7037
|
-
*/
|
|
7038
5636
|
fileName: string;
|
|
7039
|
-
/**
|
|
7040
|
-
* File extension
|
|
7041
|
-
*/
|
|
7042
5637
|
fileExtension: string;
|
|
7043
|
-
/**
|
|
7044
|
-
* WebDav link
|
|
7045
|
-
*/
|
|
7046
5638
|
link: string;
|
|
7047
|
-
/**
|
|
7048
|
-
* Citations
|
|
7049
|
-
*/
|
|
7050
5639
|
quotes: Array<GenModels.Quote>;
|
|
7051
|
-
/**
|
|
7052
|
-
* Has more
|
|
7053
|
-
*/
|
|
7054
5640
|
hasMore: boolean;
|
|
7055
5641
|
}
|
|
7056
5642
|
}
|
|
7057
5643
|
export declare namespace GenModels {
|
|
7058
5644
|
interface Quote {
|
|
7059
|
-
/**
|
|
7060
|
-
* Quotes
|
|
7061
|
-
*/
|
|
7062
5645
|
parts: Array<GenModels.QuotePart>;
|
|
7063
5646
|
}
|
|
7064
5647
|
}
|
|
7065
5648
|
export declare namespace GenModels {
|
|
7066
5649
|
interface QuotePart {
|
|
7067
|
-
/**
|
|
7068
|
-
* Quote's text
|
|
7069
|
-
*/
|
|
7070
5650
|
text: string;
|
|
7071
|
-
/**
|
|
7072
|
-
* Marked
|
|
7073
|
-
*/
|
|
7074
5651
|
isMarked: boolean;
|
|
7075
5652
|
}
|
|
7076
5653
|
}
|
|
@@ -7100,19 +5677,8 @@ export declare namespace GenModels {
|
|
|
7100
5677
|
}
|
|
7101
5678
|
export declare namespace GenModels {
|
|
7102
5679
|
interface CardQuotes {
|
|
7103
|
-
/**
|
|
7104
|
-
* Card Id
|
|
7105
|
-
*
|
|
7106
|
-
* @format datatype.uuid
|
|
7107
|
-
*/
|
|
7108
5680
|
cardId?: string;
|
|
7109
|
-
/**
|
|
7110
|
-
* Has more
|
|
7111
|
-
*/
|
|
7112
5681
|
hasMore: boolean;
|
|
7113
|
-
/**
|
|
7114
|
-
* Files quotes
|
|
7115
|
-
*/
|
|
7116
5682
|
files: Array<GenModels.FileQuotes>;
|
|
7117
5683
|
}
|
|
7118
5684
|
}
|
|
@@ -7236,13 +5802,7 @@ export declare namespace GenModels {
|
|
|
7236
5802
|
}
|
|
7237
5803
|
export declare namespace GenModels {
|
|
7238
5804
|
interface CheckResult {
|
|
7239
|
-
/**
|
|
7240
|
-
* Was check passed or not
|
|
7241
|
-
*/
|
|
7242
5805
|
passed: boolean;
|
|
7243
|
-
/**
|
|
7244
|
-
* If Passed is false, this property should contain reason, why check is failed.
|
|
7245
|
-
*/
|
|
7246
5806
|
failReason: string;
|
|
7247
5807
|
}
|
|
7248
5808
|
}
|
|
@@ -7262,29 +5822,11 @@ export declare namespace GenModels {
|
|
|
7262
5822
|
}
|
|
7263
5823
|
export declare namespace GenModels {
|
|
7264
5824
|
interface FolderInfoModel {
|
|
7265
|
-
/**
|
|
7266
|
-
* Gets or sets folder name
|
|
7267
|
-
*/
|
|
7268
5825
|
name: string;
|
|
7269
|
-
/**
|
|
7270
|
-
* Gets or sets folder type identifier
|
|
7271
|
-
*/
|
|
7272
5826
|
typeInfo: GenModels.FolderTypeInfo;
|
|
7273
|
-
/**
|
|
7274
|
-
* Gets or sets folder view identifier
|
|
7275
|
-
*/
|
|
7276
5827
|
viewInfo: GenModels.FolderViewInfo;
|
|
7277
|
-
/**
|
|
7278
|
-
* Gets or sets do need highlighting unread cards
|
|
7279
|
-
*/
|
|
7280
5828
|
highlightingUnread?: boolean;
|
|
7281
|
-
/**
|
|
7282
|
-
* Gets or sets can edit folder
|
|
7283
|
-
*/
|
|
7284
5829
|
canEditFolder?: boolean;
|
|
7285
|
-
/**
|
|
7286
|
-
* Gets or sets can create subfolder
|
|
7287
|
-
*/
|
|
7288
5830
|
canCreateSubfolder?: boolean;
|
|
7289
5831
|
}
|
|
7290
5832
|
}
|
|
@@ -7304,25 +5846,9 @@ export declare namespace GenModels {
|
|
|
7304
5846
|
}
|
|
7305
5847
|
export declare namespace GenModels {
|
|
7306
5848
|
interface FolderDataModel {
|
|
7307
|
-
/**
|
|
7308
|
-
* Gets or sets folder name
|
|
7309
|
-
*/
|
|
7310
5849
|
name: string;
|
|
7311
|
-
/**
|
|
7312
|
-
* Gets or sets folder type identifier
|
|
7313
|
-
*
|
|
7314
|
-
* @format datatype.uuid
|
|
7315
|
-
*/
|
|
7316
5850
|
typeId?: string;
|
|
7317
|
-
/**
|
|
7318
|
-
* Gets or sets folder view identifier
|
|
7319
|
-
*
|
|
7320
|
-
* @format datatype.uuid
|
|
7321
|
-
*/
|
|
7322
5851
|
viewId?: string;
|
|
7323
|
-
/**
|
|
7324
|
-
* Gets or sets
|
|
7325
|
-
*/
|
|
7326
5852
|
highlightingUnread?: boolean;
|
|
7327
5853
|
}
|
|
7328
5854
|
}
|
|
@@ -7440,195 +5966,57 @@ export declare namespace GenModels {
|
|
|
7440
5966
|
}
|
|
7441
5967
|
export declare namespace GenModels {
|
|
7442
5968
|
interface AllowedCardKind {
|
|
7443
|
-
/**
|
|
7444
|
-
* Kind id of the allowed card
|
|
7445
|
-
*
|
|
7446
|
-
* @format datatype.uuid
|
|
7447
|
-
*/
|
|
7448
5969
|
kindId: string;
|
|
7449
|
-
/**
|
|
7450
|
-
* Card type id of the allowed card
|
|
7451
|
-
*
|
|
7452
|
-
* @format datatype.uuid
|
|
7453
|
-
*/
|
|
7454
5970
|
cardTypeId: string;
|
|
7455
|
-
/**
|
|
7456
|
-
* Gets or sets value whether kind selected with descendants
|
|
7457
|
-
*/
|
|
7458
5971
|
withDescendants: boolean;
|
|
7459
5972
|
}
|
|
7460
5973
|
}
|
|
7461
5974
|
export declare namespace GenModels {
|
|
7462
5975
|
interface LayoutKindModel {
|
|
7463
|
-
/**
|
|
7464
|
-
* Card type id
|
|
7465
|
-
*
|
|
7466
|
-
* @format datatype.uuid
|
|
7467
|
-
*/
|
|
7468
5976
|
cardTypeId: string;
|
|
7469
|
-
/**
|
|
7470
|
-
* Kind id of the allowed card
|
|
7471
|
-
*
|
|
7472
|
-
* @format datatype.uuid
|
|
7473
|
-
*/
|
|
7474
5977
|
kindId: string;
|
|
7475
|
-
/**
|
|
7476
|
-
* Gets or sets kind name
|
|
7477
|
-
*/
|
|
7478
5978
|
name: string;
|
|
7479
|
-
/**
|
|
7480
|
-
* Gets or set child kinds
|
|
7481
|
-
*/
|
|
7482
5979
|
kinds: Array<GenModels.LayoutKindModel>;
|
|
7483
|
-
/**
|
|
7484
|
-
* Card creation is not available
|
|
7485
|
-
*/
|
|
7486
5980
|
notAvailable: boolean;
|
|
7487
|
-
/**
|
|
7488
|
-
* Whether custom layout available for this card kind or not
|
|
7489
|
-
*/
|
|
7490
5981
|
layoutAvailable: boolean;
|
|
7491
5982
|
}
|
|
7492
5983
|
}
|
|
7493
5984
|
export declare namespace GenModels {
|
|
7494
5985
|
interface LayoutLinkCreateParams {
|
|
7495
|
-
/**
|
|
7496
|
-
* Card, where link creation was initiated
|
|
7497
|
-
*
|
|
7498
|
-
* @format datatype.uuid
|
|
7499
|
-
*/
|
|
7500
5986
|
sourceCardId: string;
|
|
7501
|
-
/**
|
|
7502
|
-
* Timestamp of the source card
|
|
7503
|
-
*/
|
|
7504
5987
|
sourceCardTimestamp: number;
|
|
7505
|
-
/**
|
|
7506
|
-
* Link kind
|
|
7507
|
-
*
|
|
7508
|
-
* @format datatype.uuid
|
|
7509
|
-
*/
|
|
7510
5988
|
linkTypeId: string;
|
|
7511
|
-
/**
|
|
7512
|
-
* Link destination card
|
|
7513
|
-
*
|
|
7514
|
-
* @format datatype.uuid
|
|
7515
|
-
*/
|
|
7516
5989
|
destinationCardId: string;
|
|
7517
|
-
/**
|
|
7518
|
-
* Where links placed in the card
|
|
7519
|
-
*/
|
|
7520
5990
|
linksBinding: GenModels.SimpleBindingInfo;
|
|
7521
|
-
/**
|
|
7522
|
-
* If link is hard link, then removing source card will also remove destination card
|
|
7523
|
-
*/
|
|
7524
5991
|
saveHardLink: boolean;
|
|
7525
|
-
/**
|
|
7526
|
-
* If link is report
|
|
7527
|
-
*/
|
|
7528
5992
|
isReport: boolean;
|
|
7529
|
-
/**
|
|
7530
|
-
* If link is attached file
|
|
7531
|
-
*/
|
|
7532
5993
|
isFile: boolean;
|
|
7533
|
-
/**
|
|
7534
|
-
* Edit operation
|
|
7535
|
-
*
|
|
7536
|
-
* @format datatype.uuid
|
|
7537
|
-
*/
|
|
7538
5994
|
editOperation: string;
|
|
7539
|
-
/**
|
|
7540
|
-
* Do not add link if similar link already exists.
|
|
7541
|
-
*/
|
|
7542
5995
|
preventDuplicates: boolean;
|
|
7543
5996
|
}
|
|
7544
5997
|
}
|
|
7545
5998
|
export declare namespace GenModels {
|
|
7546
5999
|
interface AddUrlLinkParams {
|
|
7547
|
-
/**
|
|
7548
|
-
* Card, that contains the link
|
|
7549
|
-
*
|
|
7550
|
-
* @format datatype.uuid
|
|
7551
|
-
*/
|
|
7552
6000
|
cardId: string;
|
|
7553
|
-
/**
|
|
7554
|
-
* Allowed link types
|
|
7555
|
-
*/
|
|
7556
6001
|
allowedLinkTypes: Array<string>;
|
|
7557
|
-
/**
|
|
7558
|
-
* Binding info for the links in the card
|
|
7559
|
-
*/
|
|
7560
6002
|
bindingInfo: GenModels.SimpleBindingInfo;
|
|
7561
|
-
/**
|
|
7562
|
-
* Url
|
|
7563
|
-
*/
|
|
7564
6003
|
url: string;
|
|
7565
|
-
/**
|
|
7566
|
-
* link type id
|
|
7567
|
-
*
|
|
7568
|
-
* @format datatype.uuid
|
|
7569
|
-
*/
|
|
7570
6004
|
linkTypeId?: string;
|
|
7571
|
-
/**
|
|
7572
|
-
* Show files for following links types
|
|
7573
|
-
*/
|
|
7574
6005
|
showFilesForLinksTypesIds: Array<string>;
|
|
7575
|
-
/**
|
|
7576
|
-
* Kind id for file cards
|
|
7577
|
-
*
|
|
7578
|
-
* @format datatype.uuid
|
|
7579
|
-
*/
|
|
7580
6006
|
fileKindId?: string;
|
|
7581
|
-
/**
|
|
7582
|
-
* Known card timestamp
|
|
7583
|
-
*/
|
|
7584
6007
|
timestamp: number;
|
|
7585
|
-
/**
|
|
7586
|
-
* Edit operation id
|
|
7587
|
-
*
|
|
7588
|
-
* @format datatype.uuid
|
|
7589
|
-
*/
|
|
7590
6008
|
operationId?: string;
|
|
7591
6009
|
}
|
|
7592
6010
|
}
|
|
7593
6011
|
export declare namespace GenModels {
|
|
7594
6012
|
interface LayoutSetLinkDescriptionParams {
|
|
7595
|
-
/**
|
|
7596
|
-
* Card, that contains the link
|
|
7597
|
-
*
|
|
7598
|
-
* @format datatype.uuid
|
|
7599
|
-
*/
|
|
7600
6013
|
cardId: string;
|
|
7601
|
-
/**
|
|
7602
|
-
* Allowed link types
|
|
7603
|
-
*/
|
|
7604
6014
|
allowedLinkTypes: Array<string>;
|
|
7605
|
-
/**
|
|
7606
|
-
* Binding info for the links in the card
|
|
7607
|
-
*/
|
|
7608
6015
|
bindingInfo: GenModels.SimpleBindingInfo;
|
|
7609
|
-
/**
|
|
7610
|
-
* Link id to update
|
|
7611
|
-
*
|
|
7612
|
-
* @format datatype.uuid
|
|
7613
|
-
*/
|
|
7614
6016
|
linkId: string;
|
|
7615
|
-
/**
|
|
7616
|
-
* Kind id for file cards
|
|
7617
|
-
*
|
|
7618
|
-
* @format datatype.uuid
|
|
7619
|
-
*/
|
|
7620
6017
|
fileKindId?: string;
|
|
7621
|
-
/**
|
|
7622
|
-
* Show files for following links types
|
|
7623
|
-
*/
|
|
7624
6018
|
showFilesForLinksTypesIds: Array<string>;
|
|
7625
|
-
/**
|
|
7626
|
-
* Description to set
|
|
7627
|
-
*/
|
|
7628
6019
|
newDescription: string;
|
|
7629
|
-
/**
|
|
7630
|
-
* Known card timestamp
|
|
7631
|
-
*/
|
|
7632
6020
|
timestamp: number;
|
|
7633
6021
|
}
|
|
7634
6022
|
}
|
|
@@ -7670,138 +6058,41 @@ export declare namespace GenModels {
|
|
|
7670
6058
|
}
|
|
7671
6059
|
export declare namespace GenModels {
|
|
7672
6060
|
interface LinksDataModel {
|
|
7673
|
-
/**
|
|
7674
|
-
* Updated list of the main files in the card
|
|
7675
|
-
*/
|
|
7676
6061
|
links: Array<GenModels.LayoutLinkModel>;
|
|
7677
6062
|
bindingInfo: GenModels.SimpleBindingInfo;
|
|
7678
|
-
/**
|
|
7679
|
-
* Allowed card types, that can be added as links (for add existing card).
|
|
7680
|
-
*/
|
|
7681
6063
|
allowedLinkCardTypes: Array<string>;
|
|
7682
|
-
/**
|
|
7683
|
-
* Allowed link types
|
|
7684
|
-
*/
|
|
7685
6064
|
allowedLinkTypes: Array<string>;
|
|
7686
|
-
/**
|
|
7687
|
-
* Do model contains links or not
|
|
7688
|
-
*/
|
|
7689
6065
|
linksLoaded: boolean;
|
|
7690
|
-
/**
|
|
7691
|
-
* Total count of the links, including not loaded
|
|
7692
|
-
*/
|
|
7693
6066
|
totalLinksCount: number;
|
|
7694
|
-
/**
|
|
7695
|
-
* Gets or sets links description column view mode
|
|
7696
|
-
*/
|
|
7697
6067
|
descriptionColumnViewMode: GenModels.LinksDescriptionColumnViewMode;
|
|
7698
|
-
/**
|
|
7699
|
-
* Gets or sets description column method key
|
|
7700
|
-
*/
|
|
7701
6068
|
descriptionColumnMethodKey: string;
|
|
7702
6069
|
}
|
|
7703
6070
|
}
|
|
7704
6071
|
export declare namespace GenModels {
|
|
7705
6072
|
interface LayoutLinkModel {
|
|
7706
|
-
/**
|
|
7707
|
-
* Gets or sets link id
|
|
7708
|
-
*
|
|
7709
|
-
* @format datatype.uuid
|
|
7710
|
-
*/
|
|
7711
6073
|
linkId: string;
|
|
7712
|
-
/**
|
|
7713
|
-
* Gets or sets display link name
|
|
7714
|
-
*/
|
|
7715
6074
|
displayName: string;
|
|
7716
|
-
/**
|
|
7717
|
-
* Gets or sets link type identifier
|
|
7718
|
-
*
|
|
7719
|
-
* @format datatype.uuid
|
|
7720
|
-
*/
|
|
7721
6075
|
linkTypeId: string;
|
|
7722
|
-
/**
|
|
7723
|
-
* Gets or sets link type name
|
|
7724
|
-
*/
|
|
7725
6076
|
linkTypeName: string;
|
|
7726
|
-
/**
|
|
7727
|
-
* link kind
|
|
7728
|
-
*/
|
|
7729
6077
|
kind: GenModels.LinkKind;
|
|
7730
|
-
/**
|
|
7731
|
-
* Linked card Type is document
|
|
7732
|
-
*/
|
|
7733
6078
|
isDocument: boolean;
|
|
7734
|
-
/**
|
|
7735
|
-
* Linked card id
|
|
7736
|
-
*
|
|
7737
|
-
* @format datatype.uuid
|
|
7738
|
-
*/
|
|
7739
6079
|
cardId: string;
|
|
7740
|
-
/**
|
|
7741
|
-
* Card type identifier
|
|
7742
|
-
*
|
|
7743
|
-
* @format datatype.uuid
|
|
7744
|
-
*/
|
|
7745
6080
|
cardTypeId: string;
|
|
7746
|
-
/**
|
|
7747
|
-
* Card kind identifier
|
|
7748
|
-
*
|
|
7749
|
-
* @format datatype.uuid
|
|
7750
|
-
*/
|
|
7751
6081
|
cardKindId: string;
|
|
7752
|
-
/**
|
|
7753
|
-
* File card id (if file card)
|
|
7754
|
-
*
|
|
7755
|
-
* @format datatype.uuid
|
|
7756
|
-
*/
|
|
7757
6082
|
fileCardId?: string;
|
|
7758
|
-
/**
|
|
7759
|
-
* File card version id (if file card)
|
|
7760
|
-
*
|
|
7761
|
-
* @format datatype.uuid
|
|
7762
|
-
*/
|
|
7763
6083
|
fileVersionId?: string;
|
|
7764
|
-
/**
|
|
7765
|
-
* Gets or sets Link creation date
|
|
7766
|
-
*
|
|
7767
|
-
* @format datatype.datetime
|
|
7768
|
-
*/
|
|
7769
6084
|
creationDate?: string;
|
|
7770
|
-
/**
|
|
7771
|
-
* Display name of the author of the link.
|
|
7772
|
-
*/
|
|
7773
6085
|
authorDisplayName: string;
|
|
7774
|
-
/**
|
|
7775
|
-
* Link description
|
|
7776
|
-
*/
|
|
7777
6086
|
description: string;
|
|
7778
|
-
/**
|
|
7779
|
-
* Url
|
|
7780
|
-
*/
|
|
7781
6087
|
url: string;
|
|
7782
|
-
/**
|
|
7783
|
-
* Gets or sets can delete link
|
|
7784
|
-
*/
|
|
7785
6088
|
canDelete: boolean;
|
|
7786
|
-
/**
|
|
7787
|
-
* Gets link description model
|
|
7788
|
-
*/
|
|
7789
6089
|
linkDescription: GenModels.LayoutLinkDescriptionModel;
|
|
7790
6090
|
}
|
|
7791
6091
|
}
|
|
7792
6092
|
export declare namespace GenModels {
|
|
7793
6093
|
interface LayoutLinkDescriptionModel {
|
|
7794
|
-
/**
|
|
7795
|
-
* Gets or sets link description mode
|
|
7796
|
-
*/
|
|
7797
6094
|
linkDescriptionMode: GenModels.LinkDescriptionMode;
|
|
7798
|
-
/**
|
|
7799
|
-
* Gets or sets text
|
|
7800
|
-
*/
|
|
7801
6095
|
text: string;
|
|
7802
|
-
/**
|
|
7803
|
-
* Gets or sets layout
|
|
7804
|
-
*/
|
|
7805
6096
|
layout: GenModels.LayoutCardViewModel;
|
|
7806
6097
|
}
|
|
7807
6098
|
}
|
|
@@ -7829,112 +6120,35 @@ export declare namespace GenModels {
|
|
|
7829
6120
|
}
|
|
7830
6121
|
export declare namespace GenModels {
|
|
7831
6122
|
interface LayoutRowCreateParams {
|
|
7832
|
-
/**
|
|
7833
|
-
* Card identifier
|
|
7834
|
-
*
|
|
7835
|
-
* @format datatype.uuid
|
|
7836
|
-
*/
|
|
7837
6123
|
cardId: string;
|
|
7838
|
-
/**
|
|
7839
|
-
* Section identifier
|
|
7840
|
-
*
|
|
7841
|
-
* @format datatype.uuid
|
|
7842
|
-
*/
|
|
7843
6124
|
sectionId: string;
|
|
7844
|
-
/**
|
|
7845
|
-
* Gets or sets layout mode
|
|
7846
|
-
*
|
|
7847
|
-
* @format datatype.uuid
|
|
7848
|
-
*/
|
|
7849
6125
|
layoutMode?: string;
|
|
7850
|
-
/**
|
|
7851
|
-
* Gets or sets parent row id
|
|
7852
|
-
*
|
|
7853
|
-
* @format datatype.uuid
|
|
7854
|
-
*/
|
|
7855
6126
|
parentRowId?: string;
|
|
7856
|
-
/**
|
|
7857
|
-
* Gets or sets tree parent row id
|
|
7858
|
-
*
|
|
7859
|
-
* @format datatype.uuid
|
|
7860
|
-
*/
|
|
7861
6127
|
parentTreeRowId?: string;
|
|
7862
6128
|
layoutParams: Array<GenModels.LayoutParamModel>;
|
|
7863
|
-
/**
|
|
7864
|
-
* Some data, provided by extensions for bypassing to lifecycle.
|
|
7865
|
-
*/
|
|
7866
6129
|
customContext?: any;
|
|
7867
6130
|
}
|
|
7868
6131
|
}
|
|
7869
6132
|
export declare namespace GenModels {
|
|
7870
6133
|
interface LayoutRowViewModel extends GenModels.LayoutViewModel {
|
|
7871
|
-
/**
|
|
7872
|
-
* Gets card row model
|
|
7873
|
-
*/
|
|
7874
6134
|
rowInfo: GenModels.RowInfoModel;
|
|
7875
6135
|
}
|
|
7876
6136
|
}
|
|
7877
6137
|
export declare namespace GenModels {
|
|
7878
6138
|
interface RowInfoModel extends GenModels.BaseInfoModel {
|
|
7879
|
-
/**
|
|
7880
|
-
* Gets or sets section id
|
|
7881
|
-
*
|
|
7882
|
-
* @format datatype.uuid
|
|
7883
|
-
*/
|
|
7884
6139
|
sectionId: string;
|
|
7885
|
-
/**
|
|
7886
|
-
* Parent row identifier
|
|
7887
|
-
*
|
|
7888
|
-
* @format datatype.uuid
|
|
7889
|
-
*/
|
|
7890
6140
|
parentRowId?: string;
|
|
7891
|
-
/**
|
|
7892
|
-
* Parent tree row identifier
|
|
7893
|
-
*
|
|
7894
|
-
* @format datatype.uuid
|
|
7895
|
-
*/
|
|
7896
6141
|
parentTreeRowId?: string;
|
|
7897
|
-
/**
|
|
7898
|
-
* Card identifier
|
|
7899
|
-
*
|
|
7900
|
-
* @format datatype.uuid
|
|
7901
|
-
*/
|
|
7902
6142
|
cardId: string;
|
|
7903
|
-
/**
|
|
7904
|
-
* Gets or sets card lock info
|
|
7905
|
-
*/
|
|
7906
6143
|
lockInfo: GenModels.LockInfoViewModel;
|
|
7907
6144
|
}
|
|
7908
6145
|
}
|
|
7909
6146
|
export declare namespace GenModels {
|
|
7910
6147
|
interface RowLayoutParams {
|
|
7911
|
-
/**
|
|
7912
|
-
* Gets or sets card identifier
|
|
7913
|
-
*
|
|
7914
|
-
* @format datatype.uuid
|
|
7915
|
-
*/
|
|
7916
6148
|
cardId: string;
|
|
7917
|
-
/**
|
|
7918
|
-
* Gets or sets section identifier
|
|
7919
|
-
*
|
|
7920
|
-
* @format datatype.uuid
|
|
7921
|
-
*/
|
|
7922
6149
|
sectionId: string;
|
|
7923
|
-
/**
|
|
7924
|
-
* Gets or sets row identifier
|
|
7925
|
-
*
|
|
7926
|
-
* @format datatype.uuid
|
|
7927
|
-
*/
|
|
7928
6150
|
rowId: string;
|
|
7929
|
-
/**
|
|
7930
|
-
* Gets or sets layout type
|
|
7931
|
-
*
|
|
7932
|
-
* @format datatype.uuid
|
|
7933
|
-
*/
|
|
7934
6151
|
layoutMode?: string;
|
|
7935
|
-
/**
|
|
7936
|
-
* Data passed from caller
|
|
7937
|
-
*/
|
|
7938
6152
|
layoutParams: Array<GenModels.LayoutParamModel>;
|
|
7939
6153
|
}
|
|
7940
6154
|
}
|
|
@@ -7975,93 +6189,31 @@ export declare namespace GenModels {
|
|
|
7975
6189
|
}
|
|
7976
6190
|
export declare namespace GenModels {
|
|
7977
6191
|
interface RowLayoutPartParams extends GenModels.RowLayoutParams {
|
|
7978
|
-
/**
|
|
7979
|
-
* Get or sets root control name
|
|
7980
|
-
*/
|
|
7981
6192
|
rootControlName: string;
|
|
7982
|
-
/**
|
|
7983
|
-
* Get or set include root
|
|
7984
|
-
*/
|
|
7985
6193
|
includeRootControl: boolean;
|
|
7986
6194
|
}
|
|
7987
6195
|
}
|
|
7988
6196
|
export declare namespace GenModels {
|
|
7989
6197
|
interface SaveRowControlDataModel {
|
|
7990
|
-
/**
|
|
7991
|
-
* Gets or sets a card id
|
|
7992
|
-
*
|
|
7993
|
-
* @format datatype.uuid
|
|
7994
|
-
*/
|
|
7995
6198
|
cardId: string;
|
|
7996
|
-
/**
|
|
7997
|
-
* Gets or sets a section id
|
|
7998
|
-
*
|
|
7999
|
-
* @format datatype.uuid
|
|
8000
|
-
*/
|
|
8001
6199
|
sectionId: string;
|
|
8002
|
-
/**
|
|
8003
|
-
* Gets or sets a row id
|
|
8004
|
-
*
|
|
8005
|
-
* @format datatype.uuid
|
|
8006
|
-
*/
|
|
8007
6200
|
rowId: string;
|
|
8008
|
-
/**
|
|
8009
|
-
* Gets or sets a row timestamp
|
|
8010
|
-
*/
|
|
8011
6201
|
timestamp: number;
|
|
8012
|
-
/**
|
|
8013
|
-
* Gets or sets mode
|
|
8014
|
-
*
|
|
8015
|
-
* @format datatype.uuid
|
|
8016
|
-
*/
|
|
8017
6202
|
layoutMode?: string;
|
|
8018
|
-
/**
|
|
8019
|
-
* Gets or sets layout type
|
|
8020
|
-
*/
|
|
8021
6203
|
layoutAction: GenModels.LayoutAction;
|
|
8022
|
-
/**
|
|
8023
|
-
* Gets or sets control data
|
|
8024
|
-
*/
|
|
8025
6204
|
bindings: Array<GenModels.BindingsWriteRequest>;
|
|
8026
|
-
/**
|
|
8027
|
-
* Layout load option
|
|
8028
|
-
*/
|
|
8029
6205
|
layoutParams: Array<GenModels.LayoutParamModel>;
|
|
8030
|
-
/**
|
|
8031
|
-
* Gets or sets control data
|
|
8032
|
-
*/
|
|
8033
6206
|
extendedDataSourceInfos: Array<GenModels.ExtendedDataSourceInfoModel>;
|
|
8034
|
-
/**
|
|
8035
|
-
* Indicates, that this save completes entity creation and remove all temp data.
|
|
8036
|
-
*/
|
|
8037
6207
|
completeCreation: boolean;
|
|
8038
|
-
/**
|
|
8039
|
-
* Some data, provided by extensions for bypassing to lifecycle.
|
|
8040
|
-
*/
|
|
8041
6208
|
customContext?: any;
|
|
8042
6209
|
}
|
|
8043
6210
|
}
|
|
8044
6211
|
export declare namespace GenModels {
|
|
8045
6212
|
interface DepartmentSearchQuery {
|
|
8046
|
-
/**
|
|
8047
|
-
* search string
|
|
8048
|
-
*/
|
|
8049
6213
|
searchText: string;
|
|
8050
|
-
/**
|
|
8051
|
-
* Data source
|
|
8052
|
-
*/
|
|
8053
6214
|
source: GenModels.DepartmentDataSource;
|
|
8054
|
-
/**
|
|
8055
|
-
* Department types to search
|
|
8056
|
-
*/
|
|
8057
6215
|
itemTypes: GenModels.SearchDepartmentType;
|
|
8058
|
-
/**
|
|
8059
|
-
* Count of items to skip (paginator logic)
|
|
8060
|
-
*/
|
|
8061
6216
|
skipCount?: number;
|
|
8062
|
-
/**
|
|
8063
|
-
* Max items count in the result (paginator logic)
|
|
8064
|
-
*/
|
|
8065
6217
|
maxCount?: number;
|
|
8066
6218
|
}
|
|
8067
6219
|
}
|
|
@@ -8079,23 +6231,9 @@ export declare namespace GenModels {
|
|
|
8079
6231
|
}
|
|
8080
6232
|
export declare namespace GenModels {
|
|
8081
6233
|
interface DepartmentLoadTreeQuery {
|
|
8082
|
-
/**
|
|
8083
|
-
* Parent department identifier
|
|
8084
|
-
*
|
|
8085
|
-
* @format datatype.uuid
|
|
8086
|
-
*/
|
|
8087
6234
|
parentNodeId?: string;
|
|
8088
|
-
/**
|
|
8089
|
-
* depth of search
|
|
8090
|
-
*/
|
|
8091
6235
|
treeLevelDown: number;
|
|
8092
|
-
/**
|
|
8093
|
-
* Data source
|
|
8094
|
-
*/
|
|
8095
6236
|
source: GenModels.DepartmentDataSource;
|
|
8096
|
-
/**
|
|
8097
|
-
* Department types to search
|
|
8098
|
-
*/
|
|
8099
6237
|
itemTypes: GenModels.SearchDepartmentType;
|
|
8100
6238
|
}
|
|
8101
6239
|
}
|
|
@@ -8151,17 +6289,8 @@ export declare namespace GenModels {
|
|
|
8151
6289
|
}
|
|
8152
6290
|
export declare namespace GenModels {
|
|
8153
6291
|
interface DepartmentFindInTreeQuery {
|
|
8154
|
-
/**
|
|
8155
|
-
* search string
|
|
8156
|
-
*/
|
|
8157
6292
|
searchQuery: string;
|
|
8158
|
-
/**
|
|
8159
|
-
* Data source
|
|
8160
|
-
*/
|
|
8161
6293
|
source: GenModels.DepartmentDataSource;
|
|
8162
|
-
/**
|
|
8163
|
-
* Department types to search
|
|
8164
|
-
*/
|
|
8165
6294
|
itemTypes: GenModels.SearchDepartmentType;
|
|
8166
6295
|
}
|
|
8167
6296
|
}
|
|
@@ -8270,113 +6399,46 @@ export declare namespace GenModels {
|
|
|
8270
6399
|
}
|
|
8271
6400
|
export declare namespace GenModels {
|
|
8272
6401
|
interface DepartmentLoadFlatQuery {
|
|
8273
|
-
/**
|
|
8274
|
-
* Parent department identifier
|
|
8275
|
-
*
|
|
8276
|
-
* @format datatype.uuid
|
|
8277
|
-
*/
|
|
8278
6402
|
departmentId?: string;
|
|
8279
|
-
|
|
8280
|
-
* Data source
|
|
8281
|
-
*/
|
|
8282
|
-
source: GenModels.DepartmentDataSource;
|
|
8283
|
-
/**
|
|
8284
|
-
* Department types to search
|
|
8285
|
-
*/
|
|
6403
|
+
source: GenModels.DepartmentDataSource;
|
|
8286
6404
|
itemTypes: GenModels.SearchDepartmentType;
|
|
8287
|
-
/**
|
|
8288
|
-
* Skip n departments from begin (pagination)
|
|
8289
|
-
*/
|
|
8290
6405
|
skip: number;
|
|
8291
|
-
/**
|
|
8292
|
-
* Max departments count in response (pagination)
|
|
8293
|
-
*/
|
|
8294
6406
|
maxCount: number;
|
|
8295
6407
|
}
|
|
8296
6408
|
}
|
|
8297
6409
|
export declare namespace GenModels {
|
|
8298
6410
|
interface DepartmentLoadFlatResponse {
|
|
8299
|
-
/**
|
|
8300
|
-
* List of department items
|
|
8301
|
-
*/
|
|
8302
6411
|
items: Array<GenModels.DepartmentFlatDigest>;
|
|
8303
|
-
/**
|
|
8304
|
-
* Total items count
|
|
8305
|
-
*/
|
|
8306
6412
|
totalItemsCount: number;
|
|
8307
|
-
/**
|
|
8308
|
-
* Directory timestamp
|
|
8309
|
-
*/
|
|
8310
6413
|
directoryTimestamp: number;
|
|
8311
6414
|
}
|
|
8312
6415
|
}
|
|
8313
6416
|
export declare namespace GenModels {
|
|
8314
6417
|
interface DepartmentFlatDigest {
|
|
8315
|
-
/**
|
|
8316
|
-
* Department tree node data
|
|
8317
|
-
*/
|
|
8318
6418
|
data: GenModels.DepartmentTreeNode;
|
|
8319
|
-
/**
|
|
8320
|
-
* True if department tree node data has any children, and false otherwise
|
|
8321
|
-
*/
|
|
8322
6419
|
hasChildren?: boolean;
|
|
8323
6420
|
}
|
|
8324
6421
|
}
|
|
8325
6422
|
export declare namespace GenModels {
|
|
8326
6423
|
interface DepartmentSearchFlatQuery {
|
|
8327
|
-
/**
|
|
8328
|
-
* Data source
|
|
8329
|
-
*/
|
|
8330
6424
|
source: GenModels.DepartmentDataSource;
|
|
8331
|
-
/**
|
|
8332
|
-
* item types
|
|
8333
|
-
*/
|
|
8334
6425
|
itemTypes: GenModels.SearchDepartmentType;
|
|
8335
|
-
/**
|
|
8336
|
-
* Text to search
|
|
8337
|
-
*/
|
|
8338
6426
|
searchText: string;
|
|
8339
|
-
/**
|
|
8340
|
-
* Department id
|
|
8341
|
-
*
|
|
8342
|
-
* @format datatype.uuid
|
|
8343
|
-
*/
|
|
8344
6427
|
departmentId?: string;
|
|
8345
|
-
/**
|
|
8346
|
-
* Count of items to skip (paginator logic)
|
|
8347
|
-
*/
|
|
8348
6428
|
skip?: number;
|
|
8349
|
-
/**
|
|
8350
|
-
* Max items count in the result (paginator logic)
|
|
8351
|
-
*/
|
|
8352
6429
|
maxCount?: number;
|
|
8353
6430
|
}
|
|
8354
6431
|
}
|
|
8355
6432
|
export declare namespace GenModels {
|
|
8356
6433
|
interface DepartmentSearchFlatResponse {
|
|
8357
|
-
/**
|
|
8358
|
-
* Department's search items
|
|
8359
|
-
*/
|
|
8360
6434
|
items: Array<GenModels.DepartmentSearchFlatItem>;
|
|
8361
|
-
/**
|
|
8362
|
-
* Has more items
|
|
8363
|
-
*/
|
|
8364
6435
|
hasMore: boolean;
|
|
8365
|
-
/**
|
|
8366
|
-
* Directory timestamp
|
|
8367
|
-
*/
|
|
8368
6436
|
directoryTimestamp: number;
|
|
8369
6437
|
}
|
|
8370
6438
|
}
|
|
8371
6439
|
export declare namespace GenModels {
|
|
8372
6440
|
interface DepartmentSearchFlatItem extends GenModels.DepartmentFlatDigest {
|
|
8373
|
-
/**
|
|
8374
|
-
* Partner search info
|
|
8375
|
-
*/
|
|
8376
6441
|
searchInfo: GenModels.PartnerSearchInfo;
|
|
8377
|
-
/**
|
|
8378
|
-
* Path to search in
|
|
8379
|
-
*/
|
|
8380
6442
|
path: Array<GenModels.DepartmentModel>;
|
|
8381
6443
|
}
|
|
8382
6444
|
}
|
|
@@ -8568,69 +6630,23 @@ export declare namespace GenModels {
|
|
|
8568
6630
|
}
|
|
8569
6631
|
export declare namespace GenModels {
|
|
8570
6632
|
interface ChildTaskCommentModel {
|
|
8571
|
-
/**
|
|
8572
|
-
* Task identifier
|
|
8573
|
-
*
|
|
8574
|
-
* @format datatype.uuid
|
|
8575
|
-
*/
|
|
8576
6633
|
cardId: string;
|
|
8577
|
-
/**
|
|
8578
|
-
* Task name
|
|
8579
|
-
*/
|
|
8580
6634
|
taskName: string;
|
|
8581
|
-
/**
|
|
8582
|
-
* Task state name
|
|
8583
|
-
*/
|
|
8584
6635
|
stateDisplayName: string;
|
|
8585
|
-
/**
|
|
8586
|
-
* Task name
|
|
8587
|
-
*/
|
|
8588
6636
|
comment: string;
|
|
8589
|
-
/**
|
|
8590
|
-
* Comment file info
|
|
8591
|
-
*/
|
|
8592
6637
|
commentFile: GenModels.CommonFileModel;
|
|
8593
|
-
/**
|
|
8594
|
-
* Gets performer name
|
|
8595
|
-
*/
|
|
8596
6638
|
performerDisplayName: string;
|
|
8597
6639
|
}
|
|
8598
6640
|
}
|
|
8599
6641
|
export declare namespace GenModels {
|
|
8600
6642
|
interface CommonFileModel {
|
|
8601
|
-
/**
|
|
8602
|
-
* File name
|
|
8603
|
-
*/
|
|
8604
6643
|
fileName: string;
|
|
8605
|
-
/**
|
|
8606
|
-
* File id
|
|
8607
|
-
*
|
|
8608
|
-
* @format datatype.uuid
|
|
8609
|
-
*/
|
|
8610
6644
|
fileId: string;
|
|
8611
|
-
/**
|
|
8612
|
-
* Gets or sets a flag that determines whether current file can be edited.
|
|
8613
|
-
*/
|
|
8614
6645
|
allowEdit: boolean;
|
|
8615
|
-
/**
|
|
8616
|
-
* Link to open file with webdav
|
|
8617
|
-
*/
|
|
8618
6646
|
webDavLink: string;
|
|
8619
|
-
/**
|
|
8620
|
-
* Link to open file with webdav readonly
|
|
8621
|
-
*/
|
|
8622
6647
|
webDavReadonlyLink: string;
|
|
8623
|
-
/**
|
|
8624
|
-
* Does file preview available for this file extension
|
|
8625
|
-
*/
|
|
8626
6648
|
filePreviewAvailable: boolean;
|
|
8627
|
-
/**
|
|
8628
|
-
* Does file locked by someone
|
|
8629
|
-
*/
|
|
8630
6649
|
isLocked: boolean;
|
|
8631
|
-
/**
|
|
8632
|
-
* If file loading failed, the property will contain error message.
|
|
8633
|
-
*/
|
|
8634
6650
|
loadingErrorMessage: string;
|
|
8635
6651
|
}
|
|
8636
6652
|
}
|
|
@@ -8698,23 +6714,9 @@ export declare namespace GenModels {
|
|
|
8698
6714
|
}
|
|
8699
6715
|
export declare namespace GenModels {
|
|
8700
6716
|
interface ChildTaskCreateDefaultValues {
|
|
8701
|
-
/**
|
|
8702
|
-
* Name of the task
|
|
8703
|
-
*/
|
|
8704
6717
|
name: string;
|
|
8705
|
-
/**
|
|
8706
|
-
* Task description
|
|
8707
|
-
*/
|
|
8708
6718
|
content: string;
|
|
8709
|
-
/**
|
|
8710
|
-
* Task performers
|
|
8711
|
-
*/
|
|
8712
6719
|
currentPerformers: Array<GenModels.EmployeeModel>;
|
|
8713
|
-
/**
|
|
8714
|
-
* Task end date
|
|
8715
|
-
*
|
|
8716
|
-
* @format datatype.datetime
|
|
8717
|
-
*/
|
|
8718
6720
|
endDate?: string;
|
|
8719
6721
|
}
|
|
8720
6722
|
}
|
|
@@ -8746,13 +6748,7 @@ export declare namespace GenModels {
|
|
|
8746
6748
|
}
|
|
8747
6749
|
export declare namespace GenModels {
|
|
8748
6750
|
interface DelegateRecordsResponse {
|
|
8749
|
-
/**
|
|
8750
|
-
* Start performers
|
|
8751
|
-
*/
|
|
8752
6751
|
startPerformers: Array<GenModels.DisplayPerformersPerformer>;
|
|
8753
|
-
/**
|
|
8754
|
-
* Delegation records
|
|
8755
|
-
*/
|
|
8756
6752
|
records: Array<GenModels.DelegateRecord>;
|
|
8757
6753
|
}
|
|
8758
6754
|
}
|
|
@@ -8784,27 +6780,10 @@ export declare namespace GenModels {
|
|
|
8784
6780
|
}
|
|
8785
6781
|
export declare namespace GenModels {
|
|
8786
6782
|
interface DelegateRecord {
|
|
8787
|
-
/**
|
|
8788
|
-
* Event
|
|
8789
|
-
*/
|
|
8790
6783
|
event: GenModels.DelegateEvent;
|
|
8791
|
-
/**
|
|
8792
|
-
* Initiator
|
|
8793
|
-
*/
|
|
8794
6784
|
initiator: GenModels.EmployeeModel;
|
|
8795
|
-
/**
|
|
8796
|
-
* Performers
|
|
8797
|
-
*/
|
|
8798
6785
|
performers: Array<GenModels.EmployeeModel>;
|
|
8799
|
-
/**
|
|
8800
|
-
* Date
|
|
8801
|
-
*
|
|
8802
|
-
* @format datatype.datetime
|
|
8803
|
-
*/
|
|
8804
6786
|
date: string;
|
|
8805
|
-
/**
|
|
8806
|
-
* Comment
|
|
8807
|
-
*/
|
|
8808
6787
|
comment: string;
|
|
8809
6788
|
}
|
|
8810
6789
|
}
|
|
@@ -8932,65 +6911,20 @@ export declare namespace GenModels {
|
|
|
8932
6911
|
}
|
|
8933
6912
|
export declare namespace GenModels {
|
|
8934
6913
|
interface GetApprovalTaskDecisionInfoOptions {
|
|
8935
|
-
/**
|
|
8936
|
-
* Task id
|
|
8937
|
-
*
|
|
8938
|
-
* @format datatype.uuid
|
|
8939
|
-
*/
|
|
8940
6914
|
taskId: string;
|
|
8941
|
-
/**
|
|
8942
|
-
* @format datatype.uuid
|
|
8943
|
-
*/
|
|
8944
6915
|
completionOptionId: string;
|
|
8945
6916
|
}
|
|
8946
6917
|
}
|
|
8947
6918
|
export declare namespace GenModels {
|
|
8948
6919
|
interface ApprovalTaskDecisionInfo {
|
|
8949
|
-
/**
|
|
8950
|
-
* Task id
|
|
8951
|
-
*
|
|
8952
|
-
* @format datatype.uuid
|
|
8953
|
-
*/
|
|
8954
6920
|
taskId: string;
|
|
8955
|
-
/**
|
|
8956
|
-
* Approving document id
|
|
8957
|
-
*
|
|
8958
|
-
* @format datatype.uuid
|
|
8959
|
-
*/
|
|
8960
6921
|
documentId: string;
|
|
8961
|
-
/**
|
|
8962
|
-
* Completion option id
|
|
8963
|
-
*
|
|
8964
|
-
* @format datatype.uuid
|
|
8965
|
-
*/
|
|
8966
6922
|
completionOptionId: string;
|
|
8967
|
-
/**
|
|
8968
|
-
* Id of decision, that matches corresponding task completion option.
|
|
8969
|
-
*
|
|
8970
|
-
* @format datatype.uuid
|
|
8971
|
-
*/
|
|
8972
6923
|
decisionId: string;
|
|
8973
|
-
/**
|
|
8974
|
-
* Should request digital signature
|
|
8975
|
-
*/
|
|
8976
6924
|
requestDigitalSignature: boolean;
|
|
8977
|
-
/**
|
|
8978
|
-
* Allow simple sign
|
|
8979
|
-
*/
|
|
8980
6925
|
allowSimpleSign: boolean;
|
|
8981
|
-
/**
|
|
8982
|
-
* Gets or sets decision semantics
|
|
8983
|
-
*/
|
|
8984
6926
|
decisionSemantics: GenModels.DecisionSemantics;
|
|
8985
|
-
/**
|
|
8986
|
-
* Gets or sets label identifier
|
|
8987
|
-
*
|
|
8988
|
-
* @format datatype.uuid
|
|
8989
|
-
*/
|
|
8990
6927
|
labelId?: string;
|
|
8991
|
-
/**
|
|
8992
|
-
* Gets or sets encoded Id
|
|
8993
|
-
*/
|
|
8994
6928
|
encodedLabelId: string;
|
|
8995
6929
|
}
|
|
8996
6930
|
}
|
|
@@ -10313,15 +8247,7 @@ export declare namespace GenModels {
|
|
|
10313
8247
|
}
|
|
10314
8248
|
export declare namespace GenModels {
|
|
10315
8249
|
interface CardTypeModel {
|
|
10316
|
-
/**
|
|
10317
|
-
* Gets name
|
|
10318
|
-
*/
|
|
10319
8250
|
name: string;
|
|
10320
|
-
/**
|
|
10321
|
-
* Card type id
|
|
10322
|
-
*
|
|
10323
|
-
* @format datatype.uuid
|
|
10324
|
-
*/
|
|
10325
8251
|
id: string;
|
|
10326
8252
|
}
|
|
10327
8253
|
}
|
|
@@ -10435,31 +8361,13 @@ export declare namespace GenModels {
|
|
|
10435
8361
|
}
|
|
10436
8362
|
export declare namespace GenModels {
|
|
10437
8363
|
interface AdminPanelMessageModel {
|
|
10438
|
-
/**
|
|
10439
|
-
* Card id
|
|
10440
|
-
*
|
|
10441
|
-
* @format datatype.uuid
|
|
10442
|
-
*/
|
|
10443
8364
|
cardId: string;
|
|
10444
|
-
/**
|
|
10445
|
-
* Message card id
|
|
10446
|
-
*
|
|
10447
|
-
* @format datatype.uuid
|
|
10448
|
-
*/
|
|
10449
8365
|
messageCardId: string;
|
|
10450
8366
|
}
|
|
10451
8367
|
}
|
|
10452
8368
|
export declare namespace GenModels {
|
|
10453
8369
|
interface AgreementHistoryDataModel {
|
|
10454
|
-
/**
|
|
10455
|
-
* Gets or sets if history exists
|
|
10456
|
-
*/
|
|
10457
8370
|
historyExists: boolean;
|
|
10458
|
-
/**
|
|
10459
|
-
* Gets agreement card identifier
|
|
10460
|
-
*
|
|
10461
|
-
* @format datatype.uuid
|
|
10462
|
-
*/
|
|
10463
8371
|
agreementCardId: string;
|
|
10464
8372
|
}
|
|
10465
8373
|
}
|
|
@@ -10471,45 +8379,17 @@ export declare namespace GenModels {
|
|
|
10471
8379
|
}
|
|
10472
8380
|
export declare namespace GenModels {
|
|
10473
8381
|
interface CardLinkDataModel {
|
|
10474
|
-
/**
|
|
10475
|
-
* ID карточки, на которую установлена ссылка.
|
|
10476
|
-
*
|
|
10477
|
-
* @format datatype.uuid
|
|
10478
|
-
*/
|
|
10479
8382
|
cardId: string;
|
|
10480
|
-
/**
|
|
10481
|
-
* Значение Digest карточки. Данный текст будет отображен в качестве текста ссылки.
|
|
10482
|
-
*/
|
|
10483
8383
|
cardDigest: string;
|
|
10484
|
-
/**
|
|
10485
|
-
* Доступен ли текущему пользователю просмотр указанной карточки.
|
|
10486
|
-
* Данное свойство будет использовано для отключения ссылки и пунктов меню "Открыть" в контроле.
|
|
10487
|
-
*/
|
|
10488
8384
|
cardViewAllowed: boolean;
|
|
10489
|
-
/**
|
|
10490
|
-
* Доступен ли текущему пользователю чтение основного файла указанной карточки.
|
|
10491
|
-
* Данное свойство будет использовано для отключения пункта меню "Просмотреть файл" в контроле.
|
|
10492
|
-
*/
|
|
10493
8385
|
mainFileReadAllowed: boolean;
|
|
10494
8386
|
}
|
|
10495
8387
|
}
|
|
10496
8388
|
export declare namespace GenModels {
|
|
10497
8389
|
interface ControlsInfoModel {
|
|
10498
|
-
/**
|
|
10499
|
-
* Gets or sets control display name
|
|
10500
|
-
*/
|
|
10501
8390
|
controlDisplayName: string;
|
|
10502
|
-
/**
|
|
10503
|
-
* Gets or sets control name
|
|
10504
|
-
*/
|
|
10505
8391
|
controlName: string;
|
|
10506
|
-
/**
|
|
10507
|
-
* Gets or sets show parameter option
|
|
10508
|
-
*/
|
|
10509
8392
|
showParameter: GenModels.ShowParametersOptions;
|
|
10510
|
-
/**
|
|
10511
|
-
* Gets or sets completion parameters model
|
|
10512
|
-
*/
|
|
10513
8393
|
completionParameterModel: GenModels.CompletionParameterModel;
|
|
10514
8394
|
}
|
|
10515
8395
|
}
|
|
@@ -10547,61 +8427,24 @@ export declare namespace GenModels {
|
|
|
10547
8427
|
}
|
|
10548
8428
|
export declare namespace GenModels {
|
|
10549
8429
|
interface CreateKindDataModel {
|
|
10550
|
-
/**
|
|
10551
|
-
* Gets create route name
|
|
10552
|
-
*/
|
|
10553
8430
|
createRouteName: string;
|
|
10554
|
-
/**
|
|
10555
|
-
* Gets identifier
|
|
10556
|
-
*
|
|
10557
|
-
* @format datatype.uuid
|
|
10558
|
-
*/
|
|
10559
8431
|
id: string;
|
|
10560
|
-
/**
|
|
10561
|
-
* Gets card type identifier
|
|
10562
|
-
*
|
|
10563
|
-
* @format datatype.uuid
|
|
10564
|
-
*/
|
|
10565
8432
|
cardTypeId: string;
|
|
10566
|
-
/**
|
|
10567
|
-
* Gets display name
|
|
10568
|
-
*/
|
|
10569
8433
|
displayName: string;
|
|
10570
|
-
/**
|
|
10571
|
-
* Gets is template
|
|
10572
|
-
*/
|
|
10573
8434
|
isTemplate: boolean;
|
|
10574
|
-
/**
|
|
10575
|
-
* It is node corresponding to approval child task creation
|
|
10576
|
-
*/
|
|
10577
8435
|
isApprovingChildTasksNode: boolean;
|
|
10578
8436
|
}
|
|
10579
8437
|
}
|
|
10580
8438
|
export declare namespace GenModels {
|
|
10581
8439
|
interface DisplayStaffUnitModel {
|
|
10582
|
-
/**
|
|
10583
|
-
* display string for staff unit model
|
|
10584
|
-
*/
|
|
10585
8440
|
displayString: string;
|
|
10586
|
-
/**
|
|
10587
|
-
* tooltip string
|
|
10588
|
-
*/
|
|
10589
8441
|
tooltip: string;
|
|
10590
|
-
/**
|
|
10591
|
-
* error message
|
|
10592
|
-
*/
|
|
10593
8442
|
errorMessage: string;
|
|
10594
8443
|
}
|
|
10595
8444
|
}
|
|
10596
8445
|
export declare namespace GenModels {
|
|
10597
8446
|
interface ElementsDataModel {
|
|
10598
|
-
/**
|
|
10599
|
-
* Available variants to select
|
|
10600
|
-
*/
|
|
10601
8447
|
elements: Array<GenModels.Element>;
|
|
10602
|
-
/**
|
|
10603
|
-
* Is empty key allowed
|
|
10604
|
-
*/
|
|
10605
8448
|
isEmptyKeyAllowed: boolean;
|
|
10606
8449
|
}
|
|
10607
8450
|
}
|
|
@@ -10623,181 +8466,64 @@ export declare namespace GenModels {
|
|
|
10623
8466
|
}
|
|
10624
8467
|
export declare namespace GenModels {
|
|
10625
8468
|
interface LayoutTableBindingModel {
|
|
10626
|
-
/**
|
|
10627
|
-
* Section id
|
|
10628
|
-
*
|
|
10629
|
-
* @format datatype.uuid
|
|
10630
|
-
*/
|
|
10631
8469
|
sectionId: string;
|
|
10632
|
-
/**
|
|
10633
|
-
* How many first rows was skipped on rows loading
|
|
10634
|
-
*/
|
|
10635
8470
|
skippedCount: number;
|
|
10636
|
-
/**
|
|
10637
|
-
* Do section contains more rows at the end of the table (after loaded rows)
|
|
10638
|
-
*/
|
|
10639
8471
|
hasMore: boolean;
|
|
10640
|
-
/**
|
|
10641
|
-
* Rows loaded from the server
|
|
10642
|
-
*/
|
|
10643
8472
|
loadedRows: Array<string>;
|
|
10644
|
-
/**
|
|
10645
|
-
* Rows added on the client
|
|
10646
|
-
*/
|
|
10647
8473
|
addedRows: Array<string>;
|
|
10648
|
-
/**
|
|
10649
|
-
* Rows deleted on the client
|
|
10650
|
-
*/
|
|
10651
8474
|
deletedRows: Array<string>;
|
|
10652
|
-
/**
|
|
10653
|
-
* Rows identifiers sorted by order
|
|
10654
|
-
*/
|
|
10655
8475
|
rowsOrder: Array<string>;
|
|
10656
8476
|
}
|
|
10657
8477
|
}
|
|
10658
8478
|
export declare namespace GenModels {
|
|
10659
8479
|
interface LayoutTableColumnInfo {
|
|
10660
|
-
/**
|
|
10661
|
-
* Column name
|
|
10662
|
-
*/
|
|
10663
8480
|
header: string;
|
|
10664
|
-
/**
|
|
10665
|
-
* Width
|
|
10666
|
-
*/
|
|
10667
8481
|
columnWidth: string;
|
|
10668
|
-
/**
|
|
10669
|
-
* Tooltip
|
|
10670
|
-
*/
|
|
10671
8482
|
tip: string;
|
|
10672
|
-
/**
|
|
10673
|
-
* Is column visible or not
|
|
10674
|
-
*/
|
|
10675
8483
|
visibility: boolean;
|
|
10676
8484
|
}
|
|
10677
8485
|
}
|
|
10678
8486
|
export declare namespace GenModels {
|
|
10679
8487
|
interface MultipleEmployeesDataModel {
|
|
10680
|
-
/**
|
|
10681
|
-
* Gets or sets employees
|
|
10682
|
-
*/
|
|
10683
8488
|
employees: Array<GenModels.EmployeeDataModel>;
|
|
10684
|
-
/**
|
|
10685
|
-
* Gets or sets field path
|
|
10686
|
-
*/
|
|
10687
8489
|
fieldPath: string;
|
|
10688
8490
|
}
|
|
10689
|
-
}
|
|
10690
|
-
export declare namespace GenModels {
|
|
10691
|
-
interface OperationDataModel {
|
|
10692
|
-
/**
|
|
10693
|
-
* Gets or sets operation id
|
|
10694
|
-
*
|
|
10695
|
-
* @format datatype.uuid
|
|
10696
|
-
*/
|
|
8491
|
+
}
|
|
8492
|
+
export declare namespace GenModels {
|
|
8493
|
+
interface OperationDataModel {
|
|
10697
8494
|
operationId: string;
|
|
10698
|
-
/**
|
|
10699
|
-
* Gets or sets operation builtInId
|
|
10700
|
-
*
|
|
10701
|
-
* @format datatype.uuid
|
|
10702
|
-
*/
|
|
10703
8495
|
builtInOperationId: string;
|
|
10704
|
-
/**
|
|
10705
|
-
* Gets or sets display name
|
|
10706
|
-
*/
|
|
10707
8496
|
displayName: string;
|
|
10708
|
-
/**
|
|
10709
|
-
* Gets or sets tooltip
|
|
10710
|
-
*/
|
|
10711
8497
|
tooltip: string;
|
|
10712
|
-
/**
|
|
10713
|
-
* Gets or sets operation display mode
|
|
10714
|
-
*/
|
|
10715
8498
|
displayMode: GenModels.StateOperationDisplayMode;
|
|
10716
|
-
/**
|
|
10717
|
-
* Gets or sets is generated model
|
|
10718
|
-
*/
|
|
10719
8499
|
isGenerated: boolean;
|
|
10720
|
-
/**
|
|
10721
|
-
* Gets or sets generated operation identifier
|
|
10722
|
-
*
|
|
10723
|
-
* @format datatype.uuid
|
|
10724
|
-
*/
|
|
10725
8500
|
generatedOperationId: string;
|
|
10726
|
-
/**
|
|
10727
|
-
* Gets or sets button color
|
|
10728
|
-
*/
|
|
10729
8501
|
color: string;
|
|
10730
|
-
/**
|
|
10731
|
-
* Gets or sets button text color
|
|
10732
|
-
*/
|
|
10733
8502
|
textColor: string;
|
|
10734
|
-
/**
|
|
10735
|
-
* Gets or sets button order
|
|
10736
|
-
*/
|
|
10737
8503
|
order: number;
|
|
10738
|
-
/**
|
|
10739
|
-
* If operation is completion option, its identifier.
|
|
10740
|
-
*
|
|
10741
|
-
* @format datatype.uuid
|
|
10742
|
-
*/
|
|
10743
8504
|
completionOptionId?: string;
|
|
10744
|
-
/**
|
|
10745
|
-
* Request confirmation before executing operation.
|
|
10746
|
-
*/
|
|
10747
8505
|
requestConfirmation: boolean;
|
|
10748
|
-
/**
|
|
10749
|
-
* Additional info
|
|
10750
|
-
*/
|
|
10751
8506
|
additionalInfo: GenModels.OperationAdditionalInfoDataModel;
|
|
10752
|
-
/**
|
|
10753
|
-
* Operation as field value
|
|
10754
|
-
*/
|
|
10755
8507
|
fieldInfo: GenModels.OperationFieldInfo;
|
|
10756
8508
|
}
|
|
10757
8509
|
}
|
|
10758
8510
|
export declare namespace GenModels {
|
|
10759
8511
|
interface OperationAdditionalInfoDataModel {
|
|
10760
|
-
/**
|
|
10761
|
-
* Gets or sets decision semantics
|
|
10762
|
-
*/
|
|
10763
8512
|
decisionSemantics?: GenModels.DecisionSemantics;
|
|
10764
|
-
/**
|
|
10765
|
-
* Gets or sets decision name
|
|
10766
|
-
*/
|
|
10767
8513
|
decisionName: string;
|
|
10768
8514
|
}
|
|
10769
8515
|
}
|
|
10770
8516
|
export declare namespace GenModels {
|
|
10771
8517
|
interface TransformationDataModel {
|
|
10772
|
-
/**
|
|
10773
|
-
* Gets or sets identifier
|
|
10774
|
-
*
|
|
10775
|
-
* @format datatype.uuid
|
|
10776
|
-
*/
|
|
10777
8518
|
id: string;
|
|
10778
|
-
/**
|
|
10779
|
-
* Gets or sets name
|
|
10780
|
-
*/
|
|
10781
8519
|
name: string;
|
|
10782
|
-
/**
|
|
10783
|
-
* Gets or sets display name
|
|
10784
|
-
*/
|
|
10785
8520
|
displayName: string;
|
|
10786
|
-
/**
|
|
10787
|
-
* Gets or sets value indicating whether transformation is default
|
|
10788
|
-
*/
|
|
10789
8521
|
default: boolean;
|
|
10790
8522
|
}
|
|
10791
8523
|
}
|
|
10792
8524
|
export declare namespace GenModels {
|
|
10793
8525
|
interface UploadFileFromDirectoryModel {
|
|
10794
|
-
/**
|
|
10795
|
-
* @format datatype.uuid
|
|
10796
|
-
*/
|
|
10797
8526
|
documentId: string;
|
|
10798
|
-
/**
|
|
10799
|
-
* @format datatype.uuid
|
|
10800
|
-
*/
|
|
10801
8527
|
fileId: string;
|
|
10802
8528
|
timestamp: number;
|
|
10803
8529
|
fileName: string;
|
|
@@ -11348,6 +9074,106 @@ export declare namespace GenModels {
|
|
|
11348
9074
|
itemAlias: string;
|
|
11349
9075
|
}
|
|
11350
9076
|
}
|
|
9077
|
+
export declare namespace GenModels {
|
|
9078
|
+
interface LinkedTaskModel {
|
|
9079
|
+
/**
|
|
9080
|
+
* Gets or sets task identifier
|
|
9081
|
+
*
|
|
9082
|
+
* @format datatype.uuid
|
|
9083
|
+
*/
|
|
9084
|
+
taskId: string;
|
|
9085
|
+
/**
|
|
9086
|
+
* Gets or sets kind identifier
|
|
9087
|
+
*
|
|
9088
|
+
* @format datatype.uuid
|
|
9089
|
+
*/
|
|
9090
|
+
kindId: string;
|
|
9091
|
+
/**
|
|
9092
|
+
* Gets or sets task name
|
|
9093
|
+
*/
|
|
9094
|
+
taskName: string;
|
|
9095
|
+
/**
|
|
9096
|
+
* Gets or sets task author
|
|
9097
|
+
*/
|
|
9098
|
+
performer: GenModels.EmployeeModel;
|
|
9099
|
+
/**
|
|
9100
|
+
* Gets or sets task end date
|
|
9101
|
+
*
|
|
9102
|
+
* @format datatype.datetime
|
|
9103
|
+
*/
|
|
9104
|
+
endDate?: string;
|
|
9105
|
+
/**
|
|
9106
|
+
* Gets or set document identifier
|
|
9107
|
+
*
|
|
9108
|
+
* @format datatype.uuid
|
|
9109
|
+
*/
|
|
9110
|
+
documentId: string;
|
|
9111
|
+
/**
|
|
9112
|
+
* Gets or set task state type
|
|
9113
|
+
*/
|
|
9114
|
+
stateType: GenModels.TaskStateType;
|
|
9115
|
+
/**
|
|
9116
|
+
* Gets or set author identifier
|
|
9117
|
+
*
|
|
9118
|
+
* @format datatype.uuid
|
|
9119
|
+
*/
|
|
9120
|
+
authorId: string;
|
|
9121
|
+
/**
|
|
9122
|
+
* Gets or set controller identifier
|
|
9123
|
+
*
|
|
9124
|
+
* @format datatype.uuid
|
|
9125
|
+
*/
|
|
9126
|
+
controllerId: string;
|
|
9127
|
+
/**
|
|
9128
|
+
* Gets or sets state name
|
|
9129
|
+
*/
|
|
9130
|
+
stateName: string;
|
|
9131
|
+
/**
|
|
9132
|
+
* Gets or sets description
|
|
9133
|
+
*/
|
|
9134
|
+
description: string;
|
|
9135
|
+
/**
|
|
9136
|
+
* Gets or set task card actual end date with decision
|
|
9137
|
+
*
|
|
9138
|
+
* @format datatype.datetime
|
|
9139
|
+
*/
|
|
9140
|
+
endDateActual?: string;
|
|
9141
|
+
/**
|
|
9142
|
+
* Gets or sets card timestamp
|
|
9143
|
+
*/
|
|
9144
|
+
timestamp: number;
|
|
9145
|
+
/**
|
|
9146
|
+
* Gets or sets current task performer
|
|
9147
|
+
*/
|
|
9148
|
+
currentPerformer: GenModels.EmployeeModel;
|
|
9149
|
+
/**
|
|
9150
|
+
* Order of task in group task
|
|
9151
|
+
*/
|
|
9152
|
+
order: number;
|
|
9153
|
+
/**
|
|
9154
|
+
* Get task available operations
|
|
9155
|
+
*/
|
|
9156
|
+
availableOperations: Array<GenModels.TaskOperation>;
|
|
9157
|
+
}
|
|
9158
|
+
}
|
|
9159
|
+
export declare namespace GenModels {
|
|
9160
|
+
interface Operation {
|
|
9161
|
+
/**
|
|
9162
|
+
* Gets or sets task operation kind
|
|
9163
|
+
*
|
|
9164
|
+
* @format datatype.uuid
|
|
9165
|
+
*/
|
|
9166
|
+
builtinId: string;
|
|
9167
|
+
}
|
|
9168
|
+
}
|
|
9169
|
+
export declare namespace GenModels {
|
|
9170
|
+
interface TaskOperation extends GenModels.Operation {
|
|
9171
|
+
/**
|
|
9172
|
+
* Gets or sets task operation kind
|
|
9173
|
+
*/
|
|
9174
|
+
kind: GenModels.TaskOperationKind;
|
|
9175
|
+
}
|
|
9176
|
+
}
|
|
11351
9177
|
export declare namespace GenModels {
|
|
11352
9178
|
interface PerformersTypeDialogModel {
|
|
11353
9179
|
/**
|
|
@@ -11453,113 +9279,201 @@ export declare namespace GenModels {
|
|
|
11453
9279
|
}
|
|
11454
9280
|
}
|
|
11455
9281
|
export declare namespace GenModels {
|
|
11456
|
-
interface
|
|
9282
|
+
interface CompletionOptionModel {
|
|
11457
9283
|
/**
|
|
11458
|
-
* Gets or sets
|
|
9284
|
+
* Gets or sets completion option identifier
|
|
11459
9285
|
*
|
|
11460
9286
|
* @format datatype.uuid
|
|
11461
9287
|
*/
|
|
11462
|
-
|
|
11463
|
-
/**
|
|
11464
|
-
* Display user full name
|
|
11465
|
-
*/
|
|
11466
|
-
displayName: string;
|
|
9288
|
+
id: string;
|
|
11467
9289
|
/**
|
|
11468
|
-
*
|
|
9290
|
+
* Gets or sets name
|
|
11469
9291
|
*/
|
|
11470
|
-
|
|
9292
|
+
name: string;
|
|
11471
9293
|
/**
|
|
11472
|
-
* Gets
|
|
9294
|
+
* Gets or sets name
|
|
11473
9295
|
*/
|
|
11474
|
-
|
|
9296
|
+
localizedName: string;
|
|
11475
9297
|
/**
|
|
11476
|
-
*
|
|
9298
|
+
* Gets or sets value
|
|
11477
9299
|
*/
|
|
11478
|
-
|
|
9300
|
+
value: number;
|
|
11479
9301
|
/**
|
|
11480
|
-
* Gets or sets
|
|
9302
|
+
* Gets or sets IsDefault
|
|
11481
9303
|
*/
|
|
11482
|
-
|
|
9304
|
+
isDefault: boolean;
|
|
11483
9305
|
/**
|
|
11484
|
-
* Gets or sets
|
|
9306
|
+
* Gets or sets value indicated whether has report filed in completion option
|
|
11485
9307
|
*/
|
|
11486
|
-
|
|
9308
|
+
hasReportFieldInCompletionOption: boolean;
|
|
11487
9309
|
/**
|
|
11488
|
-
* Gets
|
|
9310
|
+
* Gets attributes collection
|
|
11489
9311
|
*/
|
|
11490
|
-
|
|
9312
|
+
parameters: Array<GenModels.CompletionParameterModel>;
|
|
11491
9313
|
/**
|
|
11492
|
-
* Gets or
|
|
9314
|
+
* Gets or sets color
|
|
11493
9315
|
*/
|
|
11494
|
-
|
|
9316
|
+
color: string;
|
|
11495
9317
|
/**
|
|
11496
|
-
*
|
|
9318
|
+
* Button color code
|
|
11497
9319
|
*/
|
|
11498
|
-
|
|
9320
|
+
colorCode?: number;
|
|
11499
9321
|
/**
|
|
11500
|
-
*
|
|
9322
|
+
* Operation as field value
|
|
11501
9323
|
*/
|
|
11502
|
-
|
|
9324
|
+
fieldInfo: GenModels.OperationFieldInfo;
|
|
11503
9325
|
}
|
|
11504
9326
|
}
|
|
11505
9327
|
export declare namespace GenModels {
|
|
11506
|
-
interface
|
|
9328
|
+
interface TaskGroupAcceptanceCheckResult {
|
|
11507
9329
|
/**
|
|
11508
|
-
*
|
|
11509
|
-
*
|
|
11510
|
-
* @format datatype.uuid
|
|
9330
|
+
* Gets or sets value indicating whether task for responsible can be sent to acceptance
|
|
11511
9331
|
*/
|
|
11512
|
-
|
|
9332
|
+
responsibleTaskHasBranch: boolean;
|
|
11513
9333
|
/**
|
|
11514
|
-
*
|
|
9334
|
+
* Gets or sets value indicating whether task can be sent to acceptance
|
|
11515
9335
|
*/
|
|
11516
|
-
|
|
9336
|
+
taskHasBranch: boolean;
|
|
11517
9337
|
}
|
|
11518
9338
|
}
|
|
11519
9339
|
export declare namespace GenModels {
|
|
11520
|
-
interface
|
|
9340
|
+
interface TaskGroupAttributesModel {
|
|
11521
9341
|
/**
|
|
11522
|
-
* Gets or sets
|
|
9342
|
+
* Gets or sets task group identifier
|
|
11523
9343
|
*
|
|
11524
9344
|
* @format datatype.uuid
|
|
11525
9345
|
*/
|
|
11526
|
-
|
|
9346
|
+
taskGroupId: string;
|
|
11527
9347
|
/**
|
|
11528
|
-
* Gets or sets name
|
|
9348
|
+
* Gets or sets task group name
|
|
11529
9349
|
*/
|
|
11530
9350
|
name: string;
|
|
11531
9351
|
/**
|
|
11532
|
-
* Gets or sets
|
|
9352
|
+
* Gets or sets task group description
|
|
11533
9353
|
*/
|
|
11534
|
-
|
|
9354
|
+
description: string;
|
|
11535
9355
|
/**
|
|
11536
|
-
* Gets or
|
|
9356
|
+
* Gets or set task group author
|
|
11537
9357
|
*/
|
|
11538
|
-
|
|
9358
|
+
author: GenModels.EmployeeModel;
|
|
11539
9359
|
/**
|
|
11540
|
-
* Gets or
|
|
9360
|
+
* Gets or set task group controller
|
|
11541
9361
|
*/
|
|
11542
|
-
|
|
9362
|
+
controller: GenModels.EmployeeModel;
|
|
11543
9363
|
/**
|
|
11544
|
-
* Gets or sets
|
|
9364
|
+
* Gets or sets task group performer
|
|
11545
9365
|
*/
|
|
11546
|
-
|
|
9366
|
+
responsible: GenModels.EmployeeModel;
|
|
11547
9367
|
/**
|
|
11548
|
-
* Gets
|
|
9368
|
+
* Gets or sets task group start date
|
|
9369
|
+
*
|
|
9370
|
+
* @format datatype.datetime
|
|
9371
|
+
*/
|
|
9372
|
+
startDate?: string;
|
|
9373
|
+
/**
|
|
9374
|
+
* Gets or sets task group of performance
|
|
9375
|
+
*
|
|
9376
|
+
* @format datatype.datetime
|
|
9377
|
+
*/
|
|
9378
|
+
endDate?: string;
|
|
9379
|
+
/**
|
|
9380
|
+
* Gets or sets task group creation date
|
|
9381
|
+
*
|
|
9382
|
+
* @format datatype.datetime
|
|
9383
|
+
*/
|
|
9384
|
+
creationDate: string;
|
|
9385
|
+
/**
|
|
9386
|
+
* Gets or sets task group kind name
|
|
9387
|
+
*/
|
|
9388
|
+
kindName: string;
|
|
9389
|
+
/**
|
|
9390
|
+
* Gets or sets task group kind id
|
|
9391
|
+
*
|
|
9392
|
+
* @format datatype.uuid
|
|
9393
|
+
*/
|
|
9394
|
+
kindId: string;
|
|
9395
|
+
/**
|
|
9396
|
+
* Gets or sets date of control
|
|
9397
|
+
*
|
|
9398
|
+
* @format datatype.datetime
|
|
9399
|
+
*/
|
|
9400
|
+
controlDate?: string;
|
|
9401
|
+
/**
|
|
9402
|
+
* Gets or sets value where indicated task group required control
|
|
9403
|
+
*/
|
|
9404
|
+
onControl: boolean;
|
|
9405
|
+
/**
|
|
9406
|
+
* Gets or sets task group state name
|
|
9407
|
+
*/
|
|
9408
|
+
stateName: string;
|
|
9409
|
+
/**
|
|
9410
|
+
* Gets or sets card timestamp
|
|
9411
|
+
*/
|
|
9412
|
+
timestamp: number;
|
|
9413
|
+
/**
|
|
9414
|
+
* Gets or sets task group state type
|
|
9415
|
+
*/
|
|
9416
|
+
stateType: GenModels.TaskGroupStateType;
|
|
9417
|
+
/**
|
|
9418
|
+
* Gets or sets value where indicate task group requires acceptance
|
|
9419
|
+
*/
|
|
9420
|
+
requiresAcceptance: boolean;
|
|
9421
|
+
/**
|
|
9422
|
+
* Gets or sets acceptance check result
|
|
9423
|
+
*/
|
|
9424
|
+
acceptanceCheckResult: GenModels.TaskGroupAcceptanceCheckResult;
|
|
9425
|
+
/**
|
|
9426
|
+
* Get available operations
|
|
9427
|
+
*/
|
|
9428
|
+
availableOperations: Array<GenModels.TaskGroupOperationKind>;
|
|
9429
|
+
/**
|
|
9430
|
+
* Gets or sets task group duration
|
|
9431
|
+
*/
|
|
9432
|
+
duration: number;
|
|
9433
|
+
/**
|
|
9434
|
+
* Gets or sets task group control hours
|
|
9435
|
+
*/
|
|
9436
|
+
controlHour: number;
|
|
9437
|
+
}
|
|
9438
|
+
}
|
|
9439
|
+
export declare namespace GenModels {
|
|
9440
|
+
interface ViewModel {
|
|
9441
|
+
/**
|
|
9442
|
+
* View Bag dynamic object
|
|
9443
|
+
*/
|
|
9444
|
+
viewBag: any;
|
|
9445
|
+
}
|
|
9446
|
+
}
|
|
9447
|
+
export declare namespace GenModels {
|
|
9448
|
+
interface TaskGroupExecutionTasksModel extends GenModels.ViewModel {
|
|
9449
|
+
/**
|
|
9450
|
+
* Gets or sets task group attributes
|
|
9451
|
+
*/
|
|
9452
|
+
attributes: GenModels.TaskGroupAttributesModel;
|
|
9453
|
+
/**
|
|
9454
|
+
* Gets or sets task group execution tasks
|
|
9455
|
+
*/
|
|
9456
|
+
executionTasks: GenModels.TaskGroupExecutionModel;
|
|
9457
|
+
}
|
|
9458
|
+
}
|
|
9459
|
+
export declare namespace GenModels {
|
|
9460
|
+
interface TaskGroupExecutionModel {
|
|
9461
|
+
/**
|
|
9462
|
+
* Gets or sets task from group task
|
|
11549
9463
|
*/
|
|
11550
|
-
|
|
9464
|
+
childTasks: Array<GenModels.LinkedTaskModel>;
|
|
11551
9465
|
/**
|
|
11552
|
-
* Gets or sets
|
|
9466
|
+
* Gets or sets execution type name
|
|
11553
9467
|
*/
|
|
11554
|
-
|
|
9468
|
+
executionTypeName: string;
|
|
11555
9469
|
/**
|
|
11556
|
-
*
|
|
9470
|
+
* Gets or sets execution type
|
|
11557
9471
|
*/
|
|
11558
|
-
|
|
9472
|
+
executionType: GenModels.ExecutionType;
|
|
11559
9473
|
/**
|
|
11560
|
-
*
|
|
9474
|
+
* Get card description
|
|
11561
9475
|
*/
|
|
11562
|
-
|
|
9476
|
+
description: string;
|
|
11563
9477
|
}
|
|
11564
9478
|
}
|
|
11565
9479
|
export declare namespace GenModels {
|
|
@@ -11682,15 +9596,7 @@ export declare namespace GenModels {
|
|
|
11682
9596
|
}
|
|
11683
9597
|
export declare namespace GenModels {
|
|
11684
9598
|
interface CardApprovalStageModel {
|
|
11685
|
-
/**
|
|
11686
|
-
* Gets/sets stage identifier
|
|
11687
|
-
*
|
|
11688
|
-
* @format datatype.uuid
|
|
11689
|
-
*/
|
|
11690
9599
|
stageId: string;
|
|
11691
|
-
/**
|
|
11692
|
-
* Gets stage name
|
|
11693
|
-
*/
|
|
11694
9600
|
name: string;
|
|
11695
9601
|
}
|
|
11696
9602
|
}
|
|
@@ -11989,78 +9895,30 @@ export declare namespace GenModels {
|
|
|
11989
9895
|
}
|
|
11990
9896
|
}
|
|
11991
9897
|
export declare namespace GenModels {
|
|
11992
|
-
/**
|
|
11993
|
-
* Represents stage task sending mode
|
|
11994
|
-
*/
|
|
11995
9898
|
enum StageTaskSendingMode {
|
|
11996
|
-
/**
|
|
11997
|
-
* Sequential
|
|
11998
|
-
*/
|
|
11999
9899
|
Sequential = 0,
|
|
12000
|
-
/**
|
|
12001
|
-
* Parallel
|
|
12002
|
-
*/
|
|
12003
9900
|
Parallel = 1
|
|
12004
9901
|
}
|
|
12005
9902
|
}
|
|
12006
9903
|
export declare namespace GenModels {
|
|
12007
|
-
/**
|
|
12008
|
-
* Approval path stage repeat mode
|
|
12009
|
-
*/
|
|
12010
9904
|
enum StageRepeatMode {
|
|
12011
|
-
/**
|
|
12012
|
-
* Always
|
|
12013
|
-
*/
|
|
12014
9905
|
Always = 0,
|
|
12015
|
-
/**
|
|
12016
|
-
* Never
|
|
12017
|
-
*/
|
|
12018
9906
|
Never = 1,
|
|
12019
|
-
/**
|
|
12020
|
-
* For not approved
|
|
12021
|
-
*/
|
|
12022
9907
|
ForNotApproved = 2,
|
|
12023
|
-
/**
|
|
12024
|
-
* On negative decision
|
|
12025
|
-
*/
|
|
12026
9908
|
OnNegativeDecision = 3,
|
|
12027
|
-
/**
|
|
12028
|
-
* When rejected or file was changed
|
|
12029
|
-
*/
|
|
12030
9909
|
WhenRejectedOrFileChanged = 4
|
|
12031
9910
|
}
|
|
12032
9911
|
}
|
|
12033
9912
|
export declare namespace GenModels {
|
|
12034
|
-
/**
|
|
12035
|
-
* Represents condition type
|
|
12036
|
-
*/
|
|
12037
9913
|
enum ConditionType {
|
|
12038
|
-
/**
|
|
12039
|
-
* No conditions
|
|
12040
|
-
*/
|
|
12041
9914
|
None = 0,
|
|
12042
|
-
/**
|
|
12043
|
-
* And
|
|
12044
|
-
*/
|
|
12045
9915
|
And = 1,
|
|
12046
|
-
/**
|
|
12047
|
-
* Or
|
|
12048
|
-
*/
|
|
12049
9916
|
Or = 2,
|
|
12050
|
-
/**
|
|
12051
|
-
* Complex conditions
|
|
12052
|
-
*/
|
|
12053
9917
|
Complex = 3
|
|
12054
9918
|
}
|
|
12055
9919
|
}
|
|
12056
9920
|
export declare namespace GenModels {
|
|
12057
|
-
/**
|
|
12058
|
-
* Represents node type
|
|
12059
|
-
*/
|
|
12060
9921
|
enum NodeType {
|
|
12061
|
-
/**
|
|
12062
|
-
* Stage node type
|
|
12063
|
-
*/
|
|
12064
9922
|
Stage = 0
|
|
12065
9923
|
}
|
|
12066
9924
|
}
|
|
@@ -12396,37 +10254,13 @@ export declare namespace GenModels {
|
|
|
12396
10254
|
}
|
|
12397
10255
|
}
|
|
12398
10256
|
export declare namespace GenModels {
|
|
12399
|
-
/**
|
|
12400
|
-
* Declare column type
|
|
12401
|
-
*/
|
|
12402
10257
|
enum ColumnType {
|
|
12403
|
-
/**
|
|
12404
|
-
* Int
|
|
12405
|
-
*/
|
|
12406
10258
|
Integer = 0,
|
|
12407
|
-
/**
|
|
12408
|
-
* String
|
|
12409
|
-
*/
|
|
12410
10259
|
String = 1,
|
|
12411
|
-
/**
|
|
12412
|
-
* Double
|
|
12413
|
-
*/
|
|
12414
10260
|
Float = 2,
|
|
12415
|
-
/**
|
|
12416
|
-
* Datetime
|
|
12417
|
-
*/
|
|
12418
10261
|
DateTime = 3,
|
|
12419
|
-
/**
|
|
12420
|
-
* Boolean
|
|
12421
|
-
*/
|
|
12422
10262
|
Bool = 5,
|
|
12423
|
-
/**
|
|
12424
|
-
* Decimal column type
|
|
12425
|
-
*/
|
|
12426
10263
|
Decimal = 6,
|
|
12427
|
-
/**
|
|
12428
|
-
* Unique id data type
|
|
12429
|
-
*/
|
|
12430
10264
|
UniqueId = 7
|
|
12431
10265
|
}
|
|
12432
10266
|
}
|
|
@@ -12513,9 +10347,6 @@ export declare namespace GenModels {
|
|
|
12513
10347
|
}
|
|
12514
10348
|
}
|
|
12515
10349
|
export declare namespace GenModels {
|
|
12516
|
-
/**
|
|
12517
|
-
* Partner search mode
|
|
12518
|
-
*/
|
|
12519
10350
|
enum PartnerSearchMode {
|
|
12520
10351
|
SearchDepartments = 0,
|
|
12521
10352
|
SearchEmployees = 1,
|
|
@@ -12523,21 +10354,9 @@ export declare namespace GenModels {
|
|
|
12523
10354
|
}
|
|
12524
10355
|
}
|
|
12525
10356
|
export declare namespace GenModels {
|
|
12526
|
-
/**
|
|
12527
|
-
* Partner item type
|
|
12528
|
-
*/
|
|
12529
10357
|
enum PartnerItemType {
|
|
12530
|
-
/**
|
|
12531
|
-
* Organization
|
|
12532
|
-
*/
|
|
12533
10358
|
Organization = 0,
|
|
12534
|
-
/**
|
|
12535
|
-
* Department
|
|
12536
|
-
*/
|
|
12537
10359
|
Department = 1,
|
|
12538
|
-
/**
|
|
12539
|
-
* Employee
|
|
12540
|
-
*/
|
|
12541
10360
|
Employee = 2
|
|
12542
10361
|
}
|
|
12543
10362
|
}
|
|
@@ -13029,9 +10848,6 @@ export declare namespace GenModels {
|
|
|
13029
10848
|
}
|
|
13030
10849
|
}
|
|
13031
10850
|
export declare namespace GenModels {
|
|
13032
|
-
/**
|
|
13033
|
-
* Agreement state type
|
|
13034
|
-
*/
|
|
13035
10851
|
enum AgreementStateType {
|
|
13036
10852
|
Draft = 0,
|
|
13037
10853
|
Started = 1,
|
|
@@ -13042,45 +10858,18 @@ export declare namespace GenModels {
|
|
|
13042
10858
|
}
|
|
13043
10859
|
}
|
|
13044
10860
|
export declare namespace GenModels {
|
|
13045
|
-
/**
|
|
13046
|
-
* Approval type
|
|
13047
|
-
*/
|
|
13048
10861
|
enum ApprovalType {
|
|
13049
|
-
/**
|
|
13050
|
-
* Sequential
|
|
13051
|
-
*/
|
|
13052
10862
|
Sequential = 0,
|
|
13053
|
-
/**
|
|
13054
|
-
* Parallel
|
|
13055
|
-
*/
|
|
13056
10863
|
Parallel = 1,
|
|
13057
|
-
/**
|
|
13058
|
-
* Consolidation
|
|
13059
|
-
*/
|
|
13060
10864
|
Consolidation = 2,
|
|
13061
|
-
/**
|
|
13062
|
-
* Alternative
|
|
13063
|
-
*/
|
|
13064
10865
|
Alternative = 3
|
|
13065
10866
|
}
|
|
13066
10867
|
}
|
|
13067
10868
|
export declare namespace GenModels {
|
|
13068
10869
|
enum StageSemantics {
|
|
13069
|
-
/**
|
|
13070
|
-
* Positive
|
|
13071
|
-
*/
|
|
13072
10870
|
Positive = 1,
|
|
13073
|
-
/**
|
|
13074
|
-
* Negative
|
|
13075
|
-
*/
|
|
13076
10871
|
Negative = 2,
|
|
13077
|
-
/**
|
|
13078
|
-
* Conditionally positive
|
|
13079
|
-
*/
|
|
13080
10872
|
Neutral = 3,
|
|
13081
|
-
/**
|
|
13082
|
-
* Other
|
|
13083
|
-
*/
|
|
13084
10873
|
Other = 4
|
|
13085
10874
|
}
|
|
13086
10875
|
}
|
|
@@ -13326,17 +11115,8 @@ export declare namespace GenModels {
|
|
|
13326
11115
|
}
|
|
13327
11116
|
}
|
|
13328
11117
|
export declare namespace GenModels {
|
|
13329
|
-
/**
|
|
13330
|
-
* department data source
|
|
13331
|
-
*/
|
|
13332
11118
|
enum DepartmentDataSource {
|
|
13333
|
-
/**
|
|
13334
|
-
* Staff directory
|
|
13335
|
-
*/
|
|
13336
11119
|
StaffDirectory = 0,
|
|
13337
|
-
/**
|
|
13338
|
-
* Partners directory
|
|
13339
|
-
*/
|
|
13340
11120
|
PartnersDirectory = 1
|
|
13341
11121
|
}
|
|
13342
11122
|
}
|
|
@@ -13440,25 +11220,10 @@ export declare namespace GenModels {
|
|
|
13440
11220
|
}
|
|
13441
11221
|
}
|
|
13442
11222
|
export declare namespace GenModels {
|
|
13443
|
-
/**
|
|
13444
|
-
* Delegate event
|
|
13445
|
-
*/
|
|
13446
11223
|
enum DelegateEvent {
|
|
13447
|
-
/**
|
|
13448
|
-
* Delegated
|
|
13449
|
-
*/
|
|
13450
11224
|
Delegated = 0,
|
|
13451
|
-
/**
|
|
13452
|
-
* Delegated with return
|
|
13453
|
-
*/
|
|
13454
11225
|
DelegatedWithReturn = 1,
|
|
13455
|
-
/**
|
|
13456
|
-
* Returned
|
|
13457
|
-
*/
|
|
13458
11226
|
Returned = 2,
|
|
13459
|
-
/**
|
|
13460
|
-
* Taken to work
|
|
13461
|
-
*/
|
|
13462
11227
|
TakenToWork = 3
|
|
13463
11228
|
}
|
|
13464
11229
|
}
|
|
@@ -13638,36 +11403,15 @@ export declare namespace GenModels {
|
|
|
13638
11403
|
}
|
|
13639
11404
|
}
|
|
13640
11405
|
export declare namespace GenModels {
|
|
13641
|
-
/**
|
|
13642
|
-
* BackgroundStyle
|
|
13643
|
-
*/
|
|
13644
11406
|
enum BackgroundStyle {
|
|
13645
|
-
/**
|
|
13646
|
-
* Tile
|
|
13647
|
-
*/
|
|
13648
11407
|
Tile = 0,
|
|
13649
|
-
/**
|
|
13650
|
-
* Stretch
|
|
13651
|
-
*/
|
|
13652
11408
|
Stretch = 1
|
|
13653
11409
|
}
|
|
13654
11410
|
}
|
|
13655
11411
|
export declare namespace GenModels {
|
|
13656
|
-
/**
|
|
13657
|
-
* BackgroundType
|
|
13658
|
-
*/
|
|
13659
11412
|
enum BackgroundType {
|
|
13660
|
-
/**
|
|
13661
|
-
* Default
|
|
13662
|
-
*/
|
|
13663
11413
|
Default = 0,
|
|
13664
|
-
/**
|
|
13665
|
-
* Inherit
|
|
13666
|
-
*/
|
|
13667
11414
|
Inherit = 1,
|
|
13668
|
-
/**
|
|
13669
|
-
* Custom
|
|
13670
|
-
*/
|
|
13671
11415
|
Custom = 2
|
|
13672
11416
|
}
|
|
13673
11417
|
}
|
|
@@ -13884,17 +11628,8 @@ export declare namespace GenModels {
|
|
|
13884
11628
|
}
|
|
13885
11629
|
}
|
|
13886
11630
|
export declare namespace GenModels {
|
|
13887
|
-
/**
|
|
13888
|
-
* Save scanned image format
|
|
13889
|
-
*/
|
|
13890
11631
|
enum ScannedImageFormat {
|
|
13891
|
-
/**
|
|
13892
|
-
* Save as one PDF file
|
|
13893
|
-
*/
|
|
13894
11632
|
Pdf = 0,
|
|
13895
|
-
/**
|
|
13896
|
-
* Save as JPG image
|
|
13897
|
-
*/
|
|
13898
11633
|
Jpeg = 1
|
|
13899
11634
|
}
|
|
13900
11635
|
}
|
|
@@ -13910,21 +11645,9 @@ export declare namespace GenModels {
|
|
|
13910
11645
|
}
|
|
13911
11646
|
}
|
|
13912
11647
|
export declare namespace GenModels {
|
|
13913
|
-
/**
|
|
13914
|
-
* Show completion parameter in dialog
|
|
13915
|
-
*/
|
|
13916
11648
|
enum ShowParametersOptions {
|
|
13917
|
-
/**
|
|
13918
|
-
* Allways
|
|
13919
|
-
*/
|
|
13920
11649
|
Always = 0,
|
|
13921
|
-
/**
|
|
13922
|
-
* Never
|
|
13923
|
-
*/
|
|
13924
11650
|
Never = 1,
|
|
13925
|
-
/**
|
|
13926
|
-
* Show, if field is empty
|
|
13927
|
-
*/
|
|
13928
11651
|
IfFieldEmpty = 2
|
|
13929
11652
|
}
|
|
13930
11653
|
}
|
|
@@ -14012,29 +11735,11 @@ export declare namespace GenModels {
|
|
|
14012
11735
|
}
|
|
14013
11736
|
}
|
|
14014
11737
|
export declare namespace GenModels {
|
|
14015
|
-
/**
|
|
14016
|
-
* Default time modes for DateTime
|
|
14017
|
-
*/
|
|
14018
11738
|
enum DateTimeDefaultTimeModes {
|
|
14019
|
-
/**
|
|
14020
|
-
* Current time
|
|
14021
|
-
*/
|
|
14022
11739
|
CurrentTime = 0,
|
|
14023
|
-
/**
|
|
14024
|
-
* Start of day
|
|
14025
|
-
*/
|
|
14026
11740
|
StartOfDay = 1,
|
|
14027
|
-
/**
|
|
14028
|
-
* Start of work day
|
|
14029
|
-
*/
|
|
14030
11741
|
StartOfWorkDay = 2,
|
|
14031
|
-
/**
|
|
14032
|
-
* End of day
|
|
14033
|
-
*/
|
|
14034
11742
|
EndOfDay = 3,
|
|
14035
|
-
/**
|
|
14036
|
-
* End of work day
|
|
14037
|
-
*/
|
|
14038
11743
|
EndOfWorkDay = 4
|
|
14039
11744
|
}
|
|
14040
11745
|
}
|
|
@@ -14227,33 +11932,6 @@ export declare namespace GenModels {
|
|
|
14227
11932
|
Stopped = 15
|
|
14228
11933
|
}
|
|
14229
11934
|
}
|
|
14230
|
-
export declare namespace GenModels {
|
|
14231
|
-
/**
|
|
14232
|
-
* Represents task group card state type
|
|
14233
|
-
*/
|
|
14234
|
-
enum TaskGroupStateType {
|
|
14235
|
-
/**
|
|
14236
|
-
* Preparation
|
|
14237
|
-
*/
|
|
14238
|
-
Preparation = 0,
|
|
14239
|
-
/**
|
|
14240
|
-
* Performance
|
|
14241
|
-
*/
|
|
14242
|
-
Performance = 1,
|
|
14243
|
-
/**
|
|
14244
|
-
* Completed
|
|
14245
|
-
*/
|
|
14246
|
-
Completed = 2,
|
|
14247
|
-
/**
|
|
14248
|
-
* Recalled
|
|
14249
|
-
*/
|
|
14250
|
-
Recalled = 3,
|
|
14251
|
-
/**
|
|
14252
|
-
* Unknown
|
|
14253
|
-
*/
|
|
14254
|
-
Unknown = 6
|
|
14255
|
-
}
|
|
14256
|
-
}
|
|
14257
11935
|
export declare namespace GenModels {
|
|
14258
11936
|
/**
|
|
14259
11937
|
* Declares available task operation
|
|
@@ -14369,6 +12047,76 @@ export declare namespace GenModels {
|
|
|
14369
12047
|
SetContent = 26
|
|
14370
12048
|
}
|
|
14371
12049
|
}
|
|
12050
|
+
export declare namespace GenModels {
|
|
12051
|
+
/**
|
|
12052
|
+
* Represents task group card state type
|
|
12053
|
+
*/
|
|
12054
|
+
enum TaskGroupStateType {
|
|
12055
|
+
/**
|
|
12056
|
+
* Preparation
|
|
12057
|
+
*/
|
|
12058
|
+
Preparation = 0,
|
|
12059
|
+
/**
|
|
12060
|
+
* Performance
|
|
12061
|
+
*/
|
|
12062
|
+
Performance = 1,
|
|
12063
|
+
/**
|
|
12064
|
+
* Completed
|
|
12065
|
+
*/
|
|
12066
|
+
Completed = 2,
|
|
12067
|
+
/**
|
|
12068
|
+
* Recalled
|
|
12069
|
+
*/
|
|
12070
|
+
Recalled = 3,
|
|
12071
|
+
/**
|
|
12072
|
+
* Unknown
|
|
12073
|
+
*/
|
|
12074
|
+
Unknown = 6
|
|
12075
|
+
}
|
|
12076
|
+
}
|
|
12077
|
+
export declare namespace GenModels {
|
|
12078
|
+
/**
|
|
12079
|
+
* Represents task group operation kind
|
|
12080
|
+
*/
|
|
12081
|
+
enum TaskGroupOperationKind {
|
|
12082
|
+
/**
|
|
12083
|
+
* Read
|
|
12084
|
+
*/
|
|
12085
|
+
Read = 0,
|
|
12086
|
+
/**
|
|
12087
|
+
* Edit
|
|
12088
|
+
*/
|
|
12089
|
+
Edit = 1,
|
|
12090
|
+
/**
|
|
12091
|
+
* Delete
|
|
12092
|
+
*/
|
|
12093
|
+
Delete = 2,
|
|
12094
|
+
/**
|
|
12095
|
+
* Start task group
|
|
12096
|
+
*/
|
|
12097
|
+
Start = 3,
|
|
12098
|
+
/**
|
|
12099
|
+
* Recall task group
|
|
12100
|
+
*/
|
|
12101
|
+
Recall = 4,
|
|
12102
|
+
/**
|
|
12103
|
+
* Add linked document
|
|
12104
|
+
*/
|
|
12105
|
+
AddLinkedDocument = 5,
|
|
12106
|
+
/**
|
|
12107
|
+
* Delete linked document
|
|
12108
|
+
*/
|
|
12109
|
+
DeleteLinkedDocument = 6,
|
|
12110
|
+
/**
|
|
12111
|
+
* Set content
|
|
12112
|
+
*/
|
|
12113
|
+
SetContent = 7,
|
|
12114
|
+
/**
|
|
12115
|
+
* Other
|
|
12116
|
+
*/
|
|
12117
|
+
Other = 8
|
|
12118
|
+
}
|
|
12119
|
+
}
|
|
14372
12120
|
export declare namespace GenModels {
|
|
14373
12121
|
/**
|
|
14374
12122
|
* Possible columns of control Links
|
|
@@ -14454,17 +12202,8 @@ export declare namespace GenModels {
|
|
|
14454
12202
|
}
|
|
14455
12203
|
}
|
|
14456
12204
|
export declare namespace GenModels {
|
|
14457
|
-
/**
|
|
14458
|
-
* Contains variants DisplayMode option values of AgreementHistory control.
|
|
14459
|
-
*/
|
|
14460
12205
|
enum AgreementHistoryDisplayMode {
|
|
14461
|
-
/**
|
|
14462
|
-
* Standard mode. Only the current approval is displayed.
|
|
14463
|
-
*/
|
|
14464
12206
|
Standart = 0,
|
|
14465
|
-
/**
|
|
14466
|
-
* Full mode. All approvals are displayed.
|
|
14467
|
-
*/
|
|
14468
12207
|
Full = 1
|
|
14469
12208
|
}
|
|
14470
12209
|
}
|