@gct-paas/api 0.1.6-dev.13 → 0.1.6-dev.14

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.
@@ -31,6 +31,7 @@ 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';
34
35
  import type { DevopsService } from './apis/devops.service';
35
36
  import type { DhrService } from './apis/dhr.service';
36
37
  import type { DifyChatService } from './apis/dify-chat.service';
@@ -159,6 +160,7 @@ import type { TraceLogDetailsService } from './apis/trace-log-details.service';
159
160
  import type { TraceMainlineService } from './apis/trace-mainline.service';
160
161
  import type { TraceMainlineExtService } from './apis/trace-mainline-ext.service';
161
162
  import type { TraceSettingService } from './apis/trace-setting.service';
163
+ import type { TransactionService } from './apis/transaction.service';
162
164
  import type { UserGroupService } from './apis/user-group.service';
163
165
  import type { UserGroupRelationService } from './apis/user-group-relation.service';
164
166
  import type { UserService } from './apis/user.service';
@@ -201,6 +203,7 @@ export interface ApiManage {
201
203
  readonly designerCommon: DesignerCommonService;
202
204
  readonly designerLock: DesignerLockService;
203
205
  readonly designerOperateLog: DesignerOperateLogService;
206
+ readonly detailPage: DetailPageService;
204
207
  readonly devops: DevopsService;
205
208
  readonly dhr: DhrService;
206
209
  readonly difyChat: DifyChatService;
@@ -329,6 +332,7 @@ export interface ApiManage {
329
332
  readonly traceMainline: TraceMainlineService;
330
333
  readonly traceMainlineExt: TraceMainlineExtService;
331
334
  readonly traceSetting: TraceSettingService;
335
+ readonly transaction: TransactionService;
332
336
  readonly userGroup: UserGroupService;
333
337
  readonly userGroupRelation: UserGroupRelationService;
334
338
  readonly user: UserService;
@@ -2065,6 +2065,12 @@ export const apiConfig = [
2065
2065
  method: "getPageList",
2066
2066
  path: "page/list",
2067
2067
  hasQuery: true
2068
+ },
2069
+ {
2070
+ mode: "get",
2071
+ method: "getTenantLog",
2072
+ path: "tenant/log",
2073
+ hasQuery: true
2068
2074
  }
2069
2075
  ]
2070
2076
  },
@@ -2713,6 +2719,11 @@ export const apiConfig = [
2713
2719
  path: "base",
2714
2720
  hasData: true
2715
2721
  },
2722
+ {
2723
+ mode: "get",
2724
+ method: "getCardLoginCfg",
2725
+ path: "card/login/cfg"
2726
+ },
2716
2727
  {
2717
2728
  mode: "post",
2718
2729
  method: "postDingtalk",
@@ -5422,6 +5433,12 @@ export const apiConfig = [
5422
5433
  method: "getAppPublished",
5423
5434
  path: "app/published"
5424
5435
  },
5436
+ {
5437
+ mode: "get",
5438
+ method: "getAppSuite",
5439
+ path: "app/suite",
5440
+ hasQuery: true
5441
+ },
5425
5442
  {
5426
5443
  mode: "get",
5427
5444
  method: "getAppTestPublished",
@@ -5502,6 +5519,11 @@ export const apiConfig = [
5502
5519
  hasPathParams: true,
5503
5520
  hasData: true
5504
5521
  },
5522
+ {
5523
+ mode: "get",
5524
+ method: "getCallbackLogin",
5525
+ path: "callback/login"
5526
+ },
5505
5527
  {
5506
5528
  mode: "get",
5507
5529
  method: "getDataSourceExecuteSelect",
@@ -5598,6 +5620,12 @@ export const apiConfig = [
5598
5620
  path: "login-log/userLoginLogPage",
5599
5621
  hasData: true
5600
5622
  },
5623
+ {
5624
+ mode: "get",
5625
+ method: "getLoginSettingGet",
5626
+ path: "login/setting/get",
5627
+ hasQuery: true
5628
+ },
5601
5629
  {
5602
5630
  mode: "get",
5603
5631
  method: "getLoginSsoOauth2Authorize",
@@ -28,6 +28,8 @@ import type {
28
28
  TenantUserSearchRequest,
29
29
  UserWithUserExtraDTO,
30
30
  UserIdsDTO,
31
+ ResponseEntity,
32
+ RedirectView,
31
33
  DataSourceUpdateRequest,
32
34
  DatasourceExtDTO,
33
35
  DataSourcePageRequest,
@@ -39,6 +41,7 @@ import type {
39
41
  AppEffectiveLicense,
40
42
  UserLoginLogPageRequest,
41
43
  UserLoginLogDTO,
44
+ ThirdPartyLoginConfig,
42
45
  ModelDTO,
43
46
  消息设置VO,
44
47
  SendEmailMessageRequest,
@@ -375,6 +378,16 @@ export interface getAppOrgUserInfoQuery extends IObject {
375
378
  export interface putAppOrgIdPathParams {
376
379
  id: string;
377
380
  }
381
+ export interface getAppSuiteQuery extends IObject {
382
+ /**
383
+ * suiteKey
384
+ */
385
+ suiteKey: string;
386
+ /**
387
+ * tenantId
388
+ */
389
+ tenantId: string;
390
+ }
378
391
  export interface postAppUserQuery extends IObject {
379
392
  /**
380
393
  * appId
@@ -515,6 +528,12 @@ export interface getLicenseModuleAuthQuery extends IObject {
515
528
  */
516
529
  module?: string;
517
530
  }
531
+ export interface getLoginSettingGetQuery extends IObject {
532
+ /**
533
+ * code
534
+ */
535
+ code: string;
536
+ }
518
537
  export interface getLoginSsoOauth2AuthorizeQuery extends IObject {
519
538
  /**
520
539
  * 授权码
@@ -1064,6 +1083,13 @@ export interface ApiService {
1064
1083
  * 查询已发布应用
1065
1084
  */
1066
1085
  getAppPublished(config?: Partial<AxiosRequestConfig>): Promise<string>;
1086
+ /**
1087
+ * 查询MDM应用信息
1088
+ */
1089
+ getAppSuite(
1090
+ query: getAppSuiteQuery,
1091
+ config?: Partial<AxiosRequestConfig>,
1092
+ ): Promise<App>;
1067
1093
  /**
1068
1094
  * 查询已发布验证环境的应用
1069
1095
  */
@@ -1146,7 +1172,7 @@ export interface ApiService {
1146
1172
  postAppUserSaveList(
1147
1173
  query: postAppUserSaveListQuery,
1148
1174
  config?: Partial<AxiosRequestConfig>,
1149
- ): Promise<string>;
1175
+ ): Promise<ResponseEntity>;
1150
1176
  /**
1151
1177
  * 修改
1152
1178
  */
@@ -1155,6 +1181,10 @@ export interface ApiService {
1155
1181
  data: UserSaveRequest,
1156
1182
  config?: Partial<AxiosRequestConfig>,
1157
1183
  ): Promise<string>;
1184
+ /**
1185
+ * 重定向到微软登录页
1186
+ */
1187
+ getCallbackLogin(config?: Partial<AxiosRequestConfig>): Promise<RedirectView>;
1158
1188
  /**
1159
1189
  * 查询数据-iPaaS
1160
1190
  */
@@ -1265,6 +1295,13 @@ export interface ApiService {
1265
1295
  data: UserLoginLogPageRequest,
1266
1296
  config?: Partial<AxiosRequestConfig>,
1267
1297
  ): Promise<IPage<UserLoginLogDTO>>;
1298
+ /**
1299
+ * 重定向到微软登录页
1300
+ */
1301
+ getLoginSettingGet(
1302
+ query: getLoginSettingGetQuery,
1303
+ config?: Partial<AxiosRequestConfig>,
1304
+ ): Promise<ThirdPartyLoginConfig>;
1268
1305
  /**
1269
1306
  * 泛微OA认证地址
1270
1307
  */
@@ -203,6 +203,10 @@ export interface getModelMetaListQuery extends IObject {
203
203
  *
204
204
  */
205
205
  modifyUserName?: string;
206
+ /**
207
+ * 所属模块(实体、枚举、web页面 、view_model_module/视图模型模块 、data_model/数据模型模块、document_module/单据)
208
+ */
209
+ module?: string;
206
210
  /**
207
211
  *
208
212
  */
@@ -32,10 +32,6 @@ export interface getPageListQuery extends IObject {
32
32
  * 每页数据条数
33
33
  */
34
34
  pageSize?: number;
35
- /**
36
- * 仪表盘来源
37
- */
38
- source?: number;
39
35
  }
40
36
  export interface putIdPathParams {
41
37
  id: string;
@@ -27,6 +27,12 @@ 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
+ }
30
36
  export interface LoginLogService {
31
37
  /**
32
38
  * 登录足迹分页列表
@@ -35,4 +41,11 @@ export interface LoginLogService {
35
41
  query: getPageListQuery,
36
42
  config?: Partial<AxiosRequestConfig>,
37
43
  ): Promise<IPage<LoginLogResponse>>;
44
+ /**
45
+ * 最近登录租户
46
+ */
47
+ getTenantLog(
48
+ query: getTenantLogQuery,
49
+ config?: Partial<AxiosRequestConfig>,
50
+ ): Promise<string>;
38
51
  }
@@ -3,6 +3,7 @@ import type {
3
3
  SysConfigResponse,
4
4
  SysConfigRequest,
5
5
  PlatformBaseConfig,
6
+ CardLoginConfig,
6
7
  DingTalkConfig,
7
8
  MailConfig,
8
9
  FeiShuConfig,
@@ -63,6 +64,12 @@ export interface PlatService {
63
64
  data: PlatformBaseConfig,
64
65
  config?: Partial<AxiosRequestConfig>,
65
66
  ): Promise<string>;
67
+ /**
68
+ * 查询刷卡登录是否启用
69
+ */
70
+ getCardLoginCfg(
71
+ config?: Partial<AxiosRequestConfig>,
72
+ ): Promise<CardLoginConfig>;
66
73
  /**
67
74
  * 钉钉设置 保存/更新
68
75
  */