@mastra/mysql 0.7.0-alpha.1 → 0.7.0-alpha.2
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/index.js
CHANGED
|
@@ -5210,14 +5210,14 @@ var MemoryMySQL = class MemoryMySQL extends MemoryStorage {
|
|
|
5210
5210
|
tableName: TABLE_THREADS,
|
|
5211
5211
|
keys: { id },
|
|
5212
5212
|
data: {
|
|
5213
|
-
title,
|
|
5213
|
+
title: title ?? existing.title,
|
|
5214
5214
|
metadata: JSON.stringify(mergedMetadata),
|
|
5215
5215
|
updatedAt
|
|
5216
5216
|
}
|
|
5217
5217
|
});
|
|
5218
5218
|
return {
|
|
5219
5219
|
...existing,
|
|
5220
|
-
title,
|
|
5220
|
+
title: title ?? existing.title,
|
|
5221
5221
|
metadata: mergedMetadata,
|
|
5222
5222
|
updatedAt
|
|
5223
5223
|
};
|