feat: global ui & functional update

This commit is contained in:
ivannoskov
2026-01-21 22:43:54 +03:00
parent 8958d89d12
commit 619fd5c1ef
32 changed files with 3803 additions and 1325 deletions

View File

@@ -21,6 +21,15 @@ export const creativesApi = {
{ params }
),
/**
* Get list of creatives for a specific project
*/
listByProject: (workspaceId: string, projectId: string) =>
api.get<PaginatedResponse<Creative>>(
`/workspaces/${workspaceId}/creatives`,
{ params: { project_id: projectId } }
),
/**
* Get single creative
*/