@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.
@@ -2137,7 +2137,6 @@ var IngestPipeline = class extends TypedBase {
2137
2137
  if (config.table) {
2138
2138
  const tableConfig = typeof config.table === "object" ? {
2139
2139
  ...config.table,
2140
- lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2141
2140
  ...config.version && { version: config.version }
2142
2141
  } : {
2143
2142
  lifeCycle: config.lifeCycle,
@@ -2155,10 +2154,7 @@ var IngestPipeline = class extends TypedBase {
2155
2154
  if (config.deadLetterQueue) {
2156
2155
  const streamConfig = {
2157
2156
  destination: void 0,
2158
- ...typeof config.deadLetterQueue === "object" ? {
2159
- ...config.deadLetterQueue,
2160
- lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2161
- } : { lifeCycle: config.lifeCycle },
2157
+ ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2162
2158
  ...config.version && { version: config.version }
2163
2159
  };
2164
2160
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2171,10 +2167,7 @@ var IngestPipeline = class extends TypedBase {
2171
2167
  const streamConfig = {
2172
2168
  destination: this.table,
2173
2169
  defaultDeadLetterQueue: this.deadLetterQueue,
2174
- ...typeof config.stream === "object" ? {
2175
- ...config.stream,
2176
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2177
- } : { lifeCycle: config.lifeCycle },
2170
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2178
2171
  ...config.version && { version: config.version }
2179
2172
  };
2180
2173
  this.stream = new Stream(