New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codefresh-io/audit

Package Overview
Dependencies
Maintainers
20
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codefresh-io/audit - npm Package Compare versions

Comparing version

to
1.1.1

lib/audit/__tests__/audit.logic.spec.js

9

lib/audit/audit.dal.js

@@ -19,4 +19,13 @@ /* eslint class-methods-use-this: 0 */

}
getEntitiesList(accountId) {
return Audit.findAll({
where: { accountId },
attributes: ['entity', 'action'],
distinct: true,
raw: true
});
}
}
module.exports = new AuditDal();

@@ -37,4 +37,13 @@ /* eslint class-methods-use-this: 0 */

async getEntitiesList(accountId) {
const list = await auditDal.getEntitiesList(accountId);
return _.reduce(list, (result, raw) => {
(result[raw.entity] || (result[raw.entity] = [])).push(raw.action);
return result;
}, {});
}
}
module.exports = new Audit();

4

package.json
{
"name": "@codefresh-io/audit",
"version": "1.1.0",
"version": "1.1.1",
"description": "Receive and collect audit logs",

@@ -55,3 +55,3 @@ "main": "lib/index.js",

"global": {
"branches": 40,
"branches": 50,
"functions": 50,

@@ -58,0 +58,0 @@ "lines": 50,