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

40 lines 1.68 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PathAssistant = void 0; var core_1 = require("@aurahelper/core"); exports.PathAssistant = { active: new core_1.BooleanXMLField('active', 'Active') .setMinApi(34) .setEditable(), entityName: new core_1.StringXMLField('entityName', 'Entity Name') .setMinApi(34) .setEditable() .setRequired() .setMetadataType(core_1.MetadataTypes.CUSTOM_OBJECT), fieldName: new core_1.StringXMLField('fieldName', 'Field Name') .setMinApi(34) .setEditable() .setRequired() .setMetadataType(core_1.MetadataTypes.CUSTOM_FIELD), masterLabel: new core_1.StringXMLField('masterLabel', 'Master Label') .setMinApi(34) .setEditable() .setRequired(), pathAssistantSteps: new core_1.ArrayXMLField('pathAssistantSteps', 'Path Assistant Steps') .setMinApi(34) .setEditable() .setFieldKey('picklistValueName') .setSortOrder(undefined) .addField('fieldNames', new core_1.ArrayXMLField('fieldNames', 'Field Names') .setEditable()) .addField('info', new core_1.StringXMLField('info', 'Info') .setEditable()) .addField('picklistValueName', new core_1.StringXMLField('picklistValueName', 'Picklist Value Name') .setEditable()), recordTypeName: new core_1.StringXMLField('recordTypeName', 'Record Type Name') .setMinApi(34) .setEditable() .setRequired() .setMetadataType(core_1.MetadataTypes.RECORD_TYPE), }; //# sourceMappingURL=pathAssistant.js.map