7167-testToMaster_2414 #2244

Merged
alexm merged 643 commits from 7167-testToMaster_2414 into master 2024-04-04 05:32:41 +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',
accessType: 'READ',
returns: {
type: 'string',
type: 'object',
},
http: {
path: `/getItemPackingType`,
@ -23,6 +23,9 @@ module.exports = Self => {
}
});
const itemPackingType = result.itemPackingType();
return itemPackingType?.description;
return {
description: itemPackingType?.description
};
};
};