@gct-paas/api 6.0.0-dev.1 → 6.0.0-dev.11
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/api-config.mjs +106 -123
- package/es/apaas/service/apis/ai.service.d.ts +129 -0
- package/es/apaas/service/apis/alex-test.service.d.ts +16 -0
- package/es/apaas/service/apis/api.service.d.ts +35 -0
- package/es/apaas/service/apis/app-global-settings.service.d.ts +8 -0
- package/es/apaas/service/apis/app-granted-user.service.d.ts +21 -0
- package/es/apaas/service/apis/category.service.d.ts +8 -0
- package/es/apaas/service/apis/dhr.service.d.ts +4 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +12 -0
- package/es/apaas/service/apis/excel.service.d.ts +0 -12
- package/es/apaas/service/apis/field-meta.service.d.ts +8 -0
- package/es/apaas/service/apis/online-form-instance.service.d.ts +16 -45
- package/es/apaas/service/apis/online-form.service.d.ts +18 -0
- package/es/apaas/service/apis/page-designer-log.service.d.ts +1 -1
- package/es/apaas/service/apis/transaction.service.d.ts +11 -0
- package/es/apaas/service/entities.d.ts +1526 -328
- package/es/apaas/service/index.d.ts +4 -4
- 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 +145 -4
- package/es/platform/service/apis/api.service.d.ts +98 -1
- package/es/platform/service/apis/app.service.d.ts +26 -0
- package/es/platform/service/apis/license.service.d.ts +10 -1
- package/es/platform/service/apis/ocr-model.service.d.ts +87 -0
- package/es/platform/service/apis/third-party-app.service.d.ts +110 -0
- package/es/platform/service/entities.d.ts +529 -1
- package/es/platform/service/index.d.ts +4 -0
- package/es/service/api-service.interface.d.ts +9 -0
- package/es/service/http.error.mjs +3 -0
- package/es/service/index.mjs +2 -0
- package/package.json +5 -5
- package/es/apaas/service/apis/med-pro.service.d.ts +0 -76
- package/es/apaas/service/apis/medPro.service.d.ts +0 -184
- package/es/apaas/service/apis/ss.service.d.ts +0 -42
|
@@ -766,6 +766,12 @@ export interface App {
|
|
|
766
766
|
* @type number
|
|
767
767
|
*/
|
|
768
768
|
clear?: number;
|
|
769
|
+
/**
|
|
770
|
+
*
|
|
771
|
+
*
|
|
772
|
+
* @type string
|
|
773
|
+
*/
|
|
774
|
+
clientSecret?: string;
|
|
769
775
|
/**
|
|
770
776
|
*
|
|
771
777
|
*
|
|
@@ -808,6 +814,12 @@ export interface App {
|
|
|
808
814
|
* @type string
|
|
809
815
|
*/
|
|
810
816
|
initFailReason?: string;
|
|
817
|
+
/**
|
|
818
|
+
*
|
|
819
|
+
*
|
|
820
|
+
* @type string
|
|
821
|
+
*/
|
|
822
|
+
lastVisitTime?: string;
|
|
811
823
|
/**
|
|
812
824
|
*
|
|
813
825
|
*
|
|
@@ -874,12 +886,30 @@ export interface App {
|
|
|
874
886
|
* @type string
|
|
875
887
|
*/
|
|
876
888
|
name?: string;
|
|
889
|
+
/**
|
|
890
|
+
*
|
|
891
|
+
*
|
|
892
|
+
* @type string
|
|
893
|
+
*/
|
|
894
|
+
oauth2Scope?: string;
|
|
877
895
|
/**
|
|
878
896
|
*
|
|
879
897
|
*
|
|
880
898
|
* @type string
|
|
881
899
|
*/
|
|
882
900
|
pageIcon?: string;
|
|
901
|
+
/**
|
|
902
|
+
*
|
|
903
|
+
*
|
|
904
|
+
* @type boolean
|
|
905
|
+
*/
|
|
906
|
+
pubProd?: boolean;
|
|
907
|
+
/**
|
|
908
|
+
*
|
|
909
|
+
*
|
|
910
|
+
* @type string
|
|
911
|
+
*/
|
|
912
|
+
redirectUri?: string;
|
|
883
913
|
/**
|
|
884
914
|
*
|
|
885
915
|
*
|
|
@@ -940,6 +970,18 @@ export interface App {
|
|
|
940
970
|
* @type string
|
|
941
971
|
*/
|
|
942
972
|
tenantId?: string;
|
|
973
|
+
/**
|
|
974
|
+
*
|
|
975
|
+
*
|
|
976
|
+
* @type string
|
|
977
|
+
*/
|
|
978
|
+
testLastVisitTime?: string;
|
|
979
|
+
/**
|
|
980
|
+
*
|
|
981
|
+
*
|
|
982
|
+
* @type string
|
|
983
|
+
*/
|
|
984
|
+
testRedirectUri?: string;
|
|
943
985
|
/**
|
|
944
986
|
*
|
|
945
987
|
*
|
|
@@ -1161,6 +1203,20 @@ export interface AppGrantedStatisticDTO {
|
|
|
1161
1203
|
*/
|
|
1162
1204
|
used?: number;
|
|
1163
1205
|
}
|
|
1206
|
+
export interface AppGrantedUserBatchRemoveDetailRequest {
|
|
1207
|
+
/**
|
|
1208
|
+
* 源用户id
|
|
1209
|
+
*
|
|
1210
|
+
* @type string
|
|
1211
|
+
*/
|
|
1212
|
+
sourceUserId?: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* 目标用户id
|
|
1215
|
+
*
|
|
1216
|
+
* @type string
|
|
1217
|
+
*/
|
|
1218
|
+
targetUserId?: string;
|
|
1219
|
+
}
|
|
1164
1220
|
export interface AppGrantedUserBatchRequest {
|
|
1165
1221
|
/**
|
|
1166
1222
|
* 用户id
|
|
@@ -2002,6 +2058,12 @@ export interface AppRequest {
|
|
|
2002
2058
|
* @type string
|
|
2003
2059
|
*/
|
|
2004
2060
|
appVersion?: string;
|
|
2061
|
+
/**
|
|
2062
|
+
* 客户端密钥(不传则自动生成)
|
|
2063
|
+
*
|
|
2064
|
+
* @type string
|
|
2065
|
+
*/
|
|
2066
|
+
clientSecret?: string;
|
|
2005
2067
|
/**
|
|
2006
2068
|
* 应用描述
|
|
2007
2069
|
*
|
|
@@ -2062,12 +2124,24 @@ export interface AppRequest {
|
|
|
2062
2124
|
* @type string
|
|
2063
2125
|
*/
|
|
2064
2126
|
name?: string;
|
|
2127
|
+
/**
|
|
2128
|
+
* 授权范围: basic(用户基本信息)/all(带组织信息的用户信息),默认basic
|
|
2129
|
+
*
|
|
2130
|
+
* @type string
|
|
2131
|
+
*/
|
|
2132
|
+
oauth2Scope?: string;
|
|
2065
2133
|
/**
|
|
2066
2134
|
* 浏览器icon
|
|
2067
2135
|
*
|
|
2068
2136
|
* @type string
|
|
2069
2137
|
*/
|
|
2070
2138
|
pageIcon?: string;
|
|
2139
|
+
/**
|
|
2140
|
+
* 生产环境回调域名(第三方应用必填)
|
|
2141
|
+
*
|
|
2142
|
+
* @type string
|
|
2143
|
+
*/
|
|
2144
|
+
redirectUri?: string;
|
|
2071
2145
|
/**
|
|
2072
2146
|
* 应用来源类型:SELF_BUILT/IMPORT
|
|
2073
2147
|
*
|
|
@@ -2092,6 +2166,12 @@ export interface AppRequest {
|
|
|
2092
2166
|
* @type string
|
|
2093
2167
|
*/
|
|
2094
2168
|
tenantId?: string;
|
|
2169
|
+
/**
|
|
2170
|
+
* 验证环境回调域名
|
|
2171
|
+
*
|
|
2172
|
+
* @type string
|
|
2173
|
+
*/
|
|
2174
|
+
testRedirectUri?: string;
|
|
2095
2175
|
/**
|
|
2096
2176
|
* 应用类型
|
|
2097
2177
|
*
|
|
@@ -2124,6 +2204,12 @@ export interface AppResponse {
|
|
|
2124
2204
|
* @type number
|
|
2125
2205
|
*/
|
|
2126
2206
|
authState?: number;
|
|
2207
|
+
/**
|
|
2208
|
+
* 客户端密钥(第三方应用OAuth2配置)
|
|
2209
|
+
*
|
|
2210
|
+
* @type string
|
|
2211
|
+
*/
|
|
2212
|
+
clientSecret?: string;
|
|
2127
2213
|
/**
|
|
2128
2214
|
*
|
|
2129
2215
|
*
|
|
@@ -2172,6 +2258,12 @@ export interface AppResponse {
|
|
|
2172
2258
|
* @type string
|
|
2173
2259
|
*/
|
|
2174
2260
|
isRunning?: string;
|
|
2261
|
+
/**
|
|
2262
|
+
* 生产环境最近访问时间(第三方应用)
|
|
2263
|
+
*
|
|
2264
|
+
* @type string
|
|
2265
|
+
*/
|
|
2266
|
+
lastVisitTime?: string;
|
|
2175
2267
|
/**
|
|
2176
2268
|
* 应用logo
|
|
2177
2269
|
*
|
|
@@ -2238,6 +2330,12 @@ export interface AppResponse {
|
|
|
2238
2330
|
* @type string
|
|
2239
2331
|
*/
|
|
2240
2332
|
name?: string;
|
|
2333
|
+
/**
|
|
2334
|
+
* OAuth2授权范围: basic/all
|
|
2335
|
+
*
|
|
2336
|
+
* @type string
|
|
2337
|
+
*/
|
|
2338
|
+
oauth2Scope?: string;
|
|
2241
2339
|
/**
|
|
2242
2340
|
* 浏览器icon
|
|
2243
2341
|
*
|
|
@@ -2250,6 +2348,12 @@ export interface AppResponse {
|
|
|
2250
2348
|
* @type boolean
|
|
2251
2349
|
*/
|
|
2252
2350
|
pubProd?: boolean;
|
|
2351
|
+
/**
|
|
2352
|
+
* 生产环境回调域名(第三方应用OAuth2配置)
|
|
2353
|
+
*
|
|
2354
|
+
* @type string
|
|
2355
|
+
*/
|
|
2356
|
+
redirectUri?: string;
|
|
2253
2357
|
/**
|
|
2254
2358
|
*
|
|
2255
2359
|
*
|
|
@@ -2322,6 +2426,24 @@ export interface AppResponse {
|
|
|
2322
2426
|
* @type string
|
|
2323
2427
|
*/
|
|
2324
2428
|
tenantId?: string;
|
|
2429
|
+
/**
|
|
2430
|
+
* 验证环境最近访问时间(第三方应用)
|
|
2431
|
+
*
|
|
2432
|
+
* @type string
|
|
2433
|
+
*/
|
|
2434
|
+
testLastVisitTime?: string;
|
|
2435
|
+
/**
|
|
2436
|
+
* 验证环境回调域名(第三方应用OAuth2配置)
|
|
2437
|
+
*
|
|
2438
|
+
* @type string
|
|
2439
|
+
*/
|
|
2440
|
+
testRedirectUri?: string;
|
|
2441
|
+
/**
|
|
2442
|
+
* 第三方应用配置是否启用(0 禁用 1 启用)
|
|
2443
|
+
*
|
|
2444
|
+
* @type number
|
|
2445
|
+
*/
|
|
2446
|
+
thirdPartyEnabled?: number;
|
|
2325
2447
|
/**
|
|
2326
2448
|
* 应用类型
|
|
2327
2449
|
*
|
|
@@ -5608,6 +5730,12 @@ export interface DatasourceMoveDetailRequest {
|
|
|
5608
5730
|
* @type string
|
|
5609
5731
|
*/
|
|
5610
5732
|
name?: string;
|
|
5733
|
+
/**
|
|
5734
|
+
*
|
|
5735
|
+
*
|
|
5736
|
+
* @type IObject
|
|
5737
|
+
*/
|
|
5738
|
+
query?: IObject;
|
|
5611
5739
|
/**
|
|
5612
5740
|
* 源env
|
|
5613
5741
|
*
|
|
@@ -8889,11 +9017,17 @@ export interface ManagerBean {
|
|
|
8889
9017
|
}
|
|
8890
9018
|
export interface MergeConflictDTO {
|
|
8891
9019
|
/**
|
|
8892
|
-
* 最终选择: SOURCE/TARGET
|
|
9020
|
+
* 最终选择: SOURCE/TARGET/MERGED
|
|
8893
9021
|
*
|
|
8894
9022
|
* @type string
|
|
8895
9023
|
*/
|
|
8896
9024
|
choice?: string;
|
|
9025
|
+
/**
|
|
9026
|
+
* 合并内容json
|
|
9027
|
+
*
|
|
9028
|
+
* @type string
|
|
9029
|
+
*/
|
|
9030
|
+
mergeResult?: string;
|
|
8897
9031
|
/**
|
|
8898
9032
|
* 主键值
|
|
8899
9033
|
*
|
|
@@ -10126,6 +10260,210 @@ export interface NavPageResponse {
|
|
|
10126
10260
|
*/
|
|
10127
10261
|
tenantId?: string;
|
|
10128
10262
|
}
|
|
10263
|
+
export interface OAuth2用户信息响应 {
|
|
10264
|
+
/**
|
|
10265
|
+
* 应用管理员列表(scope=all 时返回)
|
|
10266
|
+
*
|
|
10267
|
+
* @type 管理员信息[]
|
|
10268
|
+
*/
|
|
10269
|
+
admins?: 管理员信息[];
|
|
10270
|
+
/**
|
|
10271
|
+
* 头像
|
|
10272
|
+
*
|
|
10273
|
+
* @type string
|
|
10274
|
+
*/
|
|
10275
|
+
avatar?: string;
|
|
10276
|
+
/**
|
|
10277
|
+
* 邮箱
|
|
10278
|
+
*
|
|
10279
|
+
* @type string
|
|
10280
|
+
*/
|
|
10281
|
+
email?: string;
|
|
10282
|
+
/**
|
|
10283
|
+
* 姓名
|
|
10284
|
+
*
|
|
10285
|
+
* @type string
|
|
10286
|
+
*/
|
|
10287
|
+
fullname?: string;
|
|
10288
|
+
/**
|
|
10289
|
+
* 手机号
|
|
10290
|
+
*
|
|
10291
|
+
* @type string
|
|
10292
|
+
*/
|
|
10293
|
+
mobile?: string;
|
|
10294
|
+
/**
|
|
10295
|
+
* 授权范围: basic / all
|
|
10296
|
+
*
|
|
10297
|
+
* @type string
|
|
10298
|
+
*/
|
|
10299
|
+
scope?: string;
|
|
10300
|
+
/**
|
|
10301
|
+
* 租户ID
|
|
10302
|
+
*
|
|
10303
|
+
* @type string
|
|
10304
|
+
*/
|
|
10305
|
+
tenantId?: string;
|
|
10306
|
+
/**
|
|
10307
|
+
* 租户列表(scope=all 时返回)
|
|
10308
|
+
*
|
|
10309
|
+
* @type UserTenantDTO[]
|
|
10310
|
+
*/
|
|
10311
|
+
tenantList?: UserTenantDTO[];
|
|
10312
|
+
/**
|
|
10313
|
+
* 用户ID
|
|
10314
|
+
*
|
|
10315
|
+
* @type string
|
|
10316
|
+
*/
|
|
10317
|
+
userId?: string;
|
|
10318
|
+
/**
|
|
10319
|
+
* 用户名
|
|
10320
|
+
*
|
|
10321
|
+
* @type string
|
|
10322
|
+
*/
|
|
10323
|
+
username?: string;
|
|
10324
|
+
}
|
|
10325
|
+
export interface OcrModelRequest {
|
|
10326
|
+
/**
|
|
10327
|
+
* API密钥
|
|
10328
|
+
*
|
|
10329
|
+
* @type string
|
|
10330
|
+
*/
|
|
10331
|
+
apiKey?: string;
|
|
10332
|
+
/**
|
|
10333
|
+
* API基础地址
|
|
10334
|
+
*
|
|
10335
|
+
* @type string
|
|
10336
|
+
*/
|
|
10337
|
+
baseUrl?: string;
|
|
10338
|
+
/**
|
|
10339
|
+
* 高精模型ID
|
|
10340
|
+
*
|
|
10341
|
+
* @type string
|
|
10342
|
+
*/
|
|
10343
|
+
highPrecisionModelId?: string;
|
|
10344
|
+
/**
|
|
10345
|
+
* 模型名称
|
|
10346
|
+
*
|
|
10347
|
+
* @type string
|
|
10348
|
+
*/
|
|
10349
|
+
name?: string;
|
|
10350
|
+
/**
|
|
10351
|
+
* 普通模型ID
|
|
10352
|
+
*
|
|
10353
|
+
* @type string
|
|
10354
|
+
*/
|
|
10355
|
+
normalModelId?: string;
|
|
10356
|
+
/**
|
|
10357
|
+
* 供应商名称
|
|
10358
|
+
*
|
|
10359
|
+
* @type string
|
|
10360
|
+
*/
|
|
10361
|
+
provider?: string;
|
|
10362
|
+
/**
|
|
10363
|
+
* 模型来源
|
|
10364
|
+
*
|
|
10365
|
+
* @type string
|
|
10366
|
+
*/
|
|
10367
|
+
source?: string;
|
|
10368
|
+
}
|
|
10369
|
+
export interface OcrModelResponse {
|
|
10370
|
+
/**
|
|
10371
|
+
* API密钥
|
|
10372
|
+
*
|
|
10373
|
+
* @type string
|
|
10374
|
+
*/
|
|
10375
|
+
apiKey?: string;
|
|
10376
|
+
/**
|
|
10377
|
+
* API基础地址
|
|
10378
|
+
*
|
|
10379
|
+
* @type string
|
|
10380
|
+
*/
|
|
10381
|
+
baseUrl?: string;
|
|
10382
|
+
/**
|
|
10383
|
+
*
|
|
10384
|
+
*
|
|
10385
|
+
* @type string
|
|
10386
|
+
*/
|
|
10387
|
+
createTime?: string;
|
|
10388
|
+
/**
|
|
10389
|
+
*
|
|
10390
|
+
*
|
|
10391
|
+
* @type string
|
|
10392
|
+
*/
|
|
10393
|
+
createUserId?: string;
|
|
10394
|
+
/**
|
|
10395
|
+
*
|
|
10396
|
+
*
|
|
10397
|
+
* @type string
|
|
10398
|
+
*/
|
|
10399
|
+
createUserName?: string;
|
|
10400
|
+
/**
|
|
10401
|
+
* 高精模型ID
|
|
10402
|
+
*
|
|
10403
|
+
* @type string
|
|
10404
|
+
*/
|
|
10405
|
+
highPrecisionModelId?: string;
|
|
10406
|
+
/**
|
|
10407
|
+
* 主键
|
|
10408
|
+
*
|
|
10409
|
+
* @type string
|
|
10410
|
+
*/
|
|
10411
|
+
id?: string;
|
|
10412
|
+
/**
|
|
10413
|
+
* 是否默认
|
|
10414
|
+
*
|
|
10415
|
+
* @type number
|
|
10416
|
+
*/
|
|
10417
|
+
isDefault?: number;
|
|
10418
|
+
/**
|
|
10419
|
+
*
|
|
10420
|
+
*
|
|
10421
|
+
* @type string
|
|
10422
|
+
*/
|
|
10423
|
+
modifyTime?: string;
|
|
10424
|
+
/**
|
|
10425
|
+
*
|
|
10426
|
+
*
|
|
10427
|
+
* @type string
|
|
10428
|
+
*/
|
|
10429
|
+
modifyUserId?: string;
|
|
10430
|
+
/**
|
|
10431
|
+
*
|
|
10432
|
+
*
|
|
10433
|
+
* @type string
|
|
10434
|
+
*/
|
|
10435
|
+
modifyUserName?: string;
|
|
10436
|
+
/**
|
|
10437
|
+
* 模型名称
|
|
10438
|
+
*
|
|
10439
|
+
* @type string
|
|
10440
|
+
*/
|
|
10441
|
+
name?: string;
|
|
10442
|
+
/**
|
|
10443
|
+
* 普通模型ID
|
|
10444
|
+
*
|
|
10445
|
+
* @type string
|
|
10446
|
+
*/
|
|
10447
|
+
normalModelId?: string;
|
|
10448
|
+
/**
|
|
10449
|
+
* 供应商名称
|
|
10450
|
+
*
|
|
10451
|
+
* @type string
|
|
10452
|
+
*/
|
|
10453
|
+
provider?: string;
|
|
10454
|
+
/**
|
|
10455
|
+
* 模型来源
|
|
10456
|
+
*
|
|
10457
|
+
* @type string
|
|
10458
|
+
*/
|
|
10459
|
+
source?: string;
|
|
10460
|
+
/**
|
|
10461
|
+
* 模型来源名称
|
|
10462
|
+
*
|
|
10463
|
+
* @type string
|
|
10464
|
+
*/
|
|
10465
|
+
sourceName?: string;
|
|
10466
|
+
}
|
|
10129
10467
|
export interface OpenapiAggregateByModelTreeResponse {
|
|
10130
10468
|
/**
|
|
10131
10469
|
* 模型key
|
|
@@ -15223,6 +15561,12 @@ export interface PrintAdapterDTO {
|
|
|
15223
15561
|
* @type string
|
|
15224
15562
|
*/
|
|
15225
15563
|
env?: string;
|
|
15564
|
+
/**
|
|
15565
|
+
* 打印控制参数
|
|
15566
|
+
*
|
|
15567
|
+
* @type IObject
|
|
15568
|
+
*/
|
|
15569
|
+
param?: IObject;
|
|
15226
15570
|
/**
|
|
15227
15571
|
* 触发打印的应用id
|
|
15228
15572
|
*
|
|
@@ -15317,6 +15661,12 @@ export interface PrintLogDto {
|
|
|
15317
15661
|
* @type string
|
|
15318
15662
|
*/
|
|
15319
15663
|
macAddress?: string;
|
|
15664
|
+
/**
|
|
15665
|
+
*
|
|
15666
|
+
*
|
|
15667
|
+
* @type IObject
|
|
15668
|
+
*/
|
|
15669
|
+
param?: IObject;
|
|
15320
15670
|
/**
|
|
15321
15671
|
*
|
|
15322
15672
|
*
|
|
@@ -15543,6 +15893,12 @@ export interface PrintLogResponse {
|
|
|
15543
15893
|
* @type string
|
|
15544
15894
|
*/
|
|
15545
15895
|
modifyUserName?: string;
|
|
15896
|
+
/**
|
|
15897
|
+
* 打印控制参数
|
|
15898
|
+
*
|
|
15899
|
+
* @type IObject
|
|
15900
|
+
*/
|
|
15901
|
+
param?: IObject;
|
|
15546
15902
|
/**
|
|
15547
15903
|
* 触发打印的应用id
|
|
15548
15904
|
*
|
|
@@ -15759,6 +16115,12 @@ export interface PrintResourceMapping {
|
|
|
15759
16115
|
* @type string
|
|
15760
16116
|
*/
|
|
15761
16117
|
printName?: string;
|
|
16118
|
+
/**
|
|
16119
|
+
*
|
|
16120
|
+
*
|
|
16121
|
+
* @type number
|
|
16122
|
+
*/
|
|
16123
|
+
status?: number;
|
|
15762
16124
|
}
|
|
15763
16125
|
export interface PrintResourceRemarkRequest {
|
|
15764
16126
|
/**
|
|
@@ -17403,6 +17765,18 @@ export interface SelectItem {
|
|
|
17403
17765
|
* @type boolean
|
|
17404
17766
|
*/
|
|
17405
17767
|
includeNull?: boolean;
|
|
17768
|
+
/**
|
|
17769
|
+
* 交叉表-自定义排序
|
|
17770
|
+
*
|
|
17771
|
+
* @type string[]
|
|
17772
|
+
*/
|
|
17773
|
+
orderValues?: string[];
|
|
17774
|
+
/**
|
|
17775
|
+
* 交叉表-字段排序规则
|
|
17776
|
+
*
|
|
17777
|
+
* @type string
|
|
17778
|
+
*/
|
|
17779
|
+
sortType?: string;
|
|
17406
17780
|
/**
|
|
17407
17781
|
* 数据类型
|
|
17408
17782
|
*
|
|
@@ -19196,6 +19570,108 @@ export interface ThirdAppConfigReq {
|
|
|
19196
19570
|
*/
|
|
19197
19571
|
secret?: string;
|
|
19198
19572
|
}
|
|
19573
|
+
export interface ThirdPartyAppListResponse {
|
|
19574
|
+
/**
|
|
19575
|
+
* 应用标识
|
|
19576
|
+
*
|
|
19577
|
+
* @type string
|
|
19578
|
+
*/
|
|
19579
|
+
appId?: string;
|
|
19580
|
+
/**
|
|
19581
|
+
* 应用名称
|
|
19582
|
+
*
|
|
19583
|
+
* @type string
|
|
19584
|
+
*/
|
|
19585
|
+
appName?: string;
|
|
19586
|
+
/**
|
|
19587
|
+
* 生产环境最近访问时间
|
|
19588
|
+
*
|
|
19589
|
+
* @type string
|
|
19590
|
+
*/
|
|
19591
|
+
lastVisitTime?: string;
|
|
19592
|
+
/**
|
|
19593
|
+
* 验证环境最近访问时间
|
|
19594
|
+
*
|
|
19595
|
+
* @type string
|
|
19596
|
+
*/
|
|
19597
|
+
testLastVisitTime?: string;
|
|
19598
|
+
}
|
|
19599
|
+
export interface ThirdPartyAppRequest {
|
|
19600
|
+
/**
|
|
19601
|
+
* 应用ID(必填)
|
|
19602
|
+
*
|
|
19603
|
+
* @type string
|
|
19604
|
+
*/
|
|
19605
|
+
appId?: string;
|
|
19606
|
+
/**
|
|
19607
|
+
* 客户端密钥(不传则自动生成)
|
|
19608
|
+
*
|
|
19609
|
+
* @type string
|
|
19610
|
+
*/
|
|
19611
|
+
clientSecret?: string;
|
|
19612
|
+
/**
|
|
19613
|
+
* 生产环境回调域名
|
|
19614
|
+
*
|
|
19615
|
+
* @type string
|
|
19616
|
+
*/
|
|
19617
|
+
redirectUri?: string;
|
|
19618
|
+
/**
|
|
19619
|
+
* 授权范围: basic(用户基本信息)/all(带组织部门得用户信息)
|
|
19620
|
+
*
|
|
19621
|
+
* @type string
|
|
19622
|
+
*/
|
|
19623
|
+
scope?: string;
|
|
19624
|
+
/**
|
|
19625
|
+
* 验证环境回调域名
|
|
19626
|
+
*
|
|
19627
|
+
* @type string
|
|
19628
|
+
*/
|
|
19629
|
+
testRedirectUri?: string;
|
|
19630
|
+
}
|
|
19631
|
+
export interface ThirdPartyAppResp {
|
|
19632
|
+
/**
|
|
19633
|
+
* 应用ID
|
|
19634
|
+
*
|
|
19635
|
+
* @type string
|
|
19636
|
+
*/
|
|
19637
|
+
appId?: string;
|
|
19638
|
+
/**
|
|
19639
|
+
* 客户端ID(即appId)
|
|
19640
|
+
*
|
|
19641
|
+
* @type string
|
|
19642
|
+
*/
|
|
19643
|
+
clientId?: string;
|
|
19644
|
+
/**
|
|
19645
|
+
* 客户端密钥(脱敏)
|
|
19646
|
+
*
|
|
19647
|
+
* @type string
|
|
19648
|
+
*/
|
|
19649
|
+
clientSecret?: string;
|
|
19650
|
+
/**
|
|
19651
|
+
* 是否启用
|
|
19652
|
+
*
|
|
19653
|
+
* @type boolean
|
|
19654
|
+
*/
|
|
19655
|
+
enabled?: boolean;
|
|
19656
|
+
/**
|
|
19657
|
+
* 生产环境回调域名
|
|
19658
|
+
*
|
|
19659
|
+
* @type string
|
|
19660
|
+
*/
|
|
19661
|
+
redirectUri?: string;
|
|
19662
|
+
/**
|
|
19663
|
+
* 授权范围
|
|
19664
|
+
*
|
|
19665
|
+
* @type string
|
|
19666
|
+
*/
|
|
19667
|
+
scope?: string;
|
|
19668
|
+
/**
|
|
19669
|
+
* 验证环境回调域名
|
|
19670
|
+
*
|
|
19671
|
+
* @type string
|
|
19672
|
+
*/
|
|
19673
|
+
testRedirectUri?: string;
|
|
19674
|
+
}
|
|
19199
19675
|
export interface ThirdPartyInvokeLogResponse {
|
|
19200
19676
|
/**
|
|
19201
19677
|
* 所属应用key
|
|
@@ -19460,6 +19936,20 @@ export interface ThirdPartyLoginConfig {
|
|
|
19460
19936
|
*/
|
|
19461
19937
|
secret?: string;
|
|
19462
19938
|
}
|
|
19939
|
+
export interface TokenResponse {
|
|
19940
|
+
/**
|
|
19941
|
+
*
|
|
19942
|
+
*
|
|
19943
|
+
* @type string
|
|
19944
|
+
*/
|
|
19945
|
+
accessToken?: string;
|
|
19946
|
+
/**
|
|
19947
|
+
*
|
|
19948
|
+
*
|
|
19949
|
+
* @type string
|
|
19950
|
+
*/
|
|
19951
|
+
scope?: string;
|
|
19952
|
+
}
|
|
19463
19953
|
export interface User {
|
|
19464
19954
|
/**
|
|
19465
19955
|
*
|
|
@@ -23332,6 +23822,44 @@ export interface 登录日志查询参数 {
|
|
|
23332
23822
|
*/
|
|
23333
23823
|
username?: string;
|
|
23334
23824
|
}
|
|
23825
|
+
export interface 管理员信息 {
|
|
23826
|
+
/**
|
|
23827
|
+
* 头像
|
|
23828
|
+
*
|
|
23829
|
+
* @type string
|
|
23830
|
+
*/
|
|
23831
|
+
avatar?: string;
|
|
23832
|
+
/**
|
|
23833
|
+
* 邮箱
|
|
23834
|
+
*
|
|
23835
|
+
* @type string
|
|
23836
|
+
*/
|
|
23837
|
+
email?: string;
|
|
23838
|
+
/**
|
|
23839
|
+
* 管理员姓名
|
|
23840
|
+
*
|
|
23841
|
+
* @type string
|
|
23842
|
+
*/
|
|
23843
|
+
fullname?: string;
|
|
23844
|
+
/**
|
|
23845
|
+
* 手机号
|
|
23846
|
+
*
|
|
23847
|
+
* @type string
|
|
23848
|
+
*/
|
|
23849
|
+
mobile?: string;
|
|
23850
|
+
/**
|
|
23851
|
+
* 管理员用户ID
|
|
23852
|
+
*
|
|
23853
|
+
* @type string
|
|
23854
|
+
*/
|
|
23855
|
+
userId?: string;
|
|
23856
|
+
/**
|
|
23857
|
+
* 管理员用户名
|
|
23858
|
+
*
|
|
23859
|
+
* @type string
|
|
23860
|
+
*/
|
|
23861
|
+
username?: string;
|
|
23862
|
+
}
|
|
23335
23863
|
export interface 组件信息查询参数 {
|
|
23336
23864
|
/**
|
|
23337
23865
|
*
|
|
@@ -47,6 +47,7 @@ import type { ModelService } from './apis/model.service';
|
|
|
47
47
|
import type { ModelProviderService } from './apis/model-provider.service';
|
|
48
48
|
import type { NavMenuService } from './apis/nav-menu.service';
|
|
49
49
|
import type { NavPageService } from './apis/nav-page.service';
|
|
50
|
+
import type { OcrModelService } from './apis/ocr-model.service';
|
|
50
51
|
import type { OpenapiGroupService } from './apis/openapi-group.service';
|
|
51
52
|
import type { OpenapiKeyGrantService } from './apis/openapi-key-grant.service';
|
|
52
53
|
import type { OrgService } from './apis/org.service';
|
|
@@ -80,6 +81,7 @@ import type { TaskDoneService } from './apis/task-done.service';
|
|
|
80
81
|
import type { TaskTodoService } from './apis/task-todo.service';
|
|
81
82
|
import type { TenantDeveloperService } from './apis/tenant-developer.service';
|
|
82
83
|
import type { TenantService } from './apis/tenant.service';
|
|
84
|
+
import type { ThirdPartyAppService } from './apis/third-party-app.service';
|
|
83
85
|
import type { UserService } from './apis/user.service';
|
|
84
86
|
import type { UserExtraService } from './apis/user-extra.service';
|
|
85
87
|
import type { UserInfoLogService } from './apis/user-info-log.service';
|
|
@@ -232,6 +234,7 @@ export interface ApiManage {
|
|
|
232
234
|
readonly modelProvider: ModelProviderService;
|
|
233
235
|
readonly navMenu: NavMenuService;
|
|
234
236
|
readonly navPage: NavPageService;
|
|
237
|
+
readonly ocrModel: OcrModelService;
|
|
235
238
|
readonly openapiGroup: OpenapiGroupService;
|
|
236
239
|
readonly openapiKeyGrant: OpenapiKeyGrantService;
|
|
237
240
|
readonly org: OrgService;
|
|
@@ -265,6 +268,7 @@ export interface ApiManage {
|
|
|
265
268
|
readonly taskTodo: TaskTodoService;
|
|
266
269
|
readonly tenantDeveloper: TenantDeveloperService;
|
|
267
270
|
readonly tenant: TenantService;
|
|
271
|
+
readonly thirdPartyApp: ThirdPartyAppService;
|
|
268
272
|
readonly user: UserService;
|
|
269
273
|
readonly userExtra: UserExtraService;
|
|
270
274
|
readonly userInfoLog: UserInfoLogService;
|