Socket
Socket
Sign inDemoInstall

sentry-api

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sentry-api - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

26

docs/data.json

@@ -6,3 +6,3 @@ {

"url": "https://github.com/pifantastic/node-sentry-api",
"version": "0.0.3"
"version": "0.0.5"
},

@@ -581,2 +581,26 @@ "files": {

{
"file": "lib/organizations.js",
"line": 70,
"description": "Retrieve an organization's projects.",
"itemtype": "method",
"name": "projects",
"params": [
{
"name": "orgSlug",
"description": "Organization slug.",
"type": "String"
},
{
"name": "callback",
"description": "",
"type": "Function"
}
],
"return": {
"description": "",
"type": "Promise"
},
"class": "Organizations"
},
{
"file": "lib/projects.js",

@@ -583,0 +607,0 @@ "line": 14,

@@ -70,2 +70,15 @@ var util = require('util');

/**
* Retrieve an organization's projects.
*
* @method projects
* @param {String} orgSlug Organization slug.
* @param {Function} callback
* @return {Promise}
*/
Organizations.prototype.projects = function(orgSlug, callback) {
var path = util.format('organizations/%s/projects/', orgSlug);
return this.client.get(path, callback);
}
module.exports = Organizations;

2

package.json
{
"name": "sentry-api",
"version": "0.0.4",
"version": "0.0.5",
"description": "A client for the Sentry API",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -43,3 +43,3 @@ # sentry-api

```bash
make
npm test
```

@@ -46,0 +46,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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