@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
30 lines • 1.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Certificate = void 0;
var core_1 = require("@aurahelper/core");
exports.Certificate = {
caSigned: new core_1.BooleanXMLField('caSigned', 'CA Signed')
.setMinApi(36)
.setEditable()
.setRequired(),
encryptedWithPlatformEncryption: new core_1.BooleanXMLField('encryptedWithPlatformEncryption', 'Encrypted With Platform Encryption')
.setMinApi(36)
.setEditable(),
expirationDate: new core_1.DateTimeXMLField('expirationDate', 'Expiration Date')
.setMinApi(36)
.setEditable()
.setFormat('yyyy-mm-dd'),
keySize: new core_1.IntegerXMLField('keySize', 'Key Size')
.setMinApi(36)
.setEditable()
.setAllowedValues([2048, 4096]),
masterLabel: new core_1.StringXMLField('masterLabel', 'Master Label')
.setMinApi(36)
.setEditable()
.setRequired()
.setMaxLength(64),
privateKeyExportable: new core_1.BooleanXMLField('privateKeyExportable', 'Private Key Exportable')
.setMinApi(36)
.setEditable(),
};
//# sourceMappingURL=certificate.js.map