@aurahelper/xml-definitions
Version:
Powerfull Libraries to get the XML Definitions of ALL XML Salesforce Metadata Files. Support All API Versions up to API 53.0. You can get the definition of one or more XML files for a specific version of Salesforce. For Example: You can get the XML Defini
46 lines • 2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QueueRoutingConfig = void 0;
var core_1 = require("@aurahelper/core");
exports.QueueRoutingConfig = {
capacityPercentage: new core_1.DoubleXMLField('capacityPercentage', 'Capacity Percentage')
.setMinApi(44)
.setEditable(),
capacityWeight: new core_1.DoubleXMLField('capacityWeight', 'Capacity Weight')
.setMinApi(44)
.setEditable(),
dropAdditionalSkillsTimeout: new core_1.IntegerXMLField('dropAdditionalSkillsTimeout', 'Drop Additional Skills Timeout')
.setMinApi(44)
.setEditable(),
isAttributeBased: new core_1.BooleanXMLField('isAttributeBased', 'Is Attribute Based')
.setMinApi(44)
.setEditable(),
label: new core_1.StringXMLField('label', 'Label')
.setMinApi(44)
.setEditable()
.setRequired(),
pushTimeout: new core_1.IntegerXMLField('pushTimeout', 'Push Timeout')
.setMinApi(44)
.setEditable(),
queueOverflowAssignee: new core_1.StringXMLField('queueOverflowAssignee', 'Queue Overflow Assignee')
.setMinApi(44)
.setEditable()
.linkFieldToSObject('Queue'),
routingModel: new core_1.EnumXMLField('routingModel', 'Routing Model')
.setMinApi(44)
.setEditable()
.setRequired()
.addEnumValue('Least Active', 'LEAST_ACTIVE')
.addEnumValue('Most Available', 'MOST_AVAILABLE')
.addEnumValue('External Routing', 'EXTERNAL_ROUTING'),
routingPriority: new core_1.IntegerXMLField('routingPriority', 'Routing Priority')
.setMinApi(44)
.setEditable()
.setRequired()
.setMinValue(0),
userOverflowAssignee: new core_1.StringXMLField('userOverflowAssignee', 'User Overflow Assignee')
.setMinApi(44)
.setEditable()
.linkFieldToSObject('User', 'Username'),
};
//# sourceMappingURL=queueRoutingConfig.js.map