construct-hub 0.4.147 → 0.4.149
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/.jsii +2 -2
- package/lib/backend/orchestration/redrive-state-machine.lambda.bundle/index.js +6 -2
- package/lib/backend/orchestration/redrive-state-machine.lambda.bundle/index.js.map +2 -2
- package/lib/backend/orchestration/redrive-state-machine.lambda.js +8 -6
- package/lib/backend-dashboard.js +5 -5
- package/lib/construct-hub.js +1 -1
- package/lib/package-sources/code-artifact.js +1 -1
- package/lib/package-sources/npmjs.js +1 -1
- package/lib/package-tag/index.js +3 -3
- package/lib/package-tag-group/index.js +2 -2
- package/lib/preload-file/index.js +1 -1
- package/lib/s3/storage.js +1 -1
- package/lib/spdx-license.js +1 -1
- package/package.json +1 -1
package/.jsii
CHANGED
@@ -16809,6 +16809,6 @@
|
|
16809
16809
|
"symbolId": "src/package-sources/npmjs:NpmJsProps"
|
16810
16810
|
}
|
16811
16811
|
},
|
16812
|
-
"version": "0.4.
|
16813
|
-
"fingerprint": "
|
16812
|
+
"version": "0.4.149",
|
16813
|
+
"fingerprint": "KuU71YgKKV9+9XW8/Hzcu1pe5WnoWEFPgbYaRaZ9GKQ="
|
16814
16814
|
}
|
@@ -6063,12 +6063,16 @@ async function handler(event, context) {
|
|
6063
6063
|
for await (const message of messagesToRedrive(queueUrl)) {
|
6064
6064
|
const input = JSON.parse(message.Body);
|
6065
6065
|
console.log(`Redriving message ${JSON.stringify(input, null, 2)}`);
|
6066
|
-
const { docGen, ...formatted } = input;
|
6067
6066
|
const { executionArn } = await sfn.startExecution({
|
6068
6067
|
stateMachineArn,
|
6069
6068
|
input: JSON.stringify({
|
6070
|
-
...
|
6069
|
+
...input,
|
6070
|
+
$TaskExecution: void 0,
|
6071
|
+
catalogNeedsUpdating: void 0,
|
6072
|
+
docGen: void 0,
|
6073
|
+
docGenOutput: void 0,
|
6071
6074
|
_error: void 0,
|
6075
|
+
error: void 0,
|
6072
6076
|
_redrive: {
|
6073
6077
|
lambdaRequestId: context.awsRequestId,
|
6074
6078
|
lambdaLogGroupName: context.logGroupName,
|