mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
13 lines
503 B
TypeScript
13 lines
503 B
TypeScript
import api from '@/lib/api-client';
|
|
import { IPageHistory } from '@/features/page-history/types/page.types';
|
|
|
|
export async function getPageHistoryList(pageId: string): Promise<IPageHistory[]> {
|
|
const req = await api.post<IPageHistory[]>('/pages/history', { pageId });
|
|
return req.data as IPageHistory[];
|
|
}
|
|
|
|
export async function getPageHistoryById(id: string): Promise<IPageHistory> {
|
|
const req = await api.post<IPageHistory>('/pages/history/details', { id });
|
|
return req.data as IPageHistory;
|
|
}
|