extend-ai 1.0.2 → 1.0.3
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/package.json
CHANGED
|
@@ -64,7 +64,7 @@ const configConversion_1 = require("../../schema/configConversion");
|
|
|
64
64
|
* if new terminal states are added, polling will still complete.
|
|
65
65
|
*/
|
|
66
66
|
function isTerminalStatus(status) {
|
|
67
|
-
return status !== "PROCESSING" && status !== "PENDING";
|
|
67
|
+
return (status !== "PROCESSING" && status !== "PENDING" && status !== "CANCELLING");
|
|
68
68
|
}
|
|
69
69
|
class ExtractRunsClient extends Client_1.ExtractRunsClient {
|
|
70
70
|
// Implementation
|