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

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.1 to 0.0.2

2

lib/client.js

@@ -20,3 +20,3 @@ var fs = require('fs');

* @example
* var Client = require('node-sentry-api').Client;
* var Client = require('sentry-api').Client;
*

@@ -23,0 +23,0 @@ * var sentry = new Client('https://abc123:@app.getsentry.com/1234', {

@@ -59,4 +59,4 @@ var util = require('util');

*/
Releases.prototype.delete = function(orgSlug, projectSlug, callback) {
var path = util.format('projects/%s/%s/releases/', orgSlug, projectSlug);
Releases.prototype.delete = function(orgSlug, projectSlug, version, callback) {
var path = util.format('projects/%s/%s/releases/%s/', orgSlug, projectSlug, version);
return this.client.delete(path, callback);

@@ -63,0 +63,0 @@ }

{
"name": "sentry-api",
"version": "0.0.1",
"version": "0.0.2",
"description": "A client for the Sentry API",

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

@@ -1,2 +0,2 @@

# node-sentry-api
# sentry-api

@@ -10,2 +10,8 @@ ![Build Status](https://travis-ci.org/pifantastic/node-sentry-api.svg?branch=master)

## Installation
```bash
npm install sentry-api
```
## Documentation

@@ -18,3 +24,3 @@

```javascript
var Sentry = require('node-sentry-api').Client;
var Sentry = require('sentry-api').Client;

@@ -21,0 +27,0 @@ var sentry = new Sentry('https://abc123:@app.getsentry.com/1234');

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