@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.
@@ -2074,7 +2074,6 @@ var IngestPipeline = class extends TypedBase {
2074
2074
  if (config.table) {
2075
2075
  const tableConfig = typeof config.table === "object" ? {
2076
2076
  ...config.table,
2077
- lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2078
2077
  ...config.version && { version: config.version }
2079
2078
  } : {
2080
2079
  lifeCycle: config.lifeCycle,
@@ -2105,10 +2104,7 @@ var IngestPipeline = class extends TypedBase {
2105
2104
  const streamConfig = {
2106
2105
  destination: this.table,
2107
2106
  defaultDeadLetterQueue: this.deadLetterQueue,
2108
- ...typeof config.stream === "object" ? {
2109
- ...config.stream,
2110
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2111
- } : { lifeCycle: config.lifeCycle },
2107
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2112
2108
  ...config.version && { version: config.version }
2113
2109
  };
2114
2110
  this.stream = new Stream(