xyvcard-itsm-flow 0.0.3 → 0.0.5
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/{edit-DyWBWyHi.mjs → edit-CWxy8_xc.mjs} +1 -1
- package/dist/{edit.vue_vue_type_script_setup_true_lang-CUxhR_sw.mjs → edit.vue_vue_type_script_setup_true_lang-Dxn9JNKd.mjs} +1 -1
- package/dist/{index-DOllcHrQ.mjs → index-C_jhIPZS.mjs} +2 -2
- package/dist/{index-Cw4OSiko.mjs → index-D2S33QtO.mjs} +65 -65
- package/dist/index-DKtAcP6b.mjs +1582 -0
- package/dist/index.mjs +1 -1
- package/package.json +63 -63
- package/dist/index-wmDI5TRw.mjs +0 -1922
- package/dts/api/itsm-flow/types.d.ts +0 -11
- package/dts/api/itsm-flow-acceptance/index.d.ts +0 -20
- package/dts/api/itsm-flow-reckoning/index.d.ts +0 -20
- package/dts/views/itsm-flow/projectAcceptance/index.vue.d.ts +0 -2
- package/dts/views/itsm-flow/serviceOrder/index.vue.d.ts +0 -2
- package/dts/views/itsm-flow/settlement/index.vue.d.ts +0 -2
- package/dts/views/itsm-flow-acceptance/edit.vue.d.ts +0 -28
- package/dts/views/itsm-flow-acceptance/index.vue.d.ts +0 -2
- package/dts/views/itsm-flow-reckoning/edit.vue.d.ts +0 -28
- package/dts/views/itsm-flow-reckoning/index.vue.d.ts +0 -2
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { EntityCreateReq, FilesReq } from "jmash-core";
|
|
2
|
-
export interface ServiceOrderFormReq extends EntityCreateReq {
|
|
3
|
-
contractId?: string;
|
|
4
|
-
workContent?: string;
|
|
5
|
-
}
|
|
6
|
-
export interface projectAcceptanceFormReq extends EntityCreateReq {
|
|
7
|
-
orderId?: string;
|
|
8
|
-
acceptancePhase?: string;
|
|
9
|
-
files?: Array<FilesReq>;
|
|
10
|
-
groupMember?: string;
|
|
11
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { AxiosPromise } from "axios";
|
|
2
|
-
import type { ItsmFlowAcceptanceApi, ItsmFlowAcceptanceReq, ItsmFlowAcceptanceModel, ItsmFlowAcceptancePage, ItsmFlowAcceptanceList, ItsmFlowAcceptanceKey, ItsmFlowAcceptanceCreateReq, ItsmFlowAcceptanceUpdateReq, ItsmFlowAcceptanceExportReq, ItsmFlowAcceptanceImportReq } from "./types";
|
|
3
|
-
declare class ItsmFlowAcceptanceApiImpl implements ItsmFlowAcceptanceApi {
|
|
4
|
-
getKey(model: ItsmFlowAcceptanceModel): ItsmFlowAcceptanceKey;
|
|
5
|
-
findPage(query?: ItsmFlowAcceptanceReq): AxiosPromise<ItsmFlowAcceptancePage>;
|
|
6
|
-
findList(query?: ItsmFlowAcceptanceReq): AxiosPromise<ItsmFlowAcceptanceList>;
|
|
7
|
-
findById(query: ItsmFlowAcceptanceKey): AxiosPromise<ItsmFlowAcceptanceModel>;
|
|
8
|
-
create(data: ItsmFlowAcceptanceCreateReq): AxiosPromise<ItsmFlowAcceptanceModel>;
|
|
9
|
-
update(data: ItsmFlowAcceptanceUpdateReq): AxiosPromise<ItsmFlowAcceptanceModel>;
|
|
10
|
-
move(key: ItsmFlowAcceptanceKey, up: boolean): AxiosPromise<boolean>;
|
|
11
|
-
enable(key: ItsmFlowAcceptanceKey, enable: boolean): AxiosPromise<boolean>;
|
|
12
|
-
delete(query: ItsmFlowAcceptanceKey): AxiosPromise<ItsmFlowAcceptanceModel>;
|
|
13
|
-
batchDelete(keys: ItsmFlowAcceptanceKey[]): AxiosPromise<number>;
|
|
14
|
-
downloadTemplate(): AxiosPromise;
|
|
15
|
-
importExcel(data: ItsmFlowAcceptanceImportReq): AxiosPromise<string>;
|
|
16
|
-
exportExcel(queryParams: ItsmFlowAcceptanceExportReq): AxiosPromise;
|
|
17
|
-
exportPdf(queryParams: ItsmFlowAcceptanceExportReq): AxiosPromise;
|
|
18
|
-
}
|
|
19
|
-
declare const itsmFlowAcceptanceApi: ItsmFlowAcceptanceApiImpl;
|
|
20
|
-
export { itsmFlowAcceptanceApi };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { AxiosPromise } from "axios";
|
|
2
|
-
import type { ItsmFlowReckoningApi, ItsmFlowReckoningReq, ItsmFlowReckoningModel, ItsmFlowReckoningPage, ItsmFlowReckoningList, ItsmFlowReckoningKey, ItsmFlowReckoningCreateReq, ItsmFlowReckoningUpdateReq, ItsmFlowReckoningExportReq, ItsmFlowReckoningImportReq } from "./types";
|
|
3
|
-
declare class ItsmFlowReckoningApiImpl implements ItsmFlowReckoningApi {
|
|
4
|
-
getKey(model: ItsmFlowReckoningModel): ItsmFlowReckoningKey;
|
|
5
|
-
findPage(query?: ItsmFlowReckoningReq): AxiosPromise<ItsmFlowReckoningPage>;
|
|
6
|
-
findList(query?: ItsmFlowReckoningReq): AxiosPromise<ItsmFlowReckoningList>;
|
|
7
|
-
findById(query: ItsmFlowReckoningKey): AxiosPromise<ItsmFlowReckoningModel>;
|
|
8
|
-
create(data: ItsmFlowReckoningCreateReq): AxiosPromise<ItsmFlowReckoningModel>;
|
|
9
|
-
update(data: ItsmFlowReckoningUpdateReq): AxiosPromise<ItsmFlowReckoningModel>;
|
|
10
|
-
move(key: ItsmFlowReckoningKey, up: boolean): AxiosPromise<boolean>;
|
|
11
|
-
enable(key: ItsmFlowReckoningKey, enable: boolean): AxiosPromise<boolean>;
|
|
12
|
-
delete(query: ItsmFlowReckoningKey): AxiosPromise<ItsmFlowReckoningModel>;
|
|
13
|
-
batchDelete(keys: ItsmFlowReckoningKey[]): AxiosPromise<number>;
|
|
14
|
-
downloadTemplate(): AxiosPromise;
|
|
15
|
-
importExcel(data: ItsmFlowReckoningImportReq): AxiosPromise<string>;
|
|
16
|
-
exportExcel(queryParams: ItsmFlowReckoningExportReq): AxiosPromise;
|
|
17
|
-
exportPdf(queryParams: ItsmFlowReckoningExportReq): AxiosPromise;
|
|
18
|
-
}
|
|
19
|
-
declare const itsmFlowReckoningApi: ItsmFlowReckoningApiImpl;
|
|
20
|
-
export { itsmFlowReckoningApi };
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { type PropType } from "vue";
|
|
2
|
-
import type { ItsmFlowAcceptanceKey } from "@/api/itsm-flow-acceptance/types";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
entityKey: {
|
|
5
|
-
type: PropType<ItsmFlowAcceptanceKey>;
|
|
6
|
-
default: () => void;
|
|
7
|
-
};
|
|
8
|
-
modelValue: {
|
|
9
|
-
type: PropType<boolean>;
|
|
10
|
-
};
|
|
11
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
refresh: (...args: any[]) => void;
|
|
13
|
-
"update:modelValue": (value: boolean) => void;
|
|
14
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
entityKey: {
|
|
16
|
-
type: PropType<ItsmFlowAcceptanceKey>;
|
|
17
|
-
default: () => void;
|
|
18
|
-
};
|
|
19
|
-
modelValue: {
|
|
20
|
-
type: PropType<boolean>;
|
|
21
|
-
};
|
|
22
|
-
}>> & Readonly<{
|
|
23
|
-
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
25
|
-
}>, {
|
|
26
|
-
entityKey: ItsmFlowAcceptanceKey;
|
|
27
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { type PropType } from "vue";
|
|
2
|
-
import type { ItsmFlowReckoningKey } from "@/api/itsm-flow-reckoning/types";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
entityKey: {
|
|
5
|
-
type: PropType<ItsmFlowReckoningKey>;
|
|
6
|
-
default: () => void;
|
|
7
|
-
};
|
|
8
|
-
modelValue: {
|
|
9
|
-
type: PropType<boolean>;
|
|
10
|
-
};
|
|
11
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
refresh: (...args: any[]) => void;
|
|
13
|
-
"update:modelValue": (value: boolean) => void;
|
|
14
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
entityKey: {
|
|
16
|
-
type: PropType<ItsmFlowReckoningKey>;
|
|
17
|
-
default: () => void;
|
|
18
|
-
};
|
|
19
|
-
modelValue: {
|
|
20
|
-
type: PropType<boolean>;
|
|
21
|
-
};
|
|
22
|
-
}>> & Readonly<{
|
|
23
|
-
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
25
|
-
}>, {
|
|
26
|
-
entityKey: ItsmFlowReckoningKey;
|
|
27
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
-
export default _default;
|