@gct-paas/api 6.0.0-dev.12 → 6.0.0-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 +181 -6
- package/es/apaas/service/apis/app-org.service.d.ts +0 -4
- package/es/apaas/service/apis/category.service.d.ts +0 -8
- package/es/apaas/service/apis/custom-field.service.d.ts +45 -4
- package/es/apaas/service/apis/custom-object.service.d.ts +120 -5
- package/es/apaas/service/apis/edhr-category.service.d.ts +27 -1
- package/es/apaas/service/apis/edhr-instance-search-history.service.d.ts +21 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +16 -0
- package/es/apaas/service/apis/mdm-category.service.d.ts +148 -0
- package/es/apaas/service/apis/message-tmpl.service.d.ts +4 -0
- package/es/apaas/service/apis/ocr.service.d.ts +7 -1
- package/es/apaas/service/apis/online-form-category.service.d.ts +27 -1
- package/es/apaas/service/apis/online-form-instance.service.d.ts +12 -0
- package/es/apaas/service/apis/online-form-tmpl.service.d.ts +47 -1
- package/es/apaas/service/entities.d.ts +420 -34
- package/es/apaas/service/index.d.ts +2 -0
- package/es/platform/service/api-config.mjs +6 -0
- package/es/platform/service/apis/api.service.d.ts +10 -1
- package/es/platform/service/apis/app.service.d.ts +4 -0
- package/es/platform/service/entities.d.ts +32 -0
- package/package.json +6 -2
|
@@ -43,6 +43,7 @@ import type {
|
|
|
43
43
|
AppEffectiveLicense,
|
|
44
44
|
UserLoginLogPageRequest,
|
|
45
45
|
UserLoginLogDTO,
|
|
46
|
+
UserLoginConfirmDTO,
|
|
46
47
|
ThirdPartyLoginConfig,
|
|
47
48
|
ModelDTO,
|
|
48
49
|
消息设置VO,
|
|
@@ -63,6 +64,7 @@ import type {
|
|
|
63
64
|
PrintLogSearchRequest,
|
|
64
65
|
PrintLogResponse,
|
|
65
66
|
PrintServiceBtwTreeVO,
|
|
67
|
+
BtwNodeVO,
|
|
66
68
|
PrintResourceMapping,
|
|
67
69
|
PrintAdapterDTO,
|
|
68
70
|
RegexpResponse,
|
|
@@ -1378,6 +1380,13 @@ export interface ApiService {
|
|
|
1378
1380
|
data: UserLoginLogPageRequest,
|
|
1379
1381
|
config?: Partial<AxiosRequestConfig>,
|
|
1380
1382
|
): Promise<IPage<UserLoginLogDTO>>;
|
|
1383
|
+
/**
|
|
1384
|
+
* 确认登录,并踢出其他端登录
|
|
1385
|
+
*/
|
|
1386
|
+
postLoginLoginConfirm(
|
|
1387
|
+
data: UserLoginConfirmDTO,
|
|
1388
|
+
config?: Partial<AxiosRequestConfig>,
|
|
1389
|
+
): Promise<string>;
|
|
1381
1390
|
/**
|
|
1382
1391
|
* 重定向到微软登录页
|
|
1383
1392
|
*/
|
|
@@ -1603,7 +1612,7 @@ export interface ApiService {
|
|
|
1603
1612
|
getPrintBtwTmplExist(
|
|
1604
1613
|
query: getPrintBtwTmplExistQuery,
|
|
1605
1614
|
config?: Partial<AxiosRequestConfig>,
|
|
1606
|
-
): Promise<
|
|
1615
|
+
): Promise<BtwNodeVO>;
|
|
1607
1616
|
/**
|
|
1608
1617
|
* 根据打印机唯一标识key兑换打印机名称
|
|
1609
1618
|
*/
|
|
@@ -16121,6 +16121,12 @@ export interface PrintResourceMapping {
|
|
|
16121
16121
|
* @type number
|
|
16122
16122
|
*/
|
|
16123
16123
|
status?: number;
|
|
16124
|
+
/**
|
|
16125
|
+
*
|
|
16126
|
+
*
|
|
16127
|
+
* @type string
|
|
16128
|
+
*/
|
|
16129
|
+
tmplSaveAddress?: string;
|
|
16124
16130
|
}
|
|
16125
16131
|
export interface PrintResourceRemarkRequest {
|
|
16126
16132
|
/**
|
|
@@ -17661,6 +17667,18 @@ export interface SecurityConfig {
|
|
|
17661
17667
|
* @type number
|
|
17662
17668
|
*/
|
|
17663
17669
|
signExpiryDate?: number;
|
|
17670
|
+
/**
|
|
17671
|
+
* 刷卡签名关联字段(username_/账号,emp_no_/工号,mobile_/手机号码)
|
|
17672
|
+
*
|
|
17673
|
+
* @type string
|
|
17674
|
+
*/
|
|
17675
|
+
signField?: string;
|
|
17676
|
+
/**
|
|
17677
|
+
* 刷卡签名关联字段名称,冗余前端显示用
|
|
17678
|
+
*
|
|
17679
|
+
* @type string
|
|
17680
|
+
*/
|
|
17681
|
+
signFieldName?: string;
|
|
17664
17682
|
/**
|
|
17665
17683
|
* 签名密码-首次登录是否修改密码
|
|
17666
17684
|
*
|
|
@@ -21280,6 +21298,14 @@ export interface UserInfoLogResponse {
|
|
|
21280
21298
|
*/
|
|
21281
21299
|
userId?: string;
|
|
21282
21300
|
}
|
|
21301
|
+
export interface UserLoginConfirmDTO {
|
|
21302
|
+
/**
|
|
21303
|
+
* token
|
|
21304
|
+
*
|
|
21305
|
+
* @type string
|
|
21306
|
+
*/
|
|
21307
|
+
token?: string;
|
|
21308
|
+
}
|
|
21283
21309
|
export interface UserLoginLogDTO {
|
|
21284
21310
|
/**
|
|
21285
21311
|
*
|
|
@@ -21579,6 +21605,12 @@ export interface UserLoginResp {
|
|
|
21579
21605
|
* @type string
|
|
21580
21606
|
*/
|
|
21581
21607
|
ip?: string;
|
|
21608
|
+
/**
|
|
21609
|
+
* 登录互斥
|
|
21610
|
+
*
|
|
21611
|
+
* @type boolean
|
|
21612
|
+
*/
|
|
21613
|
+
kickOut?: boolean;
|
|
21582
21614
|
/**
|
|
21583
21615
|
*
|
|
21584
21616
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gct-paas/api",
|
|
3
|
-
"version": "6.0.0-dev.
|
|
3
|
+
"version": "6.0.0-dev.13",
|
|
4
4
|
"description": "paas 平台底包",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"author": "gct",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=22.22.0",
|
|
18
|
-
"pnpm": ">=
|
|
18
|
+
"pnpm": ">=11.24.0"
|
|
19
19
|
},
|
|
20
20
|
"types": "./es/index.d.ts",
|
|
21
21
|
"main": "./es/index.mjs",
|
|
@@ -107,5 +107,9 @@
|
|
|
107
107
|
"typescript": "^5.9.3",
|
|
108
108
|
"unbuild": "^3.6.1",
|
|
109
109
|
"vite": "^8.0.12"
|
|
110
|
+
},
|
|
111
|
+
"volta": {
|
|
112
|
+
"node": "24.19.0",
|
|
113
|
+
"pnpm": "11.24.0"
|
|
110
114
|
}
|
|
111
115
|
}
|