sentry-api
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -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'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
995545
61