@mastra/cloudflare-d1 0.13.1-alpha.1 → 0.13.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 +9 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1879,7 +1879,7 @@ var TracesStorageD1 = class extends TracesStorage {
|
|
|
1879
1879
|
const allDataResult = await this.operations.executeQuery(
|
|
1880
1880
|
createSqlBuilder().select("*").from(fullTableName).where("1=1").build()
|
|
1881
1881
|
);
|
|
1882
|
-
console.
|
|
1882
|
+
console.info("allDataResult", allDataResult);
|
|
1883
1883
|
const countResult = await this.operations.executeQuery(countQuery.build());
|
|
1884
1884
|
const total = Number(countResult?.[0]?.count ?? 0);
|
|
1885
1885
|
dataQuery.orderBy("startTime", "DESC").limit(perPage).offset(page * perPage);
|