Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mailgun-js

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mailgun-js - npm Package Compare versions

Comparing version 0.8.1 to 0.8.2

22

lib/schema.js

@@ -188,3 +188,3 @@ module.exports = {

"method": "DELETE",
"title": "delete",
"title": "delete"
}

@@ -450,2 +450,22 @@ ]

{
"description": "Paginate over list members in the given mailing list",
"href": "/lists/{address}/members/pages",
"method": "GET",
"title": "page",
"properties": {
"subscribed": {
"type": "boolean"
},
"limit": {
"type": "number"
},
"page": {
"type": "string"
},
"address": {
"type": "string"
}
}
},
{
"description": "Retrieves a mailing list member.",

@@ -452,0 +472,0 @@ "href": "/lists/{address}/members/{member_address}",

2

package.json

@@ -8,3 +8,3 @@ {

],
"version": "0.8.1",
"version": "0.8.2",
"homepage": "https://github.com/bojand/mailgun-js",

@@ -11,0 +11,0 @@ "license": "MIT",

@@ -846,2 +846,11 @@ var auth = require('./auth.json');

'test lists().members().pages().page()': function (done) {
mailgun.lists(fixture.mailingList.address).members().pages().page({page: 'first'}, function (err, body) {
assert.ifError(err);
assert.ok(Array.isArray(body.items));
assert.ok(typeof body.paging === 'object');
done();
});
},
'test lists.members().info()': function (done) {

@@ -848,0 +857,0 @@ var data = {

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