@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.
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,
@@ -2116,10 +2115,7 @@ var IngestPipeline = class extends TypedBase {
2116
2115
  if (config.deadLetterQueue) {
2117
2116
  const streamConfig = {
2118
2117
  destination: void 0,
2119
- ...typeof config.deadLetterQueue === "object" ? {
2120
- ...config.deadLetterQueue,
2121
- lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2122
- } : { lifeCycle: config.lifeCycle },
2118
+ ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2123
2119
  ...config.version && { version: config.version }
2124
2120
  };
2125
2121
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2132,10 +2128,7 @@ var IngestPipeline = class extends TypedBase {
2132
2128
  const streamConfig = {
2133
2129
  destination: this.table,
2134
2130
  defaultDeadLetterQueue: this.deadLetterQueue,
2135
- ...typeof config.stream === "object" ? {
2136
- ...config.stream,
2137
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2138
- } : { lifeCycle: config.lifeCycle },
2131
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2139
2132
  ...config.version && { version: config.version }
2140
2133
  };
2141
2134
  this.stream = new Stream(