@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.
@@ -2060,6 +2060,7 @@ var IngestPipeline = class extends TypedBase {
2060
2060
  if (config.table) {
2061
2061
  const tableConfig = typeof config.table === "object" ? {
2062
2062
  ...config.table,
2063
+ lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
2063
2064
  ...config.version && { version: config.version }
2064
2065
  } : {
2065
2066
  lifeCycle: config.lifeCycle,
@@ -2077,7 +2078,10 @@ var IngestPipeline = class extends TypedBase {
2077
2078
  if (config.deadLetterQueue) {
2078
2079
  const streamConfig = {
2079
2080
  destination: void 0,
2080
- ...typeof config.deadLetterQueue === "object" ? config.deadLetterQueue : {},
2081
+ ...typeof config.deadLetterQueue === "object" ? {
2082
+ ...config.deadLetterQueue,
2083
+ lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
2084
+ } : { lifeCycle: config.lifeCycle },
2081
2085
  ...config.version && { version: config.version }
2082
2086
  };
2083
2087
  this.deadLetterQueue = new DeadLetterQueue(
@@ -2090,7 +2094,10 @@ var IngestPipeline = class extends TypedBase {
2090
2094
  const streamConfig = {
2091
2095
  destination: this.table,
2092
2096
  defaultDeadLetterQueue: this.deadLetterQueue,
2093
- ...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
2097
+ ...typeof config.stream === "object" ? {
2098
+ ...config.stream,
2099
+ lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
2100
+ } : { lifeCycle: config.lifeCycle },
2094
2101
  ...config.version && { version: config.version }
2095
2102
  };
2096
2103
  this.stream = new Stream(