@gct-paas/api 0.1.6-dev.11 → 0.1.6-dev.12

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.
Files changed (27) hide show
  1. package/dist/index.esm.min.js +1 -1
  2. package/es/apaas/service/api-config.mjs +183 -103
  3. package/es/apaas/service/apis/api.service.d.ts +5 -2
  4. package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
  5. package/es/apaas/service/apis/app-org.service.d.ts +0 -4
  6. package/es/apaas/service/apis/category.service.d.ts +16 -0
  7. package/es/apaas/service/apis/chat.service.d.ts +1 -2
  8. package/es/apaas/service/apis/excel-tmpl.service.d.ts +8 -0
  9. package/es/apaas/service/apis/excel.service.d.ts +2 -4
  10. package/es/apaas/service/apis/field-meta.service.d.ts +13 -0
  11. package/es/apaas/service/apis/medPro.service.d.ts +0 -108
  12. package/es/apaas/service/apis/model-meta.service.d.ts +17 -0
  13. package/es/apaas/service/apis/online-form-instance.service.d.ts +0 -4
  14. package/es/apaas/service/apis/online-form-tmpl.service.d.ts +1 -18
  15. package/es/apaas/service/apis/print.service.d.ts +1 -1
  16. package/es/apaas/service/apis/ss.service.d.ts +0 -9
  17. package/es/apaas/service/apis/trace-log-details.service.d.ts +12 -0
  18. package/es/apaas/service/entities.d.ts +675 -1
  19. package/es/apaas/service/index.d.ts +6 -0
  20. package/es/platform/service/api-config.mjs +8 -6
  21. package/es/platform/service/apis/api.service.d.ts +17 -0
  22. package/es/platform/service/apis/license.service.d.ts +1 -2
  23. package/es/platform/service/apis/org.service.d.ts +4 -0
  24. package/es/platform/service/apis/plugin.service.d.ts +1 -2
  25. package/es/platform/service/apis/tenant.service.d.ts +4 -0
  26. package/es/platform/service/entities.d.ts +6 -12
  27. package/package.json +1 -1
@@ -81,10 +81,6 @@ export interface getDhrFormListQuery extends IObject {
81
81
  * 工单ID
82
82
  */
83
83
  mfgOrderId?: string;
84
- /**
85
- * 模块类型
86
- */
87
- module?: string;
88
84
  /**
89
85
  * 类型(production/rework)
90
86
  */
@@ -2,8 +2,8 @@ import type { AxiosRequestConfig } from 'axios';
2
2
  import type {
3
3
  OnlineFormTmplRequest,
4
4
  ModelBriefInfo,
5
- OnlineFormTmplResponse,
6
5
  ModelMetaDTO,
6
+ OnlineFormTmplResponse,
7
7
  DocumentInfo4Req,
8
8
  OnlineFormTmplModelResponse,
9
9
  SimpleOnlineFormDesignDTO,
@@ -47,16 +47,6 @@ export interface getGetCommunicationConfigQuery extends IObject {
47
47
  */
48
48
  id: string;
49
49
  }
50
- export interface getGetFormTmplByInstIdAndTmplIdQuery extends IObject {
51
- /**
52
- * 表单实例id
53
- */
54
- instId?: string;
55
- /**
56
- * 表单模板id
57
- */
58
- tmplId?: string;
59
- }
60
50
  export interface getGetFormTmplUsedFieldMetaQuery extends IObject {
61
51
  /**
62
52
  * formTmplId
@@ -192,13 +182,6 @@ export interface OnlineFormTmplService {
192
182
  query: getGetCommunicationConfigQuery,
193
183
  config?: Partial<AxiosRequestConfig>,
194
184
  ): Promise<string>;
195
- /**
196
- * 根据表单实例id或表单模板id查询表单模板
197
- */
198
- getGetFormTmplByInstIdAndTmplId(
199
- query: getGetFormTmplByInstIdAndTmplIdQuery,
200
- config?: Partial<AxiosRequestConfig>,
201
- ): Promise<OnlineFormTmplResponse>;
202
185
  /**
203
186
  * 获取表单中使用的字段
204
187
  */
@@ -10,7 +10,7 @@ import type {
10
10
 
11
11
  export interface PrintService {
12
12
  /**
13
- * 打印客户端关联bartender模板目录树下拉
13
+ * btw模板树
14
14
  */
15
15
  getBtwFileTree(
16
16
  config?: Partial<AxiosRequestConfig>,
@@ -1,7 +1,5 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
2
  import type { AxiosRequestConfig } from 'axios';
3
- import type { ExcelValidateResponse } from '../entities';
4
-
5
3
  export interface postUploadExcelQuery extends IObject {
6
4
  /**
7
5
  * headerRowIndex
@@ -25,11 +23,4 @@ export interface SsService {
25
23
  data: UploadFileData,
26
24
  config?: Partial<AxiosRequestConfig>,
27
25
  ): Promise<any>;
28
- /**
29
- * zip上传解析
30
- */
31
- postUploadZip(
32
- data: UploadFileData,
33
- config?: Partial<AxiosRequestConfig>,
34
- ): Promise<IHttpResponse<ExcelValidateResponse>>;
35
26
  }
@@ -18,6 +18,10 @@ export interface getInfoQuery extends IObject {
18
18
  id: string;
19
19
  }
20
20
  export interface getInfoTreeQuery extends IObject {
21
+ /**
22
+ * 模型KEY
23
+ */
24
+ modelKey: string;
21
25
  /**
22
26
  * traceLogId
23
27
  */
@@ -28,6 +32,10 @@ export interface getInfoTreeByIdQuery extends IObject {
28
32
  * id
29
33
  */
30
34
  id: string;
35
+ /**
36
+ * 模型KEY
37
+ */
38
+ modelKey: string;
31
39
  }
32
40
  export interface getPageListQuery extends IObject {
33
41
  /**
@@ -40,6 +48,10 @@ export interface getPageListQuery extends IObject {
40
48
  pageSize?: number;
41
49
  }
42
50
  export interface getPageListByRecodeIdQuery extends IObject {
51
+ /**
52
+ * 模型KEY
53
+ */
54
+ modelKey: string;
43
55
  /**
44
56
  * 页码
45
57
  */