import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type ModifyOwnerContractInput = { contractId: string FormData: FormData } const modifyOwnerContract = (http: HttpClient) => ({ query: ( input: ModifyOwnerContractInput, ): Promise> => { return http.put( `v3/admin/contracts/${input.contractId}/manually_signed_owner_contracts`, input.FormData, { headers: { 'Content-Type': 'multipart/form-data' } }, ) }, }) export default modifyOwnerContract