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 CHANGED
@@ -16809,6 +16809,6 @@
16809
16809
  "symbolId": "src/package-sources/npmjs:NpmJsProps"
16810
16810
  }
16811
16811
  },
16812
- "version": "0.4.147",
16813
- "fingerprint": "WjX+o+gLxBZHNmedRjoPzfoYdmAxujcHXiUwU9uGjFs="
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
- ...formatted,
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,