@gct-paas/api 0.1.6-dev.6 → 0.1.6-dev.7
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 -0
- package/es/apaas/service/api-config.mjs +452 -5
- package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
- package/es/apaas/service/apis/app-org.service.d.ts +0 -4
- package/es/apaas/service/apis/approve.service.d.ts +54 -0
- package/es/apaas/service/apis/audit-log.service.d.ts +7 -0
- package/es/apaas/service/apis/category.service.d.ts +8 -0
- package/es/apaas/service/apis/data-source.service.d.ts +4 -0
- package/es/apaas/service/apis/detail-page.service.d.ts +96 -0
- package/es/apaas/service/apis/dhr.service.d.ts +2 -2
- package/es/apaas/service/apis/doc-control-started.service.d.ts +76 -1
- package/es/apaas/service/apis/doc-control-task-todo.service.d.ts +12 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +16 -0
- package/es/apaas/service/apis/edhr-tmpl.service.d.ts +18 -5
- package/es/apaas/service/apis/enum-model-field.service.d.ts +8 -0
- package/es/apaas/service/apis/excel.service.d.ts +6 -2
- package/es/apaas/service/apis/field-meta.service.d.ts +21 -0
- package/es/apaas/service/apis/file.service.d.ts +4 -0
- package/es/apaas/service/apis/inspection-category.service.d.ts +84 -0
- package/es/apaas/service/apis/label.service.d.ts +11 -3
- package/es/apaas/service/apis/med-pro.service.d.ts +108 -0
- package/es/apaas/service/apis/medPro.service.d.ts +49 -21
- package/es/apaas/service/apis/model-meta.service.d.ts +15 -1
- package/es/apaas/service/apis/model-method.service.d.ts +19 -1
- package/es/apaas/service/apis/online-form-instance.service.d.ts +78 -0
- package/es/apaas/service/apis/online-form-tmpl-export.service.d.ts +29 -0
- package/es/apaas/service/apis/online-form-tmpl.service.d.ts +77 -0
- package/es/apaas/service/apis/online-form.service.d.ts +8 -1
- package/es/apaas/service/apis/process-task-done.service.d.ts +28 -1
- package/es/apaas/service/apis/process-task-todo.service.d.ts +44 -1
- package/es/apaas/service/apis/product-release-category.service.d.ts +84 -0
- package/es/apaas/service/apis/ss.service.d.ts +8 -0
- package/es/apaas/service/apis/transaction.service.d.ts +157 -0
- package/es/apaas/service/apis/user.service.d.ts +31 -0
- package/es/apaas/service/entities.d.ts +3159 -76
- package/es/apaas/service/index.d.ts +14 -0
- package/es/ipaas/service/api-config.mjs +29 -5
- package/es/ipaas/service/apis/camel.service.d.ts +18 -5
- package/es/ipaas/service/apis/flow.service.d.ts +77 -1
- package/es/ipaas/service/apis/runtime.service.d.ts +13 -0
- package/es/ipaas/service/entities.d.ts +168 -0
- package/es/platform/service/api-config.mjs +48 -2
- package/es/platform/service/apis/api.service.d.ts +52 -1
- package/es/platform/service/apis/bi-app.service.d.ts +4 -3
- package/es/platform/service/apis/file-task.service.d.ts +13 -0
- package/es/platform/service/apis/invoke-log.service.d.ts +17 -1
- package/es/platform/service/apis/license.service.d.ts +18 -0
- package/es/platform/service/apis/login-log.service.d.ts +13 -0
- package/es/platform/service/apis/plat.service.d.ts +7 -0
- package/es/platform/service/entities.d.ts +529 -4
- package/es/service/api-manage.mjs +2 -2
- package/es/service/api-service.d.ts +13 -0
- package/es/service/api-service.interface.d.ts +6 -9
- package/es/service/api-service.mjs +42 -17
- package/es/service/http.util.d.ts +8 -1
- package/es/service/http.util.mjs +22 -4
- package/es/service/index.mjs +1 -3
- package/es/types/index.d.ts +27 -0
- package/es/utils/index.d.ts +7 -0
- package/es/utils/index.mjs +6 -0
- package/package.json +1 -1
- package/dist/gct-api.esm.min.js +0 -1
- package/dist/gct-api.system.min.js +0 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { MedProService } from './apis/med-pro.service';
|
|
1
2
|
import type { AppBranchService } from './apis/app-branch.service';
|
|
2
3
|
import type { AppGlobalSettingsService } from './apis/app-global-settings.service';
|
|
3
4
|
import type { AppGrantedUserService } from './apis/app-granted-user.service';
|
|
@@ -6,6 +7,7 @@ import type { AppPublishLogService } from './apis/app-publish-log.service';
|
|
|
6
7
|
import type { AppStateService } from './apis/app-state.service';
|
|
7
8
|
import type { AppUserService } from './apis/app-user.service';
|
|
8
9
|
import type { ApprovalLogService } from './apis/approval-log.service';
|
|
10
|
+
import type { ApproveService } from './apis/approve.service';
|
|
9
11
|
import type { AuditLogService } from './apis/audit-log.service';
|
|
10
12
|
import type { BasicConfigService } from './apis/basic-config.service';
|
|
11
13
|
import type { BizEventService } from './apis/biz-event.service';
|
|
@@ -61,6 +63,8 @@ import type { FormRelateService } from './apis/formRelate.service';
|
|
|
61
63
|
import type { FrontOperateLogService } from './apis/front-operate-log.service';
|
|
62
64
|
import type { GlobalMethodService } from './apis/global-method.service';
|
|
63
65
|
import type { I18NInfoService } from './apis/i18n-info.service';
|
|
66
|
+
import type { ImportReportService } from './apis/import-report.service';
|
|
67
|
+
import type { InspectionCategoryService } from './apis/inspection-category.service';
|
|
64
68
|
import type { InstanceRelationService } from './apis/instance-relation.service';
|
|
65
69
|
import type { IpaasService } from './apis/ipaas.service';
|
|
66
70
|
import type { JobService } from './apis/job.service';
|
|
@@ -88,6 +92,7 @@ import type { OnlineFormCategoryService } from './apis/online-form-category.serv
|
|
|
88
92
|
import type { OnlineFormChangeHistoryService } from './apis/online-form-change-history.service';
|
|
89
93
|
import type { OnlineFormInstanceService } from './apis/online-form-instance.service';
|
|
90
94
|
import type { OnlineFormLogService } from './apis/online-form-log.service';
|
|
95
|
+
import type { OnlineFormTmplExportService } from './apis/online-form-tmpl-export.service';
|
|
91
96
|
import type { OnlineFormTmplLogService } from './apis/online-form-tmpl-log.service';
|
|
92
97
|
import type { OnlineFormTmplService } from './apis/online-form-tmpl.service';
|
|
93
98
|
import type { OnlineFormService } from './apis/online-form.service';
|
|
@@ -122,6 +127,7 @@ import type { ProcessTaskDoneService } from './apis/process-task-done.service';
|
|
|
122
127
|
import type { ProcessTaskTodoService } from './apis/process-task-todo.service';
|
|
123
128
|
import type { ProcessVersionService } from './apis/process-version.service';
|
|
124
129
|
import type { ProcessTestService } from './apis/processTest.service';
|
|
130
|
+
import type { ProductReleaseCategoryService } from './apis/product-release-category.service';
|
|
125
131
|
import type { ProductReleaseService } from './apis/product-release.service';
|
|
126
132
|
import type { PublishLogService } from './apis/publish-log.service';
|
|
127
133
|
import type { RegexpService } from './apis/regexp.service';
|
|
@@ -143,6 +149,7 @@ import type { SignLogService } from './apis/sign-log.service';
|
|
|
143
149
|
import type { SignatureService } from './apis/signature.service';
|
|
144
150
|
import type { SqlViewModelService } from './apis/sql-view-model.service';
|
|
145
151
|
import type { SqlViewService } from './apis/sql-view.service';
|
|
152
|
+
import type { SsService } from './apis/ss.service';
|
|
146
153
|
import type { StashService } from './apis/stash.service';
|
|
147
154
|
import type { SubModelProcessService } from './apis/sub-model-process.service';
|
|
148
155
|
import type { SysConfigService } from './apis/sys-config.service';
|
|
@@ -160,6 +167,7 @@ import type { WebpageService } from './apis/webpage.service';
|
|
|
160
167
|
import type { ApiService } from './apis/api.service';
|
|
161
168
|
|
|
162
169
|
export interface ApiManage {
|
|
170
|
+
readonly medPro: MedProService;
|
|
163
171
|
readonly appBranch: AppBranchService;
|
|
164
172
|
readonly appGlobalSettings: AppGlobalSettingsService;
|
|
165
173
|
readonly appGrantedUser: AppGrantedUserService;
|
|
@@ -168,6 +176,7 @@ export interface ApiManage {
|
|
|
168
176
|
readonly appState: AppStateService;
|
|
169
177
|
readonly appUser: AppUserService;
|
|
170
178
|
readonly approvalLog: ApprovalLogService;
|
|
179
|
+
readonly approve: ApproveService;
|
|
171
180
|
readonly auditLog: AuditLogService;
|
|
172
181
|
readonly basicConfig: BasicConfigService;
|
|
173
182
|
readonly bizEvent: BizEventService;
|
|
@@ -223,6 +232,8 @@ export interface ApiManage {
|
|
|
223
232
|
readonly frontOperateLog: FrontOperateLogService;
|
|
224
233
|
readonly globalMethod: GlobalMethodService;
|
|
225
234
|
readonly i18NInfo: I18NInfoService;
|
|
235
|
+
readonly importReport: ImportReportService;
|
|
236
|
+
readonly inspectionCategory: InspectionCategoryService;
|
|
226
237
|
readonly instanceRelation: InstanceRelationService;
|
|
227
238
|
readonly ipaas: IpaasService;
|
|
228
239
|
readonly job: JobService;
|
|
@@ -250,6 +261,7 @@ export interface ApiManage {
|
|
|
250
261
|
readonly onlineFormChangeHistory: OnlineFormChangeHistoryService;
|
|
251
262
|
readonly onlineFormInstance: OnlineFormInstanceService;
|
|
252
263
|
readonly onlineFormLog: OnlineFormLogService;
|
|
264
|
+
readonly onlineFormTmplExport: OnlineFormTmplExportService;
|
|
253
265
|
readonly onlineFormTmplLog: OnlineFormTmplLogService;
|
|
254
266
|
readonly onlineFormTmpl: OnlineFormTmplService;
|
|
255
267
|
readonly onlineForm: OnlineFormService;
|
|
@@ -284,6 +296,7 @@ export interface ApiManage {
|
|
|
284
296
|
readonly processTaskTodo: ProcessTaskTodoService;
|
|
285
297
|
readonly processVersion: ProcessVersionService;
|
|
286
298
|
readonly processTest: ProcessTestService;
|
|
299
|
+
readonly productReleaseCategory: ProductReleaseCategoryService;
|
|
287
300
|
readonly productRelease: ProductReleaseService;
|
|
288
301
|
readonly publishLog: PublishLogService;
|
|
289
302
|
readonly regexp: RegexpService;
|
|
@@ -305,6 +318,7 @@ export interface ApiManage {
|
|
|
305
318
|
readonly signature: SignatureService;
|
|
306
319
|
readonly sqlViewModel: SqlViewModelService;
|
|
307
320
|
readonly sqlView: SqlViewService;
|
|
321
|
+
readonly ss: SsService;
|
|
308
322
|
readonly stash: StashService;
|
|
309
323
|
readonly subModelProcess: SubModelProcessService;
|
|
310
324
|
readonly sysConfig: SysConfigService;
|
|
@@ -32,6 +32,12 @@ export const apiConfig = [
|
|
|
32
32
|
method: "postCreate",
|
|
33
33
|
path: "create"
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
mode: "get",
|
|
37
|
+
method: "getData",
|
|
38
|
+
path: "data",
|
|
39
|
+
hasQuery: true
|
|
40
|
+
},
|
|
35
41
|
{
|
|
36
42
|
mode: "post",
|
|
37
43
|
method: "postDebug",
|
|
@@ -50,11 +56,6 @@ export const apiConfig = [
|
|
|
50
56
|
path: "fetchMissingParams",
|
|
51
57
|
hasQuery: true
|
|
52
58
|
},
|
|
53
|
-
{
|
|
54
|
-
mode: "post",
|
|
55
|
-
method: "postLoad",
|
|
56
|
-
path: "load"
|
|
57
|
-
},
|
|
58
59
|
{
|
|
59
60
|
mode: "get",
|
|
60
61
|
method: "getRoutes",
|
|
@@ -334,6 +335,11 @@ export const apiConfig = [
|
|
|
334
335
|
method: "postExport",
|
|
335
336
|
path: "export"
|
|
336
337
|
},
|
|
338
|
+
{
|
|
339
|
+
mode: "get",
|
|
340
|
+
method: "getFlowCategoryTree",
|
|
341
|
+
path: "flowCategoryTree"
|
|
342
|
+
},
|
|
337
343
|
{
|
|
338
344
|
mode: "post",
|
|
339
345
|
method: "postImport",
|
|
@@ -352,6 +358,18 @@ export const apiConfig = [
|
|
|
352
358
|
path: "list/online",
|
|
353
359
|
hasQuery: true
|
|
354
360
|
},
|
|
361
|
+
{
|
|
362
|
+
mode: "get",
|
|
363
|
+
method: "getLogPageSearch",
|
|
364
|
+
path: "log/page/search",
|
|
365
|
+
hasQuery: true
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
mode: "get",
|
|
369
|
+
method: "getNodeLogReqId",
|
|
370
|
+
path: "node/log/{reqId}",
|
|
371
|
+
hasPathParams: true
|
|
372
|
+
},
|
|
355
373
|
{
|
|
356
374
|
mode: "get",
|
|
357
375
|
method: "getPageList",
|
|
@@ -382,6 +400,12 @@ export const apiConfig = [
|
|
|
382
400
|
method: "getRandomId",
|
|
383
401
|
path: "randomId"
|
|
384
402
|
},
|
|
403
|
+
{
|
|
404
|
+
mode: "get",
|
|
405
|
+
method: "getRetry",
|
|
406
|
+
path: "retry",
|
|
407
|
+
hasQuery: true
|
|
408
|
+
},
|
|
385
409
|
{
|
|
386
410
|
mode: "post",
|
|
387
411
|
method: "postValidWebSocketAndRunToSpecNode",
|
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
import type { AxiosRequestConfig } from 'axios';
|
|
2
|
-
import type {
|
|
2
|
+
import type { ResponseEntity, DebugDTO, SchemaObject } from '../entities';
|
|
3
3
|
|
|
4
|
+
export interface getDataQuery {
|
|
5
|
+
/**
|
|
6
|
+
* num
|
|
7
|
+
*/
|
|
8
|
+
num?: number;
|
|
9
|
+
}
|
|
4
10
|
export interface postDestoryQuery {
|
|
5
11
|
/**
|
|
6
12
|
* flowId
|
|
7
13
|
*/
|
|
8
14
|
flowId: string;
|
|
15
|
+
/**
|
|
16
|
+
* version
|
|
17
|
+
*/
|
|
18
|
+
version: string;
|
|
9
19
|
}
|
|
10
20
|
export interface postFetchMissingParamsQuery {
|
|
11
21
|
/**
|
|
@@ -24,6 +34,13 @@ export interface CamelService {
|
|
|
24
34
|
* 创建
|
|
25
35
|
*/
|
|
26
36
|
postCreate(config?: Partial<AxiosRequestConfig>): Promise<boolean>;
|
|
37
|
+
/**
|
|
38
|
+
* 同步调试
|
|
39
|
+
*/
|
|
40
|
+
getData(
|
|
41
|
+
query: getDataQuery,
|
|
42
|
+
config?: Partial<AxiosRequestConfig>,
|
|
43
|
+
): Promise<ResponseEntity>;
|
|
27
44
|
/**
|
|
28
45
|
* 同步调试
|
|
29
46
|
*/
|
|
@@ -45,10 +62,6 @@ export interface CamelService {
|
|
|
45
62
|
query: postFetchMissingParamsQuery,
|
|
46
63
|
config?: Partial<AxiosRequestConfig>,
|
|
47
64
|
): Promise<ResponseEntity>;
|
|
48
|
-
/**
|
|
49
|
-
* 同步调试
|
|
50
|
-
*/
|
|
51
|
-
postLoad(config?: Partial<AxiosRequestConfig>): Promise<ResponseEntity>;
|
|
52
65
|
/**
|
|
53
66
|
* 获取所有的路由定义
|
|
54
67
|
*/
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import type { AxiosRequestConfig } from 'axios';
|
|
2
|
-
import type {
|
|
2
|
+
import type {
|
|
3
|
+
ResponseEntity,
|
|
4
|
+
FlowCategoryTree,
|
|
5
|
+
FlowMainResp,
|
|
6
|
+
FlowLogResp,
|
|
7
|
+
FlowNodeLogResp,
|
|
8
|
+
FlowUpdateReq,
|
|
9
|
+
} from '../entities';
|
|
3
10
|
|
|
4
11
|
export interface postImportQuery {
|
|
5
12
|
/**
|
|
@@ -31,6 +38,55 @@ export interface getListOnlineQuery {
|
|
|
31
38
|
*/
|
|
32
39
|
name?: string;
|
|
33
40
|
}
|
|
41
|
+
export interface getLogPageSearchQuery {
|
|
42
|
+
/**
|
|
43
|
+
* 所属应用
|
|
44
|
+
*/
|
|
45
|
+
appId?: string;
|
|
46
|
+
/**
|
|
47
|
+
* 输入报文-payload
|
|
48
|
+
*/
|
|
49
|
+
inputPayload?: string;
|
|
50
|
+
/**
|
|
51
|
+
* 连接流key
|
|
52
|
+
*/
|
|
53
|
+
key?: string;
|
|
54
|
+
/**
|
|
55
|
+
* 连接流名称
|
|
56
|
+
*/
|
|
57
|
+
name?: string;
|
|
58
|
+
/**
|
|
59
|
+
* 输出报文-payload
|
|
60
|
+
*/
|
|
61
|
+
outputPayload?: string;
|
|
62
|
+
/**
|
|
63
|
+
* 页码
|
|
64
|
+
*/
|
|
65
|
+
pageNo?: number;
|
|
66
|
+
/**
|
|
67
|
+
* 分页大小
|
|
68
|
+
*/
|
|
69
|
+
pageSize?: number;
|
|
70
|
+
/**
|
|
71
|
+
* 排序字段
|
|
72
|
+
*/
|
|
73
|
+
sortField?: string;
|
|
74
|
+
/**
|
|
75
|
+
* 排序方式:ASC/DESC, 不传默认 ASC
|
|
76
|
+
*/
|
|
77
|
+
sortType?: string;
|
|
78
|
+
/**
|
|
79
|
+
* 调用结果
|
|
80
|
+
*/
|
|
81
|
+
status?: number;
|
|
82
|
+
/**
|
|
83
|
+
* 调用方式
|
|
84
|
+
*/
|
|
85
|
+
triggerType?: string;
|
|
86
|
+
}
|
|
87
|
+
export interface getNodeLogReqIdPathParams {
|
|
88
|
+
reqId: string;
|
|
89
|
+
}
|
|
34
90
|
export interface getPageListQuery {
|
|
35
91
|
/**
|
|
36
92
|
* 分类id
|
|
@@ -57,6 +113,12 @@ export interface FlowService {
|
|
|
57
113
|
* 导出
|
|
58
114
|
*/
|
|
59
115
|
postExport(config?: Partial<AxiosRequestConfig>): Promise<ResponseEntity>;
|
|
116
|
+
/**
|
|
117
|
+
* 流程和分类关联树
|
|
118
|
+
*/
|
|
119
|
+
getFlowCategoryTree(
|
|
120
|
+
config?: Partial<AxiosRequestConfig>,
|
|
121
|
+
): Promise<FlowCategoryTree[]>;
|
|
60
122
|
/**
|
|
61
123
|
* 导入
|
|
62
124
|
*/
|
|
@@ -78,6 +140,20 @@ export interface FlowService {
|
|
|
78
140
|
query: getListOnlineQuery,
|
|
79
141
|
config?: Partial<AxiosRequestConfig>,
|
|
80
142
|
): Promise<FlowMainResp[]>;
|
|
143
|
+
/**
|
|
144
|
+
* 流程日志列表
|
|
145
|
+
*/
|
|
146
|
+
getLogPageSearch(
|
|
147
|
+
query: getLogPageSearchQuery,
|
|
148
|
+
config?: Partial<AxiosRequestConfig>,
|
|
149
|
+
): Promise<IPage<FlowLogResp>>;
|
|
150
|
+
/**
|
|
151
|
+
* 节点日志列表
|
|
152
|
+
*/
|
|
153
|
+
getNodeLogReqId(
|
|
154
|
+
path: getNodeLogReqIdPathParams,
|
|
155
|
+
config?: Partial<AxiosRequestConfig>,
|
|
156
|
+
): Promise<FlowNodeLogResp[]>;
|
|
81
157
|
/**
|
|
82
158
|
* 分页列表
|
|
83
159
|
*/
|
|
@@ -7,6 +7,12 @@ export interface getDestroyContextQuery {
|
|
|
7
7
|
*/
|
|
8
8
|
clientId: string;
|
|
9
9
|
}
|
|
10
|
+
export interface getRetryQuery {
|
|
11
|
+
/**
|
|
12
|
+
* reqId
|
|
13
|
+
*/
|
|
14
|
+
reqId: string;
|
|
15
|
+
}
|
|
10
16
|
export interface RuntimeService {
|
|
11
17
|
/**
|
|
12
18
|
* 销毁上下文
|
|
@@ -19,6 +25,13 @@ export interface RuntimeService {
|
|
|
19
25
|
* 获取随机id
|
|
20
26
|
*/
|
|
21
27
|
getRandomId(config?: Partial<AxiosRequestConfig>): Promise<ResponseEntity>;
|
|
28
|
+
/**
|
|
29
|
+
* 重试
|
|
30
|
+
*/
|
|
31
|
+
getRetry(
|
|
32
|
+
query: getRetryQuery,
|
|
33
|
+
config?: Partial<AxiosRequestConfig>,
|
|
34
|
+
): Promise<boolean>;
|
|
22
35
|
/**
|
|
23
36
|
* 运行到指定节点
|
|
24
37
|
*/
|
|
@@ -1100,6 +1100,32 @@ export interface FlowCategoryResponse {
|
|
|
1100
1100
|
*/
|
|
1101
1101
|
sysBuiltin?: number;
|
|
1102
1102
|
}
|
|
1103
|
+
export interface FlowCategoryTree {
|
|
1104
|
+
/**
|
|
1105
|
+
* 子节点
|
|
1106
|
+
*
|
|
1107
|
+
* @type FlowCategoryTree[]
|
|
1108
|
+
*/
|
|
1109
|
+
child?: FlowCategoryTree[];
|
|
1110
|
+
/**
|
|
1111
|
+
* 数据id
|
|
1112
|
+
*
|
|
1113
|
+
* @type string
|
|
1114
|
+
*/
|
|
1115
|
+
id?: string;
|
|
1116
|
+
/**
|
|
1117
|
+
* 名称
|
|
1118
|
+
*
|
|
1119
|
+
* @type string
|
|
1120
|
+
*/
|
|
1121
|
+
name?: string;
|
|
1122
|
+
/**
|
|
1123
|
+
* 类型:flow 流程、category 分类
|
|
1124
|
+
*
|
|
1125
|
+
* @type string
|
|
1126
|
+
*/
|
|
1127
|
+
type?: string;
|
|
1128
|
+
}
|
|
1103
1129
|
export interface FlowCreateWithCategoryReq {
|
|
1104
1130
|
/**
|
|
1105
1131
|
* 分类id
|
|
@@ -1276,6 +1302,86 @@ export interface FlowExtResponse {
|
|
|
1276
1302
|
*/
|
|
1277
1303
|
version?: string;
|
|
1278
1304
|
}
|
|
1305
|
+
export interface FlowLogResp {
|
|
1306
|
+
/**
|
|
1307
|
+
*
|
|
1308
|
+
*
|
|
1309
|
+
* @type string
|
|
1310
|
+
*/
|
|
1311
|
+
fkey?: string;
|
|
1312
|
+
/**
|
|
1313
|
+
*
|
|
1314
|
+
*
|
|
1315
|
+
* @type string
|
|
1316
|
+
*/
|
|
1317
|
+
fuuid?: string;
|
|
1318
|
+
/**
|
|
1319
|
+
*
|
|
1320
|
+
*
|
|
1321
|
+
* @type string
|
|
1322
|
+
*/
|
|
1323
|
+
id?: string;
|
|
1324
|
+
/**
|
|
1325
|
+
*
|
|
1326
|
+
*
|
|
1327
|
+
* @type string
|
|
1328
|
+
*/
|
|
1329
|
+
modelKey?: string;
|
|
1330
|
+
/**
|
|
1331
|
+
*
|
|
1332
|
+
*
|
|
1333
|
+
* @type string
|
|
1334
|
+
*/
|
|
1335
|
+
name?: string;
|
|
1336
|
+
/**
|
|
1337
|
+
* 流程耗时:毫秒
|
|
1338
|
+
*
|
|
1339
|
+
* @type number
|
|
1340
|
+
*/
|
|
1341
|
+
processTime?: number;
|
|
1342
|
+
/**
|
|
1343
|
+
*
|
|
1344
|
+
*
|
|
1345
|
+
* @type string
|
|
1346
|
+
*/
|
|
1347
|
+
reqId?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
* 是否可重试
|
|
1350
|
+
*
|
|
1351
|
+
* @type boolean
|
|
1352
|
+
*/
|
|
1353
|
+
retry?: boolean;
|
|
1354
|
+
/**
|
|
1355
|
+
* 1.执行中 2.执行成功 3.执行失败
|
|
1356
|
+
*
|
|
1357
|
+
* @type string
|
|
1358
|
+
*/
|
|
1359
|
+
status?: string;
|
|
1360
|
+
/**
|
|
1361
|
+
* 状态翻译
|
|
1362
|
+
*
|
|
1363
|
+
* @type string
|
|
1364
|
+
*/
|
|
1365
|
+
statusStr?: string;
|
|
1366
|
+
/**
|
|
1367
|
+
* 触发时间
|
|
1368
|
+
*
|
|
1369
|
+
* @type string
|
|
1370
|
+
*/
|
|
1371
|
+
triggerTime?: string;
|
|
1372
|
+
/**
|
|
1373
|
+
*
|
|
1374
|
+
*
|
|
1375
|
+
* @type string
|
|
1376
|
+
*/
|
|
1377
|
+
triggerType?: string;
|
|
1378
|
+
/**
|
|
1379
|
+
*
|
|
1380
|
+
*
|
|
1381
|
+
* @type string
|
|
1382
|
+
*/
|
|
1383
|
+
version?: string;
|
|
1384
|
+
}
|
|
1279
1385
|
export interface FlowMainResp {
|
|
1280
1386
|
/**
|
|
1281
1387
|
*
|
|
@@ -1392,6 +1498,68 @@ export interface FlowMainResp {
|
|
|
1392
1498
|
*/
|
|
1393
1499
|
updateTime?: string;
|
|
1394
1500
|
}
|
|
1501
|
+
export interface FlowNodeLogResp {
|
|
1502
|
+
/**
|
|
1503
|
+
* 端点类型
|
|
1504
|
+
*
|
|
1505
|
+
* @type string
|
|
1506
|
+
*/
|
|
1507
|
+
endpointType?: string;
|
|
1508
|
+
/**
|
|
1509
|
+
*
|
|
1510
|
+
*
|
|
1511
|
+
* @type string
|
|
1512
|
+
*/
|
|
1513
|
+
fuuid?: string;
|
|
1514
|
+
/**
|
|
1515
|
+
*
|
|
1516
|
+
*
|
|
1517
|
+
* @type string
|
|
1518
|
+
*/
|
|
1519
|
+
nodeDesc?: string;
|
|
1520
|
+
/**
|
|
1521
|
+
*
|
|
1522
|
+
*
|
|
1523
|
+
* @type string
|
|
1524
|
+
*/
|
|
1525
|
+
nodeId?: string;
|
|
1526
|
+
/**
|
|
1527
|
+
*
|
|
1528
|
+
*
|
|
1529
|
+
* @type string
|
|
1530
|
+
*/
|
|
1531
|
+
nodeName?: string;
|
|
1532
|
+
/**
|
|
1533
|
+
*
|
|
1534
|
+
*
|
|
1535
|
+
* @type number
|
|
1536
|
+
*/
|
|
1537
|
+
processTime?: number;
|
|
1538
|
+
/**
|
|
1539
|
+
* 执行结束时间
|
|
1540
|
+
*
|
|
1541
|
+
* @type string
|
|
1542
|
+
*/
|
|
1543
|
+
processTimeEnd?: string;
|
|
1544
|
+
/**
|
|
1545
|
+
* 执行开始时间
|
|
1546
|
+
*
|
|
1547
|
+
* @type string
|
|
1548
|
+
*/
|
|
1549
|
+
processTimeStart?: string;
|
|
1550
|
+
/**
|
|
1551
|
+
*
|
|
1552
|
+
*
|
|
1553
|
+
* @type string
|
|
1554
|
+
*/
|
|
1555
|
+
reqId?: string;
|
|
1556
|
+
/**
|
|
1557
|
+
*
|
|
1558
|
+
*
|
|
1559
|
+
* @type string
|
|
1560
|
+
*/
|
|
1561
|
+
status?: string;
|
|
1562
|
+
}
|
|
1395
1563
|
export interface FlowUpdateReq {
|
|
1396
1564
|
/**
|
|
1397
1565
|
* 分类id
|
|
@@ -518,8 +518,8 @@ export const apiConfig = [
|
|
|
518
518
|
apis: [
|
|
519
519
|
{
|
|
520
520
|
mode: "get",
|
|
521
|
-
method: "
|
|
522
|
-
path: "export/{appid}",
|
|
521
|
+
method: "getExportAppidTenantId",
|
|
522
|
+
path: "export/{appid}/{tenantId}",
|
|
523
523
|
hasPathParams: true
|
|
524
524
|
}
|
|
525
525
|
]
|
|
@@ -1574,6 +1574,12 @@ export const apiConfig = [
|
|
|
1574
1574
|
path: "list",
|
|
1575
1575
|
hasQuery: true
|
|
1576
1576
|
},
|
|
1577
|
+
{
|
|
1578
|
+
mode: "delete",
|
|
1579
|
+
method: "deleteObject",
|
|
1580
|
+
path: "object",
|
|
1581
|
+
hasQuery: true
|
|
1582
|
+
},
|
|
1577
1583
|
{
|
|
1578
1584
|
mode: "get",
|
|
1579
1585
|
method: "getPageList",
|
|
@@ -1960,6 +1966,12 @@ export const apiConfig = [
|
|
|
1960
1966
|
path: "getAppBasicInfo",
|
|
1961
1967
|
hasQuery: true
|
|
1962
1968
|
},
|
|
1969
|
+
{
|
|
1970
|
+
mode: "get",
|
|
1971
|
+
method: "getGetAppEffectiveLicense",
|
|
1972
|
+
path: "getAppEffectiveLicense",
|
|
1973
|
+
hasQuery: true
|
|
1974
|
+
},
|
|
1963
1975
|
{
|
|
1964
1976
|
mode: "get",
|
|
1965
1977
|
method: "getGetExpireMsg",
|
|
@@ -2029,6 +2041,12 @@ export const apiConfig = [
|
|
|
2029
2041
|
method: "getPageList",
|
|
2030
2042
|
path: "page/list",
|
|
2031
2043
|
hasQuery: true
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
mode: "get",
|
|
2047
|
+
method: "getTenantLog",
|
|
2048
|
+
path: "tenant/log",
|
|
2049
|
+
hasQuery: true
|
|
2032
2050
|
}
|
|
2033
2051
|
]
|
|
2034
2052
|
},
|
|
@@ -2677,6 +2695,11 @@ export const apiConfig = [
|
|
|
2677
2695
|
path: "base",
|
|
2678
2696
|
hasData: true
|
|
2679
2697
|
},
|
|
2698
|
+
{
|
|
2699
|
+
mode: "get",
|
|
2700
|
+
method: "getCardLoginCfg",
|
|
2701
|
+
path: "card/login/cfg"
|
|
2702
|
+
},
|
|
2680
2703
|
{
|
|
2681
2704
|
mode: "post",
|
|
2682
2705
|
method: "postDingtalk",
|
|
@@ -5448,6 +5471,11 @@ export const apiConfig = [
|
|
|
5448
5471
|
hasPathParams: true,
|
|
5449
5472
|
hasData: true
|
|
5450
5473
|
},
|
|
5474
|
+
{
|
|
5475
|
+
mode: "get",
|
|
5476
|
+
method: "getCallbackLogin",
|
|
5477
|
+
path: "callback/login"
|
|
5478
|
+
},
|
|
5451
5479
|
{
|
|
5452
5480
|
mode: "get",
|
|
5453
5481
|
method: "getDataSourceExecuteSelect",
|
|
@@ -5526,6 +5554,12 @@ export const apiConfig = [
|
|
|
5526
5554
|
path: "knowledge-base/findByIds",
|
|
5527
5555
|
hasQuery: true
|
|
5528
5556
|
},
|
|
5557
|
+
{
|
|
5558
|
+
mode: "get",
|
|
5559
|
+
method: "getLicenseGetAppEffectiveLicense",
|
|
5560
|
+
path: "license/getAppEffectiveLicense",
|
|
5561
|
+
hasQuery: true
|
|
5562
|
+
},
|
|
5529
5563
|
{
|
|
5530
5564
|
mode: "get",
|
|
5531
5565
|
method: "getLicenseModuleAuth",
|
|
@@ -5538,6 +5572,12 @@ export const apiConfig = [
|
|
|
5538
5572
|
path: "login-log/userLoginLogPage",
|
|
5539
5573
|
hasData: true
|
|
5540
5574
|
},
|
|
5575
|
+
{
|
|
5576
|
+
mode: "get",
|
|
5577
|
+
method: "getLoginSettingGet",
|
|
5578
|
+
path: "login/setting/get",
|
|
5579
|
+
hasQuery: true
|
|
5580
|
+
},
|
|
5541
5581
|
{
|
|
5542
5582
|
mode: "get",
|
|
5543
5583
|
method: "getLoginSsoOauth2Authorize",
|
|
@@ -5803,6 +5843,12 @@ export const apiConfig = [
|
|
|
5803
5843
|
path: "report-detail/listStatistic",
|
|
5804
5844
|
hasData: true
|
|
5805
5845
|
},
|
|
5846
|
+
{
|
|
5847
|
+
mode: "post",
|
|
5848
|
+
method: "postSeatAdd",
|
|
5849
|
+
path: "seat/add",
|
|
5850
|
+
hasQuery: true
|
|
5851
|
+
},
|
|
5806
5852
|
{
|
|
5807
5853
|
mode: "post",
|
|
5808
5854
|
method: "postSignLogOperators",
|