@514labs/moose-lib 0.6.262-ci-3-ge15fe9de → 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/browserCompatible.js +1 -5
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs +1 -5
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.js +1 -5
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs +1 -5
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/index.js +1 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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,
|
|
@@ -2233,10 +2232,7 @@ var IngestPipeline = class extends TypedBase {
|
|
|
2233
2232
|
const streamConfig = {
|
|
2234
2233
|
destination: this.table,
|
|
2235
2234
|
defaultDeadLetterQueue: this.deadLetterQueue,
|
|
2236
|
-
...typeof config.stream === "object" ? {
|
|
2237
|
-
...config.stream,
|
|
2238
|
-
lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
|
|
2239
|
-
} : { lifeCycle: config.lifeCycle },
|
|
2235
|
+
...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
|
|
2240
2236
|
...config.version && { version: config.version }
|
|
2241
2237
|
};
|
|
2242
2238
|
this.stream = new Stream(
|