@oada/list-lib
Advanced tools
Comparing version 5.0.2 to 5.0.3
@@ -232,3 +232,3 @@ /** | ||
// @ts-expect-error darn errors | ||
if (error?.status === 403 || error?.status === 404) { | ||
if (error?.status === 403 || error?.status === 404 || error?.code === 403 || error?.code === 404) { | ||
// Create it | ||
@@ -235,0 +235,0 @@ await conn.put({ path, data: {}, timeout }); |
{ | ||
"name": "@oada/list-lib", | ||
"version": "5.0.2", | ||
"version": "5.0.3", | ||
"description": "Library for processing items in an OADA list", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -385,3 +385,3 @@ /** | ||
// @ts-expect-error darn errors | ||
if (error?.status === 403 || error?.status === 404) { | ||
if (error?.status === 403 || error?.status === 404 || error?.code === 403 || error?.code === 404) { | ||
// Create it | ||
@@ -388,0 +388,0 @@ await conn.put({ path, data: {}, timeout }); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
117366