16 lines
631 B
TypeScript
16 lines
631 B
TypeScript
import { ofetch } from 'ofetch'
|
|
|
|
// const VOID = "https://gateway.davaocity.gov.ph/api/pops/voidOP.ashx?oprefid="
|
|
const API = import.meta.env.VITE_BACKEND
|
|
|
|
export default async (application: string) => {
|
|
try {
|
|
// const fetch = await ofetch(VOID + application, { parseResponse: JSON.parse, retry: 3, retryDelay: 500, retryStatusCodes: [400, 404, 405, 500, 502] })
|
|
|
|
const fetch = await ofetch(API + `pops/voidOP/${application}/void-pops`, { parseResponse: JSON.parse, retry: 3, retryDelay: 500, retryStatusCodes: [400, 404, 405, 500, 502] })
|
|
const result = fetch
|
|
return result
|
|
} catch {
|
|
return null
|
|
}
|
|
}
|