@docsvision/webclient 6.1.9 → 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.
@@ -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
  }
@@ -6686,23 +5364,8 @@ export declare namespace GenModels {
6686
5364
  }
6687
5365
  export declare namespace GenModels {
6688
5366
  interface SignatureRequest {
6689
- /**
6690
- * Document card, containing signature
6691
- *
6692
- * @format datatype.uuid
6693
- */
6694
5367
  documentId: string;
6695
- /**
6696
- * Signature id
6697
- *
6698
- * @format datatype.uuid
6699
- */
6700
5368
  signatureId: string;
6701
- /**
6702
- * Signature id
6703
- *
6704
- * @format datatype.uuid
6705
- */
6706
5369
  signaturePartId: string;
6707
5370
  }
6708
5371
  }
@@ -6772,25 +5435,9 @@ export declare namespace GenModels {
6772
5435
  }
6773
5436
  export declare namespace GenModels {
6774
5437
  interface GetAcknowledgemenListRequest {
6775
- /**
6776
- * Card id
6777
- *
6778
- * @format datatype.uuid
6779
- */
6780
5438
  documentId: string;
6781
- /**
6782
- * Content of card document transformation
6783
- */
6784
5439
  transformationAlias: string;
6785
- /**
6786
- * List of task kind ids which should be included in acknowledgemen list
6787
- */
6788
5440
  taskKindIds: Array<string>;
6789
- /**
6790
- * Flag indicating the need to include tasks of all levels in acknowledgemen list
6791
- *
6792
- * If value is FALSE (default), in acknowledgemen list should include only the tasks of the first level
6793
- */
6794
5441
  includeTasksAllLevels: boolean;
6795
5442
  }
6796
5443
  }
@@ -6810,13 +5457,7 @@ export declare namespace GenModels {
6810
5457
  }
6811
5458
  export declare namespace GenModels {
6812
5459
  interface GetFilesQueryOptions {
6813
- /**
6814
- * Count of items to skip
6815
- */
6816
5460
  skipCount: number;
6817
- /**
6818
- * Max items count in the result
6819
- */
6820
5461
  maxCount?: number;
6821
5462
  }
6822
5463
  }
@@ -6832,9 +5473,6 @@ export declare namespace GenModels {
6832
5473
  }
6833
5474
  export declare namespace GenModels {
6834
5475
  interface FileListVersionsDataModel {
6835
- /**
6836
- * Updated list of the files versions in the card
6837
- */
6838
5476
  versions: Array<GenModels.VersionedFileModel>;
6839
5477
  }
6840
5478
  }
@@ -6920,69 +5558,20 @@ export declare namespace GenModels {
6920
5558
  }
6921
5559
  export declare namespace GenModels {
6922
5560
  interface VersionedFileCommentCreateModel {
6923
- /**
6924
- * Gets or sets comment identifier
6925
- *
6926
- * @format datatype.uuid
6927
- */
6928
5561
  commentId?: string;
6929
- /**
6930
- * Gets or sets container card identifier
6931
- *
6932
- * @format datatype.uuid
6933
- */
6934
5562
  cardId: string;
6935
- /**
6936
- * Gets or sets timestamp
6937
- */
6938
5563
  timestamp: number;
6939
- /**
6940
- * Gets or sets comment
6941
- */
6942
5564
  comment: string;
6943
- /**
6944
- * Gets or sets file card identifier
6945
- *
6946
- * @format datatype.uuid
6947
- */
6948
5565
  fileCardId: string;
6949
- /**
6950
- * Gets or sets version identifier
6951
- *
6952
- * @format datatype.uuid
6953
- */
6954
5566
  versionId: string;
6955
5567
  }
6956
5568
  }
6957
5569
  export declare namespace GenModels {
6958
5570
  interface VersionedFileCommentDeleteModel {
6959
- /**
6960
- * Gets or sets comment identifier
6961
- *
6962
- * @format datatype.uuid
6963
- */
6964
5571
  commentId: string;
6965
- /**
6966
- * Gets or sets container card identifier
6967
- *
6968
- * @format datatype.uuid
6969
- */
6970
5572
  cardId: string;
6971
- /**
6972
- * Gets or sets timestamp
6973
- */
6974
5573
  timestamp: number;
6975
- /**
6976
- * Gets or sets file card identifier
6977
- *
6978
- * @format datatype.uuid
6979
- */
6980
5574
  fileCardId: string;
6981
- /**
6982
- * Gets or sets version identifier
6983
- *
6984
- * @format datatype.uuid
6985
- */
6986
5575
  versionId: string;
6987
5576
  }
6988
5577
  }
@@ -7042,57 +5631,23 @@ export declare namespace GenModels {
7042
5631
  }
7043
5632
  export declare namespace GenModels {
7044
5633
  interface FileQuotes {
7045
- /**
7046
- * File Id
7047
- *
7048
- * @format datatype.uuid
7049
- */
7050
5634
  fileId: string;
7051
- /**
7052
- * Owner Card Id
7053
- *
7054
- * @format datatype.uuid
7055
- */
7056
5635
  ownerCardId?: string;
7057
- /**
7058
- * File name
7059
- */
7060
5636
  fileName: string;
7061
- /**
7062
- * File extension
7063
- */
7064
5637
  fileExtension: string;
7065
- /**
7066
- * WebDav link
7067
- */
7068
5638
  link: string;
7069
- /**
7070
- * Citations
7071
- */
7072
5639
  quotes: Array<GenModels.Quote>;
7073
- /**
7074
- * Has more
7075
- */
7076
5640
  hasMore: boolean;
7077
5641
  }
7078
5642
  }
7079
5643
  export declare namespace GenModels {
7080
5644
  interface Quote {
7081
- /**
7082
- * Quotes
7083
- */
7084
5645
  parts: Array<GenModels.QuotePart>;
7085
5646
  }
7086
5647
  }
7087
5648
  export declare namespace GenModels {
7088
5649
  interface QuotePart {
7089
- /**
7090
- * Quote's text
7091
- */
7092
5650
  text: string;
7093
- /**
7094
- * Marked
7095
- */
7096
5651
  isMarked: boolean;
7097
5652
  }
7098
5653
  }
@@ -7122,19 +5677,8 @@ export declare namespace GenModels {
7122
5677
  }
7123
5678
  export declare namespace GenModels {
7124
5679
  interface CardQuotes {
7125
- /**
7126
- * Card Id
7127
- *
7128
- * @format datatype.uuid
7129
- */
7130
5680
  cardId?: string;
7131
- /**
7132
- * Has more
7133
- */
7134
5681
  hasMore: boolean;
7135
- /**
7136
- * Files quotes
7137
- */
7138
5682
  files: Array<GenModels.FileQuotes>;
7139
5683
  }
7140
5684
  }
@@ -7258,13 +5802,7 @@ export declare namespace GenModels {
7258
5802
  }
7259
5803
  export declare namespace GenModels {
7260
5804
  interface CheckResult {
7261
- /**
7262
- * Was check passed or not
7263
- */
7264
5805
  passed: boolean;
7265
- /**
7266
- * If Passed is false, this property should contain reason, why check is failed.
7267
- */
7268
5806
  failReason: string;
7269
5807
  }
7270
5808
  }
@@ -7284,29 +5822,11 @@ export declare namespace GenModels {
7284
5822
  }
7285
5823
  export declare namespace GenModels {
7286
5824
  interface FolderInfoModel {
7287
- /**
7288
- * Gets or sets folder name
7289
- */
7290
5825
  name: string;
7291
- /**
7292
- * Gets or sets folder type identifier
7293
- */
7294
5826
  typeInfo: GenModels.FolderTypeInfo;
7295
- /**
7296
- * Gets or sets folder view identifier
7297
- */
7298
5827
  viewInfo: GenModels.FolderViewInfo;
7299
- /**
7300
- * Gets or sets do need highlighting unread cards
7301
- */
7302
5828
  highlightingUnread?: boolean;
7303
- /**
7304
- * Gets or sets can edit folder
7305
- */
7306
5829
  canEditFolder?: boolean;
7307
- /**
7308
- * Gets or sets can create subfolder
7309
- */
7310
5830
  canCreateSubfolder?: boolean;
7311
5831
  }
7312
5832
  }
@@ -7326,25 +5846,9 @@ export declare namespace GenModels {
7326
5846
  }
7327
5847
  export declare namespace GenModels {
7328
5848
  interface FolderDataModel {
7329
- /**
7330
- * Gets or sets folder name
7331
- */
7332
5849
  name: string;
7333
- /**
7334
- * Gets or sets folder type identifier
7335
- *
7336
- * @format datatype.uuid
7337
- */
7338
5850
  typeId?: string;
7339
- /**
7340
- * Gets or sets folder view identifier
7341
- *
7342
- * @format datatype.uuid
7343
- */
7344
5851
  viewId?: string;
7345
- /**
7346
- * Gets or sets
7347
- */
7348
5852
  highlightingUnread?: boolean;
7349
5853
  }
7350
5854
  }
@@ -7462,195 +5966,57 @@ export declare namespace GenModels {
7462
5966
  }
7463
5967
  export declare namespace GenModels {
7464
5968
  interface AllowedCardKind {
7465
- /**
7466
- * Kind id of the allowed card
7467
- *
7468
- * @format datatype.uuid
7469
- */
7470
5969
  kindId: string;
7471
- /**
7472
- * Card type id of the allowed card
7473
- *
7474
- * @format datatype.uuid
7475
- */
7476
5970
  cardTypeId: string;
7477
- /**
7478
- * Gets or sets value whether kind selected with descendants
7479
- */
7480
5971
  withDescendants: boolean;
7481
5972
  }
7482
5973
  }
7483
5974
  export declare namespace GenModels {
7484
5975
  interface LayoutKindModel {
7485
- /**
7486
- * Card type id
7487
- *
7488
- * @format datatype.uuid
7489
- */
7490
5976
  cardTypeId: string;
7491
- /**
7492
- * Kind id of the allowed card
7493
- *
7494
- * @format datatype.uuid
7495
- */
7496
5977
  kindId: string;
7497
- /**
7498
- * Gets or sets kind name
7499
- */
7500
5978
  name: string;
7501
- /**
7502
- * Gets or set child kinds
7503
- */
7504
5979
  kinds: Array<GenModels.LayoutKindModel>;
7505
- /**
7506
- * Card creation is not available
7507
- */
7508
5980
  notAvailable: boolean;
7509
- /**
7510
- * Whether custom layout available for this card kind or not
7511
- */
7512
5981
  layoutAvailable: boolean;
7513
5982
  }
7514
5983
  }
7515
5984
  export declare namespace GenModels {
7516
5985
  interface LayoutLinkCreateParams {
7517
- /**
7518
- * Card, where link creation was initiated
7519
- *
7520
- * @format datatype.uuid
7521
- */
7522
5986
  sourceCardId: string;
7523
- /**
7524
- * Timestamp of the source card
7525
- */
7526
5987
  sourceCardTimestamp: number;
7527
- /**
7528
- * Link kind
7529
- *
7530
- * @format datatype.uuid
7531
- */
7532
5988
  linkTypeId: string;
7533
- /**
7534
- * Link destination card
7535
- *
7536
- * @format datatype.uuid
7537
- */
7538
5989
  destinationCardId: string;
7539
- /**
7540
- * Where links placed in the card
7541
- */
7542
5990
  linksBinding: GenModels.SimpleBindingInfo;
7543
- /**
7544
- * If link is hard link, then removing source card will also remove destination card
7545
- */
7546
5991
  saveHardLink: boolean;
7547
- /**
7548
- * If link is report
7549
- */
7550
5992
  isReport: boolean;
7551
- /**
7552
- * If link is attached file
7553
- */
7554
5993
  isFile: boolean;
7555
- /**
7556
- * Edit operation
7557
- *
7558
- * @format datatype.uuid
7559
- */
7560
5994
  editOperation: string;
7561
- /**
7562
- * Do not add link if similar link already exists.
7563
- */
7564
5995
  preventDuplicates: boolean;
7565
5996
  }
7566
5997
  }
7567
5998
  export declare namespace GenModels {
7568
5999
  interface AddUrlLinkParams {
7569
- /**
7570
- * Card, that contains the link
7571
- *
7572
- * @format datatype.uuid
7573
- */
7574
6000
  cardId: string;
7575
- /**
7576
- * Allowed link types
7577
- */
7578
6001
  allowedLinkTypes: Array<string>;
7579
- /**
7580
- * Binding info for the links in the card
7581
- */
7582
6002
  bindingInfo: GenModels.SimpleBindingInfo;
7583
- /**
7584
- * Url
7585
- */
7586
6003
  url: string;
7587
- /**
7588
- * link type id
7589
- *
7590
- * @format datatype.uuid
7591
- */
7592
6004
  linkTypeId?: string;
7593
- /**
7594
- * Show files for following links types
7595
- */
7596
6005
  showFilesForLinksTypesIds: Array<string>;
7597
- /**
7598
- * Kind id for file cards
7599
- *
7600
- * @format datatype.uuid
7601
- */
7602
6006
  fileKindId?: string;
7603
- /**
7604
- * Known card timestamp
7605
- */
7606
6007
  timestamp: number;
7607
- /**
7608
- * Edit operation id
7609
- *
7610
- * @format datatype.uuid
7611
- */
7612
6008
  operationId?: string;
7613
6009
  }
7614
6010
  }
7615
6011
  export declare namespace GenModels {
7616
6012
  interface LayoutSetLinkDescriptionParams {
7617
- /**
7618
- * Card, that contains the link
7619
- *
7620
- * @format datatype.uuid
7621
- */
7622
6013
  cardId: string;
7623
- /**
7624
- * Allowed link types
7625
- */
7626
6014
  allowedLinkTypes: Array<string>;
7627
- /**
7628
- * Binding info for the links in the card
7629
- */
7630
6015
  bindingInfo: GenModels.SimpleBindingInfo;
7631
- /**
7632
- * Link id to update
7633
- *
7634
- * @format datatype.uuid
7635
- */
7636
6016
  linkId: string;
7637
- /**
7638
- * Kind id for file cards
7639
- *
7640
- * @format datatype.uuid
7641
- */
7642
6017
  fileKindId?: string;
7643
- /**
7644
- * Show files for following links types
7645
- */
7646
6018
  showFilesForLinksTypesIds: Array<string>;
7647
- /**
7648
- * Description to set
7649
- */
7650
6019
  newDescription: string;
7651
- /**
7652
- * Known card timestamp
7653
- */
7654
6020
  timestamp: number;
7655
6021
  }
7656
6022
  }
@@ -7692,138 +6058,41 @@ export declare namespace GenModels {
7692
6058
  }
7693
6059
  export declare namespace GenModels {
7694
6060
  interface LinksDataModel {
7695
- /**
7696
- * Updated list of the main files in the card
7697
- */
7698
6061
  links: Array<GenModels.LayoutLinkModel>;
7699
6062
  bindingInfo: GenModels.SimpleBindingInfo;
7700
- /**
7701
- * Allowed card types, that can be added as links (for add existing card).
7702
- */
7703
6063
  allowedLinkCardTypes: Array<string>;
7704
- /**
7705
- * Allowed link types
7706
- */
7707
6064
  allowedLinkTypes: Array<string>;
7708
- /**
7709
- * Do model contains links or not
7710
- */
7711
6065
  linksLoaded: boolean;
7712
- /**
7713
- * Total count of the links, including not loaded
7714
- */
7715
6066
  totalLinksCount: number;
7716
- /**
7717
- * Gets or sets links description column view mode
7718
- */
7719
6067
  descriptionColumnViewMode: GenModels.LinksDescriptionColumnViewMode;
7720
- /**
7721
- * Gets or sets description column method key
7722
- */
7723
6068
  descriptionColumnMethodKey: string;
7724
6069
  }
7725
6070
  }
7726
6071
  export declare namespace GenModels {
7727
6072
  interface LayoutLinkModel {
7728
- /**
7729
- * Gets or sets link id
7730
- *
7731
- * @format datatype.uuid
7732
- */
7733
6073
  linkId: string;
7734
- /**
7735
- * Gets or sets display link name
7736
- */
7737
6074
  displayName: string;
7738
- /**
7739
- * Gets or sets link type identifier
7740
- *
7741
- * @format datatype.uuid
7742
- */
7743
6075
  linkTypeId: string;
7744
- /**
7745
- * Gets or sets link type name
7746
- */
7747
6076
  linkTypeName: string;
7748
- /**
7749
- * link kind
7750
- */
7751
6077
  kind: GenModels.LinkKind;
7752
- /**
7753
- * Linked card Type is document
7754
- */
7755
6078
  isDocument: boolean;
7756
- /**
7757
- * Linked card id
7758
- *
7759
- * @format datatype.uuid
7760
- */
7761
6079
  cardId: string;
7762
- /**
7763
- * Card type identifier
7764
- *
7765
- * @format datatype.uuid
7766
- */
7767
6080
  cardTypeId: string;
7768
- /**
7769
- * Card kind identifier
7770
- *
7771
- * @format datatype.uuid
7772
- */
7773
6081
  cardKindId: string;
7774
- /**
7775
- * File card id (if file card)
7776
- *
7777
- * @format datatype.uuid
7778
- */
7779
6082
  fileCardId?: string;
7780
- /**
7781
- * File card version id (if file card)
7782
- *
7783
- * @format datatype.uuid
7784
- */
7785
6083
  fileVersionId?: string;
7786
- /**
7787
- * Gets or sets Link creation date
7788
- *
7789
- * @format datatype.datetime
7790
- */
7791
6084
  creationDate?: string;
7792
- /**
7793
- * Display name of the author of the link.
7794
- */
7795
6085
  authorDisplayName: string;
7796
- /**
7797
- * Link description
7798
- */
7799
6086
  description: string;
7800
- /**
7801
- * Url
7802
- */
7803
6087
  url: string;
7804
- /**
7805
- * Gets or sets can delete link
7806
- */
7807
6088
  canDelete: boolean;
7808
- /**
7809
- * Gets link description model
7810
- */
7811
6089
  linkDescription: GenModels.LayoutLinkDescriptionModel;
7812
6090
  }
7813
6091
  }
7814
6092
  export declare namespace GenModels {
7815
6093
  interface LayoutLinkDescriptionModel {
7816
- /**
7817
- * Gets or sets link description mode
7818
- */
7819
6094
  linkDescriptionMode: GenModels.LinkDescriptionMode;
7820
- /**
7821
- * Gets or sets text
7822
- */
7823
6095
  text: string;
7824
- /**
7825
- * Gets or sets layout
7826
- */
7827
6096
  layout: GenModels.LayoutCardViewModel;
7828
6097
  }
7829
6098
  }
@@ -7851,112 +6120,35 @@ export declare namespace GenModels {
7851
6120
  }
7852
6121
  export declare namespace GenModels {
7853
6122
  interface LayoutRowCreateParams {
7854
- /**
7855
- * Card identifier
7856
- *
7857
- * @format datatype.uuid
7858
- */
7859
6123
  cardId: string;
7860
- /**
7861
- * Section identifier
7862
- *
7863
- * @format datatype.uuid
7864
- */
7865
6124
  sectionId: string;
7866
- /**
7867
- * Gets or sets layout mode
7868
- *
7869
- * @format datatype.uuid
7870
- */
7871
6125
  layoutMode?: string;
7872
- /**
7873
- * Gets or sets parent row id
7874
- *
7875
- * @format datatype.uuid
7876
- */
7877
6126
  parentRowId?: string;
7878
- /**
7879
- * Gets or sets tree parent row id
7880
- *
7881
- * @format datatype.uuid
7882
- */
7883
6127
  parentTreeRowId?: string;
7884
6128
  layoutParams: Array<GenModels.LayoutParamModel>;
7885
- /**
7886
- * Some data, provided by extensions for bypassing to lifecycle.
7887
- */
7888
6129
  customContext?: any;
7889
6130
  }
7890
6131
  }
7891
6132
  export declare namespace GenModels {
7892
6133
  interface LayoutRowViewModel extends GenModels.LayoutViewModel {
7893
- /**
7894
- * Gets card row model
7895
- */
7896
6134
  rowInfo: GenModels.RowInfoModel;
7897
6135
  }
7898
6136
  }
7899
6137
  export declare namespace GenModels {
7900
6138
  interface RowInfoModel extends GenModels.BaseInfoModel {
7901
- /**
7902
- * Gets or sets section id
7903
- *
7904
- * @format datatype.uuid
7905
- */
7906
6139
  sectionId: string;
7907
- /**
7908
- * Parent row identifier
7909
- *
7910
- * @format datatype.uuid
7911
- */
7912
6140
  parentRowId?: string;
7913
- /**
7914
- * Parent tree row identifier
7915
- *
7916
- * @format datatype.uuid
7917
- */
7918
6141
  parentTreeRowId?: string;
7919
- /**
7920
- * Card identifier
7921
- *
7922
- * @format datatype.uuid
7923
- */
7924
6142
  cardId: string;
7925
- /**
7926
- * Gets or sets card lock info
7927
- */
7928
6143
  lockInfo: GenModels.LockInfoViewModel;
7929
6144
  }
7930
6145
  }
7931
6146
  export declare namespace GenModels {
7932
6147
  interface RowLayoutParams {
7933
- /**
7934
- * Gets or sets card identifier
7935
- *
7936
- * @format datatype.uuid
7937
- */
7938
6148
  cardId: string;
7939
- /**
7940
- * Gets or sets section identifier
7941
- *
7942
- * @format datatype.uuid
7943
- */
7944
6149
  sectionId: string;
7945
- /**
7946
- * Gets or sets row identifier
7947
- *
7948
- * @format datatype.uuid
7949
- */
7950
6150
  rowId: string;
7951
- /**
7952
- * Gets or sets layout type
7953
- *
7954
- * @format datatype.uuid
7955
- */
7956
6151
  layoutMode?: string;
7957
- /**
7958
- * Data passed from caller
7959
- */
7960
6152
  layoutParams: Array<GenModels.LayoutParamModel>;
7961
6153
  }
7962
6154
  }
@@ -7997,93 +6189,31 @@ export declare namespace GenModels {
7997
6189
  }
7998
6190
  export declare namespace GenModels {
7999
6191
  interface RowLayoutPartParams extends GenModels.RowLayoutParams {
8000
- /**
8001
- * Get or sets root control name
8002
- */
8003
6192
  rootControlName: string;
8004
- /**
8005
- * Get or set include root
8006
- */
8007
6193
  includeRootControl: boolean;
8008
6194
  }
8009
6195
  }
8010
6196
  export declare namespace GenModels {
8011
6197
  interface SaveRowControlDataModel {
8012
- /**
8013
- * Gets or sets a card id
8014
- *
8015
- * @format datatype.uuid
8016
- */
8017
6198
  cardId: string;
8018
- /**
8019
- * Gets or sets a section id
8020
- *
8021
- * @format datatype.uuid
8022
- */
8023
6199
  sectionId: string;
8024
- /**
8025
- * Gets or sets a row id
8026
- *
8027
- * @format datatype.uuid
8028
- */
8029
6200
  rowId: string;
8030
- /**
8031
- * Gets or sets a row timestamp
8032
- */
8033
6201
  timestamp: number;
8034
- /**
8035
- * Gets or sets mode
8036
- *
8037
- * @format datatype.uuid
8038
- */
8039
6202
  layoutMode?: string;
8040
- /**
8041
- * Gets or sets layout type
8042
- */
8043
6203
  layoutAction: GenModels.LayoutAction;
8044
- /**
8045
- * Gets or sets control data
8046
- */
8047
6204
  bindings: Array<GenModels.BindingsWriteRequest>;
8048
- /**
8049
- * Layout load option
8050
- */
8051
6205
  layoutParams: Array<GenModels.LayoutParamModel>;
8052
- /**
8053
- * Gets or sets control data
8054
- */
8055
6206
  extendedDataSourceInfos: Array<GenModels.ExtendedDataSourceInfoModel>;
8056
- /**
8057
- * Indicates, that this save completes entity creation and remove all temp data.
8058
- */
8059
6207
  completeCreation: boolean;
8060
- /**
8061
- * Some data, provided by extensions for bypassing to lifecycle.
8062
- */
8063
6208
  customContext?: any;
8064
6209
  }
8065
6210
  }
8066
6211
  export declare namespace GenModels {
8067
6212
  interface DepartmentSearchQuery {
8068
- /**
8069
- * search string
8070
- */
8071
6213
  searchText: string;
8072
- /**
8073
- * Data source
8074
- */
8075
6214
  source: GenModels.DepartmentDataSource;
8076
- /**
8077
- * Department types to search
8078
- */
8079
6215
  itemTypes: GenModels.SearchDepartmentType;
8080
- /**
8081
- * Count of items to skip (paginator logic)
8082
- */
8083
6216
  skipCount?: number;
8084
- /**
8085
- * Max items count in the result (paginator logic)
8086
- */
8087
6217
  maxCount?: number;
8088
6218
  }
8089
6219
  }
@@ -8101,23 +6231,9 @@ export declare namespace GenModels {
8101
6231
  }
8102
6232
  export declare namespace GenModels {
8103
6233
  interface DepartmentLoadTreeQuery {
8104
- /**
8105
- * Parent department identifier
8106
- *
8107
- * @format datatype.uuid
8108
- */
8109
6234
  parentNodeId?: string;
8110
- /**
8111
- * depth of search
8112
- */
8113
6235
  treeLevelDown: number;
8114
- /**
8115
- * Data source
8116
- */
8117
6236
  source: GenModels.DepartmentDataSource;
8118
- /**
8119
- * Department types to search
8120
- */
8121
6237
  itemTypes: GenModels.SearchDepartmentType;
8122
6238
  }
8123
6239
  }
@@ -8173,17 +6289,8 @@ export declare namespace GenModels {
8173
6289
  }
8174
6290
  export declare namespace GenModels {
8175
6291
  interface DepartmentFindInTreeQuery {
8176
- /**
8177
- * search string
8178
- */
8179
6292
  searchQuery: string;
8180
- /**
8181
- * Data source
8182
- */
8183
6293
  source: GenModels.DepartmentDataSource;
8184
- /**
8185
- * Department types to search
8186
- */
8187
6294
  itemTypes: GenModels.SearchDepartmentType;
8188
6295
  }
8189
6296
  }
@@ -8292,113 +6399,46 @@ export declare namespace GenModels {
8292
6399
  }
8293
6400
  export declare namespace GenModels {
8294
6401
  interface DepartmentLoadFlatQuery {
8295
- /**
8296
- * Parent department identifier
8297
- *
8298
- * @format datatype.uuid
8299
- */
8300
6402
  departmentId?: string;
8301
- /**
8302
- * Data source
8303
- */
8304
- source: GenModels.DepartmentDataSource;
8305
- /**
8306
- * Department types to search
8307
- */
6403
+ source: GenModels.DepartmentDataSource;
8308
6404
  itemTypes: GenModels.SearchDepartmentType;
8309
- /**
8310
- * Skip n departments from begin (pagination)
8311
- */
8312
6405
  skip: number;
8313
- /**
8314
- * Max departments count in response (pagination)
8315
- */
8316
6406
  maxCount: number;
8317
6407
  }
8318
6408
  }
8319
6409
  export declare namespace GenModels {
8320
6410
  interface DepartmentLoadFlatResponse {
8321
- /**
8322
- * List of department items
8323
- */
8324
6411
  items: Array<GenModels.DepartmentFlatDigest>;
8325
- /**
8326
- * Total items count
8327
- */
8328
6412
  totalItemsCount: number;
8329
- /**
8330
- * Directory timestamp
8331
- */
8332
6413
  directoryTimestamp: number;
8333
6414
  }
8334
6415
  }
8335
6416
  export declare namespace GenModels {
8336
6417
  interface DepartmentFlatDigest {
8337
- /**
8338
- * Department tree node data
8339
- */
8340
6418
  data: GenModels.DepartmentTreeNode;
8341
- /**
8342
- * True if department tree node data has any children, and false otherwise
8343
- */
8344
6419
  hasChildren?: boolean;
8345
6420
  }
8346
6421
  }
8347
6422
  export declare namespace GenModels {
8348
6423
  interface DepartmentSearchFlatQuery {
8349
- /**
8350
- * Data source
8351
- */
8352
6424
  source: GenModels.DepartmentDataSource;
8353
- /**
8354
- * item types
8355
- */
8356
6425
  itemTypes: GenModels.SearchDepartmentType;
8357
- /**
8358
- * Text to search
8359
- */
8360
6426
  searchText: string;
8361
- /**
8362
- * Department id
8363
- *
8364
- * @format datatype.uuid
8365
- */
8366
6427
  departmentId?: string;
8367
- /**
8368
- * Count of items to skip (paginator logic)
8369
- */
8370
6428
  skip?: number;
8371
- /**
8372
- * Max items count in the result (paginator logic)
8373
- */
8374
6429
  maxCount?: number;
8375
6430
  }
8376
6431
  }
8377
6432
  export declare namespace GenModels {
8378
6433
  interface DepartmentSearchFlatResponse {
8379
- /**
8380
- * Department's search items
8381
- */
8382
6434
  items: Array<GenModels.DepartmentSearchFlatItem>;
8383
- /**
8384
- * Has more items
8385
- */
8386
6435
  hasMore: boolean;
8387
- /**
8388
- * Directory timestamp
8389
- */
8390
6436
  directoryTimestamp: number;
8391
6437
  }
8392
6438
  }
8393
6439
  export declare namespace GenModels {
8394
6440
  interface DepartmentSearchFlatItem extends GenModels.DepartmentFlatDigest {
8395
- /**
8396
- * Partner search info
8397
- */
8398
6441
  searchInfo: GenModels.PartnerSearchInfo;
8399
- /**
8400
- * Path to search in
8401
- */
8402
6442
  path: Array<GenModels.DepartmentModel>;
8403
6443
  }
8404
6444
  }
@@ -8590,69 +6630,23 @@ export declare namespace GenModels {
8590
6630
  }
8591
6631
  export declare namespace GenModels {
8592
6632
  interface ChildTaskCommentModel {
8593
- /**
8594
- * Task identifier
8595
- *
8596
- * @format datatype.uuid
8597
- */
8598
6633
  cardId: string;
8599
- /**
8600
- * Task name
8601
- */
8602
6634
  taskName: string;
8603
- /**
8604
- * Task state name
8605
- */
8606
6635
  stateDisplayName: string;
8607
- /**
8608
- * Task name
8609
- */
8610
6636
  comment: string;
8611
- /**
8612
- * Comment file info
8613
- */
8614
6637
  commentFile: GenModels.CommonFileModel;
8615
- /**
8616
- * Gets performer name
8617
- */
8618
6638
  performerDisplayName: string;
8619
6639
  }
8620
6640
  }
8621
6641
  export declare namespace GenModels {
8622
6642
  interface CommonFileModel {
8623
- /**
8624
- * File name
8625
- */
8626
6643
  fileName: string;
8627
- /**
8628
- * File id
8629
- *
8630
- * @format datatype.uuid
8631
- */
8632
6644
  fileId: string;
8633
- /**
8634
- * Gets or sets a flag that determines whether current file can be edited.
8635
- */
8636
6645
  allowEdit: boolean;
8637
- /**
8638
- * Link to open file with webdav
8639
- */
8640
6646
  webDavLink: string;
8641
- /**
8642
- * Link to open file with webdav readonly
8643
- */
8644
6647
  webDavReadonlyLink: string;
8645
- /**
8646
- * Does file preview available for this file extension
8647
- */
8648
6648
  filePreviewAvailable: boolean;
8649
- /**
8650
- * Does file locked by someone
8651
- */
8652
6649
  isLocked: boolean;
8653
- /**
8654
- * If file loading failed, the property will contain error message.
8655
- */
8656
6650
  loadingErrorMessage: string;
8657
6651
  }
8658
6652
  }
@@ -8720,23 +6714,9 @@ export declare namespace GenModels {
8720
6714
  }
8721
6715
  export declare namespace GenModels {
8722
6716
  interface ChildTaskCreateDefaultValues {
8723
- /**
8724
- * Name of the task
8725
- */
8726
6717
  name: string;
8727
- /**
8728
- * Task description
8729
- */
8730
6718
  content: string;
8731
- /**
8732
- * Task performers
8733
- */
8734
6719
  currentPerformers: Array<GenModels.EmployeeModel>;
8735
- /**
8736
- * Task end date
8737
- *
8738
- * @format datatype.datetime
8739
- */
8740
6720
  endDate?: string;
8741
6721
  }
8742
6722
  }
@@ -8768,13 +6748,7 @@ export declare namespace GenModels {
8768
6748
  }
8769
6749
  export declare namespace GenModels {
8770
6750
  interface DelegateRecordsResponse {
8771
- /**
8772
- * Start performers
8773
- */
8774
6751
  startPerformers: Array<GenModels.DisplayPerformersPerformer>;
8775
- /**
8776
- * Delegation records
8777
- */
8778
6752
  records: Array<GenModels.DelegateRecord>;
8779
6753
  }
8780
6754
  }
@@ -8806,27 +6780,10 @@ export declare namespace GenModels {
8806
6780
  }
8807
6781
  export declare namespace GenModels {
8808
6782
  interface DelegateRecord {
8809
- /**
8810
- * Event
8811
- */
8812
6783
  event: GenModels.DelegateEvent;
8813
- /**
8814
- * Initiator
8815
- */
8816
6784
  initiator: GenModels.EmployeeModel;
8817
- /**
8818
- * Performers
8819
- */
8820
6785
  performers: Array<GenModels.EmployeeModel>;
8821
- /**
8822
- * Date
8823
- *
8824
- * @format datatype.datetime
8825
- */
8826
6786
  date: string;
8827
- /**
8828
- * Comment
8829
- */
8830
6787
  comment: string;
8831
6788
  }
8832
6789
  }
@@ -8954,65 +6911,20 @@ export declare namespace GenModels {
8954
6911
  }
8955
6912
  export declare namespace GenModels {
8956
6913
  interface GetApprovalTaskDecisionInfoOptions {
8957
- /**
8958
- * Task id
8959
- *
8960
- * @format datatype.uuid
8961
- */
8962
6914
  taskId: string;
8963
- /**
8964
- * @format datatype.uuid
8965
- */
8966
6915
  completionOptionId: string;
8967
6916
  }
8968
6917
  }
8969
6918
  export declare namespace GenModels {
8970
6919
  interface ApprovalTaskDecisionInfo {
8971
- /**
8972
- * Task id
8973
- *
8974
- * @format datatype.uuid
8975
- */
8976
6920
  taskId: string;
8977
- /**
8978
- * Approving document id
8979
- *
8980
- * @format datatype.uuid
8981
- */
8982
6921
  documentId: string;
8983
- /**
8984
- * Completion option id
8985
- *
8986
- * @format datatype.uuid
8987
- */
8988
6922
  completionOptionId: string;
8989
- /**
8990
- * Id of decision, that matches corresponding task completion option.
8991
- *
8992
- * @format datatype.uuid
8993
- */
8994
6923
  decisionId: string;
8995
- /**
8996
- * Should request digital signature
8997
- */
8998
6924
  requestDigitalSignature: boolean;
8999
- /**
9000
- * Allow simple sign
9001
- */
9002
6925
  allowSimpleSign: boolean;
9003
- /**
9004
- * Gets or sets decision semantics
9005
- */
9006
6926
  decisionSemantics: GenModels.DecisionSemantics;
9007
- /**
9008
- * Gets or sets label identifier
9009
- *
9010
- * @format datatype.uuid
9011
- */
9012
6927
  labelId?: string;
9013
- /**
9014
- * Gets or sets encoded Id
9015
- */
9016
6928
  encodedLabelId: string;
9017
6929
  }
9018
6930
  }
@@ -10335,15 +8247,7 @@ export declare namespace GenModels {
10335
8247
  }
10336
8248
  export declare namespace GenModels {
10337
8249
  interface CardTypeModel {
10338
- /**
10339
- * Gets name
10340
- */
10341
8250
  name: string;
10342
- /**
10343
- * Card type id
10344
- *
10345
- * @format datatype.uuid
10346
- */
10347
8251
  id: string;
10348
8252
  }
10349
8253
  }
@@ -10457,31 +8361,13 @@ export declare namespace GenModels {
10457
8361
  }
10458
8362
  export declare namespace GenModels {
10459
8363
  interface AdminPanelMessageModel {
10460
- /**
10461
- * Card id
10462
- *
10463
- * @format datatype.uuid
10464
- */
10465
8364
  cardId: string;
10466
- /**
10467
- * Message card id
10468
- *
10469
- * @format datatype.uuid
10470
- */
10471
8365
  messageCardId: string;
10472
8366
  }
10473
8367
  }
10474
8368
  export declare namespace GenModels {
10475
8369
  interface AgreementHistoryDataModel {
10476
- /**
10477
- * Gets or sets if history exists
10478
- */
10479
8370
  historyExists: boolean;
10480
- /**
10481
- * Gets agreement card identifier
10482
- *
10483
- * @format datatype.uuid
10484
- */
10485
8371
  agreementCardId: string;
10486
8372
  }
10487
8373
  }
@@ -10493,45 +8379,17 @@ export declare namespace GenModels {
10493
8379
  }
10494
8380
  export declare namespace GenModels {
10495
8381
  interface CardLinkDataModel {
10496
- /**
10497
- * ID карточки, на которую установлена ссылка.
10498
- *
10499
- * @format datatype.uuid
10500
- */
10501
8382
  cardId: string;
10502
- /**
10503
- * Значение Digest карточки. Данный текст будет отображен в качестве текста ссылки.
10504
- */
10505
8383
  cardDigest: string;
10506
- /**
10507
- * Доступен ли текущему пользователю просмотр указанной карточки.
10508
- * Данное свойство будет использовано для отключения ссылки и пунктов меню "Открыть" в контроле.
10509
- */
10510
8384
  cardViewAllowed: boolean;
10511
- /**
10512
- * Доступен ли текущему пользователю чтение основного файла указанной карточки.
10513
- * Данное свойство будет использовано для отключения пункта меню "Просмотреть файл" в контроле.
10514
- */
10515
8385
  mainFileReadAllowed: boolean;
10516
8386
  }
10517
8387
  }
10518
8388
  export declare namespace GenModels {
10519
8389
  interface ControlsInfoModel {
10520
- /**
10521
- * Gets or sets control display name
10522
- */
10523
8390
  controlDisplayName: string;
10524
- /**
10525
- * Gets or sets control name
10526
- */
10527
8391
  controlName: string;
10528
- /**
10529
- * Gets or sets show parameter option
10530
- */
10531
8392
  showParameter: GenModels.ShowParametersOptions;
10532
- /**
10533
- * Gets or sets completion parameters model
10534
- */
10535
8393
  completionParameterModel: GenModels.CompletionParameterModel;
10536
8394
  }
10537
8395
  }
@@ -10569,61 +8427,24 @@ export declare namespace GenModels {
10569
8427
  }
10570
8428
  export declare namespace GenModels {
10571
8429
  interface CreateKindDataModel {
10572
- /**
10573
- * Gets create route name
10574
- */
10575
8430
  createRouteName: string;
10576
- /**
10577
- * Gets identifier
10578
- *
10579
- * @format datatype.uuid
10580
- */
10581
8431
  id: string;
10582
- /**
10583
- * Gets card type identifier
10584
- *
10585
- * @format datatype.uuid
10586
- */
10587
8432
  cardTypeId: string;
10588
- /**
10589
- * Gets display name
10590
- */
10591
8433
  displayName: string;
10592
- /**
10593
- * Gets is template
10594
- */
10595
8434
  isTemplate: boolean;
10596
- /**
10597
- * It is node corresponding to approval child task creation
10598
- */
10599
8435
  isApprovingChildTasksNode: boolean;
10600
8436
  }
10601
8437
  }
10602
8438
  export declare namespace GenModels {
10603
8439
  interface DisplayStaffUnitModel {
10604
- /**
10605
- * display string for staff unit model
10606
- */
10607
8440
  displayString: string;
10608
- /**
10609
- * tooltip string
10610
- */
10611
8441
  tooltip: string;
10612
- /**
10613
- * error message
10614
- */
10615
8442
  errorMessage: string;
10616
8443
  }
10617
8444
  }
10618
8445
  export declare namespace GenModels {
10619
8446
  interface ElementsDataModel {
10620
- /**
10621
- * Available variants to select
10622
- */
10623
8447
  elements: Array<GenModels.Element>;
10624
- /**
10625
- * Is empty key allowed
10626
- */
10627
8448
  isEmptyKeyAllowed: boolean;
10628
8449
  }
10629
8450
  }
@@ -10645,181 +8466,64 @@ export declare namespace GenModels {
10645
8466
  }
10646
8467
  export declare namespace GenModels {
10647
8468
  interface LayoutTableBindingModel {
10648
- /**
10649
- * Section id
10650
- *
10651
- * @format datatype.uuid
10652
- */
10653
8469
  sectionId: string;
10654
- /**
10655
- * How many first rows was skipped on rows loading
10656
- */
10657
8470
  skippedCount: number;
10658
- /**
10659
- * Do section contains more rows at the end of the table (after loaded rows)
10660
- */
10661
8471
  hasMore: boolean;
10662
- /**
10663
- * Rows loaded from the server
10664
- */
10665
8472
  loadedRows: Array<string>;
10666
- /**
10667
- * Rows added on the client
10668
- */
10669
8473
  addedRows: Array<string>;
10670
- /**
10671
- * Rows deleted on the client
10672
- */
10673
8474
  deletedRows: Array<string>;
10674
- /**
10675
- * Rows identifiers sorted by order
10676
- */
10677
8475
  rowsOrder: Array<string>;
10678
8476
  }
10679
8477
  }
10680
8478
  export declare namespace GenModels {
10681
8479
  interface LayoutTableColumnInfo {
10682
- /**
10683
- * Column name
10684
- */
10685
8480
  header: string;
10686
- /**
10687
- * Width
10688
- */
10689
8481
  columnWidth: string;
10690
- /**
10691
- * Tooltip
10692
- */
10693
8482
  tip: string;
10694
- /**
10695
- * Is column visible or not
10696
- */
10697
8483
  visibility: boolean;
10698
8484
  }
10699
8485
  }
10700
8486
  export declare namespace GenModels {
10701
8487
  interface MultipleEmployeesDataModel {
10702
- /**
10703
- * Gets or sets employees
10704
- */
10705
8488
  employees: Array<GenModels.EmployeeDataModel>;
10706
- /**
10707
- * Gets or sets field path
10708
- */
10709
8489
  fieldPath: string;
10710
8490
  }
10711
- }
10712
- export declare namespace GenModels {
10713
- interface OperationDataModel {
10714
- /**
10715
- * Gets or sets operation id
10716
- *
10717
- * @format datatype.uuid
10718
- */
8491
+ }
8492
+ export declare namespace GenModels {
8493
+ interface OperationDataModel {
10719
8494
  operationId: string;
10720
- /**
10721
- * Gets or sets operation builtInId
10722
- *
10723
- * @format datatype.uuid
10724
- */
10725
8495
  builtInOperationId: string;
10726
- /**
10727
- * Gets or sets display name
10728
- */
10729
8496
  displayName: string;
10730
- /**
10731
- * Gets or sets tooltip
10732
- */
10733
8497
  tooltip: string;
10734
- /**
10735
- * Gets or sets operation display mode
10736
- */
10737
8498
  displayMode: GenModels.StateOperationDisplayMode;
10738
- /**
10739
- * Gets or sets is generated model
10740
- */
10741
8499
  isGenerated: boolean;
10742
- /**
10743
- * Gets or sets generated operation identifier
10744
- *
10745
- * @format datatype.uuid
10746
- */
10747
8500
  generatedOperationId: string;
10748
- /**
10749
- * Gets or sets button color
10750
- */
10751
8501
  color: string;
10752
- /**
10753
- * Gets or sets button text color
10754
- */
10755
8502
  textColor: string;
10756
- /**
10757
- * Gets or sets button order
10758
- */
10759
8503
  order: number;
10760
- /**
10761
- * If operation is completion option, its identifier.
10762
- *
10763
- * @format datatype.uuid
10764
- */
10765
8504
  completionOptionId?: string;
10766
- /**
10767
- * Request confirmation before executing operation.
10768
- */
10769
8505
  requestConfirmation: boolean;
10770
- /**
10771
- * Additional info
10772
- */
10773
8506
  additionalInfo: GenModels.OperationAdditionalInfoDataModel;
10774
- /**
10775
- * Operation as field value
10776
- */
10777
8507
  fieldInfo: GenModels.OperationFieldInfo;
10778
8508
  }
10779
8509
  }
10780
8510
  export declare namespace GenModels {
10781
8511
  interface OperationAdditionalInfoDataModel {
10782
- /**
10783
- * Gets or sets decision semantics
10784
- */
10785
8512
  decisionSemantics?: GenModels.DecisionSemantics;
10786
- /**
10787
- * Gets or sets decision name
10788
- */
10789
8513
  decisionName: string;
10790
8514
  }
10791
8515
  }
10792
8516
  export declare namespace GenModels {
10793
8517
  interface TransformationDataModel {
10794
- /**
10795
- * Gets or sets identifier
10796
- *
10797
- * @format datatype.uuid
10798
- */
10799
8518
  id: string;
10800
- /**
10801
- * Gets or sets name
10802
- */
10803
8519
  name: string;
10804
- /**
10805
- * Gets or sets display name
10806
- */
10807
8520
  displayName: string;
10808
- /**
10809
- * Gets or sets value indicating whether transformation is default
10810
- */
10811
8521
  default: boolean;
10812
8522
  }
10813
8523
  }
10814
8524
  export declare namespace GenModels {
10815
8525
  interface UploadFileFromDirectoryModel {
10816
- /**
10817
- * @format datatype.uuid
10818
- */
10819
8526
  documentId: string;
10820
- /**
10821
- * @format datatype.uuid
10822
- */
10823
8527
  fileId: string;
10824
8528
  timestamp: number;
10825
8529
  fileName: string;
@@ -11370,6 +9074,106 @@ export declare namespace GenModels {
11370
9074
  itemAlias: string;
11371
9075
  }
11372
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
+ }
11373
9177
  export declare namespace GenModels {
11374
9178
  interface PerformersTypeDialogModel {
11375
9179
  /**
@@ -11475,113 +9279,201 @@ export declare namespace GenModels {
11475
9279
  }
11476
9280
  }
11477
9281
  export declare namespace GenModels {
11478
- interface EmployeeModel {
9282
+ interface CompletionOptionModel {
11479
9283
  /**
11480
- * Gets or sets employee identifier
9284
+ * Gets or sets completion option identifier
11481
9285
  *
11482
9286
  * @format datatype.uuid
11483
9287
  */
11484
- employeeId: string;
11485
- /**
11486
- * Display user full name
11487
- */
11488
- displayName: string;
9288
+ id: string;
11489
9289
  /**
11490
- * Get employee first name
9290
+ * Gets or sets name
11491
9291
  */
11492
- fistName: string;
9292
+ name: string;
11493
9293
  /**
11494
- * Gets employee last name
9294
+ * Gets or sets name
11495
9295
  */
11496
- lastName: string;
9296
+ localizedName: string;
11497
9297
  /**
11498
- * Get employee middle name
9298
+ * Gets or sets value
11499
9299
  */
11500
- middleName: string;
9300
+ value: number;
11501
9301
  /**
11502
- * Gets or sets employee email address
9302
+ * Gets or sets IsDefault
11503
9303
  */
11504
- email: string;
9304
+ isDefault: boolean;
11505
9305
  /**
11506
- * Gets or sets employee display position
9306
+ * Gets or sets value indicated whether has report filed in completion option
11507
9307
  */
11508
- position: string;
9308
+ hasReportFieldInCompletionOption: boolean;
11509
9309
  /**
11510
- * Gets or sets unit
9310
+ * Gets attributes collection
11511
9311
  */
11512
- unit: GenModels.UnitModel;
9312
+ parameters: Array<GenModels.CompletionParameterModel>;
11513
9313
  /**
11514
- * Gets or set user account name
9314
+ * Gets or sets color
11515
9315
  */
11516
- accountName: string;
9316
+ color: string;
11517
9317
  /**
11518
- * Gets or sets deputy display name
9318
+ * Button color code
11519
9319
  */
11520
- deputyDisplayName: string;
9320
+ colorCode?: number;
11521
9321
  /**
11522
- * Gets value indicating whether employee is favorite performer
9322
+ * Operation as field value
11523
9323
  */
11524
- isFavoritePerformer: boolean;
9324
+ fieldInfo: GenModels.OperationFieldInfo;
11525
9325
  }
11526
9326
  }
11527
9327
  export declare namespace GenModels {
11528
- interface UnitModel {
9328
+ interface TaskGroupAcceptanceCheckResult {
11529
9329
  /**
11530
- * Get unit identifier
11531
- *
11532
- * @format datatype.uuid
9330
+ * Gets or sets value indicating whether task for responsible can be sent to acceptance
11533
9331
  */
11534
- unitId: string;
9332
+ responsibleTaskHasBranch: boolean;
11535
9333
  /**
11536
- * Get unit name
9334
+ * Gets or sets value indicating whether task can be sent to acceptance
11537
9335
  */
11538
- unitName: string;
9336
+ taskHasBranch: boolean;
11539
9337
  }
11540
9338
  }
11541
9339
  export declare namespace GenModels {
11542
- interface CompletionOptionModel {
9340
+ interface TaskGroupAttributesModel {
11543
9341
  /**
11544
- * Gets or sets completion option identifier
9342
+ * Gets or sets task group identifier
11545
9343
  *
11546
9344
  * @format datatype.uuid
11547
9345
  */
11548
- id: string;
9346
+ taskGroupId: string;
11549
9347
  /**
11550
- * Gets or sets name
9348
+ * Gets or sets task group name
11551
9349
  */
11552
9350
  name: string;
11553
9351
  /**
11554
- * Gets or sets name
9352
+ * Gets or sets task group description
11555
9353
  */
11556
- localizedName: string;
9354
+ description: string;
11557
9355
  /**
11558
- * Gets or sets value
9356
+ * Gets or set task group author
11559
9357
  */
11560
- value: number;
9358
+ author: GenModels.EmployeeModel;
11561
9359
  /**
11562
- * Gets or sets IsDefault
9360
+ * Gets or set task group controller
11563
9361
  */
11564
- isDefault: boolean;
9362
+ controller: GenModels.EmployeeModel;
11565
9363
  /**
11566
- * Gets or sets value indicated whether has report filed in completion option
9364
+ * Gets or sets task group performer
11567
9365
  */
11568
- hasReportFieldInCompletionOption: boolean;
9366
+ responsible: GenModels.EmployeeModel;
11569
9367
  /**
11570
- * Gets attributes collection
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
11571
9463
  */
11572
- parameters: Array<GenModels.CompletionParameterModel>;
9464
+ childTasks: Array<GenModels.LinkedTaskModel>;
11573
9465
  /**
11574
- * Gets or sets color
9466
+ * Gets or sets execution type name
11575
9467
  */
11576
- color: string;
9468
+ executionTypeName: string;
11577
9469
  /**
11578
- * Button color code
9470
+ * Gets or sets execution type
11579
9471
  */
11580
- colorCode?: number;
9472
+ executionType: GenModels.ExecutionType;
11581
9473
  /**
11582
- * Operation as field value
9474
+ * Get card description
11583
9475
  */
11584
- fieldInfo: GenModels.OperationFieldInfo;
9476
+ description: string;
11585
9477
  }
11586
9478
  }
11587
9479
  export declare namespace GenModels {
@@ -11704,15 +9596,7 @@ export declare namespace GenModels {
11704
9596
  }
11705
9597
  export declare namespace GenModels {
11706
9598
  interface CardApprovalStageModel {
11707
- /**
11708
- * Gets/sets stage identifier
11709
- *
11710
- * @format datatype.uuid
11711
- */
11712
9599
  stageId: string;
11713
- /**
11714
- * Gets stage name
11715
- */
11716
9600
  name: string;
11717
9601
  }
11718
9602
  }
@@ -12011,78 +9895,30 @@ export declare namespace GenModels {
12011
9895
  }
12012
9896
  }
12013
9897
  export declare namespace GenModels {
12014
- /**
12015
- * Represents stage task sending mode
12016
- */
12017
9898
  enum StageTaskSendingMode {
12018
- /**
12019
- * Sequential
12020
- */
12021
9899
  Sequential = 0,
12022
- /**
12023
- * Parallel
12024
- */
12025
9900
  Parallel = 1
12026
9901
  }
12027
9902
  }
12028
9903
  export declare namespace GenModels {
12029
- /**
12030
- * Approval path stage repeat mode
12031
- */
12032
9904
  enum StageRepeatMode {
12033
- /**
12034
- * Always
12035
- */
12036
9905
  Always = 0,
12037
- /**
12038
- * Never
12039
- */
12040
9906
  Never = 1,
12041
- /**
12042
- * For not approved
12043
- */
12044
9907
  ForNotApproved = 2,
12045
- /**
12046
- * On negative decision
12047
- */
12048
9908
  OnNegativeDecision = 3,
12049
- /**
12050
- * When rejected or file was changed
12051
- */
12052
9909
  WhenRejectedOrFileChanged = 4
12053
9910
  }
12054
9911
  }
12055
9912
  export declare namespace GenModels {
12056
- /**
12057
- * Represents condition type
12058
- */
12059
9913
  enum ConditionType {
12060
- /**
12061
- * No conditions
12062
- */
12063
9914
  None = 0,
12064
- /**
12065
- * And
12066
- */
12067
9915
  And = 1,
12068
- /**
12069
- * Or
12070
- */
12071
9916
  Or = 2,
12072
- /**
12073
- * Complex conditions
12074
- */
12075
9917
  Complex = 3
12076
9918
  }
12077
9919
  }
12078
9920
  export declare namespace GenModels {
12079
- /**
12080
- * Represents node type
12081
- */
12082
9921
  enum NodeType {
12083
- /**
12084
- * Stage node type
12085
- */
12086
9922
  Stage = 0
12087
9923
  }
12088
9924
  }
@@ -12418,37 +10254,13 @@ export declare namespace GenModels {
12418
10254
  }
12419
10255
  }
12420
10256
  export declare namespace GenModels {
12421
- /**
12422
- * Declare column type
12423
- */
12424
10257
  enum ColumnType {
12425
- /**
12426
- * Int
12427
- */
12428
10258
  Integer = 0,
12429
- /**
12430
- * String
12431
- */
12432
10259
  String = 1,
12433
- /**
12434
- * Double
12435
- */
12436
10260
  Float = 2,
12437
- /**
12438
- * Datetime
12439
- */
12440
10261
  DateTime = 3,
12441
- /**
12442
- * Boolean
12443
- */
12444
10262
  Bool = 5,
12445
- /**
12446
- * Decimal column type
12447
- */
12448
10263
  Decimal = 6,
12449
- /**
12450
- * Unique id data type
12451
- */
12452
10264
  UniqueId = 7
12453
10265
  }
12454
10266
  }
@@ -12535,9 +10347,6 @@ export declare namespace GenModels {
12535
10347
  }
12536
10348
  }
12537
10349
  export declare namespace GenModels {
12538
- /**
12539
- * Partner search mode
12540
- */
12541
10350
  enum PartnerSearchMode {
12542
10351
  SearchDepartments = 0,
12543
10352
  SearchEmployees = 1,
@@ -12545,21 +10354,9 @@ export declare namespace GenModels {
12545
10354
  }
12546
10355
  }
12547
10356
  export declare namespace GenModels {
12548
- /**
12549
- * Partner item type
12550
- */
12551
10357
  enum PartnerItemType {
12552
- /**
12553
- * Organization
12554
- */
12555
10358
  Organization = 0,
12556
- /**
12557
- * Department
12558
- */
12559
10359
  Department = 1,
12560
- /**
12561
- * Employee
12562
- */
12563
10360
  Employee = 2
12564
10361
  }
12565
10362
  }
@@ -13051,9 +10848,6 @@ export declare namespace GenModels {
13051
10848
  }
13052
10849
  }
13053
10850
  export declare namespace GenModels {
13054
- /**
13055
- * Agreement state type
13056
- */
13057
10851
  enum AgreementStateType {
13058
10852
  Draft = 0,
13059
10853
  Started = 1,
@@ -13064,45 +10858,18 @@ export declare namespace GenModels {
13064
10858
  }
13065
10859
  }
13066
10860
  export declare namespace GenModels {
13067
- /**
13068
- * Approval type
13069
- */
13070
10861
  enum ApprovalType {
13071
- /**
13072
- * Sequential
13073
- */
13074
10862
  Sequential = 0,
13075
- /**
13076
- * Parallel
13077
- */
13078
10863
  Parallel = 1,
13079
- /**
13080
- * Consolidation
13081
- */
13082
10864
  Consolidation = 2,
13083
- /**
13084
- * Alternative
13085
- */
13086
10865
  Alternative = 3
13087
10866
  }
13088
10867
  }
13089
10868
  export declare namespace GenModels {
13090
10869
  enum StageSemantics {
13091
- /**
13092
- * Positive
13093
- */
13094
10870
  Positive = 1,
13095
- /**
13096
- * Negative
13097
- */
13098
10871
  Negative = 2,
13099
- /**
13100
- * Conditionally positive
13101
- */
13102
10872
  Neutral = 3,
13103
- /**
13104
- * Other
13105
- */
13106
10873
  Other = 4
13107
10874
  }
13108
10875
  }
@@ -13348,17 +11115,8 @@ export declare namespace GenModels {
13348
11115
  }
13349
11116
  }
13350
11117
  export declare namespace GenModels {
13351
- /**
13352
- * department data source
13353
- */
13354
11118
  enum DepartmentDataSource {
13355
- /**
13356
- * Staff directory
13357
- */
13358
11119
  StaffDirectory = 0,
13359
- /**
13360
- * Partners directory
13361
- */
13362
11120
  PartnersDirectory = 1
13363
11121
  }
13364
11122
  }
@@ -13462,25 +11220,10 @@ export declare namespace GenModels {
13462
11220
  }
13463
11221
  }
13464
11222
  export declare namespace GenModels {
13465
- /**
13466
- * Delegate event
13467
- */
13468
11223
  enum DelegateEvent {
13469
- /**
13470
- * Delegated
13471
- */
13472
11224
  Delegated = 0,
13473
- /**
13474
- * Delegated with return
13475
- */
13476
11225
  DelegatedWithReturn = 1,
13477
- /**
13478
- * Returned
13479
- */
13480
11226
  Returned = 2,
13481
- /**
13482
- * Taken to work
13483
- */
13484
11227
  TakenToWork = 3
13485
11228
  }
13486
11229
  }
@@ -13660,36 +11403,15 @@ export declare namespace GenModels {
13660
11403
  }
13661
11404
  }
13662
11405
  export declare namespace GenModels {
13663
- /**
13664
- * BackgroundStyle
13665
- */
13666
11406
  enum BackgroundStyle {
13667
- /**
13668
- * Tile
13669
- */
13670
11407
  Tile = 0,
13671
- /**
13672
- * Stretch
13673
- */
13674
11408
  Stretch = 1
13675
11409
  }
13676
11410
  }
13677
11411
  export declare namespace GenModels {
13678
- /**
13679
- * BackgroundType
13680
- */
13681
11412
  enum BackgroundType {
13682
- /**
13683
- * Default
13684
- */
13685
11413
  Default = 0,
13686
- /**
13687
- * Inherit
13688
- */
13689
11414
  Inherit = 1,
13690
- /**
13691
- * Custom
13692
- */
13693
11415
  Custom = 2
13694
11416
  }
13695
11417
  }
@@ -13906,17 +11628,8 @@ export declare namespace GenModels {
13906
11628
  }
13907
11629
  }
13908
11630
  export declare namespace GenModels {
13909
- /**
13910
- * Save scanned image format
13911
- */
13912
11631
  enum ScannedImageFormat {
13913
- /**
13914
- * Save as one PDF file
13915
- */
13916
11632
  Pdf = 0,
13917
- /**
13918
- * Save as JPG image
13919
- */
13920
11633
  Jpeg = 1
13921
11634
  }
13922
11635
  }
@@ -13932,21 +11645,9 @@ export declare namespace GenModels {
13932
11645
  }
13933
11646
  }
13934
11647
  export declare namespace GenModels {
13935
- /**
13936
- * Show completion parameter in dialog
13937
- */
13938
11648
  enum ShowParametersOptions {
13939
- /**
13940
- * Allways
13941
- */
13942
11649
  Always = 0,
13943
- /**
13944
- * Never
13945
- */
13946
11650
  Never = 1,
13947
- /**
13948
- * Show, if field is empty
13949
- */
13950
11651
  IfFieldEmpty = 2
13951
11652
  }
13952
11653
  }
@@ -14034,29 +11735,11 @@ export declare namespace GenModels {
14034
11735
  }
14035
11736
  }
14036
11737
  export declare namespace GenModels {
14037
- /**
14038
- * Default time modes for DateTime
14039
- */
14040
11738
  enum DateTimeDefaultTimeModes {
14041
- /**
14042
- * Current time
14043
- */
14044
11739
  CurrentTime = 0,
14045
- /**
14046
- * Start of day
14047
- */
14048
11740
  StartOfDay = 1,
14049
- /**
14050
- * Start of work day
14051
- */
14052
11741
  StartOfWorkDay = 2,
14053
- /**
14054
- * End of day
14055
- */
14056
11742
  EndOfDay = 3,
14057
- /**
14058
- * End of work day
14059
- */
14060
11743
  EndOfWorkDay = 4
14061
11744
  }
14062
11745
  }
@@ -14249,33 +11932,6 @@ export declare namespace GenModels {
14249
11932
  Stopped = 15
14250
11933
  }
14251
11934
  }
14252
- export declare namespace GenModels {
14253
- /**
14254
- * Represents task group card state type
14255
- */
14256
- enum TaskGroupStateType {
14257
- /**
14258
- * Preparation
14259
- */
14260
- Preparation = 0,
14261
- /**
14262
- * Performance
14263
- */
14264
- Performance = 1,
14265
- /**
14266
- * Completed
14267
- */
14268
- Completed = 2,
14269
- /**
14270
- * Recalled
14271
- */
14272
- Recalled = 3,
14273
- /**
14274
- * Unknown
14275
- */
14276
- Unknown = 6
14277
- }
14278
- }
14279
11935
  export declare namespace GenModels {
14280
11936
  /**
14281
11937
  * Declares available task operation
@@ -14391,6 +12047,76 @@ export declare namespace GenModels {
14391
12047
  SetContent = 26
14392
12048
  }
14393
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
+ }
14394
12120
  export declare namespace GenModels {
14395
12121
  /**
14396
12122
  * Possible columns of control Links
@@ -14476,17 +12202,8 @@ export declare namespace GenModels {
14476
12202
  }
14477
12203
  }
14478
12204
  export declare namespace GenModels {
14479
- /**
14480
- * Contains variants DisplayMode option values of AgreementHistory control.
14481
- */
14482
12205
  enum AgreementHistoryDisplayMode {
14483
- /**
14484
- * Standard mode. Only the current approval is displayed.
14485
- */
14486
12206
  Standart = 0,
14487
- /**
14488
- * Full mode. All approvals are displayed.
14489
- */
14490
12207
  Full = 1
14491
12208
  }
14492
12209
  }