@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.
@@ -2137,7 +2137,6 @@ var IngestPipeline = class extends TypedBase {
2137
2137
  if (config.table) {
2138
2138
  const tableConfig = typeof config.table === "object" ? {
2139
2139
  ...config.table,
2140
- lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2141
2140
  ...config.version && { version: config.version }
2142
2141
  } : {
2143
2142
  lifeCycle: config.lifeCycle,
@@ -2168,10 +2167,7 @@ var IngestPipeline = class extends TypedBase {
2168
2167
  const streamConfig = {
2169
2168
  destination: this.table,
2170
2169
  defaultDeadLetterQueue: this.deadLetterQueue,
2171
- ...typeof config.stream === "object" ? {
2172
- ...config.stream,
2173
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2174
- } : { lifeCycle: config.lifeCycle },
2170
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2175
2171
  ...config.version && { version: config.version }
2176
2172
  };
2177
2173
  this.stream = new Stream(