The ability to use V3 Create Nested works.

This commit is contained in:
Scott Idem
2026-01-05 19:10:07 -05:00
parent 45f7393ee3
commit d066da9047
4 changed files with 237 additions and 6 deletions

View File

@@ -124,7 +124,10 @@ export const post_object = async function post_object({
console.warn('404 Not Found. Returning null.');
return null; // Returning null since there were no results
}
throw new Error(`HTTP error! status: ${response.status}`);
const errorBody = await response.text();
console.error(`HTTP error! status: ${response.status}`, errorBody);
throw new Error(`HTTP error! status: ${response.status} - ${errorBody}`);
}
if (!return_blob) {