-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Labels
Description
Is your feature request related to a problem? Please describe.
pollForProcessingImage now returns an object instead of a simple boolean. This would be considered a breaking change as the error handling may rely on that falsy response.
export interface PollForProcessingImageResponse {
status: number;
success: boolean;
error?: string;
}
the goal of that work is to provide additional context of an error, so for instance, you can log the error in development context, like this: