@mastra/pg 0.15.1 → 0.15.2-alpha.0
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 +9 -0
- package/dist/index.cjs +0 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/scores/index.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -2368,7 +2368,6 @@ var StoreOperationsPG = class extends StoreOperations {
|
|
|
2368
2368
|
}
|
|
2369
2369
|
};
|
|
2370
2370
|
function transformScoreRow(row) {
|
|
2371
|
-
console.log(`row is`, JSON.stringify(row, null, 2));
|
|
2372
2371
|
return {
|
|
2373
2372
|
...row,
|
|
2374
2373
|
input: safelyParseJSON(row.input),
|
|
@@ -2494,7 +2493,6 @@ var ScoresPG = class extends ScoresStorage {
|
|
|
2494
2493
|
entity,
|
|
2495
2494
|
...rest
|
|
2496
2495
|
} = score;
|
|
2497
|
-
console.log(`saving score with id: ${id}`);
|
|
2498
2496
|
await this.operations.insert({
|
|
2499
2497
|
tableName: TABLE_SCORERS,
|
|
2500
2498
|
record: {
|