Skip to content

Commit 13d31bc

Browse files
github-actions[bot]bigabig
authored andcommitted
Update OpenAPI spec and client
1 parent ad288bb commit 13d31bc

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

frontend/src/api/openapi/services/JobService.ts

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -106,43 +106,6 @@ export class JobService {
106106
},
107107
});
108108
}
109-
/**
110-
* Start DuplicateFinder job
111-
* @returns DuplicateFinderJobRead Successful Response
112-
* @throws ApiError
113-
*/
114-
public static startDuplicateFinderJob({
115-
requestBody,
116-
}: {
117-
requestBody: DuplicateFinderInput;
118-
}): CancelablePromise<DuplicateFinderJobRead> {
119-
return __request(OpenAPI, {
120-
method: "POST",
121-
url: "/job/duplicate_finder",
122-
body: requestBody,
123-
mediaType: "application/json",
124-
errors: {
125-
422: `Validation Error`,
126-
},
127-
});
128-
}
129-
/**
130-
* Get DuplicateFinder job
131-
* @returns DuplicateFinderJobRead Successful Response
132-
* @throws ApiError
133-
*/
134-
public static getDuplicateFinderJobById({ jobId }: { jobId: string }): CancelablePromise<DuplicateFinderJobRead> {
135-
return __request(OpenAPI, {
136-
method: "GET",
137-
url: "/job/duplicate_finder/{job_id}",
138-
path: {
139-
job_id: jobId,
140-
},
141-
errors: {
142-
422: `Validation Error`,
143-
},
144-
});
145-
}
146109
/**
147110
* Start Ml job
148111
* @returns MlJobRead Successful Response
@@ -227,6 +190,43 @@ export class JobService {
227190
},
228191
});
229192
}
193+
/**
194+
* Start DuplicateFinder job
195+
* @returns DuplicateFinderJobRead Successful Response
196+
* @throws ApiError
197+
*/
198+
public static startDuplicateFinderJob({
199+
requestBody,
200+
}: {
201+
requestBody: DuplicateFinderInput;
202+
}): CancelablePromise<DuplicateFinderJobRead> {
203+
return __request(OpenAPI, {
204+
method: "POST",
205+
url: "/job/duplicate_finder",
206+
body: requestBody,
207+
mediaType: "application/json",
208+
errors: {
209+
422: `Validation Error`,
210+
},
211+
});
212+
}
213+
/**
214+
* Get DuplicateFinder job
215+
* @returns DuplicateFinderJobRead Successful Response
216+
* @throws ApiError
217+
*/
218+
public static getDuplicateFinderJobById({ jobId }: { jobId: string }): CancelablePromise<DuplicateFinderJobRead> {
219+
return __request(OpenAPI, {
220+
method: "GET",
221+
url: "/job/duplicate_finder/{job_id}",
222+
path: {
223+
job_id: jobId,
224+
},
225+
errors: {
226+
422: `Validation Error`,
227+
},
228+
});
229+
}
230230
/**
231231
* Start Export job
232232
* @returns ExportJobRead Successful Response

0 commit comments

Comments
 (0)