@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
29 lines • 1.11 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlatformEventSubscriptionConfig = void 0;
var core_1 = require("@aurahelper/core");
exports.PlatformEventSubscriptionConfig = {
batchSize: new core_1.IntegerXMLField('batchSize', 'Batch Size')
.setMinApi(51)
.setEditable()
.setDefaultValue(2000)
.setMinValue(1)
.setMaxValue(2000),
isProtected: new core_1.BooleanXMLField('isProtected', 'Is Protected')
.setMinApi(51)
.setEditable(),
masterLabel: new core_1.BooleanXMLField('masterLabel', 'Master Label')
.setMinApi(51)
.setEditable()
.setRequired(),
platformEventConsumer: new core_1.BooleanXMLField('platformEventConsumer', 'Platform Event Consumer')
.setMinApi(51)
.setEditable()
.setRequired(),
user: new core_1.StringXMLField('user', 'User')
.setMinApi(51)
.setEditable()
.setRequired()
.linkFieldToSObject('User', 'Username')
};
//# sourceMappingURL=platformEventSubscriberConfig.js.map