7152-devToTest_2414 #2228

Merged
alexm merged 636 commits from 7152-devToTest_2414 into test 2024-03-28 08:26:34 +00:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit 1dfdd94584 - Show all commits

View File

@ -3,7 +3,7 @@ module.exports = Self => {
description: 'Retrieve the operator items', description: 'Retrieve the operator items',
accessType: 'READ', accessType: 'READ',
returns: { returns: {
type: 'string', type: 'object',
}, },
http: { http: {
path: `/getItemPackingType`, path: `/getItemPackingType`,
@ -23,6 +23,9 @@ module.exports = Self => {
} }
}); });
const itemPackingType = result.itemPackingType(); const itemPackingType = result.itemPackingType();
return itemPackingType?.description;
return {
description: itemPackingType?.description
};
}; };
}; };