2025-06-23 09:37:53 +05:30
|
|
|
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
|
|
|
|
|
|
|
|
|
|
export const createVersionApi = async (projectId: string, createdBy: string, hierarchyVersion: string, versionName: string, description: string) => {
|
|
|
|
|
try {
|
|
|
|
|
const response = await fetch(
|
|
|
|
|
`${url_Backend_dwinzo}/api/V1/generateVersion`,
|
|
|
|
|
{
|
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
Authorization: "Bearer <access_token>",
|
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
|
token: localStorage.getItem("token") || "",
|
|
|
|
|
refresh_token: localStorage.getItem("refreshToken") || "",
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
projectId,
|
|
|
|
|
createdBy,
|
|
|
|
|
hierarchyVersion,
|
|
|
|
|
versionName,
|
|
|
|
|
description
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
);
|
2025-06-24 15:38:05 +05:30
|
|
|
const newAccessToken = response.headers.get("x-access-token");
|
|
|
|
|
if (newAccessToken) {
|
|
|
|
|
//console.log("New token received:", newAccessToken);
|
|
|
|
|
localStorage.setItem("token", newAccessToken);
|
|
|
|
|
}
|
2025-06-23 09:37:53 +05:30
|
|
|
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error("Failed to create Version History");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result = await response.json();
|
|
|
|
|
return result;
|
|
|
|
|
} catch (error) {
|
|
|
|
|
echo.error("Failed to create Version History");
|
|
|
|
|
if (error instanceof Error) {
|
|
|
|
|
console.log(error.message);
|
|
|
|
|
} else {
|
|
|
|
|
console.log("An unknown error occurred");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|