Comparing version 1.0.0 to 1.0.1
@@ -44,3 +44,3 @@ 'use strict' | ||
purgeByURL (uri, cb) { | ||
issue(this, Edged.action.purge, uri, cb) | ||
issue(this, api.purge, uri, cb) | ||
} | ||
@@ -50,3 +50,3 @@ | ||
softPurgeByURL (uri, cb) { | ||
issue(this, Edged.action.softPurge, uri, cb) | ||
issue(this, api.softPurge, uri, cb) | ||
} | ||
@@ -53,0 +53,0 @@ } |
{ | ||
"name": "edged", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Purge items at the edge of the network", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -60,3 +60,3 @@ #!/usr/bin/env node | ||
ctx.action = createPipeline(Edged.createStream(client)) | ||
ctx.purge = createPipeline(Edged.createStream(client, Edged.action.purge)) | ||
ctx.softPurge = createPipeline(Edged.createStream(client, Edged.action.softPurge)) | ||
ctx.purge = createPipeline(Edged.createURLStream(client, Edged.action.purge)) | ||
ctx.softPurge = createPipeline(Edged.createURLStream(client, Edged.action.softPurge)) |
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
11937