screwdriver-executor-base
Advanced tools
Comparing version 8.4.1 to 8.5.0
14
index.js
@@ -259,4 +259,18 @@ 'use strict'; | ||
} | ||
/** | ||
* Enqueue webhookConfig to queue service | ||
* @method enqueueWebhook | ||
* @param {Object} config Configuration | ||
* @return {Promise} | ||
*/ | ||
enqueueWebhook(config) { | ||
return this._enqueueWebhook(config); | ||
} | ||
async _enqueueWebhook() { | ||
throw new Error('Not implemented'); | ||
} | ||
} | ||
module.exports = Executor; |
{ | ||
"name": "screwdriver-executor-base", | ||
"version": "8.4.1", | ||
"version": "8.5.0", | ||
"description": "Base class defining the interface for executor implementations", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
17638
243