@514labs/moose-lib 0.6.262-ci-4-g7ad60224 → 0.6.262-ci-2-g1c866068

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.
@@ -1979,7 +1979,6 @@ var IngestPipeline = class extends TypedBase {
1979
1979
  if (config.table) {
1980
1980
  const tableConfig = typeof config.table === "object" ? {
1981
1981
  ...config.table,
1982
- lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
1983
1982
  ...config.version && { version: config.version }
1984
1983
  } : {
1985
1984
  lifeCycle: config.lifeCycle,
@@ -1997,10 +1996,7 @@ var IngestPipeline = class extends TypedBase {
1997
1996
  if (config.deadLetterQueue) {
1998
1997
  const streamConfig = {
1999
1998
  destination: void 0,
2000
- ...typeof config.deadLetterQueue === "object" ? {
2001
- ...config.deadLetterQueue,
2002
- lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2003
- } : { lifeCycle: config.lifeCycle },
1999
+ ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2004
2000
  ...config.version && { version: config.version }
2005
2001
  };
2006
2002
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2013,10 +2009,7 @@ var IngestPipeline = class extends TypedBase {
2013
2009
  const streamConfig = {
2014
2010
  destination: this.table,
2015
2011
  defaultDeadLetterQueue: this.deadLetterQueue,
2016
- ...typeof config.stream === "object" ? {
2017
- ...config.stream,
2018
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2019
- } : { lifeCycle: config.lifeCycle },
2012
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2020
2013
  ...config.version && { version: config.version }
2021
2014
  };
2022
2015
  this.stream = new Stream(