@magda/minion-sdk 2.1.0-alpha.0 → 2.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -86700,7 +86700,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
86700
86700
|
function resumeWebhook(options, registry) {
|
|
86701
86701
|
return __awaiter(this, void 0, void 0, function* () {
|
|
86702
86702
|
console.info(`Attempting to resume webhook ${options.id}`);
|
|
86703
|
-
const resumeResult = yield registry.resumeHook(options.id);
|
|
86703
|
+
const resumeResult = yield registry.resumeHook(options.id, false, null, true);
|
|
86704
86704
|
if (resumeResult instanceof Error) {
|
|
86705
86705
|
throw resumeResult;
|
|
86706
86706
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magda/minion-sdk",
|
|
3
3
|
"description": "MAGDA Minion SDK",
|
|
4
|
-
"version": "2.1.0-alpha.
|
|
4
|
+
"version": "2.1.0-alpha.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
|
|
7
7
|
"build": "webpack && api-extractor run -l",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"main": "dist/index.js",
|
|
13
13
|
"types": "dist/index.d.ts",
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@magda/minion-framework": "^2.1.0-alpha.
|
|
16
|
-
"@magda/typescript-common": "^2.1.0-alpha.
|
|
15
|
+
"@magda/minion-framework": "^2.1.0-alpha.1",
|
|
16
|
+
"@magda/typescript-common": "^2.1.0-alpha.1",
|
|
17
17
|
"@microsoft/api-extractor": "~7.15.2",
|
|
18
18
|
"ts-loader": "^6.2.1",
|
|
19
19
|
"typescript": "~4.2.4",
|