| 12345678910111213141516171819202122232425262728293031 |
- /**
- * Generated by orval v7.2.0 🍺
- * Do not edit manually.
- * Api documentation
- * OpenAPI spec version: 1.0.0
- */
- import axios from 'axios';
- // eslint-disable-next-line @typescript-eslint/no-redeclare
- export const PdfCtrlSyncJobStatus202Status = {
- HTML_EXPORT_IN_PROGRESS: 'HTML_EXPORT_IN_PROGRESS',
- HTML_EXPORT_DONE: 'HTML_EXPORT_DONE',
- FAILED: 'FAILED',
- PDF_EXPORT_DONE: 'PDF_EXPORT_DONE',
- };
- // eslint-disable-next-line @typescript-eslint/no-redeclare
- export const PdfCtrlSyncJobStatusBodyStatus = {
- HTML_EXPORT_IN_PROGRESS: 'HTML_EXPORT_IN_PROGRESS',
- HTML_EXPORT_DONE: 'HTML_EXPORT_DONE',
- FAILED: 'FAILED',
- };
- /**
- *
- Sync job pdf convert status with GROWI.
- Register or update job inside pdf-converter with given jobId, expirationDate, and status.
- Return resulting status of job to GROWI.
- */
- export const pdfCtrlSyncJobStatus = (pdfCtrlSyncJobStatusBody, options) => {
- return axios.post(`/pdf/sync-job`, pdfCtrlSyncJobStatusBody, options);
- };
- //# sourceMappingURL=index.js.map
|