Version 0.6.0
🎉 This release implements Certificate Revocation List and requires MongoDB >= 5.x. If you don't want to use MongoDB to store CRL,
read how to write your own CRL management system.
- Downloading and caching rules, CRL data and DSCs using
Servicemodule now requiressetUpandtearDowncalls
const {Service} = require('verificac19-sdk');
const main = async () => {
await Service.setUp();
await Service.updateAll();
await Service.tearDown();
}checkRulesis now async
const rulesOk = await Validator.checkRules(myDCC).result;