@514labs/moose-lib 0.6.262-ci-2-gfc2fb4ba → 0.6.262-ci-4-g7ad60224
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/browserCompatible.js +4 -1
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs +4 -1
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.js +4 -1
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs +4 -1
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2092,7 +2092,10 @@ var IngestPipeline = class extends TypedBase {
|
|
|
2092
2092
|
if (config.deadLetterQueue) {
|
|
2093
2093
|
const streamConfig = {
|
|
2094
2094
|
destination: void 0,
|
|
2095
|
-
...typeof config.deadLetterQueue === "object" ?
|
|
2095
|
+
...typeof config.deadLetterQueue === "object" ? {
|
|
2096
|
+
...config.deadLetterQueue,
|
|
2097
|
+
lifeCycle: config.deadLetterQueue.lifeCycle ?? config.lifeCycle
|
|
2098
|
+
} : { lifeCycle: config.lifeCycle },
|
|
2096
2099
|
...config.version && { version: config.version }
|
|
2097
2100
|
};
|
|
2098
2101
|
this.deadLetterQueue = new DeadLetterQueue(
|