@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/dmv2/index.js
CHANGED
|
@@ -2033,7 +2033,6 @@ var IngestPipeline = class extends TypedBase {
|
|
|
2033
2033
|
if (config.table) {
|
|
2034
2034
|
const tableConfig = typeof config.table === "object" ? {
|
|
2035
2035
|
...config.table,
|
|
2036
|
-
lifeCycle: config.table.lifeCycle ?? config.lifeCycle,
|
|
2037
2036
|
...config.version && { version: config.version }
|
|
2038
2037
|
} : {
|
|
2039
2038
|
lifeCycle: config.lifeCycle,
|
|
@@ -2064,10 +2063,7 @@ var IngestPipeline = class extends TypedBase {
|
|
|
2064
2063
|
const streamConfig = {
|
|
2065
2064
|
destination: this.table,
|
|
2066
2065
|
defaultDeadLetterQueue: this.deadLetterQueue,
|
|
2067
|
-
...typeof config.stream === "object" ? {
|
|
2068
|
-
...config.stream,
|
|
2069
|
-
lifeCycle: config.stream.lifeCycle ?? config.lifeCycle
|
|
2070
|
-
} : { lifeCycle: config.lifeCycle },
|
|
2066
|
+
...typeof config.stream === "object" ? config.stream : { lifeCycle: config.lifeCycle },
|
|
2071
2067
|
...config.version && { version: config.version }
|
|
2072
2068
|
};
|
|
2073
2069
|
this.stream = new Stream(
|