Changes
Build and Push Docker Images / build (push) Failing after 28s

This commit is contained in:
2026-05-06 17:45:05 +03:00
parent 64b0219038
commit b154fe51c3
15 changed files with 50 additions and 110 deletions
+3 -2
View File
@@ -1,5 +1,6 @@
using Refit;
using Models.Requests;
using CvMatcher.Models.Responses;
namespace Api.Clients.Api.Contracts;
@@ -7,8 +8,8 @@ public interface ICvMatcherApi
{
[Multipart]
[Post("/api/cv/upload")]
Task<HttpResponseMessage> Upload([AliasAs("cv")] StreamPart cv, [AliasAs("gdprConsent")] bool gdprConsent);
Task<CvUploadResponse> Upload([AliasAs("cv")] StreamPart cv, [AliasAs("gdprConsent")] bool gdprConsent);
[Post("/api/cv/match-job")]
Task<HttpResponseMessage> MatchJob([Body] JobMatchRequest request);
Task<JobMatchResponse> MatchJob([Body] JobMatchRequest request);
}