@514labs/moose-lib 0.6.262-ci-3-ge15fe9de → 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,
@@ -2010,10 +2009,7 @@ var IngestPipeline = class extends TypedBase {
2010
2009
  const streamConfig = {
2011
2010
  destination: this.table,
2012
2011
  defaultDeadLetterQueue: this.deadLetterQueue,
2013
- ...typeof config.stream === "object" ? {
2014
- ...config.stream,
2015
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2016
- } : { lifeCycle: config.lifeCycle },
2012
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2017
2013
  ...config.version && { version: config.version }
2018
2014
  };
2019
2015
  this.stream = new Stream(