@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.
- package/dist/index.esm.min.js +1 -1
- package/es/apaas/service/api-config.mjs +183 -103
- package/es/apaas/service/apis/api.service.d.ts +5 -2
- package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
- package/es/apaas/service/apis/app-org.service.d.ts +0 -4
- package/es/apaas/service/apis/category.service.d.ts +16 -0
- package/es/apaas/service/apis/chat.service.d.ts +1 -2
- package/es/apaas/service/apis/excel-tmpl.service.d.ts +8 -0
- package/es/apaas/service/apis/excel.service.d.ts +2 -4
- package/es/apaas/service/apis/field-meta.service.d.ts +13 -0
- package/es/apaas/service/apis/medPro.service.d.ts +0 -108
- package/es/apaas/service/apis/model-meta.service.d.ts +17 -0
- package/es/apaas/service/apis/online-form-instance.service.d.ts +0 -4
- package/es/apaas/service/apis/online-form-tmpl.service.d.ts +1 -18
- package/es/apaas/service/apis/print.service.d.ts +1 -1
- package/es/apaas/service/apis/ss.service.d.ts +0 -9
- package/es/apaas/service/apis/trace-log-details.service.d.ts +12 -0
- package/es/apaas/service/entities.d.ts +675 -1
- package/es/apaas/service/index.d.ts +6 -0
- package/es/platform/service/api-config.mjs +8 -6
- package/es/platform/service/apis/api.service.d.ts +17 -0
- package/es/platform/service/apis/license.service.d.ts +1 -2
- package/es/platform/service/apis/org.service.d.ts +4 -0
- package/es/platform/service/apis/plugin.service.d.ts +1 -2
- package/es/platform/service/apis/tenant.service.d.ts +4 -0
- package/es/platform/service/entities.d.ts +6 -12
- package/package.json +1 -1
|
@@ -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
|
*/
|
|
@@ -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
|
*/
|