UNPKG

@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

44 lines 1.83 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WorkSkillRouting = void 0; var core_1 = require("@aurahelper/core"); exports.WorkSkillRouting = { isActive: new core_1.BooleanXMLField('isActive', 'Is Active') .setMinApi(46) .setEditable() .setRequired(), masterLabel: new core_1.StringXMLField('masterLabel', 'Master Label') .setMinApi(46) .setEditable() .setRequired(), relatedEntity: new core_1.StringXMLField('relatedEntity', 'Related Entity') .setMinApi(46) .setEditable() .setRequired() .setMetadataType(core_1.MetadataTypes.CUSTOM_OBJECT), workSkillRoutingAttributes: new core_1.ArrayXMLField('workSkillRoutingAttributes', 'Work Skill Routing Attributes') .setMinApi(46) .setEditable() .setFieldKey('field') .addField('field', new core_1.StringXMLField('field', 'Field') .setEditable() .setRequired()) .addField('isAdditionalSkill', new core_1.BooleanXMLField('isAdditionalSkill', 'Is Additional Skill') .setEditable()) .addField('skill', new core_1.StringXMLField('skill', 'Skill') .setEditable() .setRequired() .setMetadataType(core_1.MetadataTypes.SKILL)) .addField('skillLevel', new core_1.IntegerXMLField('skillLevel', 'Skill Level') .setEditable() .setMinValue(0) .setMaxValue(10)) .addField('skillPriority', new core_1.IntegerXMLField('skillPriority', 'Skill Priority') .setMinApi(49) .setEditable() .setMinValue(0) .setMaxValue(10)) .addField('value', new core_1.StringXMLField('value', 'Value') .setEditable()) }; //# sourceMappingURL=workSkillRouting.js.map