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

@robobanky/adaptors

Package Overview
Dependencies
Maintainers
2
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@robobanky/adaptors - npm Package Compare versions

Comparing version 1.4.19 to 1.4.20

3

dist/monzo-adaptor/MonzoAdaptor/MonzoAdaptor.js

@@ -74,3 +74,3 @@ "use strict";

console.info('MonzoAdaptor.readPotsByAccount', `received ${pots.length} pot(s)`);
return pots.filter((pot) => pot.deleted === true).map(translations_1.toJar);
return pots.filter((pot) => pot.deleted !== true).map(translations_1.toJar);
}

@@ -94,2 +94,3 @@ async readBankAccounts() {

const jars = jarsPerAccount.reduce((allJars, accountJars) => allJars.concat(accountJars), []);
console.log('MonzoAdaptor.readCashAccounts:jarsPerAccount', jarsPerAccount);
console.log('MonzoAdaptor.readCashAccounts', [...bankAccounts, ...jars]);

@@ -96,0 +97,0 @@ return [...bankAccounts, ...jars];

{
"name": "@robobanky/adaptors",
"version": "1.4.19",
"version": "1.4.20",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "types": "src/index.ts",

@@ -106,3 +106,3 @@ import axios, { AxiosError, AxiosInstance, AxiosResponse } from 'axios'

return pots.filter((pot: MonzoPot) => pot.deleted === true).map(toJar)
return pots.filter((pot: MonzoPot) => pot.deleted !== true).map(toJar)
}

@@ -142,2 +142,3 @@

console.log('MonzoAdaptor.readCashAccounts:jarsPerAccount', jarsPerAccount)
console.log('MonzoAdaptor.readCashAccounts', [...bankAccounts, ...jars])

@@ -144,0 +145,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc