@mastra/cloudflare-d1 0.0.0-support-d1-client-20250701191943 → 0.0.0-taofeeq-fix-tool-call-showing-after-message-20250806162745
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/LICENSE.md +11 -42
- package/dist/index.cjs +1368 -682
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +2 -7
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1369 -683
- package/dist/index.js.map +1 -0
- package/dist/storage/domains/legacy-evals/index.d.ts +20 -0
- package/dist/storage/domains/legacy-evals/index.d.ts.map +1 -0
- package/dist/storage/domains/memory/index.d.ts +82 -0
- package/dist/storage/domains/memory/index.d.ts.map +1 -0
- package/dist/storage/domains/operations/index.d.ts +72 -0
- package/dist/storage/domains/operations/index.d.ts.map +1 -0
- package/dist/storage/domains/scores/index.d.ts +49 -0
- package/dist/storage/domains/scores/index.d.ts.map +1 -0
- package/dist/storage/domains/traces/index.d.ts +18 -0
- package/dist/storage/domains/traces/index.d.ts.map +1 -0
- package/dist/storage/domains/utils.d.ts +3 -0
- package/dist/storage/domains/utils.d.ts.map +1 -0
- package/dist/storage/domains/workflows/index.d.ts +33 -0
- package/dist/storage/domains/workflows/index.d.ts.map +1 -0
- package/dist/storage/index.d.ts +256 -0
- package/dist/storage/index.d.ts.map +1 -0
- package/dist/storage/sql-builder.d.ts +128 -0
- package/dist/storage/sql-builder.d.ts.map +1 -0
- package/dist/storage/test-utils.d.ts +19 -0
- package/dist/storage/test-utils.d.ts.map +1 -0
- package/package.json +14 -13
- package/dist/_tsup-dts-rollup.d.cts +0 -422
- package/dist/_tsup-dts-rollup.d.ts +0 -422
- package/dist/index.d.cts +0 -7
package/dist/index.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var agent = require('@mastra/core/agent');
|
|
4
3
|
var error = require('@mastra/core/error');
|
|
5
4
|
var storage = require('@mastra/core/storage');
|
|
6
5
|
var Cloudflare = require('cloudflare');
|
|
7
6
|
var utils = require('@mastra/core/utils');
|
|
7
|
+
var agent = require('@mastra/core/agent');
|
|
8
8
|
|
|
9
9
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
10
|
|
|
@@ -241,411 +241,311 @@ function parseSelectIdentifier(column) {
|
|
|
241
241
|
return column;
|
|
242
242
|
}
|
|
243
243
|
|
|
244
|
-
// src/storage/
|
|
244
|
+
// src/storage/domains/utils.ts
|
|
245
245
|
function isArrayOfRecords(value) {
|
|
246
246
|
return value && Array.isArray(value) && value.length > 0;
|
|
247
247
|
}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
tablePrefix;
|
|
253
|
-
/**
|
|
254
|
-
* Creates a new D1Store instance
|
|
255
|
-
* @param config Configuration for D1 access (either REST API or Workers Binding API)
|
|
256
|
-
*/
|
|
257
|
-
constructor(config) {
|
|
258
|
-
try {
|
|
259
|
-
super({ name: "D1" });
|
|
260
|
-
if (config.tablePrefix && !/^[a-zA-Z0-9_]*$/.test(config.tablePrefix)) {
|
|
261
|
-
throw new Error("Invalid tablePrefix: only letters, numbers, and underscores are allowed.");
|
|
262
|
-
}
|
|
263
|
-
this.tablePrefix = config.tablePrefix || "";
|
|
264
|
-
if ("binding" in config) {
|
|
265
|
-
if (!config.binding) {
|
|
266
|
-
throw new Error("D1 binding is required when using Workers Binding API");
|
|
267
|
-
}
|
|
268
|
-
this.binding = config.binding;
|
|
269
|
-
this.logger.info("Using D1 Workers Binding API");
|
|
270
|
-
} else if ("client" in config) {
|
|
271
|
-
if (!config.client) {
|
|
272
|
-
throw new Error("D1 client is required when using D1ClientConfig");
|
|
273
|
-
}
|
|
274
|
-
this.client = config.client;
|
|
275
|
-
this.logger.info("Using D1 Client");
|
|
276
|
-
} else {
|
|
277
|
-
if (!config.accountId || !config.databaseId || !config.apiToken) {
|
|
278
|
-
throw new Error("accountId, databaseId, and apiToken are required when using REST API");
|
|
279
|
-
}
|
|
280
|
-
const cfClient = new Cloudflare__default.default({
|
|
281
|
-
apiToken: config.apiToken
|
|
282
|
-
});
|
|
283
|
-
this.client = {
|
|
284
|
-
query: ({ sql, params }) => {
|
|
285
|
-
return cfClient.d1.database.query(config.databaseId, {
|
|
286
|
-
account_id: config.accountId,
|
|
287
|
-
sql,
|
|
288
|
-
params
|
|
289
|
-
});
|
|
290
|
-
}
|
|
291
|
-
};
|
|
292
|
-
this.logger.info("Using D1 REST API");
|
|
293
|
-
}
|
|
294
|
-
} catch (error$1) {
|
|
295
|
-
throw new error.MastraError(
|
|
296
|
-
{
|
|
297
|
-
id: "CLOUDFLARE_D1_STORAGE_INITIALIZATION_ERROR",
|
|
298
|
-
domain: error.ErrorDomain.STORAGE,
|
|
299
|
-
category: error.ErrorCategory.SYSTEM,
|
|
300
|
-
text: "Error initializing D1Store"
|
|
301
|
-
},
|
|
302
|
-
error$1
|
|
303
|
-
);
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
// Helper method to get the full table name with prefix
|
|
307
|
-
getTableName(tableName) {
|
|
308
|
-
return `${this.tablePrefix}${tableName}`;
|
|
309
|
-
}
|
|
310
|
-
formatSqlParams(params) {
|
|
311
|
-
return params.map((p) => p === void 0 || p === null ? null : p);
|
|
312
|
-
}
|
|
313
|
-
async executeWorkersBindingQuery({
|
|
314
|
-
sql,
|
|
315
|
-
params = [],
|
|
316
|
-
first = false
|
|
317
|
-
}) {
|
|
318
|
-
if (!this.binding) {
|
|
319
|
-
throw new Error("Workers binding is not configured");
|
|
320
|
-
}
|
|
321
|
-
try {
|
|
322
|
-
const statement = this.binding.prepare(sql);
|
|
323
|
-
const formattedParams = this.formatSqlParams(params);
|
|
324
|
-
let result;
|
|
325
|
-
if (formattedParams.length > 0) {
|
|
326
|
-
if (first) {
|
|
327
|
-
result = await statement.bind(...formattedParams).first();
|
|
328
|
-
if (!result) return null;
|
|
329
|
-
return result;
|
|
330
|
-
} else {
|
|
331
|
-
result = await statement.bind(...formattedParams).all();
|
|
332
|
-
const results = result.results || [];
|
|
333
|
-
if (result.meta) {
|
|
334
|
-
this.logger.debug("Query metadata", { meta: result.meta });
|
|
335
|
-
}
|
|
336
|
-
return results;
|
|
337
|
-
}
|
|
338
|
-
} else {
|
|
339
|
-
if (first) {
|
|
340
|
-
result = await statement.first();
|
|
341
|
-
if (!result) return null;
|
|
342
|
-
return result;
|
|
343
|
-
} else {
|
|
344
|
-
result = await statement.all();
|
|
345
|
-
const results = result.results || [];
|
|
346
|
-
if (result.meta) {
|
|
347
|
-
this.logger.debug("Query metadata", { meta: result.meta });
|
|
348
|
-
}
|
|
349
|
-
return results;
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
} catch (workerError) {
|
|
353
|
-
this.logger.error("Workers Binding API error", {
|
|
354
|
-
message: workerError instanceof Error ? workerError.message : String(workerError),
|
|
355
|
-
sql
|
|
356
|
-
});
|
|
357
|
-
throw new Error(`D1 Workers API error: ${workerError.message}`);
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
async executeRestQuery({
|
|
361
|
-
sql,
|
|
362
|
-
params = [],
|
|
363
|
-
first = false
|
|
364
|
-
}) {
|
|
365
|
-
if (!this.client) {
|
|
366
|
-
throw new Error("Missing required REST API configuration");
|
|
367
|
-
}
|
|
368
|
-
try {
|
|
369
|
-
const response = await this.client.query({
|
|
370
|
-
sql,
|
|
371
|
-
params: this.formatSqlParams(params)
|
|
372
|
-
});
|
|
373
|
-
const result = response.result || [];
|
|
374
|
-
const results = result.flatMap((r) => r.results || []);
|
|
375
|
-
if (first) {
|
|
376
|
-
const firstResult = isArrayOfRecords(results) && results.length > 0 ? results[0] : null;
|
|
377
|
-
if (!firstResult) return null;
|
|
378
|
-
return firstResult;
|
|
379
|
-
}
|
|
380
|
-
return results;
|
|
381
|
-
} catch (restError) {
|
|
382
|
-
this.logger.error("REST API error", {
|
|
383
|
-
message: restError instanceof Error ? restError.message : String(restError),
|
|
384
|
-
sql
|
|
385
|
-
});
|
|
386
|
-
throw new Error(`D1 REST API error: ${restError.message}`);
|
|
387
|
-
}
|
|
248
|
+
function deserializeValue(value, type) {
|
|
249
|
+
if (value === null || value === void 0) return null;
|
|
250
|
+
if (type === "date" && typeof value === "string") {
|
|
251
|
+
return new Date(value);
|
|
388
252
|
}
|
|
389
|
-
|
|
390
|
-
* Execute a SQL query against the D1 database
|
|
391
|
-
* @param options Query options including SQL, parameters, and whether to return only the first result
|
|
392
|
-
* @returns Query results as an array or a single object if first=true
|
|
393
|
-
*/
|
|
394
|
-
async executeQuery(options) {
|
|
395
|
-
const { sql, params = [], first = false } = options;
|
|
253
|
+
if (type === "jsonb" && typeof value === "string") {
|
|
396
254
|
try {
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
} else if (this.client) {
|
|
401
|
-
return this.executeRestQuery({ sql, params, first });
|
|
402
|
-
} else {
|
|
403
|
-
throw new Error("No valid D1 configuration provided");
|
|
404
|
-
}
|
|
405
|
-
} catch (error) {
|
|
406
|
-
this.logger.error("Error executing SQL query", {
|
|
407
|
-
message: error instanceof Error ? error.message : String(error),
|
|
408
|
-
sql,
|
|
409
|
-
params,
|
|
410
|
-
first
|
|
411
|
-
});
|
|
412
|
-
throw new Error(`D1 query error: ${error.message}`);
|
|
255
|
+
return JSON.parse(value);
|
|
256
|
+
} catch {
|
|
257
|
+
return value;
|
|
413
258
|
}
|
|
414
259
|
}
|
|
415
|
-
|
|
416
|
-
async getTableColumns(tableName) {
|
|
260
|
+
if (typeof value === "string" && (value.startsWith("{") || value.startsWith("["))) {
|
|
417
261
|
try {
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
return [];
|
|
422
|
-
}
|
|
423
|
-
return result.map((row) => ({
|
|
424
|
-
name: row.name,
|
|
425
|
-
type: row.type
|
|
426
|
-
}));
|
|
427
|
-
} catch (error) {
|
|
428
|
-
this.logger.error(`Error getting table columns for ${tableName}:`, {
|
|
429
|
-
message: error instanceof Error ? error.message : String(error)
|
|
430
|
-
});
|
|
431
|
-
return [];
|
|
262
|
+
return JSON.parse(value);
|
|
263
|
+
} catch {
|
|
264
|
+
return value;
|
|
432
265
|
}
|
|
433
266
|
}
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
return value;
|
|
267
|
+
return value;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
// src/storage/domains/legacy-evals/index.ts
|
|
271
|
+
var LegacyEvalsStorageD1 = class extends storage.LegacyEvalsStorage {
|
|
272
|
+
operations;
|
|
273
|
+
constructor({ operations }) {
|
|
274
|
+
super();
|
|
275
|
+
this.operations = operations;
|
|
444
276
|
}
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
277
|
+
async getEvals(options) {
|
|
278
|
+
const { agentName, type, page = 0, perPage = 40, dateRange } = options || {};
|
|
279
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_EVALS);
|
|
280
|
+
const conditions = [];
|
|
281
|
+
const queryParams = [];
|
|
282
|
+
if (agentName) {
|
|
283
|
+
conditions.push(`agent_name = ?`);
|
|
284
|
+
queryParams.push(agentName);
|
|
450
285
|
}
|
|
451
|
-
if (type === "
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
return value;
|
|
456
|
-
}
|
|
286
|
+
if (type === "test") {
|
|
287
|
+
conditions.push(`(test_info IS NOT NULL AND json_extract(test_info, '$.testPath') IS NOT NULL)`);
|
|
288
|
+
} else if (type === "live") {
|
|
289
|
+
conditions.push(`(test_info IS NULL OR json_extract(test_info, '$.testPath') IS NULL)`);
|
|
457
290
|
}
|
|
458
|
-
if (
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
} catch {
|
|
462
|
-
return value;
|
|
463
|
-
}
|
|
291
|
+
if (dateRange?.start) {
|
|
292
|
+
conditions.push(`created_at >= ?`);
|
|
293
|
+
queryParams.push(storage.serializeDate(dateRange.start));
|
|
464
294
|
}
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
switch (type) {
|
|
469
|
-
case "bigint":
|
|
470
|
-
return "INTEGER";
|
|
471
|
-
// SQLite uses INTEGER for all integer sizes
|
|
472
|
-
case "jsonb":
|
|
473
|
-
return "TEXT";
|
|
474
|
-
// Store JSON as TEXT in SQLite
|
|
475
|
-
default:
|
|
476
|
-
return super.getSqlType(type);
|
|
295
|
+
if (dateRange?.end) {
|
|
296
|
+
conditions.push(`created_at <= ?`);
|
|
297
|
+
queryParams.push(storage.serializeDate(dateRange.end));
|
|
477
298
|
}
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
schema
|
|
482
|
-
}) {
|
|
483
|
-
const fullTableName = this.getTableName(tableName);
|
|
484
|
-
const columnDefinitions = Object.entries(schema).map(([colName, colDef]) => {
|
|
485
|
-
const type = this.getSqlType(colDef.type);
|
|
486
|
-
const nullable = colDef.nullable === false ? "NOT NULL" : "";
|
|
487
|
-
const primaryKey = colDef.primaryKey ? "PRIMARY KEY" : "";
|
|
488
|
-
return `${colName} ${type} ${nullable} ${primaryKey}`.trim();
|
|
489
|
-
});
|
|
490
|
-
const tableConstraints = [];
|
|
491
|
-
if (tableName === storage.TABLE_WORKFLOW_SNAPSHOT) {
|
|
492
|
-
tableConstraints.push("UNIQUE (workflow_name, run_id)");
|
|
299
|
+
const countQueryBuilder = createSqlBuilder().count().from(fullTableName);
|
|
300
|
+
if (conditions.length > 0) {
|
|
301
|
+
countQueryBuilder.where(conditions.join(" AND "), ...queryParams);
|
|
493
302
|
}
|
|
303
|
+
const { sql: countSql, params: countParams } = countQueryBuilder.build();
|
|
494
304
|
try {
|
|
495
|
-
const
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
305
|
+
const countResult = await this.operations.executeQuery({
|
|
306
|
+
sql: countSql,
|
|
307
|
+
params: countParams,
|
|
308
|
+
first: true
|
|
309
|
+
});
|
|
310
|
+
const total = Number(countResult?.count || 0);
|
|
311
|
+
const currentOffset = page * perPage;
|
|
312
|
+
if (total === 0) {
|
|
313
|
+
return {
|
|
314
|
+
evals: [],
|
|
315
|
+
total: 0,
|
|
316
|
+
page,
|
|
317
|
+
perPage,
|
|
318
|
+
hasMore: false
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
const dataQueryBuilder = createSqlBuilder().select("*").from(fullTableName);
|
|
322
|
+
if (conditions.length > 0) {
|
|
323
|
+
dataQueryBuilder.where(conditions.join(" AND "), ...queryParams);
|
|
324
|
+
}
|
|
325
|
+
dataQueryBuilder.orderBy("created_at", "DESC").limit(perPage).offset(currentOffset);
|
|
326
|
+
const { sql: dataSql, params: dataParams } = dataQueryBuilder.build();
|
|
327
|
+
const rows = await this.operations.executeQuery({
|
|
328
|
+
sql: dataSql,
|
|
329
|
+
params: dataParams
|
|
330
|
+
});
|
|
331
|
+
const evals = (isArrayOfRecords(rows) ? rows : []).map((row) => {
|
|
332
|
+
const result = deserializeValue(row.result);
|
|
333
|
+
const testInfo = row.test_info ? deserializeValue(row.test_info) : void 0;
|
|
334
|
+
if (!result || typeof result !== "object" || !("score" in result)) {
|
|
335
|
+
throw new Error(`Invalid MetricResult format: ${JSON.stringify(result)}`);
|
|
336
|
+
}
|
|
337
|
+
return {
|
|
338
|
+
input: row.input,
|
|
339
|
+
output: row.output,
|
|
340
|
+
result,
|
|
341
|
+
agentName: row.agent_name,
|
|
342
|
+
metricName: row.metric_name,
|
|
343
|
+
instructions: row.instructions,
|
|
344
|
+
testInfo,
|
|
345
|
+
globalRunId: row.global_run_id,
|
|
346
|
+
runId: row.run_id,
|
|
347
|
+
createdAt: row.created_at
|
|
348
|
+
};
|
|
502
349
|
});
|
|
350
|
+
const hasMore = currentOffset + evals.length < total;
|
|
351
|
+
return {
|
|
352
|
+
evals,
|
|
353
|
+
total,
|
|
354
|
+
page,
|
|
355
|
+
perPage,
|
|
356
|
+
hasMore
|
|
357
|
+
};
|
|
358
|
+
} catch (error$1) {
|
|
503
359
|
throw new error.MastraError(
|
|
504
360
|
{
|
|
505
|
-
id: "
|
|
361
|
+
id: "CLOUDFLARE_D1_STORAGE_GET_EVALS_ERROR",
|
|
506
362
|
domain: error.ErrorDomain.STORAGE,
|
|
507
363
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
508
|
-
text: `Failed to
|
|
509
|
-
details: {
|
|
364
|
+
text: `Failed to retrieve evals for agent ${agentName}: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
365
|
+
details: { agentName: agentName ?? "", type: type ?? "" }
|
|
510
366
|
},
|
|
511
367
|
error$1
|
|
512
368
|
);
|
|
513
369
|
}
|
|
514
370
|
}
|
|
515
371
|
/**
|
|
516
|
-
*
|
|
517
|
-
* @param tableName Name of the table
|
|
518
|
-
* @param schema Schema of the table
|
|
519
|
-
* @param ifNotExists Array of column names to add if they don't exist
|
|
372
|
+
* @deprecated use getEvals instead
|
|
520
373
|
*/
|
|
521
|
-
async
|
|
522
|
-
|
|
523
|
-
schema,
|
|
524
|
-
ifNotExists
|
|
525
|
-
}) {
|
|
526
|
-
const fullTableName = this.getTableName(tableName);
|
|
374
|
+
async getEvalsByAgentName(agentName, type) {
|
|
375
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_EVALS);
|
|
527
376
|
try {
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
const sqlType = this.getSqlType(columnDef.type);
|
|
534
|
-
const nullable = columnDef.nullable === false ? "NOT NULL" : "";
|
|
535
|
-
const defaultValue = columnDef.nullable === false ? this.getDefaultValue(columnDef.type) : "";
|
|
536
|
-
const alterSql = `ALTER TABLE ${fullTableName} ADD COLUMN ${columnName} ${sqlType} ${nullable} ${defaultValue}`.trim();
|
|
537
|
-
await this.executeQuery({ sql: alterSql, params: [] });
|
|
538
|
-
this.logger.debug(`Added column ${columnName} to table ${fullTableName}`);
|
|
539
|
-
}
|
|
377
|
+
let query = createSqlBuilder().select("*").from(fullTableName).where("agent_name = ?", agentName);
|
|
378
|
+
if (type === "test") {
|
|
379
|
+
query = query.andWhere("test_info IS NOT NULL AND json_extract(test_info, '$.testPath') IS NOT NULL");
|
|
380
|
+
} else if (type === "live") {
|
|
381
|
+
query = query.andWhere("(test_info IS NULL OR json_extract(test_info, '$.testPath') IS NULL)");
|
|
540
382
|
}
|
|
383
|
+
query.orderBy("created_at", "DESC");
|
|
384
|
+
const { sql, params } = query.build();
|
|
385
|
+
const results = await this.operations.executeQuery({ sql, params });
|
|
386
|
+
return isArrayOfRecords(results) ? results.map((row) => {
|
|
387
|
+
const result = deserializeValue(row.result);
|
|
388
|
+
const testInfo = row.test_info ? deserializeValue(row.test_info) : void 0;
|
|
389
|
+
return {
|
|
390
|
+
input: row.input || "",
|
|
391
|
+
output: row.output || "",
|
|
392
|
+
result,
|
|
393
|
+
agentName: row.agent_name || "",
|
|
394
|
+
metricName: row.metric_name || "",
|
|
395
|
+
instructions: row.instructions || "",
|
|
396
|
+
runId: row.run_id || "",
|
|
397
|
+
globalRunId: row.global_run_id || "",
|
|
398
|
+
createdAt: row.created_at || "",
|
|
399
|
+
testInfo
|
|
400
|
+
};
|
|
401
|
+
}) : [];
|
|
541
402
|
} catch (error$1) {
|
|
542
|
-
|
|
403
|
+
const mastraError = new error.MastraError(
|
|
543
404
|
{
|
|
544
|
-
id: "
|
|
405
|
+
id: "CLOUDFLARE_D1_STORAGE_GET_EVALS_ERROR",
|
|
545
406
|
domain: error.ErrorDomain.STORAGE,
|
|
546
407
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
547
|
-
text: `Failed to
|
|
548
|
-
details: {
|
|
408
|
+
text: `Failed to retrieve evals for agent ${agentName}: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
409
|
+
details: { agentName }
|
|
549
410
|
},
|
|
550
411
|
error$1
|
|
551
412
|
);
|
|
413
|
+
this.logger?.error(mastraError.toString());
|
|
414
|
+
this.logger?.trackException(mastraError);
|
|
415
|
+
return [];
|
|
552
416
|
}
|
|
553
417
|
}
|
|
554
|
-
|
|
555
|
-
|
|
418
|
+
};
|
|
419
|
+
var MemoryStorageD1 = class extends storage.MemoryStorage {
|
|
420
|
+
operations;
|
|
421
|
+
constructor({ operations }) {
|
|
422
|
+
super();
|
|
423
|
+
this.operations = operations;
|
|
424
|
+
}
|
|
425
|
+
async getResourceById({ resourceId }) {
|
|
426
|
+
const resource = await this.operations.load({
|
|
427
|
+
tableName: storage.TABLE_RESOURCES,
|
|
428
|
+
keys: { id: resourceId }
|
|
429
|
+
});
|
|
430
|
+
if (!resource) return null;
|
|
556
431
|
try {
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
432
|
+
return {
|
|
433
|
+
...resource,
|
|
434
|
+
createdAt: storage.ensureDate(resource.createdAt),
|
|
435
|
+
updatedAt: storage.ensureDate(resource.updatedAt),
|
|
436
|
+
metadata: typeof resource.metadata === "string" ? JSON.parse(resource.metadata || "{}") : resource.metadata
|
|
437
|
+
};
|
|
561
438
|
} catch (error$1) {
|
|
562
|
-
|
|
439
|
+
const mastraError = new error.MastraError(
|
|
563
440
|
{
|
|
564
|
-
id: "
|
|
441
|
+
id: "CLOUDFLARE_D1_STORAGE_GET_RESOURCE_BY_ID_ERROR",
|
|
565
442
|
domain: error.ErrorDomain.STORAGE,
|
|
566
443
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
567
|
-
text: `
|
|
568
|
-
details: {
|
|
444
|
+
text: `Error processing resource ${resourceId}: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
445
|
+
details: { resourceId }
|
|
569
446
|
},
|
|
570
447
|
error$1
|
|
571
448
|
);
|
|
449
|
+
this.logger?.error(mastraError.toString());
|
|
450
|
+
this.logger?.trackException(mastraError);
|
|
451
|
+
return null;
|
|
572
452
|
}
|
|
573
453
|
}
|
|
574
|
-
async
|
|
575
|
-
const
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
const processedRecord = await this.processRecord(
|
|
454
|
+
async saveResource({ resource }) {
|
|
455
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_RESOURCES);
|
|
456
|
+
const resourceToSave = {
|
|
457
|
+
id: resource.id,
|
|
458
|
+
workingMemory: resource.workingMemory,
|
|
459
|
+
metadata: resource.metadata ? JSON.stringify(resource.metadata) : null,
|
|
460
|
+
createdAt: resource.createdAt,
|
|
461
|
+
updatedAt: resource.updatedAt
|
|
462
|
+
};
|
|
463
|
+
const processedRecord = await this.operations.processRecord(resourceToSave);
|
|
584
464
|
const columns = Object.keys(processedRecord);
|
|
585
465
|
const values = Object.values(processedRecord);
|
|
586
|
-
const
|
|
466
|
+
const updateMap = {
|
|
467
|
+
workingMemory: "excluded.workingMemory",
|
|
468
|
+
metadata: "excluded.metadata",
|
|
469
|
+
createdAt: "excluded.createdAt",
|
|
470
|
+
updatedAt: "excluded.updatedAt"
|
|
471
|
+
};
|
|
472
|
+
const query = createSqlBuilder().insert(fullTableName, columns, values, ["id"], updateMap);
|
|
587
473
|
const { sql, params } = query.build();
|
|
588
474
|
try {
|
|
589
|
-
await this.executeQuery({ sql, params });
|
|
475
|
+
await this.operations.executeQuery({ sql, params });
|
|
476
|
+
return resource;
|
|
590
477
|
} catch (error$1) {
|
|
591
478
|
throw new error.MastraError(
|
|
592
479
|
{
|
|
593
|
-
id: "
|
|
480
|
+
id: "CLOUDFLARE_D1_STORAGE_SAVE_RESOURCE_ERROR",
|
|
594
481
|
domain: error.ErrorDomain.STORAGE,
|
|
595
482
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
596
|
-
text: `Failed to
|
|
597
|
-
details: {
|
|
483
|
+
text: `Failed to save resource to ${fullTableName}: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
484
|
+
details: { resourceId: resource.id }
|
|
598
485
|
},
|
|
599
486
|
error$1
|
|
600
487
|
);
|
|
601
488
|
}
|
|
602
489
|
}
|
|
603
|
-
async
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
490
|
+
async updateResource({
|
|
491
|
+
resourceId,
|
|
492
|
+
workingMemory,
|
|
493
|
+
metadata
|
|
494
|
+
}) {
|
|
495
|
+
const existingResource = await this.getResourceById({ resourceId });
|
|
496
|
+
if (!existingResource) {
|
|
497
|
+
const newResource = {
|
|
498
|
+
id: resourceId,
|
|
499
|
+
workingMemory,
|
|
500
|
+
metadata: metadata || {},
|
|
501
|
+
createdAt: /* @__PURE__ */ new Date(),
|
|
502
|
+
updatedAt: /* @__PURE__ */ new Date()
|
|
503
|
+
};
|
|
504
|
+
return this.saveResource({ resource: newResource });
|
|
614
505
|
}
|
|
615
|
-
|
|
506
|
+
const updatedAt = /* @__PURE__ */ new Date();
|
|
507
|
+
const updatedResource = {
|
|
508
|
+
...existingResource,
|
|
509
|
+
workingMemory: workingMemory !== void 0 ? workingMemory : existingResource.workingMemory,
|
|
510
|
+
metadata: {
|
|
511
|
+
...existingResource.metadata,
|
|
512
|
+
...metadata
|
|
513
|
+
},
|
|
514
|
+
updatedAt
|
|
515
|
+
};
|
|
516
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_RESOURCES);
|
|
517
|
+
const columns = ["workingMemory", "metadata", "updatedAt"];
|
|
518
|
+
const values = [updatedResource.workingMemory, JSON.stringify(updatedResource.metadata), updatedAt.toISOString()];
|
|
519
|
+
const query = createSqlBuilder().update(fullTableName, columns, values).where("id = ?", resourceId);
|
|
616
520
|
const { sql, params } = query.build();
|
|
617
521
|
try {
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
const processedResult = {};
|
|
621
|
-
for (const [key, value] of Object.entries(result)) {
|
|
622
|
-
processedResult[key] = this.deserializeValue(value);
|
|
623
|
-
}
|
|
624
|
-
return processedResult;
|
|
522
|
+
await this.operations.executeQuery({ sql, params });
|
|
523
|
+
return updatedResource;
|
|
625
524
|
} catch (error$1) {
|
|
626
525
|
throw new error.MastraError(
|
|
627
526
|
{
|
|
628
|
-
id: "
|
|
527
|
+
id: "CLOUDFLARE_D1_STORAGE_UPDATE_RESOURCE_ERROR",
|
|
629
528
|
domain: error.ErrorDomain.STORAGE,
|
|
630
529
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
631
|
-
text: `Failed to
|
|
632
|
-
details: {
|
|
530
|
+
text: `Failed to update resource ${resourceId}: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
531
|
+
details: { resourceId }
|
|
633
532
|
},
|
|
634
533
|
error$1
|
|
635
534
|
);
|
|
636
535
|
}
|
|
637
536
|
}
|
|
638
537
|
async getThreadById({ threadId }) {
|
|
639
|
-
const thread = await this.load({
|
|
538
|
+
const thread = await this.operations.load({
|
|
640
539
|
tableName: storage.TABLE_THREADS,
|
|
641
540
|
keys: { id: threadId }
|
|
642
541
|
});
|
|
643
542
|
if (!thread) return null;
|
|
543
|
+
console.log("thread", thread);
|
|
644
544
|
try {
|
|
645
545
|
return {
|
|
646
546
|
...thread,
|
|
647
|
-
createdAt:
|
|
648
|
-
updatedAt:
|
|
547
|
+
createdAt: storage.ensureDate(thread.createdAt),
|
|
548
|
+
updatedAt: storage.ensureDate(thread.updatedAt),
|
|
649
549
|
metadata: typeof thread.metadata === "string" ? JSON.parse(thread.metadata || "{}") : thread.metadata || {}
|
|
650
550
|
};
|
|
651
551
|
} catch (error$1) {
|
|
@@ -668,15 +568,15 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
668
568
|
* @deprecated use getThreadsByResourceIdPaginated instead
|
|
669
569
|
*/
|
|
670
570
|
async getThreadsByResourceId({ resourceId }) {
|
|
671
|
-
const fullTableName = this.getTableName(storage.TABLE_THREADS);
|
|
571
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_THREADS);
|
|
672
572
|
try {
|
|
673
573
|
const query = createSqlBuilder().select("*").from(fullTableName).where("resourceId = ?", resourceId);
|
|
674
574
|
const { sql, params } = query.build();
|
|
675
|
-
const results = await this.executeQuery({ sql, params });
|
|
575
|
+
const results = await this.operations.executeQuery({ sql, params });
|
|
676
576
|
return (isArrayOfRecords(results) ? results : []).map((thread) => ({
|
|
677
577
|
...thread,
|
|
678
|
-
createdAt:
|
|
679
|
-
updatedAt:
|
|
578
|
+
createdAt: storage.ensureDate(thread.createdAt),
|
|
579
|
+
updatedAt: storage.ensureDate(thread.updatedAt),
|
|
680
580
|
metadata: typeof thread.metadata === "string" ? JSON.parse(thread.metadata || "{}") : thread.metadata || {}
|
|
681
581
|
}));
|
|
682
582
|
} catch (error$1) {
|
|
@@ -697,19 +597,19 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
697
597
|
}
|
|
698
598
|
async getThreadsByResourceIdPaginated(args) {
|
|
699
599
|
const { resourceId, page, perPage } = args;
|
|
700
|
-
const fullTableName = this.getTableName(storage.TABLE_THREADS);
|
|
600
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_THREADS);
|
|
701
601
|
const mapRowToStorageThreadType = (row) => ({
|
|
702
602
|
...row,
|
|
703
|
-
createdAt:
|
|
704
|
-
updatedAt:
|
|
603
|
+
createdAt: storage.ensureDate(row.createdAt),
|
|
604
|
+
updatedAt: storage.ensureDate(row.updatedAt),
|
|
705
605
|
metadata: typeof row.metadata === "string" ? JSON.parse(row.metadata || "{}") : row.metadata || {}
|
|
706
606
|
});
|
|
707
607
|
try {
|
|
708
608
|
const countQuery = createSqlBuilder().count().from(fullTableName).where("resourceId = ?", resourceId);
|
|
709
|
-
const countResult = await this.executeQuery(countQuery.build());
|
|
609
|
+
const countResult = await this.operations.executeQuery(countQuery.build());
|
|
710
610
|
const total = Number(countResult?.[0]?.count ?? 0);
|
|
711
611
|
const selectQuery = createSqlBuilder().select("*").from(fullTableName).where("resourceId = ?", resourceId).orderBy("createdAt", "DESC").limit(perPage).offset(page * perPage);
|
|
712
|
-
const results = await this.executeQuery(selectQuery.build());
|
|
612
|
+
const results = await this.operations.executeQuery(selectQuery.build());
|
|
713
613
|
const threads = results.map(mapRowToStorageThreadType);
|
|
714
614
|
return {
|
|
715
615
|
threads,
|
|
@@ -741,16 +641,16 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
741
641
|
}
|
|
742
642
|
}
|
|
743
643
|
async saveThread({ thread }) {
|
|
744
|
-
const fullTableName = this.getTableName(storage.TABLE_THREADS);
|
|
644
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_THREADS);
|
|
745
645
|
const threadToSave = {
|
|
746
646
|
id: thread.id,
|
|
747
647
|
resourceId: thread.resourceId,
|
|
748
648
|
title: thread.title,
|
|
749
649
|
metadata: thread.metadata ? JSON.stringify(thread.metadata) : null,
|
|
750
|
-
createdAt: thread.createdAt,
|
|
751
|
-
updatedAt: thread.updatedAt
|
|
650
|
+
createdAt: thread.createdAt.toISOString(),
|
|
651
|
+
updatedAt: thread.updatedAt.toISOString()
|
|
752
652
|
};
|
|
753
|
-
const processedRecord = await this.processRecord(threadToSave);
|
|
653
|
+
const processedRecord = await this.operations.processRecord(threadToSave);
|
|
754
654
|
const columns = Object.keys(processedRecord);
|
|
755
655
|
const values = Object.values(processedRecord);
|
|
756
656
|
const updateMap = {
|
|
@@ -763,7 +663,7 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
763
663
|
const query = createSqlBuilder().insert(fullTableName, columns, values, ["id"], updateMap);
|
|
764
664
|
const { sql, params } = query.build();
|
|
765
665
|
try {
|
|
766
|
-
await this.executeQuery({ sql, params });
|
|
666
|
+
await this.operations.executeQuery({ sql, params });
|
|
767
667
|
return thread;
|
|
768
668
|
} catch (error$1) {
|
|
769
669
|
throw new error.MastraError(
|
|
@@ -788,16 +688,17 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
788
688
|
if (!thread) {
|
|
789
689
|
throw new Error(`Thread ${id} not found`);
|
|
790
690
|
}
|
|
791
|
-
const fullTableName = this.getTableName(storage.TABLE_THREADS);
|
|
691
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_THREADS);
|
|
792
692
|
const mergedMetadata = {
|
|
793
693
|
...typeof thread.metadata === "string" ? JSON.parse(thread.metadata) : thread.metadata,
|
|
794
694
|
...metadata
|
|
795
695
|
};
|
|
696
|
+
const updatedAt = /* @__PURE__ */ new Date();
|
|
796
697
|
const columns = ["title", "metadata", "updatedAt"];
|
|
797
|
-
const values = [title, JSON.stringify(mergedMetadata),
|
|
698
|
+
const values = [title, JSON.stringify(mergedMetadata), updatedAt.toISOString()];
|
|
798
699
|
const query = createSqlBuilder().update(fullTableName, columns, values).where("id = ?", id);
|
|
799
700
|
const { sql, params } = query.build();
|
|
800
|
-
await this.executeQuery({ sql, params });
|
|
701
|
+
await this.operations.executeQuery({ sql, params });
|
|
801
702
|
return {
|
|
802
703
|
...thread,
|
|
803
704
|
title,
|
|
@@ -805,7 +706,7 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
805
706
|
...typeof thread.metadata === "string" ? JSON.parse(thread.metadata) : thread.metadata,
|
|
806
707
|
...metadata
|
|
807
708
|
},
|
|
808
|
-
updatedAt
|
|
709
|
+
updatedAt
|
|
809
710
|
};
|
|
810
711
|
} catch (error$1) {
|
|
811
712
|
throw new error.MastraError(
|
|
@@ -821,15 +722,15 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
821
722
|
}
|
|
822
723
|
}
|
|
823
724
|
async deleteThread({ threadId }) {
|
|
824
|
-
const fullTableName = this.getTableName(storage.TABLE_THREADS);
|
|
725
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_THREADS);
|
|
825
726
|
try {
|
|
826
727
|
const deleteThreadQuery = createSqlBuilder().delete(fullTableName).where("id = ?", threadId);
|
|
827
728
|
const { sql: threadSql, params: threadParams } = deleteThreadQuery.build();
|
|
828
|
-
await this.executeQuery({ sql: threadSql, params: threadParams });
|
|
829
|
-
const messagesTableName = this.getTableName(storage.TABLE_MESSAGES);
|
|
729
|
+
await this.operations.executeQuery({ sql: threadSql, params: threadParams });
|
|
730
|
+
const messagesTableName = this.operations.getTableName(storage.TABLE_MESSAGES);
|
|
830
731
|
const deleteMessagesQuery = createSqlBuilder().delete(messagesTableName).where("thread_id = ?", threadId);
|
|
831
732
|
const { sql: messagesSql, params: messagesParams } = deleteMessagesQuery.build();
|
|
832
|
-
await this.executeQuery({ sql: messagesSql, params: messagesParams });
|
|
733
|
+
await this.operations.executeQuery({ sql: messagesSql, params: messagesParams });
|
|
833
734
|
} catch (error$1) {
|
|
834
735
|
throw new error.MastraError(
|
|
835
736
|
{
|
|
@@ -860,6 +761,9 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
860
761
|
if (!message.role) {
|
|
861
762
|
throw new Error(`Message at index ${i} missing role`);
|
|
862
763
|
}
|
|
764
|
+
if (!message.resourceId) {
|
|
765
|
+
throw new Error(`Message at index ${i} missing resourceId`);
|
|
766
|
+
}
|
|
863
767
|
const thread = await this.getThreadById({ threadId: message.threadId });
|
|
864
768
|
if (!thread) {
|
|
865
769
|
throw new Error(`Thread ${message.threadId} not found`);
|
|
@@ -878,13 +782,13 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
878
782
|
};
|
|
879
783
|
});
|
|
880
784
|
await Promise.all([
|
|
881
|
-
this.batchUpsert({
|
|
785
|
+
this.operations.batchUpsert({
|
|
882
786
|
tableName: storage.TABLE_MESSAGES,
|
|
883
787
|
records: messagesToInsert
|
|
884
788
|
}),
|
|
885
789
|
// Update thread's updatedAt timestamp
|
|
886
|
-
this.executeQuery({
|
|
887
|
-
sql: `UPDATE ${this.getTableName(storage.TABLE_THREADS)} SET updatedAt = ? WHERE id = ?`,
|
|
790
|
+
this.operations.executeQuery({
|
|
791
|
+
sql: `UPDATE ${this.operations.getTableName(storage.TABLE_THREADS)} SET updatedAt = ? WHERE id = ?`,
|
|
888
792
|
params: [now.toISOString(), threadId]
|
|
889
793
|
})
|
|
890
794
|
]);
|
|
@@ -907,56 +811,67 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
907
811
|
async _getIncludedMessages(threadId, selectBy) {
|
|
908
812
|
const include = selectBy?.include;
|
|
909
813
|
if (!include) return null;
|
|
910
|
-
const
|
|
911
|
-
const
|
|
912
|
-
|
|
913
|
-
const
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
const messages = await this.executeQuery({ sql, params });
|
|
951
|
-
|
|
814
|
+
const unionQueries = [];
|
|
815
|
+
const params = [];
|
|
816
|
+
let paramIdx = 1;
|
|
817
|
+
for (const inc of include) {
|
|
818
|
+
const { id, withPreviousMessages = 0, withNextMessages = 0 } = inc;
|
|
819
|
+
const searchId = inc.threadId || threadId;
|
|
820
|
+
unionQueries.push(`
|
|
821
|
+
SELECT * FROM (
|
|
822
|
+
WITH ordered_messages AS (
|
|
823
|
+
SELECT
|
|
824
|
+
*,
|
|
825
|
+
ROW_NUMBER() OVER (ORDER BY createdAt ASC) AS row_num
|
|
826
|
+
FROM ${this.operations.getTableName(storage.TABLE_MESSAGES)}
|
|
827
|
+
WHERE thread_id = ?
|
|
828
|
+
)
|
|
829
|
+
SELECT
|
|
830
|
+
m.id,
|
|
831
|
+
m.content,
|
|
832
|
+
m.role,
|
|
833
|
+
m.type,
|
|
834
|
+
m.createdAt,
|
|
835
|
+
m.thread_id AS threadId,
|
|
836
|
+
m.resourceId
|
|
837
|
+
FROM ordered_messages m
|
|
838
|
+
WHERE m.id = ?
|
|
839
|
+
OR EXISTS (
|
|
840
|
+
SELECT 1 FROM ordered_messages target
|
|
841
|
+
WHERE target.id = ?
|
|
842
|
+
AND (
|
|
843
|
+
(m.row_num <= target.row_num + ? AND m.row_num > target.row_num)
|
|
844
|
+
OR
|
|
845
|
+
(m.row_num >= target.row_num - ? AND m.row_num < target.row_num)
|
|
846
|
+
)
|
|
847
|
+
)
|
|
848
|
+
) AS query_${paramIdx}
|
|
849
|
+
`);
|
|
850
|
+
params.push(searchId, id, id, withNextMessages, withPreviousMessages);
|
|
851
|
+
paramIdx++;
|
|
852
|
+
}
|
|
853
|
+
const finalQuery = unionQueries.join(" UNION ALL ") + " ORDER BY createdAt ASC";
|
|
854
|
+
const messages = await this.operations.executeQuery({ sql: finalQuery, params });
|
|
855
|
+
if (!Array.isArray(messages)) {
|
|
856
|
+
return [];
|
|
857
|
+
}
|
|
858
|
+
const processedMessages = messages.map((message) => {
|
|
859
|
+
const processedMsg = {};
|
|
860
|
+
for (const [key, value] of Object.entries(message)) {
|
|
861
|
+
if (key === `type` && value === `v2`) continue;
|
|
862
|
+
processedMsg[key] = deserializeValue(value);
|
|
863
|
+
}
|
|
864
|
+
return processedMsg;
|
|
865
|
+
});
|
|
866
|
+
return processedMessages;
|
|
952
867
|
}
|
|
953
868
|
async getMessages({
|
|
954
869
|
threadId,
|
|
955
870
|
selectBy,
|
|
956
871
|
format
|
|
957
872
|
}) {
|
|
958
|
-
const fullTableName = this.getTableName(storage.TABLE_MESSAGES);
|
|
959
|
-
const limit =
|
|
873
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_MESSAGES);
|
|
874
|
+
const limit = storage.resolveMessageLimit({
|
|
960
875
|
last: selectBy?.last,
|
|
961
876
|
defaultLimit: 40
|
|
962
877
|
});
|
|
@@ -974,7 +889,7 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
974
889
|
}
|
|
975
890
|
query.orderBy("createdAt", "DESC").limit(limit);
|
|
976
891
|
const { sql, params } = query.build();
|
|
977
|
-
const result = await this.executeQuery({ sql, params });
|
|
892
|
+
const result = await this.operations.executeQuery({ sql, params });
|
|
978
893
|
if (Array.isArray(result)) messages.push(...result);
|
|
979
894
|
messages.sort((a, b) => {
|
|
980
895
|
const aRecord = a;
|
|
@@ -987,7 +902,7 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
987
902
|
const processedMsg = {};
|
|
988
903
|
for (const [key, value] of Object.entries(message)) {
|
|
989
904
|
if (key === `type` && value === `v2`) continue;
|
|
990
|
-
processedMsg[key] =
|
|
905
|
+
processedMsg[key] = deserializeValue(value);
|
|
991
906
|
}
|
|
992
907
|
return processedMsg;
|
|
993
908
|
});
|
|
@@ -1016,9 +931,10 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1016
931
|
selectBy,
|
|
1017
932
|
format
|
|
1018
933
|
}) {
|
|
1019
|
-
const { dateRange, page = 0, perPage
|
|
934
|
+
const { dateRange, page = 0, perPage: perPageInput } = selectBy?.pagination || {};
|
|
1020
935
|
const { start: fromDate, end: toDate } = dateRange || {};
|
|
1021
|
-
const
|
|
936
|
+
const perPage = perPageInput !== void 0 ? perPageInput : storage.resolveMessageLimit({ last: selectBy?.last, defaultLimit: 40 });
|
|
937
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_MESSAGES);
|
|
1022
938
|
const messages = [];
|
|
1023
939
|
try {
|
|
1024
940
|
if (selectBy?.include?.length) {
|
|
@@ -1027,30 +943,80 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1027
943
|
}
|
|
1028
944
|
const countQuery = createSqlBuilder().count().from(fullTableName).where("thread_id = ?", threadId);
|
|
1029
945
|
if (fromDate) {
|
|
1030
|
-
countQuery.andWhere("createdAt >= ?",
|
|
946
|
+
countQuery.andWhere("createdAt >= ?", storage.serializeDate(fromDate));
|
|
1031
947
|
}
|
|
1032
948
|
if (toDate) {
|
|
1033
|
-
countQuery.andWhere("createdAt <= ?",
|
|
949
|
+
countQuery.andWhere("createdAt <= ?", storage.serializeDate(toDate));
|
|
1034
950
|
}
|
|
1035
|
-
const countResult = await this.executeQuery(countQuery.build());
|
|
951
|
+
const countResult = await this.operations.executeQuery(countQuery.build());
|
|
1036
952
|
const total = Number(countResult[0]?.count ?? 0);
|
|
1037
|
-
|
|
953
|
+
if (total === 0 && messages.length === 0) {
|
|
954
|
+
return {
|
|
955
|
+
messages: [],
|
|
956
|
+
total: 0,
|
|
957
|
+
page,
|
|
958
|
+
perPage,
|
|
959
|
+
hasMore: false
|
|
960
|
+
};
|
|
961
|
+
}
|
|
962
|
+
const excludeIds = messages.map((m) => m.id);
|
|
963
|
+
const excludeCondition = excludeIds.length > 0 ? `AND id NOT IN (${excludeIds.map(() => "?").join(",")})` : "";
|
|
964
|
+
let query;
|
|
965
|
+
let queryParams = [threadId];
|
|
1038
966
|
if (fromDate) {
|
|
1039
|
-
|
|
967
|
+
queryParams.push(storage.serializeDate(fromDate));
|
|
1040
968
|
}
|
|
1041
969
|
if (toDate) {
|
|
1042
|
-
|
|
970
|
+
queryParams.push(storage.serializeDate(toDate));
|
|
971
|
+
}
|
|
972
|
+
if (excludeIds.length > 0) {
|
|
973
|
+
queryParams.push(...excludeIds);
|
|
974
|
+
}
|
|
975
|
+
if (selectBy?.last && selectBy.last > 0) {
|
|
976
|
+
query = `
|
|
977
|
+
SELECT id, content, role, type, createdAt, thread_id AS threadId, resourceId
|
|
978
|
+
FROM ${fullTableName}
|
|
979
|
+
WHERE thread_id = ?
|
|
980
|
+
${fromDate ? "AND createdAt >= ?" : ""}
|
|
981
|
+
${toDate ? "AND createdAt <= ?" : ""}
|
|
982
|
+
${excludeCondition}
|
|
983
|
+
ORDER BY createdAt DESC
|
|
984
|
+
LIMIT ?
|
|
985
|
+
`;
|
|
986
|
+
queryParams.push(selectBy.last);
|
|
987
|
+
} else {
|
|
988
|
+
query = `
|
|
989
|
+
SELECT id, content, role, type, createdAt, thread_id AS threadId, resourceId
|
|
990
|
+
FROM ${fullTableName}
|
|
991
|
+
WHERE thread_id = ?
|
|
992
|
+
${fromDate ? "AND createdAt >= ?" : ""}
|
|
993
|
+
${toDate ? "AND createdAt <= ?" : ""}
|
|
994
|
+
${excludeCondition}
|
|
995
|
+
ORDER BY createdAt DESC
|
|
996
|
+
LIMIT ? OFFSET ?
|
|
997
|
+
`;
|
|
998
|
+
queryParams.push(perPage, page * perPage);
|
|
999
|
+
}
|
|
1000
|
+
const results = await this.operations.executeQuery({ sql: query, params: queryParams });
|
|
1001
|
+
const processedMessages = results.map((message) => {
|
|
1002
|
+
const processedMsg = {};
|
|
1003
|
+
for (const [key, value] of Object.entries(message)) {
|
|
1004
|
+
if (key === `type` && value === `v2`) continue;
|
|
1005
|
+
processedMsg[key] = deserializeValue(value);
|
|
1006
|
+
}
|
|
1007
|
+
return processedMsg;
|
|
1008
|
+
});
|
|
1009
|
+
if (selectBy?.last) {
|
|
1010
|
+
processedMessages.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime());
|
|
1043
1011
|
}
|
|
1044
|
-
|
|
1045
|
-
const results = await this.executeQuery(query.build());
|
|
1046
|
-
const list = new agent.MessageList().add(results, "memory");
|
|
1012
|
+
const list = new agent.MessageList().add(processedMessages, "memory");
|
|
1047
1013
|
messages.push(...format === `v2` ? list.get.all.v2() : list.get.all.v1());
|
|
1048
1014
|
return {
|
|
1049
1015
|
messages,
|
|
1050
1016
|
total,
|
|
1051
1017
|
page,
|
|
1052
1018
|
perPage,
|
|
1053
|
-
hasMore: page * perPage + messages.length < total
|
|
1019
|
+
hasMore: selectBy?.last ? false : page * perPage + messages.length < total
|
|
1054
1020
|
};
|
|
1055
1021
|
} catch (error$1) {
|
|
1056
1022
|
const mastraError = new error.MastraError(
|
|
@@ -1074,132 +1040,445 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1074
1040
|
};
|
|
1075
1041
|
}
|
|
1076
1042
|
}
|
|
1077
|
-
async
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
const
|
|
1084
|
-
const
|
|
1085
|
-
|
|
1086
|
-
keys: { workflow_name: workflowName, run_id: runId }
|
|
1087
|
-
});
|
|
1088
|
-
const persisting = currentSnapshot ? {
|
|
1089
|
-
...currentSnapshot,
|
|
1090
|
-
snapshot: JSON.stringify(snapshot),
|
|
1091
|
-
updatedAt: now
|
|
1092
|
-
} : {
|
|
1093
|
-
workflow_name: workflowName,
|
|
1094
|
-
run_id: runId,
|
|
1095
|
-
snapshot,
|
|
1096
|
-
createdAt: now,
|
|
1097
|
-
updatedAt: now
|
|
1098
|
-
};
|
|
1099
|
-
const processedRecord = await this.processRecord(persisting);
|
|
1100
|
-
const columns = Object.keys(processedRecord);
|
|
1101
|
-
const values = Object.values(processedRecord);
|
|
1102
|
-
const updateMap = {
|
|
1103
|
-
snapshot: "excluded.snapshot",
|
|
1104
|
-
updatedAt: "excluded.updatedAt"
|
|
1105
|
-
};
|
|
1106
|
-
this.logger.debug("Persisting workflow snapshot", { workflowName, runId });
|
|
1107
|
-
const query = createSqlBuilder().insert(fullTableName, columns, values, ["workflow_name", "run_id"], updateMap);
|
|
1108
|
-
const { sql, params } = query.build();
|
|
1043
|
+
async updateMessages(args) {
|
|
1044
|
+
const { messages } = args;
|
|
1045
|
+
this.logger.debug("Updating messages", { count: messages.length });
|
|
1046
|
+
if (!messages.length) {
|
|
1047
|
+
return [];
|
|
1048
|
+
}
|
|
1049
|
+
const messageIds = messages.map((m) => m.id);
|
|
1050
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_MESSAGES);
|
|
1051
|
+
const threadsTableName = this.operations.getTableName(storage.TABLE_THREADS);
|
|
1109
1052
|
try {
|
|
1110
|
-
|
|
1053
|
+
const placeholders = messageIds.map(() => "?").join(",");
|
|
1054
|
+
const selectQuery = `SELECT id, content, role, type, createdAt, thread_id AS threadId, resourceId FROM ${fullTableName} WHERE id IN (${placeholders})`;
|
|
1055
|
+
const existingMessages = await this.operations.executeQuery({ sql: selectQuery, params: messageIds });
|
|
1056
|
+
if (existingMessages.length === 0) {
|
|
1057
|
+
return [];
|
|
1058
|
+
}
|
|
1059
|
+
const parsedExistingMessages = existingMessages.map((msg) => {
|
|
1060
|
+
if (typeof msg.content === "string") {
|
|
1061
|
+
try {
|
|
1062
|
+
msg.content = JSON.parse(msg.content);
|
|
1063
|
+
} catch {
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
return msg;
|
|
1067
|
+
});
|
|
1068
|
+
const threadIdsToUpdate = /* @__PURE__ */ new Set();
|
|
1069
|
+
const updateQueries = [];
|
|
1070
|
+
for (const existingMessage of parsedExistingMessages) {
|
|
1071
|
+
const updatePayload = messages.find((m) => m.id === existingMessage.id);
|
|
1072
|
+
if (!updatePayload) continue;
|
|
1073
|
+
const { id, ...fieldsToUpdate } = updatePayload;
|
|
1074
|
+
if (Object.keys(fieldsToUpdate).length === 0) continue;
|
|
1075
|
+
threadIdsToUpdate.add(existingMessage.threadId);
|
|
1076
|
+
if ("threadId" in updatePayload && updatePayload.threadId && updatePayload.threadId !== existingMessage.threadId) {
|
|
1077
|
+
threadIdsToUpdate.add(updatePayload.threadId);
|
|
1078
|
+
}
|
|
1079
|
+
const setClauses = [];
|
|
1080
|
+
const values = [];
|
|
1081
|
+
const updatableFields = { ...fieldsToUpdate };
|
|
1082
|
+
if (updatableFields.content) {
|
|
1083
|
+
const existingContent = existingMessage.content || {};
|
|
1084
|
+
const newContent = {
|
|
1085
|
+
...existingContent,
|
|
1086
|
+
...updatableFields.content,
|
|
1087
|
+
// Deep merge metadata if it exists on both
|
|
1088
|
+
...existingContent?.metadata && updatableFields.content.metadata ? {
|
|
1089
|
+
metadata: {
|
|
1090
|
+
...existingContent.metadata,
|
|
1091
|
+
...updatableFields.content.metadata
|
|
1092
|
+
}
|
|
1093
|
+
} : {}
|
|
1094
|
+
};
|
|
1095
|
+
setClauses.push(`content = ?`);
|
|
1096
|
+
values.push(JSON.stringify(newContent));
|
|
1097
|
+
delete updatableFields.content;
|
|
1098
|
+
}
|
|
1099
|
+
for (const key in updatableFields) {
|
|
1100
|
+
if (Object.prototype.hasOwnProperty.call(updatableFields, key)) {
|
|
1101
|
+
const dbColumn = key === "threadId" ? "thread_id" : key;
|
|
1102
|
+
setClauses.push(`${dbColumn} = ?`);
|
|
1103
|
+
values.push(updatableFields[key]);
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
if (setClauses.length > 0) {
|
|
1107
|
+
values.push(id);
|
|
1108
|
+
const updateQuery = `UPDATE ${fullTableName} SET ${setClauses.join(", ")} WHERE id = ?`;
|
|
1109
|
+
updateQueries.push({ sql: updateQuery, params: values });
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
for (const query of updateQueries) {
|
|
1113
|
+
await this.operations.executeQuery(query);
|
|
1114
|
+
}
|
|
1115
|
+
if (threadIdsToUpdate.size > 0) {
|
|
1116
|
+
const threadPlaceholders = Array.from(threadIdsToUpdate).map(() => "?").join(",");
|
|
1117
|
+
const threadUpdateQuery = `UPDATE ${threadsTableName} SET updatedAt = ? WHERE id IN (${threadPlaceholders})`;
|
|
1118
|
+
const threadUpdateParams = [(/* @__PURE__ */ new Date()).toISOString(), ...Array.from(threadIdsToUpdate)];
|
|
1119
|
+
await this.operations.executeQuery({ sql: threadUpdateQuery, params: threadUpdateParams });
|
|
1120
|
+
}
|
|
1121
|
+
const updatedMessages = await this.operations.executeQuery({ sql: selectQuery, params: messageIds });
|
|
1122
|
+
return updatedMessages.map((message) => {
|
|
1123
|
+
if (typeof message.content === "string") {
|
|
1124
|
+
try {
|
|
1125
|
+
message.content = JSON.parse(message.content);
|
|
1126
|
+
} catch {
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
return message;
|
|
1130
|
+
});
|
|
1111
1131
|
} catch (error$1) {
|
|
1112
1132
|
throw new error.MastraError(
|
|
1113
1133
|
{
|
|
1114
|
-
id: "
|
|
1134
|
+
id: "CLOUDFLARE_D1_STORAGE_UPDATE_MESSAGES_FAILED",
|
|
1115
1135
|
domain: error.ErrorDomain.STORAGE,
|
|
1116
1136
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
1117
|
-
|
|
1118
|
-
details: { workflowName, runId }
|
|
1137
|
+
details: { count: messages.length }
|
|
1119
1138
|
},
|
|
1120
1139
|
error$1
|
|
1121
1140
|
);
|
|
1122
1141
|
}
|
|
1123
1142
|
}
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1143
|
+
};
|
|
1144
|
+
var StoreOperationsD1 = class extends storage.StoreOperations {
|
|
1145
|
+
client;
|
|
1146
|
+
binding;
|
|
1147
|
+
tablePrefix;
|
|
1148
|
+
constructor(config) {
|
|
1149
|
+
super();
|
|
1150
|
+
this.client = config.client;
|
|
1151
|
+
this.binding = config.binding;
|
|
1152
|
+
this.tablePrefix = config.tablePrefix || "";
|
|
1153
|
+
}
|
|
1154
|
+
async hasColumn(table, column) {
|
|
1155
|
+
const fullTableName = table.startsWith(this.tablePrefix) ? table : `${this.tablePrefix}${table}`;
|
|
1156
|
+
const sql = `PRAGMA table_info(${fullTableName});`;
|
|
1157
|
+
const result = await this.executeQuery({ sql, params: [] });
|
|
1158
|
+
if (!result || !Array.isArray(result)) return false;
|
|
1159
|
+
return result.some((col) => col.name === column || col.name === column.toLowerCase());
|
|
1160
|
+
}
|
|
1161
|
+
getTableName(tableName) {
|
|
1162
|
+
return `${this.tablePrefix}${tableName}`;
|
|
1163
|
+
}
|
|
1164
|
+
formatSqlParams(params) {
|
|
1165
|
+
return params.map((p) => p === void 0 || p === null ? null : p);
|
|
1166
|
+
}
|
|
1167
|
+
async executeWorkersBindingQuery({
|
|
1168
|
+
sql,
|
|
1169
|
+
params = [],
|
|
1170
|
+
first = false
|
|
1171
|
+
}) {
|
|
1172
|
+
if (!this.binding) {
|
|
1173
|
+
throw new Error("Workers binding is not configured");
|
|
1174
|
+
}
|
|
1127
1175
|
try {
|
|
1128
|
-
const
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1176
|
+
const statement = this.binding.prepare(sql);
|
|
1177
|
+
const formattedParams = this.formatSqlParams(params);
|
|
1178
|
+
let result;
|
|
1179
|
+
if (formattedParams.length > 0) {
|
|
1180
|
+
if (first) {
|
|
1181
|
+
result = await statement.bind(...formattedParams).first();
|
|
1182
|
+
if (!result) return null;
|
|
1183
|
+
return result;
|
|
1184
|
+
} else {
|
|
1185
|
+
result = await statement.bind(...formattedParams).all();
|
|
1186
|
+
const results = result.results || [];
|
|
1187
|
+
return results;
|
|
1133
1188
|
}
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1189
|
+
} else {
|
|
1190
|
+
if (first) {
|
|
1191
|
+
result = await statement.first();
|
|
1192
|
+
if (!result) return null;
|
|
1193
|
+
return result;
|
|
1194
|
+
} else {
|
|
1195
|
+
result = await statement.all();
|
|
1196
|
+
const results = result.results || [];
|
|
1197
|
+
return results;
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1136
1200
|
} catch (error$1) {
|
|
1137
1201
|
throw new error.MastraError(
|
|
1138
1202
|
{
|
|
1139
|
-
id: "
|
|
1203
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_WORKERS_BINDING_QUERY_FAILED",
|
|
1140
1204
|
domain: error.ErrorDomain.STORAGE,
|
|
1141
1205
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
1142
|
-
|
|
1143
|
-
details: { workflowName, runId }
|
|
1206
|
+
details: { sql }
|
|
1144
1207
|
},
|
|
1145
1208
|
error$1
|
|
1146
1209
|
);
|
|
1147
1210
|
}
|
|
1148
1211
|
}
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1212
|
+
async executeRestQuery({
|
|
1213
|
+
sql,
|
|
1214
|
+
params = [],
|
|
1215
|
+
first = false
|
|
1216
|
+
}) {
|
|
1217
|
+
if (!this.client) {
|
|
1218
|
+
throw new Error("D1 client is not configured");
|
|
1219
|
+
}
|
|
1157
1220
|
try {
|
|
1158
|
-
const
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1221
|
+
const formattedParams = this.formatSqlParams(params);
|
|
1222
|
+
const response = await this.client.query({
|
|
1223
|
+
sql,
|
|
1224
|
+
params: formattedParams
|
|
1225
|
+
});
|
|
1226
|
+
const result = response.result || [];
|
|
1227
|
+
const results = result.flatMap((r) => r.results || []);
|
|
1228
|
+
if (first) {
|
|
1229
|
+
return results[0] || null;
|
|
1230
|
+
}
|
|
1231
|
+
return results;
|
|
1232
|
+
} catch (error$1) {
|
|
1233
|
+
throw new error.MastraError(
|
|
1234
|
+
{
|
|
1235
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_REST_QUERY_FAILED",
|
|
1236
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1237
|
+
category: error.ErrorCategory.THIRD_PARTY,
|
|
1238
|
+
details: { sql }
|
|
1239
|
+
},
|
|
1240
|
+
error$1
|
|
1241
|
+
);
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
async executeQuery(options) {
|
|
1245
|
+
if (this.binding) {
|
|
1246
|
+
return this.executeWorkersBindingQuery(options);
|
|
1247
|
+
} else if (this.client) {
|
|
1248
|
+
return this.executeRestQuery(options);
|
|
1249
|
+
} else {
|
|
1250
|
+
throw new Error("Neither binding nor client is configured");
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
async getTableColumns(tableName) {
|
|
1254
|
+
try {
|
|
1255
|
+
const sql = `PRAGMA table_info(${tableName})`;
|
|
1256
|
+
const result = await this.executeQuery({ sql });
|
|
1257
|
+
if (!result || !Array.isArray(result)) {
|
|
1258
|
+
return [];
|
|
1259
|
+
}
|
|
1260
|
+
return result.map((row) => ({
|
|
1261
|
+
name: row.name,
|
|
1262
|
+
type: row.type
|
|
1263
|
+
}));
|
|
1264
|
+
} catch (error) {
|
|
1265
|
+
this.logger.warn(`Failed to get table columns for ${tableName}:`, error);
|
|
1266
|
+
return [];
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
serializeValue(value) {
|
|
1270
|
+
if (value === null || value === void 0) {
|
|
1271
|
+
return null;
|
|
1272
|
+
}
|
|
1273
|
+
if (value instanceof Date) {
|
|
1274
|
+
return value.toISOString();
|
|
1275
|
+
}
|
|
1276
|
+
if (typeof value === "object") {
|
|
1277
|
+
return JSON.stringify(value);
|
|
1278
|
+
}
|
|
1279
|
+
return value;
|
|
1280
|
+
}
|
|
1281
|
+
getSqlType(type) {
|
|
1282
|
+
switch (type) {
|
|
1283
|
+
case "bigint":
|
|
1284
|
+
return "INTEGER";
|
|
1285
|
+
// SQLite uses INTEGER for all integer sizes
|
|
1286
|
+
case "jsonb":
|
|
1287
|
+
return "TEXT";
|
|
1288
|
+
// Store JSON as TEXT in SQLite
|
|
1289
|
+
default:
|
|
1290
|
+
return super.getSqlType(type);
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
async createTable({
|
|
1294
|
+
tableName,
|
|
1295
|
+
schema
|
|
1296
|
+
}) {
|
|
1297
|
+
try {
|
|
1298
|
+
const fullTableName = this.getTableName(tableName);
|
|
1299
|
+
const columnDefinitions = Object.entries(schema).map(([colName, colDef]) => {
|
|
1300
|
+
const type = this.getSqlType(colDef.type);
|
|
1301
|
+
const nullable = colDef.nullable === false ? "NOT NULL" : "";
|
|
1302
|
+
const primaryKey = colDef.primaryKey ? "PRIMARY KEY" : "";
|
|
1303
|
+
return `${colName} ${type} ${nullable} ${primaryKey}`.trim();
|
|
1304
|
+
});
|
|
1305
|
+
const tableConstraints = [];
|
|
1306
|
+
if (tableName === storage.TABLE_WORKFLOW_SNAPSHOT) {
|
|
1307
|
+
tableConstraints.push("UNIQUE (workflow_name, run_id)");
|
|
1179
1308
|
}
|
|
1180
|
-
|
|
1309
|
+
const query = createSqlBuilder().createTable(fullTableName, columnDefinitions, tableConstraints);
|
|
1310
|
+
const { sql, params } = query.build();
|
|
1311
|
+
await this.executeQuery({ sql, params });
|
|
1312
|
+
this.logger.debug(`Created table ${fullTableName}`);
|
|
1181
1313
|
} catch (error$1) {
|
|
1182
1314
|
throw new error.MastraError(
|
|
1183
1315
|
{
|
|
1184
|
-
id: "
|
|
1316
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_CREATE_TABLE_FAILED",
|
|
1185
1317
|
domain: error.ErrorDomain.STORAGE,
|
|
1186
1318
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
1187
|
-
text: `Failed to batch insert into ${tableName}: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
1188
1319
|
details: { tableName }
|
|
1189
1320
|
},
|
|
1190
1321
|
error$1
|
|
1191
1322
|
);
|
|
1192
1323
|
}
|
|
1193
1324
|
}
|
|
1325
|
+
async clearTable({ tableName }) {
|
|
1326
|
+
try {
|
|
1327
|
+
const fullTableName = this.getTableName(tableName);
|
|
1328
|
+
const query = createSqlBuilder().delete(fullTableName);
|
|
1329
|
+
const { sql, params } = query.build();
|
|
1330
|
+
await this.executeQuery({ sql, params });
|
|
1331
|
+
this.logger.debug(`Cleared table ${fullTableName}`);
|
|
1332
|
+
} catch (error$1) {
|
|
1333
|
+
throw new error.MastraError(
|
|
1334
|
+
{
|
|
1335
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_CLEAR_TABLE_FAILED",
|
|
1336
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1337
|
+
category: error.ErrorCategory.THIRD_PARTY,
|
|
1338
|
+
details: { tableName }
|
|
1339
|
+
},
|
|
1340
|
+
error$1
|
|
1341
|
+
);
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
async dropTable({ tableName }) {
|
|
1345
|
+
try {
|
|
1346
|
+
const fullTableName = this.getTableName(tableName);
|
|
1347
|
+
const sql = `DROP TABLE IF EXISTS ${fullTableName}`;
|
|
1348
|
+
await this.executeQuery({ sql });
|
|
1349
|
+
this.logger.debug(`Dropped table ${fullTableName}`);
|
|
1350
|
+
} catch (error$1) {
|
|
1351
|
+
throw new error.MastraError(
|
|
1352
|
+
{
|
|
1353
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_DROP_TABLE_FAILED",
|
|
1354
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1355
|
+
category: error.ErrorCategory.THIRD_PARTY,
|
|
1356
|
+
details: { tableName }
|
|
1357
|
+
},
|
|
1358
|
+
error$1
|
|
1359
|
+
);
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
async alterTable(args) {
|
|
1363
|
+
try {
|
|
1364
|
+
const fullTableName = this.getTableName(args.tableName);
|
|
1365
|
+
const existingColumns = await this.getTableColumns(fullTableName);
|
|
1366
|
+
const existingColumnNames = new Set(existingColumns.map((col) => col.name));
|
|
1367
|
+
for (const [columnName, column] of Object.entries(args.schema)) {
|
|
1368
|
+
if (!existingColumnNames.has(columnName) && args.ifNotExists.includes(columnName)) {
|
|
1369
|
+
const sqlType = this.getSqlType(column.type);
|
|
1370
|
+
const defaultValue = this.getDefaultValue(column.type);
|
|
1371
|
+
const sql = `ALTER TABLE ${fullTableName} ADD COLUMN ${columnName} ${sqlType} ${defaultValue}`;
|
|
1372
|
+
await this.executeQuery({ sql });
|
|
1373
|
+
this.logger.debug(`Added column ${columnName} to table ${fullTableName}`);
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
} catch (error$1) {
|
|
1377
|
+
throw new error.MastraError(
|
|
1378
|
+
{
|
|
1379
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_ALTER_TABLE_FAILED",
|
|
1380
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1381
|
+
category: error.ErrorCategory.THIRD_PARTY,
|
|
1382
|
+
details: { tableName: args.tableName }
|
|
1383
|
+
},
|
|
1384
|
+
error$1
|
|
1385
|
+
);
|
|
1386
|
+
}
|
|
1387
|
+
}
|
|
1388
|
+
async insert({ tableName, record }) {
|
|
1389
|
+
try {
|
|
1390
|
+
const fullTableName = this.getTableName(tableName);
|
|
1391
|
+
const processedRecord = await this.processRecord(record);
|
|
1392
|
+
const columns = Object.keys(processedRecord);
|
|
1393
|
+
const values = Object.values(processedRecord);
|
|
1394
|
+
const query = createSqlBuilder().insert(fullTableName, columns, values);
|
|
1395
|
+
const { sql, params } = query.build();
|
|
1396
|
+
await this.executeQuery({ sql, params });
|
|
1397
|
+
} catch (error$1) {
|
|
1398
|
+
throw new error.MastraError(
|
|
1399
|
+
{
|
|
1400
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_INSERT_FAILED",
|
|
1401
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1402
|
+
category: error.ErrorCategory.THIRD_PARTY,
|
|
1403
|
+
details: { tableName }
|
|
1404
|
+
},
|
|
1405
|
+
error$1
|
|
1406
|
+
);
|
|
1407
|
+
}
|
|
1408
|
+
}
|
|
1409
|
+
async batchInsert({ tableName, records }) {
|
|
1410
|
+
try {
|
|
1411
|
+
if (records.length === 0) return;
|
|
1412
|
+
const fullTableName = this.getTableName(tableName);
|
|
1413
|
+
const processedRecords = await Promise.all(records.map((record) => this.processRecord(record)));
|
|
1414
|
+
const columns = Object.keys(processedRecords[0] || {});
|
|
1415
|
+
for (const record of processedRecords) {
|
|
1416
|
+
const values = Object.values(record);
|
|
1417
|
+
const query = createSqlBuilder().insert(fullTableName, columns, values);
|
|
1418
|
+
const { sql, params } = query.build();
|
|
1419
|
+
await this.executeQuery({ sql, params });
|
|
1420
|
+
}
|
|
1421
|
+
} catch (error$1) {
|
|
1422
|
+
throw new error.MastraError(
|
|
1423
|
+
{
|
|
1424
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_BATCH_INSERT_FAILED",
|
|
1425
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1426
|
+
category: error.ErrorCategory.THIRD_PARTY,
|
|
1427
|
+
details: { tableName }
|
|
1428
|
+
},
|
|
1429
|
+
error$1
|
|
1430
|
+
);
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
async load({ tableName, keys }) {
|
|
1434
|
+
try {
|
|
1435
|
+
const fullTableName = this.getTableName(tableName);
|
|
1436
|
+
const query = createSqlBuilder().select("*").from(fullTableName);
|
|
1437
|
+
let firstKey = true;
|
|
1438
|
+
for (const [key, value] of Object.entries(keys)) {
|
|
1439
|
+
if (firstKey) {
|
|
1440
|
+
query.where(`${key} = ?`, value);
|
|
1441
|
+
firstKey = false;
|
|
1442
|
+
} else {
|
|
1443
|
+
query.andWhere(`${key} = ?`, value);
|
|
1444
|
+
}
|
|
1445
|
+
}
|
|
1446
|
+
query.limit(1);
|
|
1447
|
+
const { sql, params } = query.build();
|
|
1448
|
+
const result = await this.executeQuery({ sql, params, first: true });
|
|
1449
|
+
if (!result) {
|
|
1450
|
+
return null;
|
|
1451
|
+
}
|
|
1452
|
+
const deserializedResult = {};
|
|
1453
|
+
for (const [key, value] of Object.entries(result)) {
|
|
1454
|
+
deserializedResult[key] = deserializeValue(value);
|
|
1455
|
+
}
|
|
1456
|
+
return deserializedResult;
|
|
1457
|
+
} catch (error$1) {
|
|
1458
|
+
throw new error.MastraError(
|
|
1459
|
+
{
|
|
1460
|
+
id: "CLOUDFLARE_D1_STORE_OPERATIONS_LOAD_FAILED",
|
|
1461
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1462
|
+
category: error.ErrorCategory.THIRD_PARTY,
|
|
1463
|
+
details: { tableName }
|
|
1464
|
+
},
|
|
1465
|
+
error$1
|
|
1466
|
+
);
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
async processRecord(record) {
|
|
1470
|
+
const processed = {};
|
|
1471
|
+
for (const [key, value] of Object.entries(record)) {
|
|
1472
|
+
processed[key] = this.serializeValue(value);
|
|
1473
|
+
}
|
|
1474
|
+
return processed;
|
|
1475
|
+
}
|
|
1194
1476
|
/**
|
|
1195
1477
|
* Upsert multiple records in a batch operation
|
|
1196
1478
|
* @param tableName The table to insert into
|
|
1197
1479
|
* @param records The records to insert
|
|
1198
1480
|
*/
|
|
1199
|
-
async batchUpsert({
|
|
1200
|
-
tableName,
|
|
1201
|
-
records
|
|
1202
|
-
}) {
|
|
1481
|
+
async batchUpsert({ tableName, records }) {
|
|
1203
1482
|
if (records.length === 0) return;
|
|
1204
1483
|
const fullTableName = this.getTableName(tableName);
|
|
1205
1484
|
try {
|
|
@@ -1246,73 +1525,267 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1246
1525
|
);
|
|
1247
1526
|
}
|
|
1248
1527
|
}
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
name,
|
|
1254
|
-
scope,
|
|
1255
|
-
page,
|
|
1256
|
-
perPage,
|
|
1257
|
-
attributes,
|
|
1258
|
-
fromDate,
|
|
1259
|
-
toDate
|
|
1260
|
-
}) {
|
|
1261
|
-
const fullTableName = this.getTableName(storage.TABLE_TRACES);
|
|
1528
|
+
};
|
|
1529
|
+
function transformScoreRow(row) {
|
|
1530
|
+
let input = void 0;
|
|
1531
|
+
if (row.input) {
|
|
1262
1532
|
try {
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1533
|
+
input = JSON.parse(row.input);
|
|
1534
|
+
} catch {
|
|
1535
|
+
input = row.input;
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1538
|
+
return {
|
|
1539
|
+
...row,
|
|
1540
|
+
input,
|
|
1541
|
+
createdAt: row.createdAtZ || row.createdAt,
|
|
1542
|
+
updatedAt: row.updatedAtZ || row.updatedAt
|
|
1543
|
+
};
|
|
1544
|
+
}
|
|
1545
|
+
var ScoresStorageD1 = class extends storage.ScoresStorage {
|
|
1546
|
+
operations;
|
|
1547
|
+
constructor({ operations }) {
|
|
1548
|
+
super();
|
|
1549
|
+
this.operations = operations;
|
|
1550
|
+
}
|
|
1551
|
+
async getScoreById({ id }) {
|
|
1552
|
+
try {
|
|
1553
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_SCORERS);
|
|
1554
|
+
const query = createSqlBuilder().select("*").from(fullTableName).where("id = ?", id);
|
|
1555
|
+
const { sql, params } = query.build();
|
|
1556
|
+
const result = await this.operations.executeQuery({ sql, params, first: true });
|
|
1557
|
+
if (!result) {
|
|
1558
|
+
return null;
|
|
1269
1559
|
}
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1560
|
+
return transformScoreRow(result);
|
|
1561
|
+
} catch (error$1) {
|
|
1562
|
+
throw new error.MastraError(
|
|
1563
|
+
{
|
|
1564
|
+
id: "CLOUDFLARE_D1_STORE_SCORES_GET_SCORE_BY_ID_FAILED",
|
|
1565
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1566
|
+
category: error.ErrorCategory.THIRD_PARTY
|
|
1567
|
+
},
|
|
1568
|
+
error$1
|
|
1569
|
+
);
|
|
1570
|
+
}
|
|
1571
|
+
}
|
|
1572
|
+
async saveScore(score) {
|
|
1573
|
+
try {
|
|
1574
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_SCORERS);
|
|
1575
|
+
const { input, ...rest } = score;
|
|
1576
|
+
const serializedRecord = {};
|
|
1577
|
+
for (const [key, value] of Object.entries(rest)) {
|
|
1578
|
+
if (value !== null && value !== void 0) {
|
|
1579
|
+
if (typeof value === "object") {
|
|
1580
|
+
serializedRecord[key] = JSON.stringify(value);
|
|
1581
|
+
} else {
|
|
1582
|
+
serializedRecord[key] = value;
|
|
1583
|
+
}
|
|
1584
|
+
} else {
|
|
1585
|
+
serializedRecord[key] = null;
|
|
1273
1586
|
}
|
|
1274
1587
|
}
|
|
1275
|
-
|
|
1276
|
-
|
|
1588
|
+
serializedRecord.input = JSON.stringify(input);
|
|
1589
|
+
serializedRecord.createdAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
1590
|
+
serializedRecord.updatedAt = (/* @__PURE__ */ new Date()).toISOString();
|
|
1591
|
+
const columns = Object.keys(serializedRecord);
|
|
1592
|
+
const values = Object.values(serializedRecord);
|
|
1593
|
+
const query = createSqlBuilder().insert(fullTableName, columns, values);
|
|
1594
|
+
const { sql, params } = query.build();
|
|
1595
|
+
await this.operations.executeQuery({ sql, params });
|
|
1596
|
+
const scoreFromDb = await this.getScoreById({ id: score.id });
|
|
1597
|
+
return { score: scoreFromDb };
|
|
1598
|
+
} catch (error$1) {
|
|
1599
|
+
throw new error.MastraError(
|
|
1600
|
+
{
|
|
1601
|
+
id: "CLOUDFLARE_D1_STORE_SCORES_SAVE_SCORE_FAILED",
|
|
1602
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1603
|
+
category: error.ErrorCategory.THIRD_PARTY
|
|
1604
|
+
},
|
|
1605
|
+
error$1
|
|
1606
|
+
);
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
async getScoresByScorerId({
|
|
1610
|
+
scorerId,
|
|
1611
|
+
pagination
|
|
1612
|
+
}) {
|
|
1613
|
+
try {
|
|
1614
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_SCORERS);
|
|
1615
|
+
const countQuery = createSqlBuilder().count().from(fullTableName).where("scorerId = ?", scorerId);
|
|
1616
|
+
const countResult = await this.operations.executeQuery(countQuery.build());
|
|
1617
|
+
const total = Array.isArray(countResult) ? Number(countResult?.[0]?.count ?? 0) : Number(countResult?.count ?? 0);
|
|
1618
|
+
if (total === 0) {
|
|
1619
|
+
return {
|
|
1620
|
+
pagination: {
|
|
1621
|
+
total: 0,
|
|
1622
|
+
page: pagination.page,
|
|
1623
|
+
perPage: pagination.perPage,
|
|
1624
|
+
hasMore: false
|
|
1625
|
+
},
|
|
1626
|
+
scores: []
|
|
1627
|
+
};
|
|
1277
1628
|
}
|
|
1278
|
-
|
|
1279
|
-
|
|
1629
|
+
const selectQuery = createSqlBuilder().select("*").from(fullTableName).where("scorerId = ?", scorerId).limit(pagination.perPage).offset(pagination.page * pagination.perPage);
|
|
1630
|
+
const { sql, params } = selectQuery.build();
|
|
1631
|
+
const results = await this.operations.executeQuery({ sql, params });
|
|
1632
|
+
const scores = Array.isArray(results) ? results.map(transformScoreRow) : [];
|
|
1633
|
+
return {
|
|
1634
|
+
pagination: {
|
|
1635
|
+
total,
|
|
1636
|
+
page: pagination.page,
|
|
1637
|
+
perPage: pagination.perPage,
|
|
1638
|
+
hasMore: total > (pagination.page + 1) * pagination.perPage
|
|
1639
|
+
},
|
|
1640
|
+
scores
|
|
1641
|
+
};
|
|
1642
|
+
} catch (error$1) {
|
|
1643
|
+
throw new error.MastraError(
|
|
1644
|
+
{
|
|
1645
|
+
id: "CLOUDFLARE_D1_STORE_SCORES_GET_SCORES_BY_SCORER_ID_FAILED",
|
|
1646
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1647
|
+
category: error.ErrorCategory.THIRD_PARTY
|
|
1648
|
+
},
|
|
1649
|
+
error$1
|
|
1650
|
+
);
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
async getScoresByRunId({
|
|
1654
|
+
runId,
|
|
1655
|
+
pagination
|
|
1656
|
+
}) {
|
|
1657
|
+
try {
|
|
1658
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_SCORERS);
|
|
1659
|
+
const countQuery = createSqlBuilder().count().from(fullTableName).where("runId = ?", runId);
|
|
1660
|
+
const countResult = await this.operations.executeQuery(countQuery.build());
|
|
1661
|
+
const total = Array.isArray(countResult) ? Number(countResult?.[0]?.count ?? 0) : Number(countResult?.count ?? 0);
|
|
1662
|
+
if (total === 0) {
|
|
1663
|
+
return {
|
|
1664
|
+
pagination: {
|
|
1665
|
+
total: 0,
|
|
1666
|
+
page: pagination.page,
|
|
1667
|
+
perPage: pagination.perPage,
|
|
1668
|
+
hasMore: false
|
|
1669
|
+
},
|
|
1670
|
+
scores: []
|
|
1671
|
+
};
|
|
1280
1672
|
}
|
|
1281
|
-
|
|
1282
|
-
const { sql, params } =
|
|
1283
|
-
const results = await this.executeQuery({ sql, params });
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1673
|
+
const selectQuery = createSqlBuilder().select("*").from(fullTableName).where("runId = ?", runId).limit(pagination.perPage).offset(pagination.page * pagination.perPage);
|
|
1674
|
+
const { sql, params } = selectQuery.build();
|
|
1675
|
+
const results = await this.operations.executeQuery({ sql, params });
|
|
1676
|
+
const scores = Array.isArray(results) ? results.map(transformScoreRow) : [];
|
|
1677
|
+
return {
|
|
1678
|
+
pagination: {
|
|
1679
|
+
total,
|
|
1680
|
+
page: pagination.page,
|
|
1681
|
+
perPage: pagination.perPage,
|
|
1682
|
+
hasMore: total > (pagination.page + 1) * pagination.perPage
|
|
1683
|
+
},
|
|
1684
|
+
scores
|
|
1685
|
+
};
|
|
1294
1686
|
} catch (error$1) {
|
|
1295
|
-
|
|
1687
|
+
throw new error.MastraError(
|
|
1688
|
+
{
|
|
1689
|
+
id: "CLOUDFLARE_D1_STORE_SCORES_GET_SCORES_BY_RUN_ID_FAILED",
|
|
1690
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1691
|
+
category: error.ErrorCategory.THIRD_PARTY
|
|
1692
|
+
},
|
|
1693
|
+
error$1
|
|
1694
|
+
);
|
|
1695
|
+
}
|
|
1696
|
+
}
|
|
1697
|
+
async getScoresByEntityId({
|
|
1698
|
+
entityId,
|
|
1699
|
+
entityType,
|
|
1700
|
+
pagination
|
|
1701
|
+
}) {
|
|
1702
|
+
try {
|
|
1703
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_SCORERS);
|
|
1704
|
+
const countQuery = createSqlBuilder().count().from(fullTableName).where("entityId = ?", entityId).andWhere("entityType = ?", entityType);
|
|
1705
|
+
const countResult = await this.operations.executeQuery(countQuery.build());
|
|
1706
|
+
const total = Array.isArray(countResult) ? Number(countResult?.[0]?.count ?? 0) : Number(countResult?.count ?? 0);
|
|
1707
|
+
if (total === 0) {
|
|
1708
|
+
return {
|
|
1709
|
+
pagination: {
|
|
1710
|
+
total: 0,
|
|
1711
|
+
page: pagination.page,
|
|
1712
|
+
perPage: pagination.perPage,
|
|
1713
|
+
hasMore: false
|
|
1714
|
+
},
|
|
1715
|
+
scores: []
|
|
1716
|
+
};
|
|
1717
|
+
}
|
|
1718
|
+
const selectQuery = createSqlBuilder().select("*").from(fullTableName).where("entityId = ?", entityId).andWhere("entityType = ?", entityType).limit(pagination.perPage).offset(pagination.page * pagination.perPage);
|
|
1719
|
+
const { sql, params } = selectQuery.build();
|
|
1720
|
+
const results = await this.operations.executeQuery({ sql, params });
|
|
1721
|
+
const scores = Array.isArray(results) ? results.map(transformScoreRow) : [];
|
|
1722
|
+
return {
|
|
1723
|
+
pagination: {
|
|
1724
|
+
total,
|
|
1725
|
+
page: pagination.page,
|
|
1726
|
+
perPage: pagination.perPage,
|
|
1727
|
+
hasMore: total > (pagination.page + 1) * pagination.perPage
|
|
1728
|
+
},
|
|
1729
|
+
scores
|
|
1730
|
+
};
|
|
1731
|
+
} catch (error$1) {
|
|
1732
|
+
throw new error.MastraError(
|
|
1733
|
+
{
|
|
1734
|
+
id: "CLOUDFLARE_D1_STORE_SCORES_GET_SCORES_BY_ENTITY_ID_FAILED",
|
|
1735
|
+
domain: error.ErrorDomain.STORAGE,
|
|
1736
|
+
category: error.ErrorCategory.THIRD_PARTY
|
|
1737
|
+
},
|
|
1738
|
+
error$1
|
|
1739
|
+
);
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1742
|
+
};
|
|
1743
|
+
function isArrayOfRecords2(value) {
|
|
1744
|
+
return value && Array.isArray(value) && value.length > 0;
|
|
1745
|
+
}
|
|
1746
|
+
var TracesStorageD1 = class extends storage.TracesStorage {
|
|
1747
|
+
operations;
|
|
1748
|
+
constructor({ operations }) {
|
|
1749
|
+
super();
|
|
1750
|
+
this.operations = operations;
|
|
1751
|
+
}
|
|
1752
|
+
async getTraces(args) {
|
|
1753
|
+
const paginatedArgs = {
|
|
1754
|
+
name: args.name,
|
|
1755
|
+
scope: args.scope,
|
|
1756
|
+
page: args.page,
|
|
1757
|
+
perPage: args.perPage,
|
|
1758
|
+
attributes: args.attributes,
|
|
1759
|
+
filters: args.filters,
|
|
1760
|
+
dateRange: args.fromDate || args.toDate ? {
|
|
1761
|
+
start: args.fromDate,
|
|
1762
|
+
end: args.toDate
|
|
1763
|
+
} : void 0
|
|
1764
|
+
};
|
|
1765
|
+
try {
|
|
1766
|
+
const result = await this.getTracesPaginated(paginatedArgs);
|
|
1767
|
+
return result.traces;
|
|
1768
|
+
} catch (error$1) {
|
|
1769
|
+
throw new error.MastraError(
|
|
1296
1770
|
{
|
|
1297
1771
|
id: "CLOUDFLARE_D1_STORAGE_GET_TRACES_ERROR",
|
|
1298
1772
|
domain: error.ErrorDomain.STORAGE,
|
|
1299
1773
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
1300
1774
|
text: `Failed to retrieve traces: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
1301
1775
|
details: {
|
|
1302
|
-
name: name ?? "",
|
|
1303
|
-
scope: scope ?? ""
|
|
1776
|
+
name: args.name ?? "",
|
|
1777
|
+
scope: args.scope ?? ""
|
|
1304
1778
|
}
|
|
1305
1779
|
},
|
|
1306
1780
|
error$1
|
|
1307
1781
|
);
|
|
1308
|
-
this.logger?.error(mastraError.toString());
|
|
1309
|
-
this.logger?.trackException(mastraError);
|
|
1310
|
-
return [];
|
|
1311
1782
|
}
|
|
1312
1783
|
}
|
|
1313
1784
|
async getTracesPaginated(args) {
|
|
1314
|
-
const { name, scope, page, perPage, attributes,
|
|
1315
|
-
const
|
|
1785
|
+
const { name, scope, page = 0, perPage = 100, attributes, dateRange } = args;
|
|
1786
|
+
const fromDate = dateRange?.start;
|
|
1787
|
+
const toDate = dateRange?.end;
|
|
1788
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_TRACES);
|
|
1316
1789
|
try {
|
|
1317
1790
|
const dataQuery = createSqlBuilder().select("*").from(fullTableName).where("1=1");
|
|
1318
1791
|
const countQuery = createSqlBuilder().count().from(fullTableName).where("1=1");
|
|
@@ -1340,18 +1813,22 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1340
1813
|
dataQuery.andWhere("createdAt <= ?", toDateStr);
|
|
1341
1814
|
countQuery.andWhere("createdAt <= ?", toDateStr);
|
|
1342
1815
|
}
|
|
1343
|
-
const
|
|
1816
|
+
const allDataResult = await this.operations.executeQuery(
|
|
1817
|
+
createSqlBuilder().select("*").from(fullTableName).where("1=1").build()
|
|
1818
|
+
);
|
|
1819
|
+
console.log("allDataResult", allDataResult);
|
|
1820
|
+
const countResult = await this.operations.executeQuery(countQuery.build());
|
|
1344
1821
|
const total = Number(countResult?.[0]?.count ?? 0);
|
|
1345
1822
|
dataQuery.orderBy("startTime", "DESC").limit(perPage).offset(page * perPage);
|
|
1346
|
-
const results = await this.executeQuery(dataQuery.build());
|
|
1347
|
-
const traces =
|
|
1823
|
+
const results = await this.operations.executeQuery(dataQuery.build());
|
|
1824
|
+
const traces = isArrayOfRecords2(results) ? results.map(
|
|
1348
1825
|
(trace) => ({
|
|
1349
1826
|
...trace,
|
|
1350
|
-
attributes:
|
|
1351
|
-
status:
|
|
1352
|
-
events:
|
|
1353
|
-
links:
|
|
1354
|
-
other:
|
|
1827
|
+
attributes: deserializeValue(trace.attributes, "jsonb"),
|
|
1828
|
+
status: deserializeValue(trace.status, "jsonb"),
|
|
1829
|
+
events: deserializeValue(trace.events, "jsonb"),
|
|
1830
|
+
links: deserializeValue(trace.links, "jsonb"),
|
|
1831
|
+
other: deserializeValue(trace.other, "jsonb")
|
|
1355
1832
|
})
|
|
1356
1833
|
) : [];
|
|
1357
1834
|
return {
|
|
@@ -1364,7 +1841,7 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1364
1841
|
} catch (error$1) {
|
|
1365
1842
|
const mastraError = new error.MastraError(
|
|
1366
1843
|
{
|
|
1367
|
-
id: "
|
|
1844
|
+
id: "CLOUDFLARE_D1_STORAGE_GET_TRACES_PAGINATED_ERROR",
|
|
1368
1845
|
domain: error.ErrorDomain.STORAGE,
|
|
1369
1846
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
1370
1847
|
text: `Failed to retrieve traces: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
@@ -1377,142 +1854,87 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1377
1854
|
return { traces: [], total: 0, page, perPage, hasMore: false };
|
|
1378
1855
|
}
|
|
1379
1856
|
}
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1857
|
+
async batchTraceInsert({ records }) {
|
|
1858
|
+
this.logger.debug("Batch inserting traces", { count: records.length });
|
|
1859
|
+
await this.operations.batchInsert({
|
|
1860
|
+
tableName: storage.TABLE_TRACES,
|
|
1861
|
+
records
|
|
1862
|
+
});
|
|
1863
|
+
}
|
|
1864
|
+
};
|
|
1865
|
+
var WorkflowsStorageD1 = class extends storage.WorkflowsStorage {
|
|
1866
|
+
operations;
|
|
1867
|
+
constructor({ operations }) {
|
|
1868
|
+
super();
|
|
1869
|
+
this.operations = operations;
|
|
1870
|
+
}
|
|
1871
|
+
async persistWorkflowSnapshot({
|
|
1872
|
+
workflowName,
|
|
1873
|
+
runId,
|
|
1874
|
+
snapshot
|
|
1875
|
+
}) {
|
|
1876
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_WORKFLOW_SNAPSHOT);
|
|
1877
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
1878
|
+
const currentSnapshot = await this.operations.load({
|
|
1879
|
+
tableName: storage.TABLE_WORKFLOW_SNAPSHOT,
|
|
1880
|
+
keys: { workflow_name: workflowName, run_id: runId }
|
|
1881
|
+
});
|
|
1882
|
+
const persisting = currentSnapshot ? {
|
|
1883
|
+
...currentSnapshot,
|
|
1884
|
+
snapshot: JSON.stringify(snapshot),
|
|
1885
|
+
updatedAt: now
|
|
1886
|
+
} : {
|
|
1887
|
+
workflow_name: workflowName,
|
|
1888
|
+
run_id: runId,
|
|
1889
|
+
snapshot,
|
|
1890
|
+
createdAt: now,
|
|
1891
|
+
updatedAt: now
|
|
1892
|
+
};
|
|
1893
|
+
const processedRecord = await this.operations.processRecord(persisting);
|
|
1894
|
+
const columns = Object.keys(processedRecord);
|
|
1895
|
+
const values = Object.values(processedRecord);
|
|
1896
|
+
const updateMap = {
|
|
1897
|
+
snapshot: "excluded.snapshot",
|
|
1898
|
+
updatedAt: "excluded.updatedAt"
|
|
1899
|
+
};
|
|
1900
|
+
this.logger.debug("Persisting workflow snapshot", { workflowName, runId });
|
|
1901
|
+
const query = createSqlBuilder().insert(fullTableName, columns, values, ["workflow_name", "run_id"], updateMap);
|
|
1902
|
+
const { sql, params } = query.build();
|
|
1385
1903
|
try {
|
|
1386
|
-
|
|
1387
|
-
if (type === "test") {
|
|
1388
|
-
query = query.andWhere("test_info IS NOT NULL AND json_extract(test_info, '$.testPath') IS NOT NULL");
|
|
1389
|
-
} else if (type === "live") {
|
|
1390
|
-
query = query.andWhere("(test_info IS NULL OR json_extract(test_info, '$.testPath') IS NULL)");
|
|
1391
|
-
}
|
|
1392
|
-
query.orderBy("created_at", "DESC");
|
|
1393
|
-
const { sql, params } = query.build();
|
|
1394
|
-
const results = await this.executeQuery({ sql, params });
|
|
1395
|
-
return isArrayOfRecords(results) ? results.map((row) => {
|
|
1396
|
-
const result = this.deserializeValue(row.result);
|
|
1397
|
-
const testInfo = row.test_info ? this.deserializeValue(row.test_info) : void 0;
|
|
1398
|
-
return {
|
|
1399
|
-
input: row.input || "",
|
|
1400
|
-
output: row.output || "",
|
|
1401
|
-
result,
|
|
1402
|
-
agentName: row.agent_name || "",
|
|
1403
|
-
metricName: row.metric_name || "",
|
|
1404
|
-
instructions: row.instructions || "",
|
|
1405
|
-
runId: row.run_id || "",
|
|
1406
|
-
globalRunId: row.global_run_id || "",
|
|
1407
|
-
createdAt: row.created_at || "",
|
|
1408
|
-
testInfo
|
|
1409
|
-
};
|
|
1410
|
-
}) : [];
|
|
1904
|
+
await this.operations.executeQuery({ sql, params });
|
|
1411
1905
|
} catch (error$1) {
|
|
1412
|
-
|
|
1906
|
+
throw new error.MastraError(
|
|
1413
1907
|
{
|
|
1414
|
-
id: "
|
|
1908
|
+
id: "CLOUDFLARE_D1_STORAGE_PERSIST_WORKFLOW_SNAPSHOT_ERROR",
|
|
1415
1909
|
domain: error.ErrorDomain.STORAGE,
|
|
1416
1910
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
1417
|
-
text: `Failed to
|
|
1418
|
-
details: {
|
|
1911
|
+
text: `Failed to persist workflow snapshot: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
1912
|
+
details: { workflowName, runId }
|
|
1419
1913
|
},
|
|
1420
1914
|
error$1
|
|
1421
1915
|
);
|
|
1422
|
-
this.logger?.error(mastraError.toString());
|
|
1423
|
-
this.logger?.trackException(mastraError);
|
|
1424
|
-
return [];
|
|
1425
|
-
}
|
|
1426
|
-
}
|
|
1427
|
-
async getEvals(options) {
|
|
1428
|
-
const { agentName, type, page = 0, perPage = 40, fromDate, toDate } = options || {};
|
|
1429
|
-
const fullTableName = this.getTableName(storage.TABLE_EVALS);
|
|
1430
|
-
const conditions = [];
|
|
1431
|
-
const queryParams = [];
|
|
1432
|
-
if (agentName) {
|
|
1433
|
-
conditions.push(`agent_name = ?`);
|
|
1434
|
-
queryParams.push(agentName);
|
|
1435
1916
|
}
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
}
|
|
1441
|
-
if (fromDate) {
|
|
1442
|
-
conditions.push(`createdAt >= ?`);
|
|
1443
|
-
queryParams.push(this.serializeDate(fromDate));
|
|
1444
|
-
}
|
|
1445
|
-
if (toDate) {
|
|
1446
|
-
conditions.push(`createdAt <= ?`);
|
|
1447
|
-
queryParams.push(this.serializeDate(toDate));
|
|
1448
|
-
}
|
|
1449
|
-
const countQueryBuilder = createSqlBuilder().count().from(fullTableName);
|
|
1450
|
-
if (conditions.length > 0) {
|
|
1451
|
-
countQueryBuilder.where(conditions.join(" AND "), ...queryParams);
|
|
1452
|
-
}
|
|
1453
|
-
const { sql: countSql, params: countParams } = countQueryBuilder.build();
|
|
1917
|
+
}
|
|
1918
|
+
async loadWorkflowSnapshot(params) {
|
|
1919
|
+
const { workflowName, runId } = params;
|
|
1920
|
+
this.logger.debug("Loading workflow snapshot", { workflowName, runId });
|
|
1454
1921
|
try {
|
|
1455
|
-
const
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
const total = Number(countResult?.count || 0);
|
|
1461
|
-
const currentOffset = page * perPage;
|
|
1462
|
-
if (total === 0) {
|
|
1463
|
-
return {
|
|
1464
|
-
evals: [],
|
|
1465
|
-
total: 0,
|
|
1466
|
-
page,
|
|
1467
|
-
perPage,
|
|
1468
|
-
hasMore: false
|
|
1469
|
-
};
|
|
1470
|
-
}
|
|
1471
|
-
const dataQueryBuilder = createSqlBuilder().select("*").from(fullTableName);
|
|
1472
|
-
if (conditions.length > 0) {
|
|
1473
|
-
dataQueryBuilder.where(conditions.join(" AND "), ...queryParams);
|
|
1474
|
-
}
|
|
1475
|
-
dataQueryBuilder.orderBy("createdAt", "DESC").limit(perPage).offset(currentOffset);
|
|
1476
|
-
const { sql: dataSql, params: dataParams } = dataQueryBuilder.build();
|
|
1477
|
-
const rows = await this.executeQuery({
|
|
1478
|
-
sql: dataSql,
|
|
1479
|
-
params: dataParams
|
|
1480
|
-
});
|
|
1481
|
-
const evals = (isArrayOfRecords(rows) ? rows : []).map((row) => {
|
|
1482
|
-
const result = this.deserializeValue(row.result);
|
|
1483
|
-
const testInfo = row.test_info ? this.deserializeValue(row.test_info) : void 0;
|
|
1484
|
-
if (!result || typeof result !== "object" || !("score" in result)) {
|
|
1485
|
-
throw new Error(`Invalid MetricResult format: ${JSON.stringify(result)}`);
|
|
1922
|
+
const d = await this.operations.load({
|
|
1923
|
+
tableName: storage.TABLE_WORKFLOW_SNAPSHOT,
|
|
1924
|
+
keys: {
|
|
1925
|
+
workflow_name: workflowName,
|
|
1926
|
+
run_id: runId
|
|
1486
1927
|
}
|
|
1487
|
-
return {
|
|
1488
|
-
input: row.input,
|
|
1489
|
-
output: row.output,
|
|
1490
|
-
result,
|
|
1491
|
-
agentName: row.agent_name,
|
|
1492
|
-
metricName: row.metric_name,
|
|
1493
|
-
instructions: row.instructions,
|
|
1494
|
-
testInfo,
|
|
1495
|
-
globalRunId: row.global_run_id,
|
|
1496
|
-
runId: row.run_id,
|
|
1497
|
-
createdAt: row.createdAt
|
|
1498
|
-
};
|
|
1499
1928
|
});
|
|
1500
|
-
|
|
1501
|
-
return {
|
|
1502
|
-
evals,
|
|
1503
|
-
total,
|
|
1504
|
-
page,
|
|
1505
|
-
perPage,
|
|
1506
|
-
hasMore
|
|
1507
|
-
};
|
|
1929
|
+
return d ? d.snapshot : null;
|
|
1508
1930
|
} catch (error$1) {
|
|
1509
1931
|
throw new error.MastraError(
|
|
1510
1932
|
{
|
|
1511
|
-
id: "
|
|
1933
|
+
id: "CLOUDFLARE_D1_STORAGE_LOAD_WORKFLOW_SNAPSHOT_ERROR",
|
|
1512
1934
|
domain: error.ErrorDomain.STORAGE,
|
|
1513
1935
|
category: error.ErrorCategory.THIRD_PARTY,
|
|
1514
|
-
text: `Failed to
|
|
1515
|
-
details: {
|
|
1936
|
+
text: `Failed to load workflow snapshot: ${error$1 instanceof Error ? error$1.message : String(error$1)}`,
|
|
1937
|
+
details: { workflowName, runId }
|
|
1516
1938
|
},
|
|
1517
1939
|
error$1
|
|
1518
1940
|
);
|
|
@@ -1531,17 +1953,11 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1531
1953
|
workflowName: row.workflow_name,
|
|
1532
1954
|
runId: row.run_id,
|
|
1533
1955
|
snapshot: parsedSnapshot,
|
|
1534
|
-
createdAt:
|
|
1535
|
-
updatedAt:
|
|
1956
|
+
createdAt: storage.ensureDate(row.createdAt),
|
|
1957
|
+
updatedAt: storage.ensureDate(row.updatedAt),
|
|
1536
1958
|
resourceId: row.resourceId
|
|
1537
1959
|
};
|
|
1538
1960
|
}
|
|
1539
|
-
async hasColumn(table, column) {
|
|
1540
|
-
const sql = `PRAGMA table_info(${table});`;
|
|
1541
|
-
const result = await this.executeQuery({ sql, params: [] });
|
|
1542
|
-
if (!result || !Array.isArray(result)) return false;
|
|
1543
|
-
return result.some((col) => col.name === column || col.name === column.toLowerCase());
|
|
1544
|
-
}
|
|
1545
1961
|
async getWorkflowRuns({
|
|
1546
1962
|
workflowName,
|
|
1547
1963
|
fromDate,
|
|
@@ -1550,13 +1966,13 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1550
1966
|
offset,
|
|
1551
1967
|
resourceId
|
|
1552
1968
|
} = {}) {
|
|
1553
|
-
const fullTableName = this.getTableName(storage.TABLE_WORKFLOW_SNAPSHOT);
|
|
1969
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_WORKFLOW_SNAPSHOT);
|
|
1554
1970
|
try {
|
|
1555
1971
|
const builder = createSqlBuilder().select().from(fullTableName);
|
|
1556
1972
|
const countBuilder = createSqlBuilder().count().from(fullTableName);
|
|
1557
1973
|
if (workflowName) builder.whereAnd("workflow_name = ?", workflowName);
|
|
1558
1974
|
if (resourceId) {
|
|
1559
|
-
const hasResourceId = await this.hasColumn(fullTableName, "resourceId");
|
|
1975
|
+
const hasResourceId = await this.operations.hasColumn(fullTableName, "resourceId");
|
|
1560
1976
|
if (hasResourceId) {
|
|
1561
1977
|
builder.whereAnd("resourceId = ?", resourceId);
|
|
1562
1978
|
countBuilder.whereAnd("resourceId = ?", resourceId);
|
|
@@ -1579,14 +1995,14 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1579
1995
|
let total = 0;
|
|
1580
1996
|
if (limit !== void 0 && offset !== void 0) {
|
|
1581
1997
|
const { sql: countSql, params: countParams } = countBuilder.build();
|
|
1582
|
-
const countResult = await this.executeQuery({
|
|
1998
|
+
const countResult = await this.operations.executeQuery({
|
|
1583
1999
|
sql: countSql,
|
|
1584
2000
|
params: countParams,
|
|
1585
2001
|
first: true
|
|
1586
2002
|
});
|
|
1587
2003
|
total = Number(countResult?.count ?? 0);
|
|
1588
2004
|
}
|
|
1589
|
-
const results = await this.executeQuery({ sql, params });
|
|
2005
|
+
const results = await this.operations.executeQuery({ sql, params });
|
|
1590
2006
|
const runs = (isArrayOfRecords(results) ? results : []).map((row) => this.parseWorkflowRun(row));
|
|
1591
2007
|
return { runs, total: total || runs.length };
|
|
1592
2008
|
} catch (error$1) {
|
|
@@ -1609,7 +2025,7 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1609
2025
|
runId,
|
|
1610
2026
|
workflowName
|
|
1611
2027
|
}) {
|
|
1612
|
-
const fullTableName = this.getTableName(storage.TABLE_WORKFLOW_SNAPSHOT);
|
|
2028
|
+
const fullTableName = this.operations.getTableName(storage.TABLE_WORKFLOW_SNAPSHOT);
|
|
1613
2029
|
try {
|
|
1614
2030
|
const conditions = [];
|
|
1615
2031
|
const params = [];
|
|
@@ -1623,7 +2039,7 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1623
2039
|
}
|
|
1624
2040
|
const whereClause = conditions.length > 0 ? "WHERE " + conditions.join(" AND ") : "";
|
|
1625
2041
|
const sql = `SELECT * FROM ${fullTableName} ${whereClause} ORDER BY createdAt DESC LIMIT 1`;
|
|
1626
|
-
const result = await this.executeQuery({ sql, params, first: true });
|
|
2042
|
+
const result = await this.operations.executeQuery({ sql, params, first: true });
|
|
1627
2043
|
if (!result) return null;
|
|
1628
2044
|
return this.parseWorkflowRun(result);
|
|
1629
2045
|
} catch (error$1) {
|
|
@@ -1639,6 +2055,278 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1639
2055
|
);
|
|
1640
2056
|
}
|
|
1641
2057
|
}
|
|
2058
|
+
};
|
|
2059
|
+
|
|
2060
|
+
// src/storage/index.ts
|
|
2061
|
+
var D1Store = class extends storage.MastraStorage {
|
|
2062
|
+
client;
|
|
2063
|
+
binding;
|
|
2064
|
+
// D1Database binding
|
|
2065
|
+
tablePrefix;
|
|
2066
|
+
stores;
|
|
2067
|
+
/**
|
|
2068
|
+
* Creates a new D1Store instance
|
|
2069
|
+
* @param config Configuration for D1 access (either REST API or Workers Binding API)
|
|
2070
|
+
*/
|
|
2071
|
+
constructor(config) {
|
|
2072
|
+
try {
|
|
2073
|
+
super({ name: "D1" });
|
|
2074
|
+
if (config.tablePrefix && !/^[a-zA-Z0-9_]*$/.test(config.tablePrefix)) {
|
|
2075
|
+
throw new Error("Invalid tablePrefix: only letters, numbers, and underscores are allowed.");
|
|
2076
|
+
}
|
|
2077
|
+
this.tablePrefix = config.tablePrefix || "";
|
|
2078
|
+
if ("binding" in config) {
|
|
2079
|
+
if (!config.binding) {
|
|
2080
|
+
throw new Error("D1 binding is required when using Workers Binding API");
|
|
2081
|
+
}
|
|
2082
|
+
this.binding = config.binding;
|
|
2083
|
+
this.logger.info("Using D1 Workers Binding API");
|
|
2084
|
+
} else if ("client" in config) {
|
|
2085
|
+
if (!config.client) {
|
|
2086
|
+
throw new Error("D1 client is required when using D1ClientConfig");
|
|
2087
|
+
}
|
|
2088
|
+
this.client = config.client;
|
|
2089
|
+
this.logger.info("Using D1 Client");
|
|
2090
|
+
} else {
|
|
2091
|
+
if (!config.accountId || !config.databaseId || !config.apiToken) {
|
|
2092
|
+
throw new Error("accountId, databaseId, and apiToken are required when using REST API");
|
|
2093
|
+
}
|
|
2094
|
+
const cfClient = new Cloudflare__default.default({
|
|
2095
|
+
apiToken: config.apiToken
|
|
2096
|
+
});
|
|
2097
|
+
this.client = {
|
|
2098
|
+
query: ({ sql, params }) => {
|
|
2099
|
+
return cfClient.d1.database.query(config.databaseId, {
|
|
2100
|
+
account_id: config.accountId,
|
|
2101
|
+
sql,
|
|
2102
|
+
params
|
|
2103
|
+
});
|
|
2104
|
+
}
|
|
2105
|
+
};
|
|
2106
|
+
this.logger.info("Using D1 REST API");
|
|
2107
|
+
}
|
|
2108
|
+
} catch (error$1) {
|
|
2109
|
+
throw new error.MastraError(
|
|
2110
|
+
{
|
|
2111
|
+
id: "CLOUDFLARE_D1_STORAGE_INITIALIZATION_ERROR",
|
|
2112
|
+
domain: error.ErrorDomain.STORAGE,
|
|
2113
|
+
category: error.ErrorCategory.SYSTEM,
|
|
2114
|
+
text: "Error initializing D1Store"
|
|
2115
|
+
},
|
|
2116
|
+
error$1
|
|
2117
|
+
);
|
|
2118
|
+
}
|
|
2119
|
+
const operations = new StoreOperationsD1({
|
|
2120
|
+
client: this.client,
|
|
2121
|
+
binding: this.binding,
|
|
2122
|
+
tablePrefix: this.tablePrefix
|
|
2123
|
+
});
|
|
2124
|
+
const scores = new ScoresStorageD1({
|
|
2125
|
+
operations
|
|
2126
|
+
});
|
|
2127
|
+
const legacyEvals = new LegacyEvalsStorageD1({
|
|
2128
|
+
operations
|
|
2129
|
+
});
|
|
2130
|
+
const traces = new TracesStorageD1({
|
|
2131
|
+
operations
|
|
2132
|
+
});
|
|
2133
|
+
const workflows = new WorkflowsStorageD1({
|
|
2134
|
+
operations
|
|
2135
|
+
});
|
|
2136
|
+
const memory = new MemoryStorageD1({
|
|
2137
|
+
operations
|
|
2138
|
+
});
|
|
2139
|
+
this.stores = {
|
|
2140
|
+
operations,
|
|
2141
|
+
scores,
|
|
2142
|
+
legacyEvals,
|
|
2143
|
+
traces,
|
|
2144
|
+
workflows,
|
|
2145
|
+
memory
|
|
2146
|
+
};
|
|
2147
|
+
}
|
|
2148
|
+
get supports() {
|
|
2149
|
+
return {
|
|
2150
|
+
selectByIncludeResourceScope: true,
|
|
2151
|
+
resourceWorkingMemory: true,
|
|
2152
|
+
hasColumn: true,
|
|
2153
|
+
createTable: true,
|
|
2154
|
+
deleteMessages: false
|
|
2155
|
+
};
|
|
2156
|
+
}
|
|
2157
|
+
async createTable({
|
|
2158
|
+
tableName,
|
|
2159
|
+
schema
|
|
2160
|
+
}) {
|
|
2161
|
+
return this.stores.operations.createTable({ tableName, schema });
|
|
2162
|
+
}
|
|
2163
|
+
/**
|
|
2164
|
+
* Alters table schema to add columns if they don't exist
|
|
2165
|
+
* @param tableName Name of the table
|
|
2166
|
+
* @param schema Schema of the table
|
|
2167
|
+
* @param ifNotExists Array of column names to add if they don't exist
|
|
2168
|
+
*/
|
|
2169
|
+
async alterTable({
|
|
2170
|
+
tableName,
|
|
2171
|
+
schema,
|
|
2172
|
+
ifNotExists
|
|
2173
|
+
}) {
|
|
2174
|
+
return this.stores.operations.alterTable({ tableName, schema, ifNotExists });
|
|
2175
|
+
}
|
|
2176
|
+
async clearTable({ tableName }) {
|
|
2177
|
+
return this.stores.operations.clearTable({ tableName });
|
|
2178
|
+
}
|
|
2179
|
+
async dropTable({ tableName }) {
|
|
2180
|
+
return this.stores.operations.dropTable({ tableName });
|
|
2181
|
+
}
|
|
2182
|
+
async hasColumn(table, column) {
|
|
2183
|
+
return this.stores.operations.hasColumn(table, column);
|
|
2184
|
+
}
|
|
2185
|
+
async insert({ tableName, record }) {
|
|
2186
|
+
return this.stores.operations.insert({ tableName, record });
|
|
2187
|
+
}
|
|
2188
|
+
async load({ tableName, keys }) {
|
|
2189
|
+
return this.stores.operations.load({ tableName, keys });
|
|
2190
|
+
}
|
|
2191
|
+
async getThreadById({ threadId }) {
|
|
2192
|
+
return this.stores.memory.getThreadById({ threadId });
|
|
2193
|
+
}
|
|
2194
|
+
/**
|
|
2195
|
+
* @deprecated use getThreadsByResourceIdPaginated instead
|
|
2196
|
+
*/
|
|
2197
|
+
async getThreadsByResourceId({ resourceId }) {
|
|
2198
|
+
return this.stores.memory.getThreadsByResourceId({ resourceId });
|
|
2199
|
+
}
|
|
2200
|
+
async getThreadsByResourceIdPaginated(args) {
|
|
2201
|
+
return this.stores.memory.getThreadsByResourceIdPaginated(args);
|
|
2202
|
+
}
|
|
2203
|
+
async saveThread({ thread }) {
|
|
2204
|
+
return this.stores.memory.saveThread({ thread });
|
|
2205
|
+
}
|
|
2206
|
+
async updateThread({
|
|
2207
|
+
id,
|
|
2208
|
+
title,
|
|
2209
|
+
metadata
|
|
2210
|
+
}) {
|
|
2211
|
+
return this.stores.memory.updateThread({ id, title, metadata });
|
|
2212
|
+
}
|
|
2213
|
+
async deleteThread({ threadId }) {
|
|
2214
|
+
return this.stores.memory.deleteThread({ threadId });
|
|
2215
|
+
}
|
|
2216
|
+
async saveMessages(args) {
|
|
2217
|
+
return this.stores.memory.saveMessages(args);
|
|
2218
|
+
}
|
|
2219
|
+
async getMessages({
|
|
2220
|
+
threadId,
|
|
2221
|
+
selectBy,
|
|
2222
|
+
format
|
|
2223
|
+
}) {
|
|
2224
|
+
return this.stores.memory.getMessages({ threadId, selectBy, format });
|
|
2225
|
+
}
|
|
2226
|
+
async getMessagesPaginated({
|
|
2227
|
+
threadId,
|
|
2228
|
+
selectBy,
|
|
2229
|
+
format
|
|
2230
|
+
}) {
|
|
2231
|
+
return this.stores.memory.getMessagesPaginated({ threadId, selectBy, format });
|
|
2232
|
+
}
|
|
2233
|
+
async persistWorkflowSnapshot({
|
|
2234
|
+
workflowName,
|
|
2235
|
+
runId,
|
|
2236
|
+
snapshot
|
|
2237
|
+
}) {
|
|
2238
|
+
return this.stores.workflows.persistWorkflowSnapshot({ workflowName, runId, snapshot });
|
|
2239
|
+
}
|
|
2240
|
+
async loadWorkflowSnapshot(params) {
|
|
2241
|
+
return this.stores.workflows.loadWorkflowSnapshot(params);
|
|
2242
|
+
}
|
|
2243
|
+
async getWorkflowRuns({
|
|
2244
|
+
workflowName,
|
|
2245
|
+
fromDate,
|
|
2246
|
+
toDate,
|
|
2247
|
+
limit,
|
|
2248
|
+
offset,
|
|
2249
|
+
resourceId
|
|
2250
|
+
} = {}) {
|
|
2251
|
+
return this.stores.workflows.getWorkflowRuns({ workflowName, fromDate, toDate, limit, offset, resourceId });
|
|
2252
|
+
}
|
|
2253
|
+
async getWorkflowRunById({
|
|
2254
|
+
runId,
|
|
2255
|
+
workflowName
|
|
2256
|
+
}) {
|
|
2257
|
+
return this.stores.workflows.getWorkflowRunById({ runId, workflowName });
|
|
2258
|
+
}
|
|
2259
|
+
/**
|
|
2260
|
+
* Insert multiple records in a batch operation
|
|
2261
|
+
* @param tableName The table to insert into
|
|
2262
|
+
* @param records The records to insert
|
|
2263
|
+
*/
|
|
2264
|
+
async batchInsert({ tableName, records }) {
|
|
2265
|
+
return this.stores.operations.batchInsert({ tableName, records });
|
|
2266
|
+
}
|
|
2267
|
+
/**
|
|
2268
|
+
* @deprecated use getTracesPaginated instead
|
|
2269
|
+
*/
|
|
2270
|
+
async getTraces(args) {
|
|
2271
|
+
return this.stores.traces.getTraces(args);
|
|
2272
|
+
}
|
|
2273
|
+
async getTracesPaginated(args) {
|
|
2274
|
+
return this.stores.traces.getTracesPaginated(args);
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* @deprecated use getEvals instead
|
|
2278
|
+
*/
|
|
2279
|
+
async getEvalsByAgentName(agentName, type) {
|
|
2280
|
+
return this.stores.legacyEvals.getEvalsByAgentName(agentName, type);
|
|
2281
|
+
}
|
|
2282
|
+
async getEvals(options) {
|
|
2283
|
+
return this.stores.legacyEvals.getEvals(options);
|
|
2284
|
+
}
|
|
2285
|
+
async updateMessages(_args) {
|
|
2286
|
+
return this.stores.memory.updateMessages(_args);
|
|
2287
|
+
}
|
|
2288
|
+
async getResourceById({ resourceId }) {
|
|
2289
|
+
return this.stores.memory.getResourceById({ resourceId });
|
|
2290
|
+
}
|
|
2291
|
+
async saveResource({ resource }) {
|
|
2292
|
+
return this.stores.memory.saveResource({ resource });
|
|
2293
|
+
}
|
|
2294
|
+
async updateResource({
|
|
2295
|
+
resourceId,
|
|
2296
|
+
workingMemory,
|
|
2297
|
+
metadata
|
|
2298
|
+
}) {
|
|
2299
|
+
return this.stores.memory.updateResource({ resourceId, workingMemory, metadata });
|
|
2300
|
+
}
|
|
2301
|
+
async getScoreById({ id: _id }) {
|
|
2302
|
+
return this.stores.scores.getScoreById({ id: _id });
|
|
2303
|
+
}
|
|
2304
|
+
async saveScore(_score) {
|
|
2305
|
+
return this.stores.scores.saveScore(_score);
|
|
2306
|
+
}
|
|
2307
|
+
async getScoresByRunId({
|
|
2308
|
+
runId: _runId,
|
|
2309
|
+
pagination: _pagination
|
|
2310
|
+
}) {
|
|
2311
|
+
return this.stores.scores.getScoresByRunId({ runId: _runId, pagination: _pagination });
|
|
2312
|
+
}
|
|
2313
|
+
async getScoresByEntityId({
|
|
2314
|
+
entityId: _entityId,
|
|
2315
|
+
entityType: _entityType,
|
|
2316
|
+
pagination: _pagination
|
|
2317
|
+
}) {
|
|
2318
|
+
return this.stores.scores.getScoresByEntityId({
|
|
2319
|
+
entityId: _entityId,
|
|
2320
|
+
entityType: _entityType,
|
|
2321
|
+
pagination: _pagination
|
|
2322
|
+
});
|
|
2323
|
+
}
|
|
2324
|
+
async getScoresByScorerId({
|
|
2325
|
+
scorerId: _scorerId,
|
|
2326
|
+
pagination: _pagination
|
|
2327
|
+
}) {
|
|
2328
|
+
return this.stores.scores.getScoresByScorerId({ scorerId: _scorerId, pagination: _pagination });
|
|
2329
|
+
}
|
|
1642
2330
|
/**
|
|
1643
2331
|
* Close the database connection
|
|
1644
2332
|
* No explicit cleanup needed for D1 in either REST or Workers Binding mode
|
|
@@ -1646,10 +2334,8 @@ var D1Store = class extends storage.MastraStorage {
|
|
|
1646
2334
|
async close() {
|
|
1647
2335
|
this.logger.debug("Closing D1 connection");
|
|
1648
2336
|
}
|
|
1649
|
-
async updateMessages(_args) {
|
|
1650
|
-
this.logger.error("updateMessages is not yet implemented in CloudflareD1Store");
|
|
1651
|
-
throw new Error("Method not implemented");
|
|
1652
|
-
}
|
|
1653
2337
|
};
|
|
1654
2338
|
|
|
1655
2339
|
exports.D1Store = D1Store;
|
|
2340
|
+
//# sourceMappingURL=index.cjs.map
|
|
2341
|
+
//# sourceMappingURL=index.cjs.map
|