Files
hipmi-mobile/service/api-client/api-portofolio.ts
Bagasbanuna02 6887f85e6a Poortofoloio
Fix:
- service/api-client/api-portofolio.ts : api edit detail. logo, medsos

### No Issue
2025-09-01 17:10:25 +08:00

67 lines
1.3 KiB
TypeScript

import { apiConfig } from "../api-config";
export async function apiPortofolioCreate({ data }: { data: any }) {
try {
const response = await apiConfig.post(`/mobile/portofolio`, {
data: data,
});
return response.data;
} catch (error) {
throw error;
}
}
export async function apiGetPortofolio({ id }: { id: string }) {
try {
const response = await apiConfig.get(`/mobile/portofolio?id=${id}`);
return response.data;
} catch (error) {
throw error;
}
}
export async function apiGetOnePortofolio({ id }: { id: string }) {
try {
const response = await apiConfig.get(`/mobile/portofolio/${id}`);
return response.data;
} catch (error) {
throw error;
}
}
export async function apiDeletePortofolio({ id }: { id: string }) {
try {
const response = await apiConfig.delete(`/mobile/portofolio/${id}`);
return response.data;
} catch (error) {
throw error;
}
}
export async function apiUpdatePortofolio({
id,
data,
category,
}: {
id: string;
data: any;
category: "detail" | "medsos" | "logo";
}) {
try {
const response = await apiConfig.put(
`/mobile/portofolio/${id}?category=${category}`,
{
data: data,
}
);
return response.data;
} catch (error) {
throw error;
}
}