Comparing version 0.1.6 to 0.1.7
@@ -8,3 +8,3 @@ exports.do = (uuid, apiKey, apiUrl, pollStep = 1000) => { | ||
port: apiUrl.port, | ||
path: `/mythril/v1/analysis/${uuid}/issues`, | ||
path: `/v1/analyses/${uuid}/issues`, | ||
headers: { | ||
@@ -11,0 +11,0 @@ 'Authorization': `Bearer ${apiKey}` |
@@ -1,2 +0,2 @@ | ||
const basePath = '/mythril/v1/analysis' | ||
const basePath = '/v1/analyses' | ||
@@ -3,0 +3,0 @@ exports.do = (bytecode, apiKey, apiUrl) => { |
{ | ||
"name": "armlet", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"description": "A Mythril Platform API client.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -15,3 +15,3 @@ const nock = require('nock') | ||
const uuid = 'my-uuid' | ||
const basePath = `/mythril/v1/analysis/${uuid}/issues` | ||
const basePath = `/v1/analyses/${uuid}/issues` | ||
const expectedIssues = [ | ||
@@ -18,0 +18,0 @@ { |
@@ -17,3 +17,3 @@ const nock = require('nock') | ||
const uuid = 'my-uuid' | ||
const basePath = '/mythril/v1/analysis' | ||
const basePath = '/v1/analyses' | ||
@@ -20,0 +20,0 @@ it('should request analysis for http API', async () => { |
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
23511