@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.
@@ -2033,7 +2033,6 @@ var IngestPipeline = class extends TypedBase {
2033
2033
  if (config.table) {
2034
2034
  const tableConfig = typeof config.table === "object" ? {
2035
2035
  ...config.table,
2036
- lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2037
2036
  ...config.version && { version: config.version }
2038
2037
  } : {
2039
2038
  lifeCycle: config.lifeCycle,
@@ -2064,10 +2063,7 @@ var IngestPipeline = class extends TypedBase {
2064
2063
  const streamConfig = {
2065
2064
  destination: this.table,
2066
2065
  defaultDeadLetterQueue: this.deadLetterQueue,
2067
- ...typeof config.stream === "object" ? {
2068
- ...config.stream,
2069
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2070
- } : { lifeCycle: config.lifeCycle },
2066
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2071
2067
  ...config.version && { version: config.version }
2072
2068
  };
2073
2069
  this.stream = new Stream(