8355-testToMaster #3336

Merged
alexm merged 241 commits from 8355-testToMaster into master 2025-01-07 06:44:57 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit 55483f8e6b - Show all commits

View File

@ -88,6 +88,11 @@ module.exports = Self => {
arg: 'alertLevel', arg: 'alertLevel',
type: 'number', type: 'number',
description: `The alert level of the tickets` description: `The alert level of the tickets`
},
{
arg: 'packing',
type: 'string',
description: `The packing of the items`
} }
], ],
returns: { returns: {
@ -155,6 +160,9 @@ module.exports = Self => {
case 'clientFk': case 'clientFk':
param = `t.${param}`; param = `t.${param}`;
return {[param]: value}; return {[param]: value};
case 'packing':
param = `i.${param}`;
return {[param]: value};
} }
}); });