@514labs/moose-lib 0.6.262-ci-4-g7ad60224 → 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,
@@ -2092,10 +2091,7 @@ var IngestPipeline = class extends TypedBase {
2092
2091
  if (config.deadLetterQueue) {
2093
2092
  const streamConfig = {
2094
2093
  destination: void 0,
2095
- ...typeof config.deadLetterQueue === "object" ? {
2096
- ...config.deadLetterQueue,
2097
- lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2098
- } : { lifeCycle: config.lifeCycle },
2094
+ ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2099
2095
  ...config.version && { version: config.version }
2100
2096
  };
2101
2097
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2108,10 +2104,7 @@ var IngestPipeline = class extends TypedBase {
2108
2104
  const streamConfig = {
2109
2105
  destination: this.table,
2110
2106
  defaultDeadLetterQueue: this.deadLetterQueue,
2111
- ...typeof config.stream === "object" ? {
2112
- ...config.stream,
2113
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2114
- } : { lifeCycle: config.lifeCycle },
2107
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2115
2108
  ...config.version && { version: config.version }
2116
2109
  };
2117
2110
  this.stream = new Stream(