Socket
Socket
Sign inDemoInstall

campaign

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

campaign - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 1.2.1 Mail Fraud
- `client.send` and `client.sendString` now return only the result from the provider.
# 1.2.0 Spark Plugs

@@ -2,0 +6,0 @@

2

package.json

@@ -14,3 +14,3 @@ {

},
"version": "1.2.0",
"version": "1.2.1",
"licenses": "MIT",

@@ -17,0 +17,0 @@ "keywords": [

@@ -24,11 +24,13 @@ 'use strict';

async.series([
async.apply(validation, model),
async.apply(hydrate, file, model, options),
async.apply(async.waterfall, [
async.series({
validation: async.apply(validation, model),
hydration: async.apply(hydrate, file, model, options),
update: async.apply(async.waterfall, [
async.apply(render, template, model),
updateModel
]),
providerSend
], done);
response: providerSend
}, function (err, results) {
done(err, results ? results.response : results);
});
}

@@ -35,0 +37,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