@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.
@@ -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,
@@ -2051,10 +2050,7 @@ var IngestPipeline = class extends TypedBase {
2051
2050
  if (config.deadLetterQueue) {
2052
2051
  const streamConfig = {
2053
2052
  destination: void 0,
2054
- ...typeof config.deadLetterQueue === "object" ? {
2055
- ...config.deadLetterQueue,
2056
- lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2057
- } : { lifeCycle: config.lifeCycle },
2053
+ ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2058
2054
  ...config.version && { version: config.version }
2059
2055
  };
2060
2056
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2067,10 +2063,7 @@ var IngestPipeline = class extends TypedBase {
2067
2063
  const streamConfig = {
2068
2064
  destination: this.table,
2069
2065
  defaultDeadLetterQueue: this.deadLetterQueue,
2070
- ...typeof config.stream === "object" ? {
2071
- ...config.stream,
2072
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2073
- } : { lifeCycle: config.lifeCycle },
2066
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2074
2067
  ...config.version && { version: config.version }
2075
2068
  };
2076
2069
  this.stream = new Stream(