@oro-ai/sdk 1.0.16 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/generated/sdk.gen.ts +1 -1
- package/src/generated/types.gen.ts +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2741,7 +2741,7 @@ type UpdateProgressData = {
|
|
|
2741
2741
|
};
|
|
2742
2742
|
};
|
|
2743
2743
|
type UpdateProgressResponse = (ProgressUpdateResponse);
|
|
2744
|
-
type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | NotRunOwnerError | HTTPValidationError);
|
|
2744
|
+
type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | (NotRunOwnerError | RunAlreadyCompleteError) | HTTPValidationError);
|
|
2745
2745
|
type PresignUploadData = {
|
|
2746
2746
|
body: PresignUploadRequest;
|
|
2747
2747
|
};
|
|
@@ -3261,7 +3261,7 @@ declare const claimWork: <ThrowOnError extends boolean = false>(options?: Option
|
|
|
3261
3261
|
declare const heartbeat: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<HeartbeatData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<HeartbeatResponse, HeartbeatError, ThrowOnError>;
|
|
3262
3262
|
/**
|
|
3263
3263
|
* Update progress
|
|
3264
|
-
* Report per-problem progress during evaluation.
|
|
3264
|
+
* Report per-problem progress during evaluation.
|
|
3265
3265
|
*/
|
|
3266
3266
|
declare const updateProgress: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UpdateProgressData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProgressUpdateResponse, UpdateProgressError, ThrowOnError>;
|
|
3267
3267
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2741,7 +2741,7 @@ type UpdateProgressData = {
|
|
|
2741
2741
|
};
|
|
2742
2742
|
};
|
|
2743
2743
|
type UpdateProgressResponse = (ProgressUpdateResponse);
|
|
2744
|
-
type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | NotRunOwnerError | HTTPValidationError);
|
|
2744
|
+
type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | (NotRunOwnerError | RunAlreadyCompleteError) | HTTPValidationError);
|
|
2745
2745
|
type PresignUploadData = {
|
|
2746
2746
|
body: PresignUploadRequest;
|
|
2747
2747
|
};
|
|
@@ -3261,7 +3261,7 @@ declare const claimWork: <ThrowOnError extends boolean = false>(options?: Option
|
|
|
3261
3261
|
declare const heartbeat: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<HeartbeatData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<HeartbeatResponse, HeartbeatError, ThrowOnError>;
|
|
3262
3262
|
/**
|
|
3263
3263
|
* Update progress
|
|
3264
|
-
* Report per-problem progress during evaluation.
|
|
3264
|
+
* Report per-problem progress during evaluation.
|
|
3265
3265
|
*/
|
|
3266
3266
|
declare const updateProgress: <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UpdateProgressData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<ProgressUpdateResponse, UpdateProgressError, ThrowOnError>;
|
|
3267
3267
|
/**
|
package/package.json
CHANGED
package/src/generated/sdk.gen.ts
CHANGED
|
@@ -322,7 +322,7 @@ export const heartbeat = <ThrowOnError extends boolean = false>(options: Options
|
|
|
322
322
|
|
|
323
323
|
/**
|
|
324
324
|
* Update progress
|
|
325
|
-
* Report per-problem progress during evaluation.
|
|
325
|
+
* Report per-problem progress during evaluation.
|
|
326
326
|
*/
|
|
327
327
|
export const updateProgress = <ThrowOnError extends boolean = false>(options: OptionsLegacyParser<UpdateProgressData, ThrowOnError>) => {
|
|
328
328
|
return (options?.client ?? client).post<UpdateProgressResponse, UpdateProgressError, ThrowOnError>({
|
|
@@ -2935,7 +2935,7 @@ export type UpdateProgressData = {
|
|
|
2935
2935
|
|
|
2936
2936
|
export type UpdateProgressResponse = (ProgressUpdateResponse);
|
|
2937
2937
|
|
|
2938
|
-
export type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | NotRunOwnerError | HTTPValidationError);
|
|
2938
|
+
export type UpdateProgressError = (InvalidProblemIdError | EvalRunNotFoundError | (NotRunOwnerError | RunAlreadyCompleteError) | HTTPValidationError);
|
|
2939
2939
|
|
|
2940
2940
|
export type PresignUploadData = {
|
|
2941
2941
|
body: PresignUploadRequest;
|