@514labs/moose-lib 0.6.264 → 0.6.265

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.
@@ -2101,6 +2101,7 @@ var IngestPipeline = class extends TypedBase {
2101
2101
  if (config.table) {
2102
2102
  const tableConfig = typeof config.table === "object" ? {
2103
2103
  ...config.table,
2104
+ lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2104
2105
  ...config.version && { version: config.version }
2105
2106
  } : {
2106
2107
  lifeCycle: config.lifeCycle,
@@ -2118,7 +2119,10 @@ var IngestPipeline = class extends TypedBase {
2118
2119
  if (config.deadLetterQueue) {
2119
2120
  const streamConfig = {
2120
2121
  destination: void 0,
2121
- ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2122
+ ...typeof config.deadLetterQueue === "object" ? {
2123
+ ...config.deadLetterQueue,
2124
+ lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2125
+ } : { lifeCycle: config.lifeCycle },
2122
2126
  ...config.version && { version: config.version }
2123
2127
  };
2124
2128
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2131,7 +2135,10 @@ var IngestPipeline = class extends TypedBase {
2131
2135
  const streamConfig = {
2132
2136
  destination: this.table,
2133
2137
  defaultDeadLetterQueue: this.deadLetterQueue,
2134
- ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2138
+ ...typeof config.stream === "object" ? {
2139
+ ...config.stream,
2140
+ lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2141
+ } : { lifeCycle: config.lifeCycle },
2135
2142
  ...config.version && { version: config.version }
2136
2143
  };
2137
2144
  this.stream = new Stream(