@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.
@@ -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<boolean>;
1615
+ ): Promise<BtwNodeVO>;
1607
1616
  /**
1608
1617
  * 根据打印机唯一标识key兑换打印机名称
1609
1618
  */
@@ -219,6 +219,10 @@ export interface getModelMetaListQuery extends IObject {
219
219
  *
220
220
  */
221
221
  modifyUserName?: string;
222
+ /**
223
+ * 所属模块(实体、枚举、web页面 、view_model_module/视图模型模块 、data_model/数据模型模块、document_module/单据)
224
+ */
225
+ module?: string;
222
226
  /**
223
227
  *
224
228
  */
@@ -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.12",
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": ">=10.32.0"
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
  }