@mastra/core 0.9.1-alpha.6 → 0.9.1
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.
|
@@ -740,7 +740,7 @@ var NewWorkflow = class extends chunkD63P5O4Q_cjs.MastraBase {
|
|
|
740
740
|
const result = {};
|
|
741
741
|
for (const [key, mapping] of Object.entries(mappingConfig)) {
|
|
742
742
|
const m = mapping;
|
|
743
|
-
if (m.value) {
|
|
743
|
+
if (m.value !== void 0) {
|
|
744
744
|
result[key] = m.value;
|
|
745
745
|
continue;
|
|
746
746
|
}
|
|
@@ -734,7 +734,7 @@ var NewWorkflow = class extends MastraBase {
|
|
|
734
734
|
const result = {};
|
|
735
735
|
for (const [key, mapping] of Object.entries(mappingConfig)) {
|
|
736
736
|
const m = mapping;
|
|
737
|
-
if (m.value) {
|
|
737
|
+
if (m.value !== void 0) {
|
|
738
738
|
result[key] = m.value;
|
|
739
739
|
continue;
|
|
740
740
|
}
|