typed-chrome-webstore-api
Advanced tools
Comparing version 0.4.9 to 0.4.10
@@ -10,5 +10,6 @@ "use strict"; | ||
isPendingReview() { | ||
return this.error_code === 'CLIENT_ERROR' && this.error_detail.toLowerCase().indexOf('pending review') !== -1; | ||
return (this.error_code === 'CLIENT_ERROR' || this.error_code === 'ITEM_NOT_UPDATABLE') && | ||
this.error_detail.toLowerCase().indexOf('pending review') !== -1; | ||
} | ||
} | ||
exports.ItemErrorEntry = ItemErrorEntry; |
{ | ||
"name": "typed-chrome-webstore-api", | ||
"version": "0.4.9", | ||
"version": "0.4.10", | ||
"description": "Typed Chrome Webstore API to upload/publish extensions", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
29667
606