@@ -1,4 +1,10 @@
-import { IGatherYsProfileFile, IMatterNode, UploadMsg } from '..';
+import {
+ IBusinessProcessFee,
+ IBusinessProcessFeeParam,
+ IGatherYsProfileFile,
+ IMatterNode,
+ UploadMsg,
+} from '..';
export namespace PostApprovalCopyGatherYsProfileFiles {
export type Params = {
@@ -0,0 +1,10 @@
+import { IBusinessProcessFeeParam, IBusinessProcessFee } from '../business';
+
+export namespace PostGetFeeByProcessId {
+ export type Params = {
+ businessID: string;
+ params: IBusinessProcessFeeParam[];
+ };
+ export type Response = Record<string, IBusinessProcessFee>;
+}
@@ -1,2 +1,3 @@
export * from './approvaApi';
export * from './processApi';
+export * from './businessApi';