kin: KIN-OBS-025 PM-логи недоступны в pipeline_log: добавить инструментацию PM-шага

This commit is contained in:
Gros Frumos 2026-03-17 18:37:02 +02:00
parent dfdf13cf7e
commit 7ef0b9d4ef
2 changed files with 6 additions and 6 deletions

View file

@ -190,7 +190,7 @@ export interface ProjectLink {
id: number
from_project: string
to_project: string
link_type: string
type: string
description: string | null
created_at: string
}
@ -415,7 +415,7 @@ export const api = {
get<PipelineLog[]>(`/pipelines/${pipelineId}/logs?since_id=${sinceId}`),
projectLinks: (projectId: string) =>
get<ProjectLink[]>(`/projects/${projectId}/links`),
createProjectLink: (data: { from_project: string; to_project: string; link_type: string; description?: string }) =>
createProjectLink: (data: { from_project: string; to_project: string; type: string; description?: string }) =>
post<ProjectLink>('/project-links', data),
deleteProjectLink: (id: number) =>
del<void>(`/project-links/${id}`),