Refactor decode to match existing partner.

This commit is contained in:
Patrick Fic
2025-03-20 13:44:23 -07:00
parent 45209bd9e4
commit 4310b3779a
10 changed files with 83 additions and 7 deletions

View File

@@ -57,6 +57,6 @@ const DecodeStl = async (
//Apply business logic transfomrations.
//We don't have an inspection date, we instead have `date_estimated`
return { cieca_stl: rawStlData };
return { cieca_stl: { data: rawStlData } };
};
export default DecodeStl;