import apiClient from "./index"; // 기술문서 목록 조회 export const findAllTechDoc = (data) => { return apiClient.post(`/techDoc/findAllTechDoc.json`, data); }; // 기술 문서 버전 리스트 목록 조회 export const findAllVer = (data) => { return apiClient.post(`/techDoc/findAllVer.json`, data); }; // 기술 문서 버전 상세 조회 export const findByVer = (data) => { return apiClient.post(`/techDoc/findByVer.json`, data); }; // 기술문서 정보 수정 export const techDocUpdate = (data) => { return apiClient.post(`/techDoc/update.json`, data); }; // 기술 문서 등록 // export const save = (data) => { // return apiClient.post(`/techDoc/save.json`, data); // }; // 기술 문서 버전 등록 // export const verSave = (data) => { // return apiClient.post(`/techDoc/verSave.json`, data); // }; // // 기술 문서 버전 수정 // export const verUpdate = (data) => { // return apiClient.post(`/techDoc/verUpdate.json`, data); // }; 3 // 기술 문서 삭제 export const techDocDelete = (data) => { return apiClient.post(`/techDoc/techDocDelete.json`, data); }; // 기술 문서 버전 삭제 export const verDelete = (data) => { return apiClient.post(`/techDoc/verDelete.json`, data); };