@justworkflowit/cdk-constructs 0.0.236 → 0.0.238

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.
@@ -67729,7 +67729,7 @@ async function deployWorkflows(organizationId, bucket, keys) {
67729
67729
  tag: "$LIVE"
67730
67730
  });
67731
67731
  } catch (err) {
67732
- if (err?.body?.message?.includes("NotFound")) {
67732
+ if (err?.errorType === "NotFoundError" || err?.message?.includes("No version tagged") || err?.message?.includes("No version found")) {
67733
67733
  console.log(`\u2139\uFE0F No $LIVE version found yet for ${workflowName}`);
67734
67734
  } else {
67735
67735
  throw err;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@justworkflowit/cdk-constructs",
3
3
  "description": "",
4
- "version": "0.0.236",
4
+ "version": "0.0.238",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "publishConfig": {