@gct-paas/api 6.0.0-dev.8 → 6.0.0-dev.9

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.
@@ -29,6 +29,10 @@ export interface getListQuery extends IObject {
29
29
  * 查询全量信息时传 true,否则只查询简要信息
30
30
  */
31
31
  fullInfo?: boolean;
32
+ /**
33
+ * 来源
34
+ */
35
+ source?: string;
32
36
  /**
33
37
  * 所属模块
34
38
  */
@@ -108,10 +108,6 @@ export interface getListCompleteQuery extends IObject {
108
108
  *
109
109
  */
110
110
  modifyUserName?: string;
111
- /**
112
- * 所属模块(实体、枚举、web页面 、view_model_module/视图模型模块 、data_model/数据模型模块、document_module/单据、pad_module/pad页面设计)
113
- */
114
- module?: string;
115
111
  /**
116
112
  *
117
113
  */
@@ -182,10 +178,6 @@ export interface getPageQuery extends IObject {
182
178
  *
183
179
  */
184
180
  modifyUserName?: string;
185
- /**
186
- * 所属模块(实体、枚举、web页面 、view_model_module/视图模型模块 、data_model/数据模型模块、document_module/单据、pad_module/pad页面设计)
187
- */
188
- module?: string;
189
181
  /**
190
182
  *
191
183
  */
@@ -71,10 +71,6 @@ export interface getDhrFormListQuery extends IObject {
71
71
  * 工单ID
72
72
  */
73
73
  mfgOrderId?: string;
74
- /**
75
- * 模块类型
76
- */
77
- module?: string;
78
74
  /**
79
75
  * 类型(production/rework)
80
76
  */
@@ -381,10 +377,6 @@ export interface getRelateFormPageListQuery extends IObject {
381
377
  * Lot/SN 编号
382
378
  */
383
379
  materialNo: string;
384
- /**
385
- * 模块类型
386
- */
387
- module?: string;
388
380
  /**
389
381
  * 页码
390
382
  */
@@ -42,7 +42,7 @@ export interface getPageListQuery extends IObject {
42
42
  */
43
43
  relationId?: string;
44
44
  /**
45
- * 类型(1 web、2 pda 、3 pad、4 详情页面)
45
+ * 类型(1 web、2 pda 、3 pad、4 详情页面,5 事务)
46
46
  */
47
47
  relationType?: number;
48
48
  /**
@@ -11919,6 +11919,12 @@ export interface GetAppResponse {
11919
11919
  * @type string
11920
11920
  */
11921
11921
  initFailReason?: string;
11922
+ /**
11923
+ *
11924
+ *
11925
+ * @type string
11926
+ */
11927
+ lastVisitTime?: string;
11922
11928
  /**
11923
11929
  *
11924
11930
  *
@@ -12075,6 +12081,12 @@ export interface GetAppResponse {
12075
12081
  * @type string
12076
12082
  */
12077
12083
  tenantId?: string;
12084
+ /**
12085
+ *
12086
+ *
12087
+ * @type string
12088
+ */
12089
+ testLastVisitTime?: string;
12078
12090
  /**
12079
12091
  *
12080
12092
  *
@@ -22547,6 +22559,18 @@ export interface PageDesignerLogResponse {
22547
22559
  * @type string
22548
22560
  */
22549
22561
  designerJson?: string;
22562
+ /**
22563
+ * 详情页设计Json
22564
+ *
22565
+ * @type string
22566
+ */
22567
+ detailDesignerJson?: string;
22568
+ /**
22569
+ * 详情页运行时json
22570
+ *
22571
+ * @type string
22572
+ */
22573
+ detailRuntimeJson?: string;
22550
22574
  /**
22551
22575
  * 主键
22552
22576
  *
@@ -36165,6 +36189,12 @@ export interface TransactionRequest {
36165
36189
  * @type string
36166
36190
  */
36167
36191
  key?: string;
36192
+ /**
36193
+ * logId
36194
+ *
36195
+ * @type string
36196
+ */
36197
+ logId?: string;
36168
36198
  /**
36169
36199
  * 绑定模型key
36170
36200
  *
@@ -5696,7 +5696,8 @@ export const apiConfig = [
5696
5696
  {
5697
5697
  mode: "get",
5698
5698
  method: "getLicenseModuleAuth",
5699
- path: "license/moduleAuth"
5699
+ path: "license/moduleAuth",
5700
+ hasQuery: true
5700
5701
  },
5701
5702
  {
5702
5703
  mode: "post",
@@ -546,6 +546,12 @@ export interface getLicenseGetAppEffectiveLicenseQuery extends IObject {
546
546
  */
547
547
  env: string;
548
548
  }
549
+ export interface getLicenseModuleAuthQuery extends IObject {
550
+ /**
551
+ * 授权模块
552
+ */
553
+ module?: string;
554
+ }
549
555
  export interface getLoginSettingGetQuery extends IObject {
550
556
  /**
551
557
  * code
@@ -583,10 +589,6 @@ export interface getOauth2AuthorizeQuery extends IObject {
583
589
  * 环境参数:test/prod
584
590
  */
585
591
  env?: string;
586
- /**
587
- * 用户登录Token
588
- */
589
- token: string;
590
592
  }
591
593
  export interface postOauth2TokenQuery extends IObject {
592
594
  /**
@@ -1365,7 +1367,10 @@ export interface ApiService {
1365
1367
  /**
1366
1368
  * 判断对应模块是否已进行授权
1367
1369
  */
1368
- getLicenseModuleAuth(config?: Partial<AxiosRequestConfig>): Promise<boolean>;
1370
+ getLicenseModuleAuth(
1371
+ query: getLicenseModuleAuthQuery,
1372
+ config?: Partial<AxiosRequestConfig>,
1373
+ ): Promise<boolean>;
1369
1374
  /**
1370
1375
  * 用户登录日志分页查询
1371
1376
  */
@@ -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
  */
@@ -81,6 +81,10 @@ export interface getUserPageListQuery extends IObject {
81
81
  * 排序方式:ASC/DESC, 不传默认 ASC
82
82
  */
83
83
  sortType?: string;
84
+ /**
85
+ * 参数来源,0企业后台管理、1租户后台管理
86
+ */
87
+ source?: number;
84
88
  /**
85
89
  * 创建开始时间
86
90
  */
@@ -131,6 +131,10 @@ export interface getManagementOrgUserPageListQuery extends IObject {
131
131
  * 排序方式:ASC/DESC, 不传默认 ASC
132
132
  */
133
133
  sortType?: string;
134
+ /**
135
+ * 参数来源,0企业后台管理、1租户后台管理
136
+ */
137
+ source?: number;
134
138
  /**
135
139
  * 创建开始时间
136
140
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gct-paas/api",
3
- "version": "6.0.0-dev.8",
3
+ "version": "6.0.0-dev.9",
4
4
  "description": "paas 平台底包",
5
5
  "type": "module",
6
6
  "keywords": [