@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.
package/dist/index.mjs CHANGED
@@ -2098,7 +2098,6 @@ var IngestPipeline = class extends TypedBase {
2098
2098
  if (config.table) {
2099
2099
  const tableConfig = typeof config.table === "object" ? {
2100
2100
  ...config.table,
2101
- lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2102
2101
  ...config.version && { version: config.version }
2103
2102
  } : {
2104
2103
  lifeCycle: config.lifeCycle,
@@ -2129,10 +2128,7 @@ var IngestPipeline = class extends TypedBase {
2129
2128
  const streamConfig = {
2130
2129
  destination: this.table,
2131
2130
  defaultDeadLetterQueue: this.deadLetterQueue,
2132
- ...typeof config.stream === "object" ? {
2133
- ...config.stream,
2134
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2135
- } : { lifeCycle: config.lifeCycle },
2131
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2136
2132
  ...config.version && { version: config.version }
2137
2133
  };
2138
2134
  this.stream = new Stream(