@mastra/lance 0.3.1-alpha.1 → 0.3.1-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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/lance
2
2
 
3
+ ## 0.3.1-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
8
+
9
+ - Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e)]:
10
+ - @mastra/core@0.17.0-alpha.6
11
+
3
12
  ## 0.3.1-alpha.1
4
13
 
5
14
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -189,7 +189,6 @@ function processResultWithTypeConversion(rawResult, tableSchema) {
189
189
  } else if (fieldTypeStr.includes("float64") && ["createdAt", "updatedAt"].includes(key)) {
190
190
  processedResult[key] = new Date(processedResult[key]);
191
191
  }
192
- console.log(key, "processedResult", processedResult);
193
192
  }
194
193
  return processedResult;
195
194
  }
@@ -1266,7 +1265,7 @@ var StoreOperationsLance = class extends storage.StoreOperations {
1266
1265
  processedRecord[key] = JSON.stringify(processedRecord[key]);
1267
1266
  }
1268
1267
  }
1269
- console.log(await table.schema());
1268
+ console.info(await table.schema());
1270
1269
  await table.mergeInsert(primaryId).whenMatchedUpdateAll().whenNotMatchedInsertAll().execute([processedRecord]);
1271
1270
  } catch (error$1) {
1272
1271
  throw new error.MastraError(
@@ -1316,7 +1315,6 @@ var StoreOperationsLance = class extends storage.StoreOperations {
1316
1315
  }
1317
1316
  return processedRecord;
1318
1317
  });
1319
- console.log(processedRecords);
1320
1318
  await table.mergeInsert(primaryId).whenMatchedUpdateAll().whenNotMatchedInsertAll().execute(processedRecords);
1321
1319
  } catch (error$1) {
1322
1320
  throw new error.MastraError(