@gct-paas/api 6.0.0-dev.6 → 6.0.0-dev.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.min.js +1 -1
- package/es/apaas/service/apis/api.service.d.ts +4 -0
- package/es/apaas/service/apis/app-global-settings.service.d.ts +2 -2
- package/es/apaas/service/apis/app-org.service.d.ts +0 -4
- package/es/apaas/service/apis/category.service.d.ts +8 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +0 -8
- package/es/apaas/service/apis/excel.service.d.ts +0 -12
- package/es/apaas/service/apis/online-form-instance.service.d.ts +8 -0
- package/es/apaas/service/entities.d.ts +39 -9
- package/es/ipaas/service/api-config.mjs +381 -0
- package/es/ipaas/service/apis/app.service.d.ts +26 -0
- package/es/ipaas/service/apis/bff.service.d.ts +15 -0
- package/es/ipaas/service/apis/categories.service.d.ts +9 -0
- package/es/ipaas/service/apis/category.service.d.ts +33 -1
- package/es/ipaas/service/apis/file.service.d.ts +17 -0
- package/es/ipaas/service/apis/flow.service.d.ts +234 -1
- package/es/ipaas/service/apis/knowledge.service.d.ts +196 -0
- package/es/ipaas/service/apis/variable-def.service.d.ts +87 -0
- package/es/ipaas/service/apis/variable-inst.service.d.ts +63 -0
- package/es/ipaas/service/entities.d.ts +1386 -37
- package/es/ipaas/service/index.d.ts +14 -0
- package/es/platform/service/api-config.mjs +7 -2
- package/es/platform/service/apis/api.service.d.ts +1 -10
- package/es/platform/service/apis/dashboard.service.d.ts +4 -0
- package/es/platform/service/apis/license.service.d.ts +1 -1
- package/es/platform/service/apis/third-party-app.service.d.ts +38 -1
- package/es/platform/service/entities.d.ts +26 -0
- package/es/service/api-service.interface.d.ts +9 -0
- package/es/service/index.mjs +2 -0
- package/package.json +1 -1
|
@@ -206,6 +206,38 @@ export interface AuthFormConfig {
|
|
|
206
206
|
*/
|
|
207
207
|
value?: string;
|
|
208
208
|
}
|
|
209
|
+
export interface BizFlowMainResp {
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
*
|
|
213
|
+
* @type CategoryResp
|
|
214
|
+
*/
|
|
215
|
+
category?: CategoryResp;
|
|
216
|
+
/**
|
|
217
|
+
* 当前连接流所在的分类列表路径
|
|
218
|
+
*
|
|
219
|
+
* @type SimpleCategoryRes[]
|
|
220
|
+
*/
|
|
221
|
+
currentCategoryList?: SimpleCategoryRes[];
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
*
|
|
225
|
+
* @type FlowVersionResp
|
|
226
|
+
*/
|
|
227
|
+
currentVersion?: FlowVersionResp;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
*
|
|
231
|
+
* @type FlowMainResp
|
|
232
|
+
*/
|
|
233
|
+
flow?: FlowMainResp;
|
|
234
|
+
/**
|
|
235
|
+
*
|
|
236
|
+
*
|
|
237
|
+
* @type FlowVersionResp[]
|
|
238
|
+
*/
|
|
239
|
+
versions?: FlowVersionResp[];
|
|
240
|
+
}
|
|
209
241
|
export interface CategoryCompleteResponse {
|
|
210
242
|
/**
|
|
211
243
|
*
|
|
@@ -288,6 +320,75 @@ export interface CategoryDragRequest {
|
|
|
288
320
|
*/
|
|
289
321
|
targetSortNum?: number;
|
|
290
322
|
}
|
|
323
|
+
export interface CategoryResp {
|
|
324
|
+
/**
|
|
325
|
+
*
|
|
326
|
+
*
|
|
327
|
+
* @type string
|
|
328
|
+
*/
|
|
329
|
+
brand?: string;
|
|
330
|
+
/**
|
|
331
|
+
*
|
|
332
|
+
*
|
|
333
|
+
* @type FlowMainResp[]
|
|
334
|
+
*/
|
|
335
|
+
children?: FlowMainResp[];
|
|
336
|
+
/**
|
|
337
|
+
*
|
|
338
|
+
*
|
|
339
|
+
* @type string
|
|
340
|
+
*/
|
|
341
|
+
id?: string;
|
|
342
|
+
/**
|
|
343
|
+
*
|
|
344
|
+
*
|
|
345
|
+
* @type string
|
|
346
|
+
*/
|
|
347
|
+
name?: string;
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
*
|
|
351
|
+
* @type string
|
|
352
|
+
*/
|
|
353
|
+
nameStr?: string;
|
|
354
|
+
/**
|
|
355
|
+
*
|
|
356
|
+
*
|
|
357
|
+
* @type string
|
|
358
|
+
*/
|
|
359
|
+
version?: string;
|
|
360
|
+
}
|
|
361
|
+
export interface CategoryTreeL2Resp {
|
|
362
|
+
/**
|
|
363
|
+
*
|
|
364
|
+
*
|
|
365
|
+
* @type CategoryResp[]
|
|
366
|
+
*/
|
|
367
|
+
children?: CategoryResp[];
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
*
|
|
371
|
+
* @type string
|
|
372
|
+
*/
|
|
373
|
+
name?: string;
|
|
374
|
+
}
|
|
375
|
+
export interface CategoryTreeResp {
|
|
376
|
+
/**
|
|
377
|
+
*
|
|
378
|
+
*
|
|
379
|
+
* @type CategoryTreeL2Resp[]
|
|
380
|
+
*/
|
|
381
|
+
children?: CategoryTreeL2Resp[];
|
|
382
|
+
/**
|
|
383
|
+
*
|
|
384
|
+
*
|
|
385
|
+
* @type string
|
|
386
|
+
*/
|
|
387
|
+
name?: string;
|
|
388
|
+
}
|
|
389
|
+
export interface CharSequence {
|
|
390
|
+
// 暂无属性
|
|
391
|
+
}
|
|
291
392
|
export interface ConnectorConfigRequest {
|
|
292
393
|
/**
|
|
293
394
|
* 鉴权配置动态表单
|
|
@@ -872,6 +973,38 @@ export interface FlowAppRequest {
|
|
|
872
973
|
*/
|
|
873
974
|
version?: string;
|
|
874
975
|
}
|
|
976
|
+
export interface FlowAppResp {
|
|
977
|
+
/**
|
|
978
|
+
*
|
|
979
|
+
*
|
|
980
|
+
* @type string
|
|
981
|
+
*/
|
|
982
|
+
brand?: string;
|
|
983
|
+
/**
|
|
984
|
+
*
|
|
985
|
+
*
|
|
986
|
+
* @type string
|
|
987
|
+
*/
|
|
988
|
+
connectorId?: string;
|
|
989
|
+
/**
|
|
990
|
+
*
|
|
991
|
+
*
|
|
992
|
+
* @type string
|
|
993
|
+
*/
|
|
994
|
+
id?: string;
|
|
995
|
+
/**
|
|
996
|
+
*
|
|
997
|
+
*
|
|
998
|
+
* @type string
|
|
999
|
+
*/
|
|
1000
|
+
name?: string;
|
|
1001
|
+
/**
|
|
1002
|
+
*
|
|
1003
|
+
*
|
|
1004
|
+
* @type string
|
|
1005
|
+
*/
|
|
1006
|
+
version?: string;
|
|
1007
|
+
}
|
|
875
1008
|
export interface FlowAppResponse {
|
|
876
1009
|
/**
|
|
877
1010
|
* 品牌
|
|
@@ -982,6 +1115,40 @@ export interface FlowAppResponse {
|
|
|
982
1115
|
*/
|
|
983
1116
|
version?: string;
|
|
984
1117
|
}
|
|
1118
|
+
export interface FlowAppUpdateReq {
|
|
1119
|
+
/**
|
|
1120
|
+
*
|
|
1121
|
+
*
|
|
1122
|
+
* @type string
|
|
1123
|
+
*/
|
|
1124
|
+
brand?: string;
|
|
1125
|
+
/**
|
|
1126
|
+
*
|
|
1127
|
+
*
|
|
1128
|
+
* @type number
|
|
1129
|
+
*/
|
|
1130
|
+
id?: number;
|
|
1131
|
+
/**
|
|
1132
|
+
*
|
|
1133
|
+
*
|
|
1134
|
+
* @type string
|
|
1135
|
+
*/
|
|
1136
|
+
name?: string;
|
|
1137
|
+
/**
|
|
1138
|
+
*
|
|
1139
|
+
*
|
|
1140
|
+
* @type string
|
|
1141
|
+
*/
|
|
1142
|
+
version?: string;
|
|
1143
|
+
}
|
|
1144
|
+
export interface FlowCategoryDragReq {
|
|
1145
|
+
/**
|
|
1146
|
+
*
|
|
1147
|
+
*
|
|
1148
|
+
* @type number
|
|
1149
|
+
*/
|
|
1150
|
+
targetSortNum?: number;
|
|
1151
|
+
}
|
|
985
1152
|
export interface FlowCategoryRequest {
|
|
986
1153
|
/**
|
|
987
1154
|
* 应用appId
|
|
@@ -1498,6 +1665,64 @@ export interface FlowMainResp {
|
|
|
1498
1665
|
*/
|
|
1499
1666
|
updateTime?: string;
|
|
1500
1667
|
}
|
|
1668
|
+
export interface FlowNodeLogDetailReq {
|
|
1669
|
+
/**
|
|
1670
|
+
*
|
|
1671
|
+
*
|
|
1672
|
+
* @type string
|
|
1673
|
+
*/
|
|
1674
|
+
fuuid?: string;
|
|
1675
|
+
/**
|
|
1676
|
+
*
|
|
1677
|
+
*
|
|
1678
|
+
* @type string
|
|
1679
|
+
*/
|
|
1680
|
+
nodeId?: string;
|
|
1681
|
+
/**
|
|
1682
|
+
*
|
|
1683
|
+
*
|
|
1684
|
+
* @type string
|
|
1685
|
+
*/
|
|
1686
|
+
reqId?: string;
|
|
1687
|
+
}
|
|
1688
|
+
export interface FlowNodeLogInOutPutDTO {
|
|
1689
|
+
/**
|
|
1690
|
+
* 异常信息
|
|
1691
|
+
*
|
|
1692
|
+
* @type string
|
|
1693
|
+
*/
|
|
1694
|
+
errorMsg?: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* 输入报文
|
|
1697
|
+
*
|
|
1698
|
+
* @type IObject
|
|
1699
|
+
*/
|
|
1700
|
+
input?: IObject;
|
|
1701
|
+
/**
|
|
1702
|
+
* 节点id
|
|
1703
|
+
*
|
|
1704
|
+
* @type string
|
|
1705
|
+
*/
|
|
1706
|
+
nodeId?: string;
|
|
1707
|
+
/**
|
|
1708
|
+
* 节点序列号
|
|
1709
|
+
*
|
|
1710
|
+
* @type number
|
|
1711
|
+
*/
|
|
1712
|
+
nodeIdNum?: number;
|
|
1713
|
+
/**
|
|
1714
|
+
* 输出报文
|
|
1715
|
+
*
|
|
1716
|
+
* @type IObject
|
|
1717
|
+
*/
|
|
1718
|
+
output?: IObject;
|
|
1719
|
+
/**
|
|
1720
|
+
* 链路Id
|
|
1721
|
+
*
|
|
1722
|
+
* @type string
|
|
1723
|
+
*/
|
|
1724
|
+
reqId?: string;
|
|
1725
|
+
}
|
|
1501
1726
|
export interface FlowNodeLogResp {
|
|
1502
1727
|
/**
|
|
1503
1728
|
* 端点类型
|
|
@@ -1560,77 +1785,83 @@ export interface FlowNodeLogResp {
|
|
|
1560
1785
|
*/
|
|
1561
1786
|
status?: string;
|
|
1562
1787
|
}
|
|
1563
|
-
export interface
|
|
1788
|
+
export interface FlowOnlineLogResp {
|
|
1789
|
+
/**
|
|
1790
|
+
*
|
|
1791
|
+
*
|
|
1792
|
+
* @type number
|
|
1793
|
+
*/
|
|
1794
|
+
actionStatus?: number;
|
|
1564
1795
|
/**
|
|
1565
|
-
*
|
|
1796
|
+
*
|
|
1566
1797
|
*
|
|
1567
1798
|
* @type string
|
|
1568
1799
|
*/
|
|
1569
|
-
|
|
1800
|
+
actionStr?: string;
|
|
1570
1801
|
/**
|
|
1571
1802
|
*
|
|
1572
1803
|
*
|
|
1573
1804
|
* @type string
|
|
1574
1805
|
*/
|
|
1575
|
-
|
|
1806
|
+
actionTime?: string;
|
|
1576
1807
|
/**
|
|
1577
1808
|
*
|
|
1578
1809
|
*
|
|
1579
1810
|
* @type string
|
|
1580
1811
|
*/
|
|
1581
|
-
|
|
1812
|
+
actionUser?: string;
|
|
1582
1813
|
/**
|
|
1583
1814
|
*
|
|
1584
1815
|
*
|
|
1585
1816
|
* @type string
|
|
1586
1817
|
*/
|
|
1587
|
-
|
|
1818
|
+
fuuid?: string;
|
|
1588
1819
|
/**
|
|
1589
1820
|
*
|
|
1590
1821
|
*
|
|
1591
1822
|
* @type string
|
|
1592
1823
|
*/
|
|
1593
|
-
|
|
1594
|
-
}
|
|
1595
|
-
export interface LogResponse {
|
|
1824
|
+
id?: string;
|
|
1596
1825
|
/**
|
|
1597
1826
|
*
|
|
1598
1827
|
*
|
|
1599
|
-
* @type
|
|
1828
|
+
* @type string
|
|
1600
1829
|
*/
|
|
1601
|
-
|
|
1830
|
+
mark?: string;
|
|
1602
1831
|
/**
|
|
1603
1832
|
*
|
|
1604
1833
|
*
|
|
1605
|
-
* @type
|
|
1834
|
+
* @type string
|
|
1606
1835
|
*/
|
|
1607
|
-
|
|
1836
|
+
version?: string;
|
|
1608
1837
|
/**
|
|
1609
1838
|
*
|
|
1610
1839
|
*
|
|
1611
|
-
* @type
|
|
1840
|
+
* @type string
|
|
1612
1841
|
*/
|
|
1613
|
-
|
|
1842
|
+
versionStr?: string;
|
|
1843
|
+
}
|
|
1844
|
+
export interface FlowOnlineReq {
|
|
1614
1845
|
/**
|
|
1615
1846
|
*
|
|
1616
1847
|
*
|
|
1617
|
-
* @type
|
|
1848
|
+
* @type string
|
|
1618
1849
|
*/
|
|
1619
|
-
|
|
1850
|
+
fuuid?: string;
|
|
1620
1851
|
/**
|
|
1621
1852
|
*
|
|
1622
1853
|
*
|
|
1623
|
-
* @type
|
|
1854
|
+
* @type string
|
|
1624
1855
|
*/
|
|
1625
|
-
|
|
1856
|
+
mark?: string;
|
|
1626
1857
|
/**
|
|
1627
1858
|
*
|
|
1628
1859
|
*
|
|
1629
1860
|
* @type string
|
|
1630
1861
|
*/
|
|
1631
|
-
|
|
1862
|
+
version?: string;
|
|
1632
1863
|
}
|
|
1633
|
-
export interface
|
|
1864
|
+
export interface FlowUpdateReq {
|
|
1634
1865
|
/**
|
|
1635
1866
|
* 分类id
|
|
1636
1867
|
*
|
|
@@ -1638,51 +1869,1117 @@ export interface Relation {
|
|
|
1638
1869
|
*/
|
|
1639
1870
|
categoryId?: string;
|
|
1640
1871
|
/**
|
|
1641
|
-
*
|
|
1872
|
+
*
|
|
1642
1873
|
*
|
|
1643
1874
|
* @type string
|
|
1644
1875
|
*/
|
|
1645
|
-
|
|
1876
|
+
fAppId?: string;
|
|
1646
1877
|
/**
|
|
1647
1878
|
*
|
|
1648
1879
|
*
|
|
1649
|
-
* @type
|
|
1880
|
+
* @type string
|
|
1650
1881
|
*/
|
|
1651
|
-
|
|
1882
|
+
key?: string;
|
|
1652
1883
|
/**
|
|
1653
1884
|
*
|
|
1654
1885
|
*
|
|
1655
1886
|
* @type string
|
|
1656
1887
|
*/
|
|
1657
|
-
|
|
1888
|
+
mark?: string;
|
|
1658
1889
|
/**
|
|
1659
1890
|
*
|
|
1660
1891
|
*
|
|
1661
1892
|
* @type string
|
|
1662
1893
|
*/
|
|
1663
|
-
|
|
1894
|
+
name?: string;
|
|
1895
|
+
}
|
|
1896
|
+
export interface FlowVariableDefReq {
|
|
1664
1897
|
/**
|
|
1665
|
-
*
|
|
1898
|
+
* 数据类型(String)
|
|
1666
1899
|
*
|
|
1667
1900
|
* @type string
|
|
1668
1901
|
*/
|
|
1669
|
-
|
|
1902
|
+
dataType?: string;
|
|
1670
1903
|
/**
|
|
1671
|
-
*
|
|
1904
|
+
* 变量名
|
|
1672
1905
|
*
|
|
1673
|
-
* @type
|
|
1906
|
+
* @type string
|
|
1674
1907
|
*/
|
|
1675
|
-
|
|
1908
|
+
name?: string;
|
|
1676
1909
|
/**
|
|
1910
|
+
* 变量KEY
|
|
1677
1911
|
*
|
|
1678
|
-
*
|
|
1679
|
-
* @type number
|
|
1912
|
+
* @type string
|
|
1680
1913
|
*/
|
|
1681
|
-
|
|
1914
|
+
varKey?: string;
|
|
1915
|
+
}
|
|
1916
|
+
export interface FlowVariableDefResponse {
|
|
1682
1917
|
/**
|
|
1683
|
-
*
|
|
1918
|
+
* 所属业务
|
|
1684
1919
|
*
|
|
1685
|
-
* @type
|
|
1920
|
+
* @type string
|
|
1921
|
+
*/
|
|
1922
|
+
appId?: string;
|
|
1923
|
+
/**
|
|
1924
|
+
* 分支ID
|
|
1925
|
+
*
|
|
1926
|
+
* @type string
|
|
1927
|
+
*/
|
|
1928
|
+
branchId?: string;
|
|
1929
|
+
/**
|
|
1930
|
+
*
|
|
1931
|
+
*
|
|
1932
|
+
* @type string
|
|
1933
|
+
*/
|
|
1934
|
+
createTime?: string;
|
|
1935
|
+
/**
|
|
1936
|
+
*
|
|
1937
|
+
*
|
|
1938
|
+
* @type string
|
|
1939
|
+
*/
|
|
1940
|
+
createUserId?: string;
|
|
1941
|
+
/**
|
|
1942
|
+
*
|
|
1943
|
+
*
|
|
1944
|
+
* @type string
|
|
1945
|
+
*/
|
|
1946
|
+
createUserName?: string;
|
|
1947
|
+
/**
|
|
1948
|
+
* 数据类型
|
|
1949
|
+
*
|
|
1950
|
+
* @type string
|
|
1951
|
+
*/
|
|
1952
|
+
dataType?: string;
|
|
1953
|
+
/**
|
|
1954
|
+
* 环境
|
|
1955
|
+
*
|
|
1956
|
+
* @type string
|
|
1957
|
+
*/
|
|
1958
|
+
env?: string;
|
|
1959
|
+
/**
|
|
1960
|
+
* 主键
|
|
1961
|
+
*
|
|
1962
|
+
* @type string
|
|
1963
|
+
*/
|
|
1964
|
+
id?: string;
|
|
1965
|
+
/**
|
|
1966
|
+
*
|
|
1967
|
+
*
|
|
1968
|
+
* @type string
|
|
1969
|
+
*/
|
|
1970
|
+
modifyTime?: string;
|
|
1971
|
+
/**
|
|
1972
|
+
*
|
|
1973
|
+
*
|
|
1974
|
+
* @type string
|
|
1975
|
+
*/
|
|
1976
|
+
modifyUserId?: string;
|
|
1977
|
+
/**
|
|
1978
|
+
*
|
|
1979
|
+
*
|
|
1980
|
+
* @type string
|
|
1981
|
+
*/
|
|
1982
|
+
modifyUserName?: string;
|
|
1983
|
+
/**
|
|
1984
|
+
* 变量名
|
|
1985
|
+
*
|
|
1986
|
+
* @type string
|
|
1987
|
+
*/
|
|
1988
|
+
name?: string;
|
|
1989
|
+
/**
|
|
1990
|
+
* 租户ID
|
|
1991
|
+
*
|
|
1992
|
+
* @type string
|
|
1993
|
+
*/
|
|
1994
|
+
tenantId?: string;
|
|
1995
|
+
/**
|
|
1996
|
+
* 变量KEY
|
|
1997
|
+
*
|
|
1998
|
+
* @type string
|
|
1999
|
+
*/
|
|
2000
|
+
varKey?: string;
|
|
2001
|
+
}
|
|
2002
|
+
export interface FlowVariableInstListDTO {
|
|
2003
|
+
/**
|
|
2004
|
+
*
|
|
2005
|
+
*
|
|
2006
|
+
* @type string
|
|
2007
|
+
*/
|
|
2008
|
+
appId?: string;
|
|
2009
|
+
/**
|
|
2010
|
+
*
|
|
2011
|
+
*
|
|
2012
|
+
* @type string
|
|
2013
|
+
*/
|
|
2014
|
+
branchId?: string;
|
|
2015
|
+
/**
|
|
2016
|
+
*
|
|
2017
|
+
*
|
|
2018
|
+
* @type string
|
|
2019
|
+
*/
|
|
2020
|
+
createTime?: string;
|
|
2021
|
+
/**
|
|
2022
|
+
*
|
|
2023
|
+
*
|
|
2024
|
+
* @type string
|
|
2025
|
+
*/
|
|
2026
|
+
createUserId?: string;
|
|
2027
|
+
/**
|
|
2028
|
+
*
|
|
2029
|
+
*
|
|
2030
|
+
* @type string
|
|
2031
|
+
*/
|
|
2032
|
+
createUserName?: string;
|
|
2033
|
+
/**
|
|
2034
|
+
*
|
|
2035
|
+
*
|
|
2036
|
+
* @type string
|
|
2037
|
+
*/
|
|
2038
|
+
dataType?: string;
|
|
2039
|
+
/**
|
|
2040
|
+
*
|
|
2041
|
+
*
|
|
2042
|
+
* @type string
|
|
2043
|
+
*/
|
|
2044
|
+
defId?: string;
|
|
2045
|
+
/**
|
|
2046
|
+
*
|
|
2047
|
+
*
|
|
2048
|
+
* @type number
|
|
2049
|
+
*/
|
|
2050
|
+
deleted?: number;
|
|
2051
|
+
/**
|
|
2052
|
+
*
|
|
2053
|
+
*
|
|
2054
|
+
* @type string
|
|
2055
|
+
*/
|
|
2056
|
+
env?: string;
|
|
2057
|
+
/**
|
|
2058
|
+
*
|
|
2059
|
+
*
|
|
2060
|
+
* @type string
|
|
2061
|
+
*/
|
|
2062
|
+
fkey?: string;
|
|
2063
|
+
/**
|
|
2064
|
+
*
|
|
2065
|
+
*
|
|
2066
|
+
* @type string
|
|
2067
|
+
*/
|
|
2068
|
+
flowName?: string;
|
|
2069
|
+
/**
|
|
2070
|
+
*
|
|
2071
|
+
*
|
|
2072
|
+
* @type string
|
|
2073
|
+
*/
|
|
2074
|
+
fuuid?: string;
|
|
2075
|
+
/**
|
|
2076
|
+
*
|
|
2077
|
+
*
|
|
2078
|
+
* @type string
|
|
2079
|
+
*/
|
|
2080
|
+
id?: string;
|
|
2081
|
+
/**
|
|
2082
|
+
*
|
|
2083
|
+
*
|
|
2084
|
+
* @type string
|
|
2085
|
+
*/
|
|
2086
|
+
lastUpdateTime?: string;
|
|
2087
|
+
/**
|
|
2088
|
+
*
|
|
2089
|
+
*
|
|
2090
|
+
* @type string
|
|
2091
|
+
*/
|
|
2092
|
+
modifyTime?: string;
|
|
2093
|
+
/**
|
|
2094
|
+
*
|
|
2095
|
+
*
|
|
2096
|
+
* @type string
|
|
2097
|
+
*/
|
|
2098
|
+
modifyUserId?: string;
|
|
2099
|
+
/**
|
|
2100
|
+
*
|
|
2101
|
+
*
|
|
2102
|
+
* @type string
|
|
2103
|
+
*/
|
|
2104
|
+
modifyUserName?: string;
|
|
2105
|
+
/**
|
|
2106
|
+
*
|
|
2107
|
+
*
|
|
2108
|
+
* @type string
|
|
2109
|
+
*/
|
|
2110
|
+
nodeId?: string;
|
|
2111
|
+
/**
|
|
2112
|
+
*
|
|
2113
|
+
*
|
|
2114
|
+
* @type string
|
|
2115
|
+
*/
|
|
2116
|
+
reqId?: string;
|
|
2117
|
+
/**
|
|
2118
|
+
*
|
|
2119
|
+
*
|
|
2120
|
+
* @type string
|
|
2121
|
+
*/
|
|
2122
|
+
tenantId?: string;
|
|
2123
|
+
/**
|
|
2124
|
+
*
|
|
2125
|
+
*
|
|
2126
|
+
* @type string
|
|
2127
|
+
*/
|
|
2128
|
+
varKey?: string;
|
|
2129
|
+
/**
|
|
2130
|
+
*
|
|
2131
|
+
*
|
|
2132
|
+
* @type string
|
|
2133
|
+
*/
|
|
2134
|
+
varName?: string;
|
|
2135
|
+
/**
|
|
2136
|
+
*
|
|
2137
|
+
*
|
|
2138
|
+
* @type string
|
|
2139
|
+
*/
|
|
2140
|
+
varValue?: string;
|
|
2141
|
+
}
|
|
2142
|
+
export interface FlowVariableInstResponse {
|
|
2143
|
+
/**
|
|
2144
|
+
* 所属业务
|
|
2145
|
+
*
|
|
2146
|
+
* @type string
|
|
2147
|
+
*/
|
|
2148
|
+
appId?: string;
|
|
2149
|
+
/**
|
|
2150
|
+
* 分支ID
|
|
2151
|
+
*
|
|
2152
|
+
* @type string
|
|
2153
|
+
*/
|
|
2154
|
+
branchId?: string;
|
|
2155
|
+
/**
|
|
2156
|
+
*
|
|
2157
|
+
*
|
|
2158
|
+
* @type string
|
|
2159
|
+
*/
|
|
2160
|
+
createTime?: string;
|
|
2161
|
+
/**
|
|
2162
|
+
*
|
|
2163
|
+
*
|
|
2164
|
+
* @type string
|
|
2165
|
+
*/
|
|
2166
|
+
createUserId?: string;
|
|
2167
|
+
/**
|
|
2168
|
+
*
|
|
2169
|
+
*
|
|
2170
|
+
* @type string
|
|
2171
|
+
*/
|
|
2172
|
+
createUserName?: string;
|
|
2173
|
+
/**
|
|
2174
|
+
* 变量定义ID
|
|
2175
|
+
*
|
|
2176
|
+
* @type string
|
|
2177
|
+
*/
|
|
2178
|
+
defId?: string;
|
|
2179
|
+
/**
|
|
2180
|
+
* 环境
|
|
2181
|
+
*
|
|
2182
|
+
* @type string
|
|
2183
|
+
*/
|
|
2184
|
+
env?: string;
|
|
2185
|
+
/**
|
|
2186
|
+
*
|
|
2187
|
+
*
|
|
2188
|
+
* @type string
|
|
2189
|
+
*/
|
|
2190
|
+
fkey?: string;
|
|
2191
|
+
/**
|
|
2192
|
+
* 连接流id
|
|
2193
|
+
*
|
|
2194
|
+
* @type string
|
|
2195
|
+
*/
|
|
2196
|
+
fuuid?: string;
|
|
2197
|
+
/**
|
|
2198
|
+
* 主键
|
|
2199
|
+
*
|
|
2200
|
+
* @type string
|
|
2201
|
+
*/
|
|
2202
|
+
id?: string;
|
|
2203
|
+
/**
|
|
2204
|
+
* 最后更新时间
|
|
2205
|
+
*
|
|
2206
|
+
* @type string
|
|
2207
|
+
*/
|
|
2208
|
+
lastUpdateTime?: string;
|
|
2209
|
+
/**
|
|
2210
|
+
*
|
|
2211
|
+
*
|
|
2212
|
+
* @type string
|
|
2213
|
+
*/
|
|
2214
|
+
modifyTime?: string;
|
|
2215
|
+
/**
|
|
2216
|
+
*
|
|
2217
|
+
*
|
|
2218
|
+
* @type string
|
|
2219
|
+
*/
|
|
2220
|
+
modifyUserId?: string;
|
|
2221
|
+
/**
|
|
2222
|
+
*
|
|
2223
|
+
*
|
|
2224
|
+
* @type string
|
|
2225
|
+
*/
|
|
2226
|
+
modifyUserName?: string;
|
|
2227
|
+
/**
|
|
2228
|
+
* 节点ID
|
|
2229
|
+
*
|
|
2230
|
+
* @type string
|
|
2231
|
+
*/
|
|
2232
|
+
nodeId?: string;
|
|
2233
|
+
/**
|
|
2234
|
+
* 请求ID
|
|
2235
|
+
*
|
|
2236
|
+
* @type string
|
|
2237
|
+
*/
|
|
2238
|
+
reqId?: string;
|
|
2239
|
+
/**
|
|
2240
|
+
* 租户ID
|
|
2241
|
+
*
|
|
2242
|
+
* @type string
|
|
2243
|
+
*/
|
|
2244
|
+
tenantId?: string;
|
|
2245
|
+
/**
|
|
2246
|
+
* 变量KEY
|
|
2247
|
+
*
|
|
2248
|
+
* @type string
|
|
2249
|
+
*/
|
|
2250
|
+
varKey?: string;
|
|
2251
|
+
/**
|
|
2252
|
+
* 变量值
|
|
2253
|
+
*
|
|
2254
|
+
* @type string
|
|
2255
|
+
*/
|
|
2256
|
+
varValue?: string;
|
|
2257
|
+
}
|
|
2258
|
+
export interface FlowVersionResp {
|
|
2259
|
+
/**
|
|
2260
|
+
*
|
|
2261
|
+
*
|
|
2262
|
+
* @type string
|
|
2263
|
+
*/
|
|
2264
|
+
displayName?: string;
|
|
2265
|
+
/**
|
|
2266
|
+
*
|
|
2267
|
+
*
|
|
2268
|
+
* @type string
|
|
2269
|
+
*/
|
|
2270
|
+
fuuid?: string;
|
|
2271
|
+
/**
|
|
2272
|
+
*
|
|
2273
|
+
*
|
|
2274
|
+
* @type number
|
|
2275
|
+
*/
|
|
2276
|
+
status?: number;
|
|
2277
|
+
/**
|
|
2278
|
+
*
|
|
2279
|
+
*
|
|
2280
|
+
* @type string
|
|
2281
|
+
*/
|
|
2282
|
+
statusStr?: string;
|
|
2283
|
+
/**
|
|
2284
|
+
*
|
|
2285
|
+
*
|
|
2286
|
+
* @type string
|
|
2287
|
+
*/
|
|
2288
|
+
version?: string;
|
|
2289
|
+
}
|
|
2290
|
+
export interface KnowledgeAppReq {
|
|
2291
|
+
/**
|
|
2292
|
+
*
|
|
2293
|
+
*
|
|
2294
|
+
* @type string
|
|
2295
|
+
*/
|
|
2296
|
+
code?: string;
|
|
2297
|
+
/**
|
|
2298
|
+
*
|
|
2299
|
+
*
|
|
2300
|
+
* @type string
|
|
2301
|
+
*/
|
|
2302
|
+
name?: string;
|
|
2303
|
+
/**
|
|
2304
|
+
*
|
|
2305
|
+
*
|
|
2306
|
+
* @type number
|
|
2307
|
+
*/
|
|
2308
|
+
parentId?: number;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
*
|
|
2312
|
+
* @type number
|
|
2313
|
+
*/
|
|
2314
|
+
weight?: number;
|
|
2315
|
+
}
|
|
2316
|
+
export interface KnowledgeBizInterfaceFullReq {
|
|
2317
|
+
/**
|
|
2318
|
+
*
|
|
2319
|
+
*
|
|
2320
|
+
* @type string
|
|
2321
|
+
*/
|
|
2322
|
+
address?: string;
|
|
2323
|
+
/**
|
|
2324
|
+
*
|
|
2325
|
+
*
|
|
2326
|
+
* @type number
|
|
2327
|
+
*/
|
|
2328
|
+
bid?: number;
|
|
2329
|
+
/**
|
|
2330
|
+
*
|
|
2331
|
+
*
|
|
2332
|
+
* @type string
|
|
2333
|
+
*/
|
|
2334
|
+
body?: string;
|
|
2335
|
+
/**
|
|
2336
|
+
*
|
|
2337
|
+
*
|
|
2338
|
+
* @type string
|
|
2339
|
+
*/
|
|
2340
|
+
errorJson?: string;
|
|
2341
|
+
/**
|
|
2342
|
+
*
|
|
2343
|
+
*
|
|
2344
|
+
* @type string
|
|
2345
|
+
*/
|
|
2346
|
+
fromDesc?: string;
|
|
2347
|
+
/**
|
|
2348
|
+
*
|
|
2349
|
+
*
|
|
2350
|
+
* @type string
|
|
2351
|
+
*/
|
|
2352
|
+
fromType?: string;
|
|
2353
|
+
/**
|
|
2354
|
+
*
|
|
2355
|
+
*
|
|
2356
|
+
* @type string
|
|
2357
|
+
*/
|
|
2358
|
+
header?: string;
|
|
2359
|
+
/**
|
|
2360
|
+
*
|
|
2361
|
+
*
|
|
2362
|
+
* @type number
|
|
2363
|
+
*/
|
|
2364
|
+
id?: number;
|
|
2365
|
+
/**
|
|
2366
|
+
*
|
|
2367
|
+
*
|
|
2368
|
+
* @type string
|
|
2369
|
+
*/
|
|
2370
|
+
method?: string;
|
|
2371
|
+
/**
|
|
2372
|
+
*
|
|
2373
|
+
*
|
|
2374
|
+
* @type string
|
|
2375
|
+
*/
|
|
2376
|
+
name?: string;
|
|
2377
|
+
/**
|
|
2378
|
+
*
|
|
2379
|
+
*
|
|
2380
|
+
* @type string
|
|
2381
|
+
*/
|
|
2382
|
+
okJson?: string;
|
|
2383
|
+
/**
|
|
2384
|
+
*
|
|
2385
|
+
*
|
|
2386
|
+
* @type string
|
|
2387
|
+
*/
|
|
2388
|
+
path?: string;
|
|
2389
|
+
/**
|
|
2390
|
+
*
|
|
2391
|
+
*
|
|
2392
|
+
* @type string
|
|
2393
|
+
*/
|
|
2394
|
+
query?: string;
|
|
2395
|
+
/**
|
|
2396
|
+
*
|
|
2397
|
+
*
|
|
2398
|
+
* @type string
|
|
2399
|
+
*/
|
|
2400
|
+
schema?: string;
|
|
2401
|
+
/**
|
|
2402
|
+
*
|
|
2403
|
+
*
|
|
2404
|
+
* @type string
|
|
2405
|
+
*/
|
|
2406
|
+
tagType?: string;
|
|
2407
|
+
}
|
|
2408
|
+
export interface KnowledgeBizInterfaceFullResp {
|
|
2409
|
+
/**
|
|
2410
|
+
*
|
|
2411
|
+
*
|
|
2412
|
+
* @type string
|
|
2413
|
+
*/
|
|
2414
|
+
address?: string;
|
|
2415
|
+
/**
|
|
2416
|
+
*
|
|
2417
|
+
*
|
|
2418
|
+
* @type number
|
|
2419
|
+
*/
|
|
2420
|
+
bid?: number;
|
|
2421
|
+
/**
|
|
2422
|
+
*
|
|
2423
|
+
*
|
|
2424
|
+
* @type string
|
|
2425
|
+
*/
|
|
2426
|
+
body?: string;
|
|
2427
|
+
/**
|
|
2428
|
+
*
|
|
2429
|
+
*
|
|
2430
|
+
* @type string
|
|
2431
|
+
*/
|
|
2432
|
+
createTime?: string;
|
|
2433
|
+
/**
|
|
2434
|
+
*
|
|
2435
|
+
*
|
|
2436
|
+
* @type string
|
|
2437
|
+
*/
|
|
2438
|
+
creator?: string;
|
|
2439
|
+
/**
|
|
2440
|
+
*
|
|
2441
|
+
*
|
|
2442
|
+
* @type string
|
|
2443
|
+
*/
|
|
2444
|
+
errorJson?: string;
|
|
2445
|
+
/**
|
|
2446
|
+
*
|
|
2447
|
+
*
|
|
2448
|
+
* @type string
|
|
2449
|
+
*/
|
|
2450
|
+
fromDesc?: string;
|
|
2451
|
+
/**
|
|
2452
|
+
*
|
|
2453
|
+
*
|
|
2454
|
+
* @type string
|
|
2455
|
+
*/
|
|
2456
|
+
fromType?: string;
|
|
2457
|
+
/**
|
|
2458
|
+
*
|
|
2459
|
+
*
|
|
2460
|
+
* @type string
|
|
2461
|
+
*/
|
|
2462
|
+
header?: string;
|
|
2463
|
+
/**
|
|
2464
|
+
*
|
|
2465
|
+
*
|
|
2466
|
+
* @type number
|
|
2467
|
+
*/
|
|
2468
|
+
id?: number;
|
|
2469
|
+
/**
|
|
2470
|
+
*
|
|
2471
|
+
*
|
|
2472
|
+
* @type string
|
|
2473
|
+
*/
|
|
2474
|
+
method?: string;
|
|
2475
|
+
/**
|
|
2476
|
+
*
|
|
2477
|
+
*
|
|
2478
|
+
* @type string
|
|
2479
|
+
*/
|
|
2480
|
+
name?: string;
|
|
2481
|
+
/**
|
|
2482
|
+
*
|
|
2483
|
+
*
|
|
2484
|
+
* @type string
|
|
2485
|
+
*/
|
|
2486
|
+
okJson?: string;
|
|
2487
|
+
/**
|
|
2488
|
+
*
|
|
2489
|
+
*
|
|
2490
|
+
* @type string
|
|
2491
|
+
*/
|
|
2492
|
+
query?: string;
|
|
2493
|
+
/**
|
|
2494
|
+
*
|
|
2495
|
+
*
|
|
2496
|
+
* @type string
|
|
2497
|
+
*/
|
|
2498
|
+
schema?: string;
|
|
2499
|
+
/**
|
|
2500
|
+
*
|
|
2501
|
+
*
|
|
2502
|
+
* @type number
|
|
2503
|
+
*/
|
|
2504
|
+
status?: number;
|
|
2505
|
+
/**
|
|
2506
|
+
*
|
|
2507
|
+
*
|
|
2508
|
+
* @type string
|
|
2509
|
+
*/
|
|
2510
|
+
tagType?: string;
|
|
2511
|
+
}
|
|
2512
|
+
export interface KnowledgeBizInterfaceReq {
|
|
2513
|
+
/**
|
|
2514
|
+
*
|
|
2515
|
+
*
|
|
2516
|
+
* @type string
|
|
2517
|
+
*/
|
|
2518
|
+
address?: string;
|
|
2519
|
+
/**
|
|
2520
|
+
*
|
|
2521
|
+
*
|
|
2522
|
+
* @type number
|
|
2523
|
+
*/
|
|
2524
|
+
bid?: number;
|
|
2525
|
+
/**
|
|
2526
|
+
*
|
|
2527
|
+
*
|
|
2528
|
+
* @type string
|
|
2529
|
+
*/
|
|
2530
|
+
body?: string;
|
|
2531
|
+
/**
|
|
2532
|
+
*
|
|
2533
|
+
*
|
|
2534
|
+
* @type string
|
|
2535
|
+
*/
|
|
2536
|
+
errorJson?: string;
|
|
2537
|
+
/**
|
|
2538
|
+
*
|
|
2539
|
+
*
|
|
2540
|
+
* @type string
|
|
2541
|
+
*/
|
|
2542
|
+
fromDesc?: string;
|
|
2543
|
+
/**
|
|
2544
|
+
*
|
|
2545
|
+
*
|
|
2546
|
+
* @type string
|
|
2547
|
+
*/
|
|
2548
|
+
fromType?: string;
|
|
2549
|
+
/**
|
|
2550
|
+
*
|
|
2551
|
+
*
|
|
2552
|
+
* @type string
|
|
2553
|
+
*/
|
|
2554
|
+
header?: string;
|
|
2555
|
+
/**
|
|
2556
|
+
*
|
|
2557
|
+
*
|
|
2558
|
+
* @type string
|
|
2559
|
+
*/
|
|
2560
|
+
method?: string;
|
|
2561
|
+
/**
|
|
2562
|
+
*
|
|
2563
|
+
*
|
|
2564
|
+
* @type string
|
|
2565
|
+
*/
|
|
2566
|
+
name?: string;
|
|
2567
|
+
/**
|
|
2568
|
+
*
|
|
2569
|
+
*
|
|
2570
|
+
* @type string
|
|
2571
|
+
*/
|
|
2572
|
+
okJson?: string;
|
|
2573
|
+
/**
|
|
2574
|
+
*
|
|
2575
|
+
*
|
|
2576
|
+
* @type string
|
|
2577
|
+
*/
|
|
2578
|
+
path?: string;
|
|
2579
|
+
/**
|
|
2580
|
+
*
|
|
2581
|
+
*
|
|
2582
|
+
* @type string
|
|
2583
|
+
*/
|
|
2584
|
+
query?: string;
|
|
2585
|
+
/**
|
|
2586
|
+
*
|
|
2587
|
+
*
|
|
2588
|
+
* @type string
|
|
2589
|
+
*/
|
|
2590
|
+
schema?: string;
|
|
2591
|
+
/**
|
|
2592
|
+
*
|
|
2593
|
+
*
|
|
2594
|
+
* @type string
|
|
2595
|
+
*/
|
|
2596
|
+
tagType?: string;
|
|
2597
|
+
}
|
|
2598
|
+
export interface KnowledgeBizInterfaceResp {
|
|
2599
|
+
/**
|
|
2600
|
+
*
|
|
2601
|
+
*
|
|
2602
|
+
* @type string
|
|
2603
|
+
*/
|
|
2604
|
+
address?: string;
|
|
2605
|
+
/**
|
|
2606
|
+
*
|
|
2607
|
+
*
|
|
2608
|
+
* @type number
|
|
2609
|
+
*/
|
|
2610
|
+
bid?: number;
|
|
2611
|
+
/**
|
|
2612
|
+
*
|
|
2613
|
+
*
|
|
2614
|
+
* @type string
|
|
2615
|
+
*/
|
|
2616
|
+
createTime?: string;
|
|
2617
|
+
/**
|
|
2618
|
+
*
|
|
2619
|
+
*
|
|
2620
|
+
* @type string
|
|
2621
|
+
*/
|
|
2622
|
+
creator?: string;
|
|
2623
|
+
/**
|
|
2624
|
+
*
|
|
2625
|
+
*
|
|
2626
|
+
* @type number
|
|
2627
|
+
*/
|
|
2628
|
+
id?: number;
|
|
2629
|
+
/**
|
|
2630
|
+
*
|
|
2631
|
+
*
|
|
2632
|
+
* @type string
|
|
2633
|
+
*/
|
|
2634
|
+
method?: string;
|
|
2635
|
+
/**
|
|
2636
|
+
*
|
|
2637
|
+
*
|
|
2638
|
+
* @type string
|
|
2639
|
+
*/
|
|
2640
|
+
name?: string;
|
|
2641
|
+
/**
|
|
2642
|
+
*
|
|
2643
|
+
*
|
|
2644
|
+
* @type string
|
|
2645
|
+
*/
|
|
2646
|
+
schema?: string;
|
|
2647
|
+
}
|
|
2648
|
+
export interface KnowledgeBizInterfaceSearchReq {
|
|
2649
|
+
/**
|
|
2650
|
+
*
|
|
2651
|
+
*
|
|
2652
|
+
* @type string
|
|
2653
|
+
*/
|
|
2654
|
+
tagType?: string;
|
|
2655
|
+
/**
|
|
2656
|
+
*
|
|
2657
|
+
*
|
|
2658
|
+
* @type number
|
|
2659
|
+
*/
|
|
2660
|
+
vid?: number;
|
|
2661
|
+
}
|
|
2662
|
+
export interface KnowledgeBrandReq {
|
|
2663
|
+
/**
|
|
2664
|
+
*
|
|
2665
|
+
*
|
|
2666
|
+
* @type string
|
|
2667
|
+
*/
|
|
2668
|
+
code?: string;
|
|
2669
|
+
/**
|
|
2670
|
+
*
|
|
2671
|
+
*
|
|
2672
|
+
* @type string
|
|
2673
|
+
*/
|
|
2674
|
+
name?: string;
|
|
2675
|
+
/**
|
|
2676
|
+
*
|
|
2677
|
+
*
|
|
2678
|
+
* @type number
|
|
2679
|
+
*/
|
|
2680
|
+
parentId?: number;
|
|
2681
|
+
/**
|
|
2682
|
+
*
|
|
2683
|
+
*
|
|
2684
|
+
* @type number
|
|
2685
|
+
*/
|
|
2686
|
+
weight?: number;
|
|
2687
|
+
}
|
|
2688
|
+
export interface KnowledgeCategoryReq {
|
|
2689
|
+
/**
|
|
2690
|
+
*
|
|
2691
|
+
*
|
|
2692
|
+
* @type string
|
|
2693
|
+
*/
|
|
2694
|
+
code?: string;
|
|
2695
|
+
/**
|
|
2696
|
+
*
|
|
2697
|
+
*
|
|
2698
|
+
* @type string
|
|
2699
|
+
*/
|
|
2700
|
+
name?: string;
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
*
|
|
2704
|
+
* @type number
|
|
2705
|
+
*/
|
|
2706
|
+
parentId?: number;
|
|
2707
|
+
/**
|
|
2708
|
+
*
|
|
2709
|
+
*
|
|
2710
|
+
* @type number
|
|
2711
|
+
*/
|
|
2712
|
+
weight?: number;
|
|
2713
|
+
}
|
|
2714
|
+
export interface KnowledgeCategoryResp {
|
|
2715
|
+
/**
|
|
2716
|
+
*
|
|
2717
|
+
*
|
|
2718
|
+
* @type string
|
|
2719
|
+
*/
|
|
2720
|
+
classification?: string;
|
|
2721
|
+
/**
|
|
2722
|
+
*
|
|
2723
|
+
*
|
|
2724
|
+
* @type string
|
|
2725
|
+
*/
|
|
2726
|
+
code?: string;
|
|
2727
|
+
/**
|
|
2728
|
+
*
|
|
2729
|
+
*
|
|
2730
|
+
* @type string
|
|
2731
|
+
*/
|
|
2732
|
+
createTime?: string;
|
|
2733
|
+
/**
|
|
2734
|
+
*
|
|
2735
|
+
*
|
|
2736
|
+
* @type number
|
|
2737
|
+
*/
|
|
2738
|
+
id?: number;
|
|
2739
|
+
/**
|
|
2740
|
+
*
|
|
2741
|
+
*
|
|
2742
|
+
* @type string
|
|
2743
|
+
*/
|
|
2744
|
+
name?: string;
|
|
2745
|
+
/**
|
|
2746
|
+
*
|
|
2747
|
+
*
|
|
2748
|
+
* @type number
|
|
2749
|
+
*/
|
|
2750
|
+
parentId?: number;
|
|
2751
|
+
/**
|
|
2752
|
+
*
|
|
2753
|
+
*
|
|
2754
|
+
* @type number
|
|
2755
|
+
*/
|
|
2756
|
+
status?: number;
|
|
2757
|
+
/**
|
|
2758
|
+
*
|
|
2759
|
+
*
|
|
2760
|
+
* @type number
|
|
2761
|
+
*/
|
|
2762
|
+
weight?: number;
|
|
2763
|
+
}
|
|
2764
|
+
export interface KnowledgeCategorySearchReq {
|
|
2765
|
+
/**
|
|
2766
|
+
*
|
|
2767
|
+
*
|
|
2768
|
+
* @type number
|
|
2769
|
+
*/
|
|
2770
|
+
appId?: number;
|
|
2771
|
+
/**
|
|
2772
|
+
*
|
|
2773
|
+
*
|
|
2774
|
+
* @type number
|
|
2775
|
+
*/
|
|
2776
|
+
categoryId?: number;
|
|
2777
|
+
/**
|
|
2778
|
+
*
|
|
2779
|
+
*
|
|
2780
|
+
* @type number[]
|
|
2781
|
+
*/
|
|
2782
|
+
tagCids?: number[];
|
|
2783
|
+
}
|
|
2784
|
+
export interface KnowledgeDescReq {
|
|
2785
|
+
/**
|
|
2786
|
+
*
|
|
2787
|
+
*
|
|
2788
|
+
* @type number
|
|
2789
|
+
*/
|
|
2790
|
+
cid?: number;
|
|
2791
|
+
/**
|
|
2792
|
+
*
|
|
2793
|
+
*
|
|
2794
|
+
* @type string
|
|
2795
|
+
*/
|
|
2796
|
+
desc?: string;
|
|
2797
|
+
}
|
|
2798
|
+
export interface KnowledgeItemResp {
|
|
2799
|
+
/**
|
|
2800
|
+
*
|
|
2801
|
+
*
|
|
2802
|
+
* @type KnowledgeCategoryResp[]
|
|
2803
|
+
*/
|
|
2804
|
+
categories?: KnowledgeCategoryResp[];
|
|
2805
|
+
/**
|
|
2806
|
+
*
|
|
2807
|
+
*
|
|
2808
|
+
* @type string
|
|
2809
|
+
*/
|
|
2810
|
+
desc?: string;
|
|
2811
|
+
/**
|
|
2812
|
+
*
|
|
2813
|
+
*
|
|
2814
|
+
* @type string
|
|
2815
|
+
*/
|
|
2816
|
+
picPath?: string;
|
|
2817
|
+
/**
|
|
2818
|
+
*
|
|
2819
|
+
*
|
|
2820
|
+
* @type KnowledgeTagItemResp[]
|
|
2821
|
+
*/
|
|
2822
|
+
tags?: KnowledgeTagItemResp[];
|
|
2823
|
+
}
|
|
2824
|
+
export interface KnowledgeTagItemResp {
|
|
2825
|
+
/**
|
|
2826
|
+
*
|
|
2827
|
+
*
|
|
2828
|
+
* @type number
|
|
2829
|
+
*/
|
|
2830
|
+
cid?: number;
|
|
2831
|
+
/**
|
|
2832
|
+
*
|
|
2833
|
+
*
|
|
2834
|
+
* @type string
|
|
2835
|
+
*/
|
|
2836
|
+
tag?: string;
|
|
2837
|
+
}
|
|
2838
|
+
export interface KnowledgeTagReq {
|
|
2839
|
+
/**
|
|
2840
|
+
*
|
|
2841
|
+
*
|
|
2842
|
+
* @type number
|
|
2843
|
+
*/
|
|
2844
|
+
cid?: number;
|
|
2845
|
+
/**
|
|
2846
|
+
*
|
|
2847
|
+
*
|
|
2848
|
+
* @type string
|
|
2849
|
+
*/
|
|
2850
|
+
tag?: string;
|
|
2851
|
+
}
|
|
2852
|
+
export interface KnowledgeTagResp {
|
|
2853
|
+
/**
|
|
2854
|
+
*
|
|
2855
|
+
*
|
|
2856
|
+
* @type number[]
|
|
2857
|
+
*/
|
|
2858
|
+
cids?: number[];
|
|
2859
|
+
/**
|
|
2860
|
+
*
|
|
2861
|
+
*
|
|
2862
|
+
* @type string
|
|
2863
|
+
*/
|
|
2864
|
+
tag?: string;
|
|
2865
|
+
}
|
|
2866
|
+
export interface KnowledgeVersionReq {
|
|
2867
|
+
/**
|
|
2868
|
+
*
|
|
2869
|
+
*
|
|
2870
|
+
* @type string
|
|
2871
|
+
*/
|
|
2872
|
+
code?: string;
|
|
2873
|
+
/**
|
|
2874
|
+
*
|
|
2875
|
+
*
|
|
2876
|
+
* @type string
|
|
2877
|
+
*/
|
|
2878
|
+
name?: string;
|
|
2879
|
+
/**
|
|
2880
|
+
*
|
|
2881
|
+
*
|
|
2882
|
+
* @type number
|
|
2883
|
+
*/
|
|
2884
|
+
parentId?: number;
|
|
2885
|
+
/**
|
|
2886
|
+
*
|
|
2887
|
+
*
|
|
2888
|
+
* @type number
|
|
2889
|
+
*/
|
|
2890
|
+
weight?: number;
|
|
2891
|
+
}
|
|
2892
|
+
export interface LogResponse {
|
|
2893
|
+
/**
|
|
2894
|
+
*
|
|
2895
|
+
*
|
|
2896
|
+
* @type IObject
|
|
2897
|
+
*/
|
|
2898
|
+
body?: IObject;
|
|
2899
|
+
/**
|
|
2900
|
+
*
|
|
2901
|
+
*
|
|
2902
|
+
* @type IObject
|
|
2903
|
+
*/
|
|
2904
|
+
headers?: IObject;
|
|
2905
|
+
/**
|
|
2906
|
+
*
|
|
2907
|
+
*
|
|
2908
|
+
* @type IObject
|
|
2909
|
+
*/
|
|
2910
|
+
method?: IObject;
|
|
2911
|
+
/**
|
|
2912
|
+
*
|
|
2913
|
+
*
|
|
2914
|
+
* @type IObject
|
|
2915
|
+
*/
|
|
2916
|
+
path?: IObject;
|
|
2917
|
+
/**
|
|
2918
|
+
*
|
|
2919
|
+
*
|
|
2920
|
+
* @type IObject
|
|
2921
|
+
*/
|
|
2922
|
+
query?: IObject;
|
|
2923
|
+
/**
|
|
2924
|
+
*
|
|
2925
|
+
*
|
|
2926
|
+
* @type string
|
|
2927
|
+
*/
|
|
2928
|
+
url?: string;
|
|
2929
|
+
}
|
|
2930
|
+
export interface Relation {
|
|
2931
|
+
/**
|
|
2932
|
+
* 分类id
|
|
2933
|
+
*
|
|
2934
|
+
* @type string
|
|
2935
|
+
*/
|
|
2936
|
+
categoryId?: string;
|
|
2937
|
+
/**
|
|
2938
|
+
* 分类名称
|
|
2939
|
+
*
|
|
2940
|
+
* @type string
|
|
2941
|
+
*/
|
|
2942
|
+
categoryName?: string;
|
|
2943
|
+
/**
|
|
2944
|
+
*
|
|
2945
|
+
*
|
|
2946
|
+
* @type Relation[]
|
|
2947
|
+
*/
|
|
2948
|
+
children?: Relation[];
|
|
2949
|
+
/**
|
|
2950
|
+
*
|
|
2951
|
+
*
|
|
2952
|
+
* @type string
|
|
2953
|
+
*/
|
|
2954
|
+
createTime?: string;
|
|
2955
|
+
/**
|
|
2956
|
+
*
|
|
2957
|
+
*
|
|
2958
|
+
* @type string
|
|
2959
|
+
*/
|
|
2960
|
+
createUserId?: string;
|
|
2961
|
+
/**
|
|
2962
|
+
*
|
|
2963
|
+
*
|
|
2964
|
+
* @type string
|
|
2965
|
+
*/
|
|
2966
|
+
createUserName?: string;
|
|
2967
|
+
/**
|
|
2968
|
+
* 是否默认
|
|
2969
|
+
*
|
|
2970
|
+
* @type number
|
|
2971
|
+
*/
|
|
2972
|
+
defaulted?: number;
|
|
2973
|
+
/**
|
|
2974
|
+
*
|
|
2975
|
+
*
|
|
2976
|
+
* @type number
|
|
2977
|
+
*/
|
|
2978
|
+
deleted?: number;
|
|
2979
|
+
/**
|
|
2980
|
+
* 是否子版本
|
|
2981
|
+
*
|
|
2982
|
+
* @type boolean
|
|
1686
2983
|
*/
|
|
1687
2984
|
hasChild?: boolean;
|
|
1688
2985
|
/**
|
|
@@ -1914,6 +3211,58 @@ export interface SchemaObject {
|
|
|
1914
3211
|
*/
|
|
1915
3212
|
type?: string;
|
|
1916
3213
|
}
|
|
3214
|
+
export interface SimpleCategoryRes {
|
|
3215
|
+
/**
|
|
3216
|
+
* 主键
|
|
3217
|
+
*
|
|
3218
|
+
* @type string
|
|
3219
|
+
*/
|
|
3220
|
+
id?: string;
|
|
3221
|
+
/**
|
|
3222
|
+
* 名称
|
|
3223
|
+
*
|
|
3224
|
+
* @type string
|
|
3225
|
+
*/
|
|
3226
|
+
name?: string;
|
|
3227
|
+
}
|
|
3228
|
+
export interface TreeNodeConfig {
|
|
3229
|
+
/**
|
|
3230
|
+
*
|
|
3231
|
+
*
|
|
3232
|
+
* @type string
|
|
3233
|
+
*/
|
|
3234
|
+
childrenKey?: string;
|
|
3235
|
+
/**
|
|
3236
|
+
*
|
|
3237
|
+
*
|
|
3238
|
+
* @type number
|
|
3239
|
+
*/
|
|
3240
|
+
deep?: number;
|
|
3241
|
+
/**
|
|
3242
|
+
*
|
|
3243
|
+
*
|
|
3244
|
+
* @type string
|
|
3245
|
+
*/
|
|
3246
|
+
idKey?: string;
|
|
3247
|
+
/**
|
|
3248
|
+
*
|
|
3249
|
+
*
|
|
3250
|
+
* @type string
|
|
3251
|
+
*/
|
|
3252
|
+
nameKey?: string;
|
|
3253
|
+
/**
|
|
3254
|
+
*
|
|
3255
|
+
*
|
|
3256
|
+
* @type string
|
|
3257
|
+
*/
|
|
3258
|
+
parentIdKey?: string;
|
|
3259
|
+
/**
|
|
3260
|
+
*
|
|
3261
|
+
*
|
|
3262
|
+
* @type string
|
|
3263
|
+
*/
|
|
3264
|
+
weightKey?: string;
|
|
3265
|
+
}
|
|
1917
3266
|
export interface ValidCronResponse {
|
|
1918
3267
|
/**
|
|
1919
3268
|
* 错误信息(若有)
|