@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.
@@ -2006,6 +2006,7 @@ var IngestPipeline = class extends TypedBase {
2006
2006
  if (config.table) {
2007
2007
  const tableConfig = typeof config.table === "object" ? {
2008
2008
  ...config.table,
2009
+ lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2009
2010
  ...config.version && { version: config.version }
2010
2011
  } : {
2011
2012
  lifeCycle: config.lifeCycle,
@@ -2023,7 +2024,10 @@ var IngestPipeline = class extends TypedBase {
2023
2024
  if (config.deadLetterQueue) {
2024
2025
  const streamConfig = {
2025
2026
  destination: void 0,
2026
- ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2027
+ ...typeof config.deadLetterQueue === "object" ? {
2028
+ ...config.deadLetterQueue,
2029
+ lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2030
+ } : { lifeCycle: config.lifeCycle },
2027
2031
  ...config.version && { version: config.version }
2028
2032
  };
2029
2033
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2036,7 +2040,10 @@ var IngestPipeline = class extends TypedBase {
2036
2040
  const streamConfig = {
2037
2041
  destination: this.table,
2038
2042
  defaultDeadLetterQueue: this.deadLetterQueue,
2039
- ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2043
+ ...typeof config.stream === "object" ? {
2044
+ ...config.stream,
2045
+ lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2046
+ } : { lifeCycle: config.lifeCycle },
2040
2047
  ...config.version && { version: config.version }
2041
2048
  };
2042
2049
  this.stream = new Stream(