dmvic
Version:
A DMVIC NPM package to manage DMVIC certificate requests
18 lines (16 loc) • 414 B
JavaScript
const SECRET_VALIDATION_RULES = {
requiredKeys: [
'username',
'password',
'clientid',
'environment',
'includeoptionaldata',
'coveragegappolicy',
],
requiredValues: {
environment: ['sandbox', 'production'],
includeoptionaldata: [true, false],
coveragegappolicy: ['strict', 'bypass'],
},
};
export { SECRET_VALIDATION_RULES };