feat: update API endpoint, mock auth token, adjust meta schema, and add detail page highlight key

This commit is contained in:
Firman Ramdhani
2026-07-20 14:47:35 +07:00
parent 84ea3c5b3e
commit ac049c7cf7
@@ -376,7 +376,7 @@ describe('BaseRemoteDataServices — Data Transformer Integration', () => {
const result = await services.getMany();
expect(result.data).toEqual({
data: rawDTOs,
meta: { page: 2, limit: 10, total: 2, totalPages: 1 },
meta: { currentPage: 2, itemsPerPage: 10, totalItems: 2, totalPages: 1 },
});
});