@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
|
+
/* eslint-disable @typescript-eslint/no-empty-object-type */
|
|
1
2
|
export interface APIDatasetConfigDTO {
|
|
2
3
|
/**
|
|
3
4
|
* 开始时间
|
|
@@ -88,7 +89,7 @@ export interface AcLicenseResponse {
|
|
|
88
89
|
}
|
|
89
90
|
export interface AccountConfig {
|
|
90
91
|
/**
|
|
91
|
-
* 应用类型 枚举(钉钉 DINGDING
|
|
92
|
+
* 应用类型 枚举 (钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU,微软 MICROSOFT)
|
|
92
93
|
*
|
|
93
94
|
* @type string
|
|
94
95
|
*/
|
|
@@ -546,6 +547,9 @@ export interface AgentResponse {
|
|
|
546
547
|
*/
|
|
547
548
|
usage?: string;
|
|
548
549
|
}
|
|
550
|
+
export interface Annotation {
|
|
551
|
+
// 暂无属性
|
|
552
|
+
}
|
|
549
553
|
export interface ApiInfo {
|
|
550
554
|
/**
|
|
551
555
|
*
|
|
@@ -1118,6 +1122,20 @@ export interface AppDataRequest {
|
|
|
1118
1122
|
*/
|
|
1119
1123
|
type?: string;
|
|
1120
1124
|
}
|
|
1125
|
+
export interface AppEffectiveLicense {
|
|
1126
|
+
/**
|
|
1127
|
+
* 是否校验license
|
|
1128
|
+
*
|
|
1129
|
+
* @type boolean
|
|
1130
|
+
*/
|
|
1131
|
+
licenseCheck?: boolean;
|
|
1132
|
+
/**
|
|
1133
|
+
* license列表
|
|
1134
|
+
*
|
|
1135
|
+
* @type LicenseDTO[]
|
|
1136
|
+
*/
|
|
1137
|
+
licenseList?: LicenseDTO[];
|
|
1138
|
+
}
|
|
1121
1139
|
export interface AppGrantedStatisticDTO {
|
|
1122
1140
|
/**
|
|
1123
1141
|
* 剩余
|
|
@@ -2452,6 +2470,74 @@ export interface AppSettingRequest {
|
|
|
2452
2470
|
*/
|
|
2453
2471
|
type?: string;
|
|
2454
2472
|
}
|
|
2473
|
+
export interface ApplicationContext {
|
|
2474
|
+
/**
|
|
2475
|
+
*
|
|
2476
|
+
*
|
|
2477
|
+
* @type string
|
|
2478
|
+
*/
|
|
2479
|
+
applicationName?: string;
|
|
2480
|
+
/**
|
|
2481
|
+
*
|
|
2482
|
+
*
|
|
2483
|
+
* @type AutowireCapableBeanFactory
|
|
2484
|
+
*/
|
|
2485
|
+
autowireCapableBeanFactory?: AutowireCapableBeanFactory;
|
|
2486
|
+
/**
|
|
2487
|
+
*
|
|
2488
|
+
*
|
|
2489
|
+
* @type number
|
|
2490
|
+
*/
|
|
2491
|
+
beanDefinitionCount?: number;
|
|
2492
|
+
/**
|
|
2493
|
+
*
|
|
2494
|
+
*
|
|
2495
|
+
* @type string[]
|
|
2496
|
+
*/
|
|
2497
|
+
beanDefinitionNames?: string[];
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
*
|
|
2501
|
+
* @type ClassLoader
|
|
2502
|
+
*/
|
|
2503
|
+
classLoader?: ClassLoader;
|
|
2504
|
+
/**
|
|
2505
|
+
*
|
|
2506
|
+
*
|
|
2507
|
+
* @type string
|
|
2508
|
+
*/
|
|
2509
|
+
displayName?: string;
|
|
2510
|
+
/**
|
|
2511
|
+
*
|
|
2512
|
+
*
|
|
2513
|
+
* @type Environment
|
|
2514
|
+
*/
|
|
2515
|
+
environment?: Environment;
|
|
2516
|
+
/**
|
|
2517
|
+
*
|
|
2518
|
+
*
|
|
2519
|
+
* @type string
|
|
2520
|
+
*/
|
|
2521
|
+
id?: string;
|
|
2522
|
+
/**
|
|
2523
|
+
*
|
|
2524
|
+
*
|
|
2525
|
+
* @type ApplicationContext
|
|
2526
|
+
*/
|
|
2527
|
+
parent?: ApplicationContext;
|
|
2528
|
+
/**
|
|
2529
|
+
*
|
|
2530
|
+
*
|
|
2531
|
+
* @type BeanFactory
|
|
2532
|
+
*/
|
|
2533
|
+
parentBeanFactory?: BeanFactory;
|
|
2534
|
+
/**
|
|
2535
|
+
*
|
|
2536
|
+
*
|
|
2537
|
+
* @type number
|
|
2538
|
+
*/
|
|
2539
|
+
startupDate?: number;
|
|
2540
|
+
}
|
|
2455
2541
|
export interface AssetsResponse {
|
|
2456
2542
|
/**
|
|
2457
2543
|
* 分类ID
|
|
@@ -2818,6 +2904,9 @@ export interface AuthConfig {
|
|
|
2818
2904
|
*/
|
|
2819
2905
|
title?: string;
|
|
2820
2906
|
}
|
|
2907
|
+
export interface AutowireCapableBeanFactory {
|
|
2908
|
+
// 暂无属性
|
|
2909
|
+
}
|
|
2821
2910
|
export interface BIChartConditionDTO {
|
|
2822
2911
|
/**
|
|
2823
2912
|
*
|
|
@@ -2831,6 +2920,12 @@ export interface BIChartConditionDTO {
|
|
|
2831
2920
|
* @type string
|
|
2832
2921
|
*/
|
|
2833
2922
|
datasetKey?: string;
|
|
2923
|
+
/**
|
|
2924
|
+
*
|
|
2925
|
+
*
|
|
2926
|
+
* @type boolean
|
|
2927
|
+
*/
|
|
2928
|
+
dateFieldStatistics?: boolean;
|
|
2834
2929
|
/**
|
|
2835
2930
|
*
|
|
2836
2931
|
*
|
|
@@ -2905,6 +3000,12 @@ export interface BIChartExportDTO {
|
|
|
2905
3000
|
* @type string
|
|
2906
3001
|
*/
|
|
2907
3002
|
datasetKey?: string;
|
|
3003
|
+
/**
|
|
3004
|
+
*
|
|
3005
|
+
*
|
|
3006
|
+
* @type boolean
|
|
3007
|
+
*/
|
|
3008
|
+
dateFieldStatistics?: boolean;
|
|
2908
3009
|
/**
|
|
2909
3010
|
*
|
|
2910
3011
|
*
|
|
@@ -2991,6 +3092,12 @@ export interface BICrossReportDTO {
|
|
|
2991
3092
|
* @type string
|
|
2992
3093
|
*/
|
|
2993
3094
|
datasetKey?: string;
|
|
3095
|
+
/**
|
|
3096
|
+
*
|
|
3097
|
+
*
|
|
3098
|
+
* @type boolean
|
|
3099
|
+
*/
|
|
3100
|
+
dateFieldStatistics?: boolean;
|
|
2994
3101
|
/**
|
|
2995
3102
|
*
|
|
2996
3103
|
*
|
|
@@ -3072,6 +3179,9 @@ export interface Base64UploadPlatFormRequest {
|
|
|
3072
3179
|
*/
|
|
3073
3180
|
filename?: string;
|
|
3074
3181
|
}
|
|
3182
|
+
export interface BeanFactory {
|
|
3183
|
+
// 暂无属性
|
|
3184
|
+
}
|
|
3075
3185
|
export interface BiDataSetPreviewRequest {
|
|
3076
3186
|
/**
|
|
3077
3187
|
* 描述
|
|
@@ -3587,6 +3697,12 @@ export interface BtwNodeVO {
|
|
|
3587
3697
|
* @type string
|
|
3588
3698
|
*/
|
|
3589
3699
|
name?: string;
|
|
3700
|
+
/**
|
|
3701
|
+
* btw模板路径类型:local本地选择、common网络共享
|
|
3702
|
+
*
|
|
3703
|
+
* @type string
|
|
3704
|
+
*/
|
|
3705
|
+
pathType?: string;
|
|
3590
3706
|
/**
|
|
3591
3707
|
*
|
|
3592
3708
|
*
|
|
@@ -3694,6 +3810,14 @@ export interface CSV数据源表实体类 {
|
|
|
3694
3810
|
*/
|
|
3695
3811
|
user_id?: string;
|
|
3696
3812
|
}
|
|
3813
|
+
export interface CardLoginConfig {
|
|
3814
|
+
/**
|
|
3815
|
+
* 是否启用
|
|
3816
|
+
*
|
|
3817
|
+
* @type number
|
|
3818
|
+
*/
|
|
3819
|
+
enabled?: number;
|
|
3820
|
+
}
|
|
3697
3821
|
export interface Category {
|
|
3698
3822
|
/**
|
|
3699
3823
|
*
|
|
@@ -3882,6 +4006,38 @@ export interface CategoryResponse {
|
|
|
3882
4006
|
*/
|
|
3883
4007
|
sysBuiltin?: number;
|
|
3884
4008
|
}
|
|
4009
|
+
export interface ClassLoader {
|
|
4010
|
+
/**
|
|
4011
|
+
*
|
|
4012
|
+
*
|
|
4013
|
+
* @type Package[]
|
|
4014
|
+
*/
|
|
4015
|
+
definedPackages?: Package[];
|
|
4016
|
+
/**
|
|
4017
|
+
*
|
|
4018
|
+
*
|
|
4019
|
+
* @type string
|
|
4020
|
+
*/
|
|
4021
|
+
name?: string;
|
|
4022
|
+
/**
|
|
4023
|
+
*
|
|
4024
|
+
*
|
|
4025
|
+
* @type ClassLoader
|
|
4026
|
+
*/
|
|
4027
|
+
parent?: ClassLoader;
|
|
4028
|
+
/**
|
|
4029
|
+
*
|
|
4030
|
+
*
|
|
4031
|
+
* @type boolean
|
|
4032
|
+
*/
|
|
4033
|
+
registeredAsParallelCapable?: boolean;
|
|
4034
|
+
/**
|
|
4035
|
+
*
|
|
4036
|
+
*
|
|
4037
|
+
* @type Module
|
|
4038
|
+
*/
|
|
4039
|
+
unnamedModule?: Module;
|
|
4040
|
+
}
|
|
3885
4041
|
export interface ClientsDto {
|
|
3886
4042
|
/**
|
|
3887
4043
|
*
|
|
@@ -4751,6 +4907,12 @@ export interface DataSourceMainResponse {
|
|
|
4751
4907
|
type?: string;
|
|
4752
4908
|
}
|
|
4753
4909
|
export interface DataSourcePageRequest {
|
|
4910
|
+
/**
|
|
4911
|
+
* 是否启用
|
|
4912
|
+
*
|
|
4913
|
+
* @type number
|
|
4914
|
+
*/
|
|
4915
|
+
enabled?: number;
|
|
4754
4916
|
/**
|
|
4755
4917
|
* 应用环境 dev:开发 test:测试 prod:生产
|
|
4756
4918
|
*
|
|
@@ -6124,6 +6286,20 @@ export interface Echart图表主题查询参数 {
|
|
|
6124
6286
|
*/
|
|
6125
6287
|
user_id?: string;
|
|
6126
6288
|
}
|
|
6289
|
+
export interface Environment {
|
|
6290
|
+
/**
|
|
6291
|
+
*
|
|
6292
|
+
*
|
|
6293
|
+
* @type string[]
|
|
6294
|
+
*/
|
|
6295
|
+
activeProfiles?: string[];
|
|
6296
|
+
/**
|
|
6297
|
+
*
|
|
6298
|
+
*
|
|
6299
|
+
* @type string[]
|
|
6300
|
+
*/
|
|
6301
|
+
defaultProfiles?: string[];
|
|
6302
|
+
}
|
|
6127
6303
|
export interface ExcelOrgUserSearchReq {
|
|
6128
6304
|
/**
|
|
6129
6305
|
* 是否显示下级
|
|
@@ -6305,6 +6481,12 @@ export interface ExprDTO {
|
|
|
6305
6481
|
value?: IObject;
|
|
6306
6482
|
}
|
|
6307
6483
|
export interface ExtFieldConfig {
|
|
6484
|
+
/**
|
|
6485
|
+
* 启用密文展示(密文:1 ,明文:0)
|
|
6486
|
+
*
|
|
6487
|
+
* @type number
|
|
6488
|
+
*/
|
|
6489
|
+
encrypted?: number;
|
|
6308
6490
|
/**
|
|
6309
6491
|
* 字段名称
|
|
6310
6492
|
*
|
|
@@ -6789,6 +6971,12 @@ export interface FilePreviewDTO {
|
|
|
6789
6971
|
* @type string
|
|
6790
6972
|
*/
|
|
6791
6973
|
datasetKey?: string;
|
|
6974
|
+
/**
|
|
6975
|
+
*
|
|
6976
|
+
*
|
|
6977
|
+
* @type boolean
|
|
6978
|
+
*/
|
|
6979
|
+
dateFieldStatistics?: boolean;
|
|
6792
6980
|
/**
|
|
6793
6981
|
* 完整的sql
|
|
6794
6982
|
*
|
|
@@ -7157,6 +7345,12 @@ export interface FileTaskResponse {
|
|
|
7157
7345
|
* @type string
|
|
7158
7346
|
*/
|
|
7159
7347
|
name?: string;
|
|
7348
|
+
/**
|
|
7349
|
+
*
|
|
7350
|
+
*
|
|
7351
|
+
* @type IObject
|
|
7352
|
+
*/
|
|
7353
|
+
params?: IObject;
|
|
7160
7354
|
/**
|
|
7161
7355
|
* 关联数据id(edhr实模板ID)
|
|
7162
7356
|
*
|
|
@@ -8256,6 +8450,68 @@ export interface LicenseAuthRequest {
|
|
|
8256
8450
|
*/
|
|
8257
8451
|
version?: string;
|
|
8258
8452
|
}
|
|
8453
|
+
export interface LicenseDTO {
|
|
8454
|
+
/**
|
|
8455
|
+
*
|
|
8456
|
+
*
|
|
8457
|
+
* @type string
|
|
8458
|
+
*/
|
|
8459
|
+
appId?: string;
|
|
8460
|
+
/**
|
|
8461
|
+
*
|
|
8462
|
+
*
|
|
8463
|
+
* @type string
|
|
8464
|
+
*/
|
|
8465
|
+
category?: string;
|
|
8466
|
+
/**
|
|
8467
|
+
*
|
|
8468
|
+
*
|
|
8469
|
+
* @type string
|
|
8470
|
+
*/
|
|
8471
|
+
customerName?: string;
|
|
8472
|
+
/**
|
|
8473
|
+
*
|
|
8474
|
+
*
|
|
8475
|
+
* @type string
|
|
8476
|
+
*/
|
|
8477
|
+
effectiveDate?: string;
|
|
8478
|
+
/**
|
|
8479
|
+
*
|
|
8480
|
+
*
|
|
8481
|
+
* @type string
|
|
8482
|
+
*/
|
|
8483
|
+
env?: string;
|
|
8484
|
+
/**
|
|
8485
|
+
*
|
|
8486
|
+
*
|
|
8487
|
+
* @type string
|
|
8488
|
+
*/
|
|
8489
|
+
expirationDate?: string;
|
|
8490
|
+
/**
|
|
8491
|
+
*
|
|
8492
|
+
*
|
|
8493
|
+
* @type string
|
|
8494
|
+
*/
|
|
8495
|
+
id?: string;
|
|
8496
|
+
/**
|
|
8497
|
+
*
|
|
8498
|
+
*
|
|
8499
|
+
* @type string
|
|
8500
|
+
*/
|
|
8501
|
+
productName?: string;
|
|
8502
|
+
/**
|
|
8503
|
+
*
|
|
8504
|
+
*
|
|
8505
|
+
* @type string
|
|
8506
|
+
*/
|
|
8507
|
+
productType?: string;
|
|
8508
|
+
/**
|
|
8509
|
+
*
|
|
8510
|
+
*
|
|
8511
|
+
* @type number
|
|
8512
|
+
*/
|
|
8513
|
+
state?: number;
|
|
8514
|
+
}
|
|
8259
8515
|
export interface LicenseExpireMsg {
|
|
8260
8516
|
/**
|
|
8261
8517
|
* 授权类别 系统授权:system 增购:additional
|
|
@@ -8269,6 +8525,12 @@ export interface LicenseExpireMsg {
|
|
|
8269
8525
|
* @type number
|
|
8270
8526
|
*/
|
|
8271
8527
|
expireDays?: number;
|
|
8528
|
+
/**
|
|
8529
|
+
*
|
|
8530
|
+
*
|
|
8531
|
+
* @type string
|
|
8532
|
+
*/
|
|
8533
|
+
id?: string;
|
|
8272
8534
|
/**
|
|
8273
8535
|
* 产品类型
|
|
8274
8536
|
*
|
|
@@ -8380,7 +8642,7 @@ export interface LoginModeConfig {
|
|
|
8380
8642
|
*/
|
|
8381
8643
|
address?: string;
|
|
8382
8644
|
/**
|
|
8383
|
-
* 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE)
|
|
8645
|
+
* 登录方式类型 枚举(ACCOUNT/ 账号登录,DOMAIN_ACCOUNT/域账号密码登录,MOBILE,CARD:刷卡登录)
|
|
8384
8646
|
*
|
|
8385
8647
|
* @type string
|
|
8386
8648
|
*/
|
|
@@ -9552,6 +9814,73 @@ export interface ModelResponse {
|
|
|
9552
9814
|
*/
|
|
9553
9815
|
providerName?: string;
|
|
9554
9816
|
}
|
|
9817
|
+
export interface Module {
|
|
9818
|
+
/**
|
|
9819
|
+
*
|
|
9820
|
+
*
|
|
9821
|
+
* @type Annotation[]
|
|
9822
|
+
*/
|
|
9823
|
+
annotations?: Annotation[];
|
|
9824
|
+
/**
|
|
9825
|
+
*
|
|
9826
|
+
*
|
|
9827
|
+
* @type ClassLoader
|
|
9828
|
+
*/
|
|
9829
|
+
classLoader?: ClassLoader;
|
|
9830
|
+
/**
|
|
9831
|
+
*
|
|
9832
|
+
*
|
|
9833
|
+
* @type Annotation[]
|
|
9834
|
+
*/
|
|
9835
|
+
declaredAnnotations?: Annotation[];
|
|
9836
|
+
/**
|
|
9837
|
+
*
|
|
9838
|
+
*
|
|
9839
|
+
* @type ModuleDescriptor
|
|
9840
|
+
*/
|
|
9841
|
+
descriptor?: ModuleDescriptor;
|
|
9842
|
+
/**
|
|
9843
|
+
*
|
|
9844
|
+
*
|
|
9845
|
+
* @type ModuleLayer
|
|
9846
|
+
*/
|
|
9847
|
+
layer?: ModuleLayer;
|
|
9848
|
+
/**
|
|
9849
|
+
*
|
|
9850
|
+
*
|
|
9851
|
+
* @type string
|
|
9852
|
+
*/
|
|
9853
|
+
name?: string;
|
|
9854
|
+
/**
|
|
9855
|
+
*
|
|
9856
|
+
*
|
|
9857
|
+
* @type boolean
|
|
9858
|
+
*/
|
|
9859
|
+
named?: boolean;
|
|
9860
|
+
/**
|
|
9861
|
+
*
|
|
9862
|
+
*
|
|
9863
|
+
* @type string[]
|
|
9864
|
+
*/
|
|
9865
|
+
packages?: string[];
|
|
9866
|
+
}
|
|
9867
|
+
export interface ModuleDescriptor {
|
|
9868
|
+
/**
|
|
9869
|
+
*
|
|
9870
|
+
*
|
|
9871
|
+
* @type boolean
|
|
9872
|
+
*/
|
|
9873
|
+
automatic?: boolean;
|
|
9874
|
+
/**
|
|
9875
|
+
*
|
|
9876
|
+
*
|
|
9877
|
+
* @type boolean
|
|
9878
|
+
*/
|
|
9879
|
+
open?: boolean;
|
|
9880
|
+
}
|
|
9881
|
+
export interface ModuleLayer {
|
|
9882
|
+
// 暂无属性
|
|
9883
|
+
}
|
|
9555
9884
|
export interface MqttPropertiesDTO {
|
|
9556
9885
|
/**
|
|
9557
9886
|
* 密码
|
|
@@ -10693,6 +11022,12 @@ export interface OrgAddOrUpdateUserRequest {
|
|
|
10693
11022
|
username?: string;
|
|
10694
11023
|
}
|
|
10695
11024
|
export interface OrgBaseInfo {
|
|
11025
|
+
/**
|
|
11026
|
+
*
|
|
11027
|
+
*
|
|
11028
|
+
* @type string
|
|
11029
|
+
*/
|
|
11030
|
+
createTime?: string;
|
|
10696
11031
|
/**
|
|
10697
11032
|
*
|
|
10698
11033
|
*
|
|
@@ -10723,6 +11058,12 @@ export interface OrgBaseInfo {
|
|
|
10723
11058
|
* @type string
|
|
10724
11059
|
*/
|
|
10725
11060
|
parentId?: string;
|
|
11061
|
+
/**
|
|
11062
|
+
*
|
|
11063
|
+
*
|
|
11064
|
+
* @type string
|
|
11065
|
+
*/
|
|
11066
|
+
type?: string;
|
|
10726
11067
|
}
|
|
10727
11068
|
export interface OrgConfig {
|
|
10728
11069
|
/**
|
|
@@ -11532,6 +11873,68 @@ export interface OrgUserSearchRequest {
|
|
|
11532
11873
|
*/
|
|
11533
11874
|
username?: string;
|
|
11534
11875
|
}
|
|
11876
|
+
export interface Package {
|
|
11877
|
+
/**
|
|
11878
|
+
*
|
|
11879
|
+
*
|
|
11880
|
+
* @type Annotation[]
|
|
11881
|
+
*/
|
|
11882
|
+
annotations?: Annotation[];
|
|
11883
|
+
/**
|
|
11884
|
+
*
|
|
11885
|
+
*
|
|
11886
|
+
* @type Annotation[]
|
|
11887
|
+
*/
|
|
11888
|
+
declaredAnnotations?: Annotation[];
|
|
11889
|
+
/**
|
|
11890
|
+
*
|
|
11891
|
+
*
|
|
11892
|
+
* @type string
|
|
11893
|
+
*/
|
|
11894
|
+
implementationTitle?: string;
|
|
11895
|
+
/**
|
|
11896
|
+
*
|
|
11897
|
+
*
|
|
11898
|
+
* @type string
|
|
11899
|
+
*/
|
|
11900
|
+
implementationVendor?: string;
|
|
11901
|
+
/**
|
|
11902
|
+
*
|
|
11903
|
+
*
|
|
11904
|
+
* @type string
|
|
11905
|
+
*/
|
|
11906
|
+
implementationVersion?: string;
|
|
11907
|
+
/**
|
|
11908
|
+
*
|
|
11909
|
+
*
|
|
11910
|
+
* @type string
|
|
11911
|
+
*/
|
|
11912
|
+
name?: string;
|
|
11913
|
+
/**
|
|
11914
|
+
*
|
|
11915
|
+
*
|
|
11916
|
+
* @type boolean
|
|
11917
|
+
*/
|
|
11918
|
+
sealed?: boolean;
|
|
11919
|
+
/**
|
|
11920
|
+
*
|
|
11921
|
+
*
|
|
11922
|
+
* @type string
|
|
11923
|
+
*/
|
|
11924
|
+
specificationTitle?: string;
|
|
11925
|
+
/**
|
|
11926
|
+
*
|
|
11927
|
+
*
|
|
11928
|
+
* @type string
|
|
11929
|
+
*/
|
|
11930
|
+
specificationVendor?: string;
|
|
11931
|
+
/**
|
|
11932
|
+
*
|
|
11933
|
+
*
|
|
11934
|
+
* @type string
|
|
11935
|
+
*/
|
|
11936
|
+
specificationVersion?: string;
|
|
11937
|
+
}
|
|
11535
11938
|
export interface PackageJson {
|
|
11536
11939
|
/**
|
|
11537
11940
|
*
|
|
@@ -13759,6 +14162,12 @@ export interface PnDataset {
|
|
|
13759
14162
|
* @type number
|
|
13760
14163
|
*/
|
|
13761
14164
|
deleted?: number;
|
|
14165
|
+
/**
|
|
14166
|
+
*
|
|
14167
|
+
*
|
|
14168
|
+
* @type string
|
|
14169
|
+
*/
|
|
14170
|
+
designSql?: string;
|
|
13762
14171
|
/**
|
|
13763
14172
|
*
|
|
13764
14173
|
*
|
|
@@ -13939,6 +14348,12 @@ export interface PnDatasetRequest {
|
|
|
13939
14348
|
* @type string
|
|
13940
14349
|
*/
|
|
13941
14350
|
databaseType?: string;
|
|
14351
|
+
/**
|
|
14352
|
+
* 设计的sql - 可包含注释
|
|
14353
|
+
*
|
|
14354
|
+
* @type string
|
|
14355
|
+
*/
|
|
14356
|
+
designSql?: string;
|
|
13942
14357
|
/**
|
|
13943
14358
|
* 文件地址
|
|
13944
14359
|
*
|
|
@@ -14037,6 +14452,12 @@ export interface PnDatasetResponse {
|
|
|
14037
14452
|
* @type string
|
|
14038
14453
|
*/
|
|
14039
14454
|
databaseType?: string;
|
|
14455
|
+
/**
|
|
14456
|
+
* 设计的sql - 可包含注释
|
|
14457
|
+
*
|
|
14458
|
+
* @type string
|
|
14459
|
+
*/
|
|
14460
|
+
designSql?: string;
|
|
14040
14461
|
/**
|
|
14041
14462
|
* 完整的sql
|
|
14042
14463
|
*
|
|
@@ -15421,6 +15842,12 @@ export interface PrintResourceResponse {
|
|
|
15421
15842
|
* @type string
|
|
15422
15843
|
*/
|
|
15423
15844
|
name?: string;
|
|
15845
|
+
/**
|
|
15846
|
+
* btw模板路径类型:local本地选择、common网络共享
|
|
15847
|
+
*
|
|
15848
|
+
* @type string
|
|
15849
|
+
*/
|
|
15850
|
+
pathType?: string;
|
|
15424
15851
|
/**
|
|
15425
15852
|
* 打印机IP
|
|
15426
15853
|
*
|
|
@@ -15886,6 +16313,74 @@ export interface QueryBean {
|
|
|
15886
16313
|
*/
|
|
15887
16314
|
sql?: string;
|
|
15888
16315
|
}
|
|
16316
|
+
export interface RedirectView {
|
|
16317
|
+
/**
|
|
16318
|
+
*
|
|
16319
|
+
*
|
|
16320
|
+
* @type ApplicationContext
|
|
16321
|
+
*/
|
|
16322
|
+
applicationContext?: ApplicationContext;
|
|
16323
|
+
/**
|
|
16324
|
+
*
|
|
16325
|
+
*
|
|
16326
|
+
* @type IObject
|
|
16327
|
+
*/
|
|
16328
|
+
attributesMap?: IObject;
|
|
16329
|
+
/**
|
|
16330
|
+
*
|
|
16331
|
+
*
|
|
16332
|
+
* @type string
|
|
16333
|
+
*/
|
|
16334
|
+
beanName?: string;
|
|
16335
|
+
/**
|
|
16336
|
+
*
|
|
16337
|
+
*
|
|
16338
|
+
* @type string
|
|
16339
|
+
*/
|
|
16340
|
+
contentType?: string;
|
|
16341
|
+
/**
|
|
16342
|
+
*
|
|
16343
|
+
*
|
|
16344
|
+
* @type boolean
|
|
16345
|
+
*/
|
|
16346
|
+
exposePathVariables?: boolean;
|
|
16347
|
+
/**
|
|
16348
|
+
*
|
|
16349
|
+
*
|
|
16350
|
+
* @type string[]
|
|
16351
|
+
*/
|
|
16352
|
+
hosts?: string[];
|
|
16353
|
+
/**
|
|
16354
|
+
*
|
|
16355
|
+
*
|
|
16356
|
+
* @type boolean
|
|
16357
|
+
*/
|
|
16358
|
+
propagateQueryProperties?: boolean;
|
|
16359
|
+
/**
|
|
16360
|
+
*
|
|
16361
|
+
*
|
|
16362
|
+
* @type boolean
|
|
16363
|
+
*/
|
|
16364
|
+
redirectView?: boolean;
|
|
16365
|
+
/**
|
|
16366
|
+
*
|
|
16367
|
+
*
|
|
16368
|
+
* @type string
|
|
16369
|
+
*/
|
|
16370
|
+
requestContextAttribute?: string;
|
|
16371
|
+
/**
|
|
16372
|
+
*
|
|
16373
|
+
*
|
|
16374
|
+
* @type IObject
|
|
16375
|
+
*/
|
|
16376
|
+
staticAttributes?: IObject;
|
|
16377
|
+
/**
|
|
16378
|
+
*
|
|
16379
|
+
*
|
|
16380
|
+
* @type string
|
|
16381
|
+
*/
|
|
16382
|
+
url?: string;
|
|
16383
|
+
}
|
|
15889
16384
|
export interface RegexpRequest {
|
|
15890
16385
|
/**
|
|
15891
16386
|
* 正则名称
|
|
@@ -16823,6 +17318,12 @@ export interface SelectItem {
|
|
|
16823
17318
|
* @type string
|
|
16824
17319
|
*/
|
|
16825
17320
|
alias?: string;
|
|
17321
|
+
/**
|
|
17322
|
+
* 保留小数位
|
|
17323
|
+
*
|
|
17324
|
+
* @type number
|
|
17325
|
+
*/
|
|
17326
|
+
digit?: number;
|
|
16826
17327
|
/**
|
|
16827
17328
|
* 去重
|
|
16828
17329
|
*
|
|
@@ -18628,7 +19129,7 @@ export interface ThirdAppConfigReq {
|
|
|
18628
19129
|
*/
|
|
18629
19130
|
appId?: string;
|
|
18630
19131
|
/**
|
|
18631
|
-
* 登录方式类型 枚举(QIYEWEIXIN/
|
|
19132
|
+
* 登录方式类型 枚举 (QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录,MICROSOFT/微软登录)
|
|
18632
19133
|
*
|
|
18633
19134
|
* @type string
|
|
18634
19135
|
*/
|
|
@@ -18794,7 +19295,7 @@ export interface ThirdPartyLoginConfig {
|
|
|
18794
19295
|
*/
|
|
18795
19296
|
appId?: string;
|
|
18796
19297
|
/**
|
|
18797
|
-
* 登录方式类型 枚举(QIYEWEIXIN/
|
|
19298
|
+
* 登录方式类型 枚举 (QIYEWEIXIN/ 企微登录,FEISHU/飞书登录,DINGDING/钉钉登录,MICROSOFT/微软登录)
|
|
18798
19299
|
*
|
|
18799
19300
|
* @type string
|
|
18800
19301
|
*/
|
|
@@ -19377,6 +19878,12 @@ export interface UserBaseInfo {
|
|
|
19377
19878
|
username?: string;
|
|
19378
19879
|
}
|
|
19379
19880
|
export interface UserBaseReq {
|
|
19881
|
+
/**
|
|
19882
|
+
*
|
|
19883
|
+
*
|
|
19884
|
+
* @type string
|
|
19885
|
+
*/
|
|
19886
|
+
authCode?: string;
|
|
19380
19887
|
/**
|
|
19381
19888
|
* 授权code
|
|
19382
19889
|
*
|
|
@@ -19395,6 +19902,18 @@ export interface UserBaseReq {
|
|
|
19395
19902
|
* @type string
|
|
19396
19903
|
*/
|
|
19397
19904
|
password?: string;
|
|
19905
|
+
/**
|
|
19906
|
+
*
|
|
19907
|
+
*
|
|
19908
|
+
* @type string
|
|
19909
|
+
*/
|
|
19910
|
+
referer?: string;
|
|
19911
|
+
/**
|
|
19912
|
+
*
|
|
19913
|
+
*
|
|
19914
|
+
* @type string
|
|
19915
|
+
*/
|
|
19916
|
+
source?: string;
|
|
19398
19917
|
/**
|
|
19399
19918
|
* 账号
|
|
19400
19919
|
*
|
|
@@ -21341,6 +21860,12 @@ export interface UserTenantDTO {
|
|
|
21341
21860
|
* @type string
|
|
21342
21861
|
*/
|
|
21343
21862
|
id?: string;
|
|
21863
|
+
/**
|
|
21864
|
+
* 是否最后登录租户,0:否 1:是
|
|
21865
|
+
*
|
|
21866
|
+
* @type number
|
|
21867
|
+
*/
|
|
21868
|
+
latestLogin?: number;
|
|
21344
21869
|
/**
|
|
21345
21870
|
* 直属上级id
|
|
21346
21871
|
*
|