@gct-paas/api 0.1.6-dev.12 → 0.1.6-dev.13
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 +14 -175
- package/es/apaas/service/apis/api.service.d.ts +2 -1
- package/es/apaas/service/apis/app-global-settings.service.d.ts +4 -0
- package/es/apaas/service/apis/chat.service.d.ts +2 -1
- package/es/apaas/service/apis/edhr-instance.service.d.ts +8 -8
- package/es/apaas/service/apis/enum-model-field.service.d.ts +0 -8
- package/es/apaas/service/apis/excel-tmpl.service.d.ts +0 -8
- package/es/apaas/service/apis/excel.service.d.ts +4 -2
- package/es/apaas/service/apis/field-meta.service.d.ts +0 -13
- package/es/apaas/service/apis/model-meta.service.d.ts +0 -17
- package/es/apaas/service/apis/model-method.service.d.ts +1 -19
- package/es/apaas/service/apis/online-form-instance.service.d.ts +12 -12
- package/es/apaas/service/apis/print.service.d.ts +1 -1
- package/es/apaas/service/apis/trace-log-details.service.d.ts +0 -12
- package/es/apaas/service/entities.d.ts +14 -798
- package/es/apaas/service/index.d.ts +0 -4
- package/es/platform/service/api-config.mjs +6 -30
- package/es/platform/service/apis/api.service.d.ts +1 -38
- package/es/platform/service/apis/app.service.d.ts +0 -4
- package/es/platform/service/apis/dashboard.service.d.ts +4 -0
- package/es/platform/service/apis/license.service.d.ts +2 -1
- package/es/platform/service/apis/login-log.service.d.ts +0 -13
- package/es/platform/service/apis/plat.service.d.ts +0 -7
- package/es/platform/service/apis/plugin.service.d.ts +2 -1
- package/es/platform/service/entities.d.ts +22 -380
- package/package.json +1 -1
|
@@ -31,7 +31,6 @@ import type { DataTraceService } from './apis/data-trace.service';
|
|
|
31
31
|
import type { DesignerCommonService } from './apis/designer-common.service';
|
|
32
32
|
import type { DesignerLockService } from './apis/designer-lock.service';
|
|
33
33
|
import type { DesignerOperateLogService } from './apis/designer-operate-log.service';
|
|
34
|
-
import type { DetailPageService } from './apis/detail-page.service';
|
|
35
34
|
import type { DevopsService } from './apis/devops.service';
|
|
36
35
|
import type { DhrService } from './apis/dhr.service';
|
|
37
36
|
import type { DifyChatService } from './apis/dify-chat.service';
|
|
@@ -160,7 +159,6 @@ import type { TraceLogDetailsService } from './apis/trace-log-details.service';
|
|
|
160
159
|
import type { TraceMainlineService } from './apis/trace-mainline.service';
|
|
161
160
|
import type { TraceMainlineExtService } from './apis/trace-mainline-ext.service';
|
|
162
161
|
import type { TraceSettingService } from './apis/trace-setting.service';
|
|
163
|
-
import type { TransactionService } from './apis/transaction.service';
|
|
164
162
|
import type { UserGroupService } from './apis/user-group.service';
|
|
165
163
|
import type { UserGroupRelationService } from './apis/user-group-relation.service';
|
|
166
164
|
import type { UserService } from './apis/user.service';
|
|
@@ -203,7 +201,6 @@ export interface ApiManage {
|
|
|
203
201
|
readonly designerCommon: DesignerCommonService;
|
|
204
202
|
readonly designerLock: DesignerLockService;
|
|
205
203
|
readonly designerOperateLog: DesignerOperateLogService;
|
|
206
|
-
readonly detailPage: DetailPageService;
|
|
207
204
|
readonly devops: DevopsService;
|
|
208
205
|
readonly dhr: DhrService;
|
|
209
206
|
readonly difyChat: DifyChatService;
|
|
@@ -332,7 +329,6 @@ export interface ApiManage {
|
|
|
332
329
|
readonly traceMainline: TraceMainlineService;
|
|
333
330
|
readonly traceMainlineExt: TraceMainlineExtService;
|
|
334
331
|
readonly traceSetting: TraceSettingService;
|
|
335
|
-
readonly transaction: TransactionService;
|
|
336
332
|
readonly userGroup: UserGroupService;
|
|
337
333
|
readonly userGroupRelation: UserGroupRelationService;
|
|
338
334
|
readonly user: UserService;
|
|
@@ -1969,7 +1969,9 @@ export const apiConfig = [
|
|
|
1969
1969
|
mode: "post",
|
|
1970
1970
|
method: "postActivatesOffline",
|
|
1971
1971
|
path: "activatesOffline",
|
|
1972
|
-
|
|
1972
|
+
hasUpload: true,
|
|
1973
|
+
hasQuery: true,
|
|
1974
|
+
hasData: true
|
|
1973
1975
|
},
|
|
1974
1976
|
{
|
|
1975
1977
|
mode: "get",
|
|
@@ -2063,12 +2065,6 @@ export const apiConfig = [
|
|
|
2063
2065
|
method: "getPageList",
|
|
2064
2066
|
path: "page/list",
|
|
2065
2067
|
hasQuery: true
|
|
2066
|
-
},
|
|
2067
|
-
{
|
|
2068
|
-
mode: "get",
|
|
2069
|
-
method: "getTenantLog",
|
|
2070
|
-
path: "tenant/log",
|
|
2071
|
-
hasQuery: true
|
|
2072
2068
|
}
|
|
2073
2069
|
]
|
|
2074
2070
|
},
|
|
@@ -2717,11 +2713,6 @@ export const apiConfig = [
|
|
|
2717
2713
|
path: "base",
|
|
2718
2714
|
hasData: true
|
|
2719
2715
|
},
|
|
2720
|
-
{
|
|
2721
|
-
mode: "get",
|
|
2722
|
-
method: "getCardLoginCfg",
|
|
2723
|
-
path: "card/login/cfg"
|
|
2724
|
-
},
|
|
2725
2716
|
{
|
|
2726
2717
|
mode: "post",
|
|
2727
2718
|
method: "postDingtalk",
|
|
@@ -2901,7 +2892,9 @@ export const apiConfig = [
|
|
|
2901
2892
|
mode: "post",
|
|
2902
2893
|
method: "postUploadZip",
|
|
2903
2894
|
path: "uploadZip",
|
|
2904
|
-
|
|
2895
|
+
hasUpload: true,
|
|
2896
|
+
hasQuery: true,
|
|
2897
|
+
hasData: true
|
|
2905
2898
|
},
|
|
2906
2899
|
{
|
|
2907
2900
|
mode: "put",
|
|
@@ -5429,12 +5422,6 @@ export const apiConfig = [
|
|
|
5429
5422
|
method: "getAppPublished",
|
|
5430
5423
|
path: "app/published"
|
|
5431
5424
|
},
|
|
5432
|
-
{
|
|
5433
|
-
mode: "get",
|
|
5434
|
-
method: "getAppSuite",
|
|
5435
|
-
path: "app/suite",
|
|
5436
|
-
hasQuery: true
|
|
5437
|
-
},
|
|
5438
5425
|
{
|
|
5439
5426
|
mode: "get",
|
|
5440
5427
|
method: "getAppTestPublished",
|
|
@@ -5515,11 +5502,6 @@ export const apiConfig = [
|
|
|
5515
5502
|
hasPathParams: true,
|
|
5516
5503
|
hasData: true
|
|
5517
5504
|
},
|
|
5518
|
-
{
|
|
5519
|
-
mode: "get",
|
|
5520
|
-
method: "getCallbackLogin",
|
|
5521
|
-
path: "callback/login"
|
|
5522
|
-
},
|
|
5523
5505
|
{
|
|
5524
5506
|
mode: "get",
|
|
5525
5507
|
method: "getDataSourceExecuteSelect",
|
|
@@ -5616,12 +5598,6 @@ export const apiConfig = [
|
|
|
5616
5598
|
path: "login-log/userLoginLogPage",
|
|
5617
5599
|
hasData: true
|
|
5618
5600
|
},
|
|
5619
|
-
{
|
|
5620
|
-
mode: "get",
|
|
5621
|
-
method: "getLoginSettingGet",
|
|
5622
|
-
path: "login/setting/get",
|
|
5623
|
-
hasQuery: true
|
|
5624
|
-
},
|
|
5625
5601
|
{
|
|
5626
5602
|
mode: "get",
|
|
5627
5603
|
method: "getLoginSsoOauth2Authorize",
|
|
@@ -28,8 +28,6 @@ import type {
|
|
|
28
28
|
TenantUserSearchRequest,
|
|
29
29
|
UserWithUserExtraDTO,
|
|
30
30
|
UserIdsDTO,
|
|
31
|
-
ResponseEntity,
|
|
32
|
-
RedirectView,
|
|
33
31
|
DataSourceUpdateRequest,
|
|
34
32
|
DatasourceExtDTO,
|
|
35
33
|
DataSourcePageRequest,
|
|
@@ -41,7 +39,6 @@ import type {
|
|
|
41
39
|
AppEffectiveLicense,
|
|
42
40
|
UserLoginLogPageRequest,
|
|
43
41
|
UserLoginLogDTO,
|
|
44
|
-
ThirdPartyLoginConfig,
|
|
45
42
|
ModelDTO,
|
|
46
43
|
消息设置VO,
|
|
47
44
|
SendEmailMessageRequest,
|
|
@@ -378,16 +375,6 @@ export interface getAppOrgUserInfoQuery extends IObject {
|
|
|
378
375
|
export interface putAppOrgIdPathParams {
|
|
379
376
|
id: string;
|
|
380
377
|
}
|
|
381
|
-
export interface getAppSuiteQuery extends IObject {
|
|
382
|
-
/**
|
|
383
|
-
* suiteKey
|
|
384
|
-
*/
|
|
385
|
-
suiteKey: string;
|
|
386
|
-
/**
|
|
387
|
-
* tenantId
|
|
388
|
-
*/
|
|
389
|
-
tenantId: string;
|
|
390
|
-
}
|
|
391
378
|
export interface postAppUserQuery extends IObject {
|
|
392
379
|
/**
|
|
393
380
|
* appId
|
|
@@ -528,12 +515,6 @@ export interface getLicenseModuleAuthQuery extends IObject {
|
|
|
528
515
|
*/
|
|
529
516
|
module?: string;
|
|
530
517
|
}
|
|
531
|
-
export interface getLoginSettingGetQuery extends IObject {
|
|
532
|
-
/**
|
|
533
|
-
* code
|
|
534
|
-
*/
|
|
535
|
-
code: string;
|
|
536
|
-
}
|
|
537
518
|
export interface getLoginSsoOauth2AuthorizeQuery extends IObject {
|
|
538
519
|
/**
|
|
539
520
|
* 授权码
|
|
@@ -1083,13 +1064,6 @@ export interface ApiService {
|
|
|
1083
1064
|
* 查询已发布应用
|
|
1084
1065
|
*/
|
|
1085
1066
|
getAppPublished(config?: Partial<AxiosRequestConfig>): Promise<string>;
|
|
1086
|
-
/**
|
|
1087
|
-
* 查询MDM应用信息
|
|
1088
|
-
*/
|
|
1089
|
-
getAppSuite(
|
|
1090
|
-
query: getAppSuiteQuery,
|
|
1091
|
-
config?: Partial<AxiosRequestConfig>,
|
|
1092
|
-
): Promise<App>;
|
|
1093
1067
|
/**
|
|
1094
1068
|
* 查询已发布验证环境的应用
|
|
1095
1069
|
*/
|
|
@@ -1172,7 +1146,7 @@ export interface ApiService {
|
|
|
1172
1146
|
postAppUserSaveList(
|
|
1173
1147
|
query: postAppUserSaveListQuery,
|
|
1174
1148
|
config?: Partial<AxiosRequestConfig>,
|
|
1175
|
-
): Promise<
|
|
1149
|
+
): Promise<string>;
|
|
1176
1150
|
/**
|
|
1177
1151
|
* 修改
|
|
1178
1152
|
*/
|
|
@@ -1181,10 +1155,6 @@ export interface ApiService {
|
|
|
1181
1155
|
data: UserSaveRequest,
|
|
1182
1156
|
config?: Partial<AxiosRequestConfig>,
|
|
1183
1157
|
): Promise<string>;
|
|
1184
|
-
/**
|
|
1185
|
-
* 重定向到微软登录页
|
|
1186
|
-
*/
|
|
1187
|
-
getCallbackLogin(config?: Partial<AxiosRequestConfig>): Promise<RedirectView>;
|
|
1188
1158
|
/**
|
|
1189
1159
|
* 查询数据-iPaaS
|
|
1190
1160
|
*/
|
|
@@ -1295,13 +1265,6 @@ export interface ApiService {
|
|
|
1295
1265
|
data: UserLoginLogPageRequest,
|
|
1296
1266
|
config?: Partial<AxiosRequestConfig>,
|
|
1297
1267
|
): Promise<IPage<UserLoginLogDTO>>;
|
|
1298
|
-
/**
|
|
1299
|
-
* 重定向到微软登录页
|
|
1300
|
-
*/
|
|
1301
|
-
getLoginSettingGet(
|
|
1302
|
-
query: getLoginSettingGetQuery,
|
|
1303
|
-
config?: Partial<AxiosRequestConfig>,
|
|
1304
|
-
): Promise<ThirdPartyLoginConfig>;
|
|
1305
1268
|
/**
|
|
1306
1269
|
* 泛微OA认证地址
|
|
1307
1270
|
*/
|
|
@@ -172,8 +172,9 @@ export interface LicenseService {
|
|
|
172
172
|
*/
|
|
173
173
|
postActivatesOffline(
|
|
174
174
|
query: postActivatesOfflineQuery,
|
|
175
|
+
data: UploadFileData,
|
|
175
176
|
config?: Partial<AxiosRequestConfig>,
|
|
176
|
-
): Promise<string
|
|
177
|
+
): Promise<IHttpResponse<string>>;
|
|
177
178
|
/**
|
|
178
179
|
* 证书校验,用于平台登录前判断是否在有效期
|
|
179
180
|
*/
|
|
@@ -27,12 +27,6 @@ export interface getPageListQuery extends IObject {
|
|
|
27
27
|
*/
|
|
28
28
|
startTime?: string;
|
|
29
29
|
}
|
|
30
|
-
export interface getTenantLogQuery extends IObject {
|
|
31
|
-
/**
|
|
32
|
-
* 租户ID
|
|
33
|
-
*/
|
|
34
|
-
tenantId: string;
|
|
35
|
-
}
|
|
36
30
|
export interface LoginLogService {
|
|
37
31
|
/**
|
|
38
32
|
* 登录足迹分页列表
|
|
@@ -41,11 +35,4 @@ export interface LoginLogService {
|
|
|
41
35
|
query: getPageListQuery,
|
|
42
36
|
config?: Partial<AxiosRequestConfig>,
|
|
43
37
|
): Promise<IPage<LoginLogResponse>>;
|
|
44
|
-
/**
|
|
45
|
-
* 最近登录租户
|
|
46
|
-
*/
|
|
47
|
-
getTenantLog(
|
|
48
|
-
query: getTenantLogQuery,
|
|
49
|
-
config?: Partial<AxiosRequestConfig>,
|
|
50
|
-
): Promise<string>;
|
|
51
38
|
}
|
|
@@ -3,7 +3,6 @@ import type {
|
|
|
3
3
|
SysConfigResponse,
|
|
4
4
|
SysConfigRequest,
|
|
5
5
|
PlatformBaseConfig,
|
|
6
|
-
CardLoginConfig,
|
|
7
6
|
DingTalkConfig,
|
|
8
7
|
MailConfig,
|
|
9
8
|
FeiShuConfig,
|
|
@@ -64,12 +63,6 @@ export interface PlatService {
|
|
|
64
63
|
data: PlatformBaseConfig,
|
|
65
64
|
config?: Partial<AxiosRequestConfig>,
|
|
66
65
|
): Promise<string>;
|
|
67
|
-
/**
|
|
68
|
-
* 查询刷卡登录是否启用
|
|
69
|
-
*/
|
|
70
|
-
getCardLoginCfg(
|
|
71
|
-
config?: Partial<AxiosRequestConfig>,
|
|
72
|
-
): Promise<CardLoginConfig>;
|
|
73
66
|
/**
|
|
74
67
|
* 钉钉设置 保存/更新
|
|
75
68
|
*/
|
|
@@ -172,8 +172,9 @@ export interface PluginService {
|
|
|
172
172
|
*/
|
|
173
173
|
postUploadZip(
|
|
174
174
|
query: postUploadZipQuery,
|
|
175
|
+
data: UploadFileData,
|
|
175
176
|
config?: Partial<AxiosRequestConfig>,
|
|
176
|
-
): Promise<PackageJson
|
|
177
|
+
): Promise<IHttpResponse<PackageJson>>;
|
|
177
178
|
/**
|
|
178
179
|
* 修改
|
|
179
180
|
*/
|