@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.js CHANGED
@@ -2202,7 +2202,6 @@ var IngestPipeline = class extends TypedBase {
2202
2202
  if (config.table) {
2203
2203
  const tableConfig = typeof config.table === "object" ? {
2204
2204
  ...config.table,
2205
- lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2206
2205
  ...config.version && { version: config.version }
2207
2206
  } : {
2208
2207
  lifeCycle: config.lifeCycle,
@@ -2220,10 +2219,7 @@ var IngestPipeline = class extends TypedBase {
2220
2219
  if (config.deadLetterQueue) {
2221
2220
  const streamConfig = {
2222
2221
  destination: void 0,
2223
- ...typeof config.deadLetterQueue === "object" ? {
2224
- ...config.deadLetterQueue,
2225
- lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2226
- } : { lifeCycle: config.lifeCycle },
2222
+ ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2227
2223
  ...config.version && { version: config.version }
2228
2224
  };
2229
2225
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2236,10 +2232,7 @@ var IngestPipeline = class extends TypedBase {
2236
2232
  const streamConfig = {
2237
2233
  destination: this.table,
2238
2234
  defaultDeadLetterQueue: this.deadLetterQueue,
2239
- ...typeof config.stream === "object" ? {
2240
- ...config.stream,
2241
- lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2242
- } : { lifeCycle: config.lifeCycle },
2235
+ ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2243
2236
  ...config.version && { version: config.version }
2244
2237
  };
2245
2238
  this.stream = new Stream(