@mastra/convex 0.1.0-beta.4 → 0.1.0-beta.6

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +248 -0
  2. package/README.md +1 -1
  3. package/dist/{chunk-QKN2PWR2.cjs → chunk-BKVR7SL7.cjs} +2 -89
  4. package/dist/chunk-BKVR7SL7.cjs.map +1 -0
  5. package/dist/chunk-H5QJE733.cjs +104 -0
  6. package/dist/chunk-H5QJE733.cjs.map +1 -0
  7. package/dist/chunk-HXB4DWFE.js +73 -0
  8. package/dist/chunk-HXB4DWFE.js.map +1 -0
  9. package/dist/{chunk-NZCHEPNU.js → chunk-KSAPIIEJ.js} +5 -65
  10. package/dist/chunk-KSAPIIEJ.js.map +1 -0
  11. package/dist/index.cjs +185 -285
  12. package/dist/index.cjs.map +1 -1
  13. package/dist/index.js +169 -269
  14. package/dist/index.js.map +1 -1
  15. package/dist/schema.cjs +72 -0
  16. package/dist/schema.cjs.map +1 -0
  17. package/dist/{server/schema.d.ts → schema.d.ts} +14 -1
  18. package/dist/schema.d.ts.map +1 -0
  19. package/dist/schema.js +3 -0
  20. package/dist/schema.js.map +1 -0
  21. package/dist/server/index.cjs +19 -18
  22. package/dist/server/index.d.ts +1 -1
  23. package/dist/server/index.d.ts.map +1 -1
  24. package/dist/server/index.js +2 -1
  25. package/dist/storage/db/index.d.ts +57 -0
  26. package/dist/storage/db/index.d.ts.map +1 -0
  27. package/dist/storage/domains/{memory.d.ts → memory/index.d.ts} +6 -4
  28. package/dist/storage/domains/memory/index.d.ts.map +1 -0
  29. package/dist/storage/domains/{scores.d.ts → scores/index.d.ts} +11 -18
  30. package/dist/storage/domains/scores/index.d.ts.map +1 -0
  31. package/dist/storage/domains/{workflows.d.ts → workflows/index.d.ts} +6 -4
  32. package/dist/storage/domains/workflows/index.d.ts.map +1 -0
  33. package/dist/storage/index.d.ts +50 -151
  34. package/dist/storage/index.d.ts.map +1 -1
  35. package/package.json +12 -2
  36. package/dist/chunk-NZCHEPNU.js.map +0 -1
  37. package/dist/chunk-QKN2PWR2.cjs.map +0 -1
  38. package/dist/server/schema.d.ts.map +0 -1
  39. package/dist/storage/domains/memory.d.ts.map +0 -1
  40. package/dist/storage/domains/scores.d.ts.map +0 -1
  41. package/dist/storage/domains/workflows.d.ts.map +0 -1
  42. package/dist/storage/operations.d.ts +0 -40
  43. package/dist/storage/operations.d.ts.map +0 -1
package/dist/index.cjs CHANGED
@@ -1,10 +1,12 @@
1
1
  'use strict';
2
2
 
3
- var chunkQKN2PWR2_cjs = require('./chunk-QKN2PWR2.cjs');
3
+ var chunkBKVR7SL7_cjs = require('./chunk-BKVR7SL7.cjs');
4
+ var chunkH5QJE733_cjs = require('./chunk-H5QJE733.cjs');
4
5
  var storage = require('@mastra/core/storage');
5
6
  var agent = require('@mastra/core/agent');
6
7
  var error = require('@mastra/core/error');
7
8
  var crypto = require('crypto');
9
+ var base = require('@mastra/core/base');
8
10
  var vector = require('@mastra/core/vector');
9
11
 
10
12
  function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
@@ -74,13 +76,114 @@ var ConvexAdminClient = class {
74
76
  return result;
75
77
  }
76
78
  };
79
+ function resolveConvexConfig(config) {
80
+ if ("client" in config) {
81
+ return config.client;
82
+ }
83
+ return new ConvexAdminClient(config);
84
+ }
85
+ var ConvexDB = class extends base.MastraBase {
86
+ constructor(client) {
87
+ super({ name: "convex-db" });
88
+ this.client = client;
89
+ }
90
+ async hasColumn(_table, _column) {
91
+ return true;
92
+ }
93
+ async clearTable({ tableName }) {
94
+ let hasMore = true;
95
+ while (hasMore) {
96
+ const response = await this.client.callStorageRaw({
97
+ op: "clearTable",
98
+ tableName
99
+ });
100
+ hasMore = response.hasMore ?? false;
101
+ }
102
+ }
103
+ async dropTable({ tableName }) {
104
+ let hasMore = true;
105
+ while (hasMore) {
106
+ const response = await this.client.callStorageRaw({
107
+ op: "dropTable",
108
+ tableName
109
+ });
110
+ hasMore = response.hasMore ?? false;
111
+ }
112
+ }
113
+ async insert({ tableName, record }) {
114
+ await this.client.callStorage({
115
+ op: "insert",
116
+ tableName,
117
+ record: this.normalizeRecord(tableName, record)
118
+ });
119
+ }
120
+ async batchInsert({ tableName, records }) {
121
+ if (records.length === 0) return;
122
+ await this.client.callStorage({
123
+ op: "batchInsert",
124
+ tableName,
125
+ records: records.map((record) => this.normalizeRecord(tableName, record))
126
+ });
127
+ }
128
+ async load({ tableName, keys }) {
129
+ const result = await this.client.callStorage({
130
+ op: "load",
131
+ tableName,
132
+ keys
133
+ });
134
+ return result;
135
+ }
136
+ async queryTable(tableName, filters) {
137
+ return this.client.callStorage({
138
+ op: "queryTable",
139
+ tableName,
140
+ filters
141
+ });
142
+ }
143
+ async deleteMany(tableName, ids) {
144
+ if (ids.length === 0) return;
145
+ await this.client.callStorage({
146
+ op: "deleteMany",
147
+ tableName,
148
+ ids
149
+ });
150
+ }
151
+ normalizeRecord(tableName, record) {
152
+ const normalized = { ...record };
153
+ if (tableName === storage.TABLE_WORKFLOW_SNAPSHOT && !normalized.id) {
154
+ const runId = normalized.run_id || normalized.runId;
155
+ const workflowName = normalized.workflow_name || normalized.workflowName;
156
+ normalized.id = workflowName ? `${workflowName}-${runId}` : runId;
157
+ }
158
+ if (!normalized.id) {
159
+ normalized.id = crypto__default.default.randomUUID();
160
+ }
161
+ for (const [key, value] of Object.entries(normalized)) {
162
+ if (value instanceof Date) {
163
+ normalized[key] = value.toISOString();
164
+ }
165
+ }
166
+ return normalized;
167
+ }
168
+ };
169
+
170
+ // src/storage/domains/memory/index.ts
77
171
  var MemoryConvex = class extends storage.MemoryStorage {
78
- constructor(operations) {
172
+ #db;
173
+ constructor(config) {
79
174
  super();
80
- this.operations = operations;
175
+ const client = resolveConvexConfig(config);
176
+ this.#db = new ConvexDB(client);
177
+ }
178
+ async init() {
179
+ }
180
+ async dangerouslyClearAll() {
181
+ await this.#db.clearTable({ tableName: storage.TABLE_THREADS });
182
+ await this.#db.clearTable({ tableName: storage.TABLE_MESSAGES });
183
+ await this.#db.clearTable({ tableName: storage.TABLE_RESOURCES });
81
184
  }
82
185
  async getThreadById({ threadId }) {
83
- const row = await this.operations.load({
186
+ const row = await this.#db.load({
84
187
  tableName: storage.TABLE_THREADS,
85
188
  keys: { id: threadId }
86
189
  });
@@ -93,7 +196,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
93
196
  };
94
197
  }
95
198
  async saveThread({ thread }) {
96
- await this.operations.insert({
199
+ await this.#db.insert({
97
200
  tableName: storage.TABLE_THREADS,
98
201
  record: {
99
202
  ...thread,
@@ -129,21 +232,21 @@ var MemoryConvex = class extends storage.MemoryStorage {
129
232
  return updated;
130
233
  }
131
234
  async deleteThread({ threadId }) {
132
- const messages = await this.operations.queryTable(storage.TABLE_MESSAGES, [
235
+ const messages = await this.#db.queryTable(storage.TABLE_MESSAGES, [
133
236
  { field: "thread_id", value: threadId }
134
237
  ]);
135
- await this.operations.deleteMany(
238
+ await this.#db.deleteMany(
136
239
  storage.TABLE_MESSAGES,
137
240
  messages.map((msg) => msg.id)
138
241
  );
139
- await this.operations.deleteMany(storage.TABLE_THREADS, [threadId]);
242
+ await this.#db.deleteMany(storage.TABLE_THREADS, [threadId]);
140
243
  }
141
244
  async listThreadsByResourceId(args) {
142
245
  const { resourceId, page = 0, perPage: perPageInput, orderBy } = args;
143
246
  const perPage = storage.normalizePerPage(perPageInput, 100);
144
247
  const { field, direction } = this.parseOrderBy(orderBy);
145
248
  const { offset, perPage: perPageForResponse } = storage.calculatePagination(page, perPageInput, perPage);
146
- const rows = await this.operations.queryTable(storage.TABLE_THREADS, [{ field: "resourceId", value: resourceId }]);
249
+ const rows = await this.#db.queryTable(storage.TABLE_THREADS, [{ field: "resourceId", value: resourceId }]);
147
250
  const threads = rows.map((row) => ({
148
251
  ...row,
149
252
  metadata: typeof row.metadata === "string" ? JSON.parse(row.metadata) : row.metadata,
@@ -186,9 +289,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
186
289
  const { field, direction } = this.parseOrderBy(orderBy, "ASC");
187
290
  let rows = [];
188
291
  for (const tid of threadIds) {
189
- const threadRows = await this.operations.queryTable(storage.TABLE_MESSAGES, [
190
- { field: "thread_id", value: tid }
191
- ]);
292
+ const threadRows = await this.#db.queryTable(storage.TABLE_MESSAGES, [{ field: "thread_id", value: tid }]);
192
293
  rows.push(...threadRows);
193
294
  }
194
295
  if (resourceId) {
@@ -232,14 +333,14 @@ var MemoryConvex = class extends storage.MemoryStorage {
232
333
  }
233
334
  }
234
335
  if (!target) {
235
- const messageRows = await this.operations.queryTable(storage.TABLE_MESSAGES, [
336
+ const messageRows = await this.#db.queryTable(storage.TABLE_MESSAGES, [
236
337
  { field: "id", value: includeItem.id }
237
338
  ]);
238
339
  if (messageRows.length > 0) {
239
340
  target = messageRows[0];
240
341
  targetThreadId = target.thread_id;
241
342
  if (targetThreadId && !threadMessagesCache.has(targetThreadId)) {
242
- const otherThreadRows = await this.operations.queryTable(storage.TABLE_MESSAGES, [
343
+ const otherThreadRows = await this.#db.queryTable(storage.TABLE_MESSAGES, [
243
344
  { field: "thread_id", value: targetThreadId }
244
345
  ]);
245
346
  threadMessagesCache.set(targetThreadId, otherThreadRows);
@@ -282,7 +383,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
282
383
  if (messageIds.length === 0) {
283
384
  return { messages: [] };
284
385
  }
285
- const rows = await this.operations.queryTable(storage.TABLE_MESSAGES, void 0);
386
+ const rows = await this.#db.queryTable(storage.TABLE_MESSAGES, void 0);
286
387
  const filtered = rows.filter((row) => messageIds.includes(row.id)).map((row) => this.parseStoredMessage(row));
287
388
  const list = new agent.MessageList().add(filtered, "memory");
288
389
  return { messages: list.get.all.db() };
@@ -307,7 +408,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
307
408
  resourceId: message.resourceId
308
409
  };
309
410
  });
310
- await this.operations.batchInsert({
411
+ await this.#db.batchInsert({
311
412
  tableName: storage.TABLE_MESSAGES,
312
413
  records: normalized
313
414
  });
@@ -316,7 +417,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
316
417
  for (const threadId of threadIds) {
317
418
  const thread = await this.getThreadById({ threadId });
318
419
  if (thread) {
319
- await this.operations.insert({
420
+ await this.#db.insert({
320
421
  tableName: storage.TABLE_THREADS,
321
422
  record: {
322
423
  ...thread,
@@ -335,7 +436,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
335
436
  messages
336
437
  }) {
337
438
  if (messages.length === 0) return [];
338
- const existing = await this.operations.queryTable(storage.TABLE_MESSAGES, void 0);
439
+ const existing = await this.#db.queryTable(storage.TABLE_MESSAGES, void 0);
339
440
  const updated = [];
340
441
  const affectedThreadIds = /* @__PURE__ */ new Set();
341
442
  for (const update of messages) {
@@ -364,7 +465,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
364
465
  };
365
466
  current.content = JSON.stringify(mergedContent);
366
467
  }
367
- await this.operations.insert({
468
+ await this.#db.insert({
368
469
  tableName: storage.TABLE_MESSAGES,
369
470
  record: current
370
471
  });
@@ -374,7 +475,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
374
475
  for (const threadId of affectedThreadIds) {
375
476
  const thread = await this.getThreadById({ threadId });
376
477
  if (thread) {
377
- await this.operations.insert({
478
+ await this.#db.insert({
378
479
  tableName: storage.TABLE_THREADS,
379
480
  record: {
380
481
  ...thread,
@@ -389,7 +490,7 @@ var MemoryConvex = class extends storage.MemoryStorage {
389
490
  return updated;
390
491
  }
391
492
  async deleteMessages(messageIds) {
392
- await this.operations.deleteMany(storage.TABLE_MESSAGES, messageIds);
493
+ await this.#db.deleteMany(storage.TABLE_MESSAGES, messageIds);
393
494
  }
394
495
  async saveResource({ resource }) {
395
496
  const record = {
@@ -400,14 +501,14 @@ var MemoryConvex = class extends storage.MemoryStorage {
400
501
  if (resource.metadata !== void 0) {
401
502
  record.metadata = resource.metadata;
402
503
  }
403
- await this.operations.insert({
504
+ await this.#db.insert({
404
505
  tableName: storage.TABLE_RESOURCES,
405
506
  record
406
507
  });
407
508
  return resource;
408
509
  }
409
510
  async getResourceById({ resourceId }) {
410
- const record = await this.operations.load({
511
+ const record = await this.#db.load({
411
512
  tableName: storage.TABLE_RESOURCES,
412
513
  keys: { id: resourceId }
413
514
  });
@@ -493,12 +594,19 @@ var MemoryConvex = class extends storage.MemoryStorage {
493
594
  }
494
595
  };
495
596
  var ScoresConvex = class extends storage.ScoresStorage {
496
- constructor(operations) {
597
+ #db;
598
+ constructor(config) {
497
599
  super();
498
- this.operations = operations;
600
+ const client = resolveConvexConfig(config);
601
+ this.#db = new ConvexDB(client);
602
+ }
603
+ async init() {
604
+ }
605
+ async dangerouslyClearAll() {
606
+ await this.#db.clearTable({ tableName: storage.TABLE_SCORERS });
499
607
  }
500
608
  async getScoreById({ id }) {
501
- const row = await this.operations.load({
609
+ const row = await this.#db.load({
502
610
  tableName: storage.TABLE_SCORERS,
503
611
  keys: { id }
504
612
  });
@@ -512,7 +620,7 @@ var ScoresConvex = class extends storage.ScoresStorage {
512
620
  createdAt: now.toISOString(),
513
621
  updatedAt: now.toISOString()
514
622
  };
515
- await this.operations.insert({
623
+ await this.#db.insert({
516
624
  tableName: storage.TABLE_SCORERS,
517
625
  record
518
626
  });
@@ -563,7 +671,7 @@ var ScoresConvex = class extends storage.ScoresStorage {
563
671
  new Error("page must be >= 0")
564
672
  );
565
673
  }
566
- const rows = await this.operations.queryTable(storage.TABLE_SCORERS, void 0);
674
+ const rows = await this.#db.queryTable(storage.TABLE_SCORERS, void 0);
567
675
  const filtered = rows.filter((row) => filters.scorerId ? row.scorerId === filters.scorerId : true).filter((row) => filters.entityId ? row.entityId === filters.entityId : true).filter((row) => filters.entityType ? row.entityType === filters.entityType : true).filter((row) => filters.runId ? row.runId === filters.runId : true).filter((row) => filters.source ? row.source === filters.source : true).sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
568
676
  const { perPage, page } = pagination;
569
677
  const perPageValue = perPage === false ? filtered.length : perPage;
@@ -589,9 +697,16 @@ var ScoresConvex = class extends storage.ScoresStorage {
589
697
  }
590
698
  };
591
699
  var WorkflowsConvex = class extends storage.WorkflowsStorage {
592
- constructor(operations) {
700
+ #db;
701
+ constructor(config) {
593
702
  super();
594
- this.operations = operations;
703
+ const client = resolveConvexConfig(config);
704
+ this.#db = new ConvexDB(client);
705
+ }
706
+ async init() {
707
+ }
708
+ async dangerouslyClearAll() {
709
+ await this.#db.clearTable({ tableName: storage.TABLE_WORKFLOW_SNAPSHOT });
595
710
  }
596
711
  async updateWorkflowResults({
597
712
  workflowName,
@@ -638,11 +753,11 @@ var WorkflowsConvex = class extends storage.WorkflowsStorage {
638
753
  snapshot
639
754
  }) {
640
755
  const now = /* @__PURE__ */ new Date();
641
- const existing = await this.operations.load({
756
+ const existing = await this.#db.load({
642
757
  tableName: storage.TABLE_WORKFLOW_SNAPSHOT,
643
758
  keys: { workflow_name: workflowName, run_id: runId }
644
759
  });
645
- await this.operations.insert({
760
+ await this.#db.insert({
646
761
  tableName: storage.TABLE_WORKFLOW_SNAPSHOT,
647
762
  record: {
648
763
  workflow_name: workflowName,
@@ -658,7 +773,7 @@ var WorkflowsConvex = class extends storage.WorkflowsStorage {
658
773
  workflowName,
659
774
  runId
660
775
  }) {
661
- const row = await this.operations.load({
776
+ const row = await this.#db.load({
662
777
  tableName: storage.TABLE_WORKFLOW_SNAPSHOT,
663
778
  keys: { workflow_name: workflowName, run_id: runId }
664
779
  });
@@ -667,7 +782,7 @@ var WorkflowsConvex = class extends storage.WorkflowsStorage {
667
782
  }
668
783
  async listWorkflowRuns(args = {}) {
669
784
  const { workflowName, fromDate, toDate, perPage, page, resourceId, status } = args;
670
- let rows = await this.operations.queryTable(storage.TABLE_WORKFLOW_SNAPSHOT, void 0);
785
+ let rows = await this.#db.queryTable(storage.TABLE_WORKFLOW_SNAPSHOT, void 0);
671
786
  if (workflowName) rows = rows.filter((run) => run.workflow_name === workflowName);
672
787
  if (resourceId) rows = rows.filter((run) => run.resourceId === resourceId);
673
788
  if (fromDate) rows = rows.filter((run) => new Date(run.createdAt).getTime() >= fromDate.getTime());
@@ -699,7 +814,7 @@ var WorkflowsConvex = class extends storage.WorkflowsStorage {
699
814
  runId,
700
815
  workflowName
701
816
  }) {
702
- const runs = await this.operations.queryTable(storage.TABLE_WORKFLOW_SNAPSHOT, void 0);
817
+ const runs = await this.#db.queryTable(storage.TABLE_WORKFLOW_SNAPSHOT, void 0);
703
818
  const match = runs.find((run) => run.run_id === runId && (!workflowName || run.workflow_name === workflowName));
704
819
  if (!match) return null;
705
820
  return {
@@ -712,10 +827,10 @@ var WorkflowsConvex = class extends storage.WorkflowsStorage {
712
827
  };
713
828
  }
714
829
  async deleteWorkflowRunById({ runId, workflowName }) {
715
- await this.operations.deleteMany(storage.TABLE_WORKFLOW_SNAPSHOT, [`${workflowName}-${runId}`]);
830
+ await this.#db.deleteMany(storage.TABLE_WORKFLOW_SNAPSHOT, [`${workflowName}-${runId}`]);
716
831
  }
717
832
  async getRun(workflowName, runId) {
718
- const runs = await this.operations.queryTable(storage.TABLE_WORKFLOW_SNAPSHOT, [
833
+ const runs = await this.#db.queryTable(storage.TABLE_WORKFLOW_SNAPSHOT, [
719
834
  { field: "workflow_name", value: workflowName }
720
835
  ]);
721
836
  return runs.find((run) => run.run_id === runId) ?? null;
@@ -742,113 +857,24 @@ var WorkflowsConvex = class extends storage.WorkflowsStorage {
742
857
  return JSON.parse(JSON.stringify(run.snapshot));
743
858
  }
744
859
  };
745
- var StoreOperationsConvex = class extends storage.StoreOperations {
746
- constructor(client) {
747
- super();
748
- this.client = client;
749
- }
750
- async hasColumn(_table, _column) {
751
- return true;
752
- }
753
- async createTable(_args) {
754
- }
755
- async clearTable({ tableName }) {
756
- let hasMore = true;
757
- while (hasMore) {
758
- const response = await this.client.callStorageRaw({
759
- op: "clearTable",
760
- tableName
761
- });
762
- hasMore = response.hasMore ?? false;
763
- }
764
- }
765
- async dropTable({ tableName }) {
766
- let hasMore = true;
767
- while (hasMore) {
768
- const response = await this.client.callStorageRaw({
769
- op: "dropTable",
770
- tableName
771
- });
772
- hasMore = response.hasMore ?? false;
773
- }
774
- }
775
- async alterTable(_args) {
776
- }
777
- async insert({ tableName, record }) {
778
- await this.client.callStorage({
779
- op: "insert",
780
- tableName,
781
- record: this.normalizeRecord(tableName, record)
782
- });
783
- }
784
- async batchInsert({ tableName, records }) {
785
- if (records.length === 0) return;
786
- await this.client.callStorage({
787
- op: "batchInsert",
788
- tableName,
789
- records: records.map((record) => this.normalizeRecord(tableName, record))
790
- });
791
- }
792
- async load({ tableName, keys }) {
793
- const result = await this.client.callStorage({
794
- op: "load",
795
- tableName,
796
- keys
797
- });
798
- return result;
799
- }
800
- async queryTable(tableName, filters) {
801
- return this.client.callStorage({
802
- op: "queryTable",
803
- tableName,
804
- filters
805
- });
806
- }
807
- async deleteMany(tableName, ids) {
808
- if (ids.length === 0) return;
809
- await this.client.callStorage({
810
- op: "deleteMany",
811
- tableName,
812
- ids
813
- });
814
- }
815
- normalizeRecord(tableName, record) {
816
- const normalized = { ...record };
817
- if (tableName === storage.TABLE_WORKFLOW_SNAPSHOT && !normalized.id) {
818
- const runId = normalized.run_id || normalized.runId;
819
- const workflowName = normalized.workflow_name || normalized.workflowName;
820
- normalized.id = workflowName ? `${workflowName}-${runId}` : runId;
821
- }
822
- if (!normalized.id) {
823
- normalized.id = crypto__default.default.randomUUID();
824
- }
825
- for (const [key, value] of Object.entries(normalized)) {
826
- if (value instanceof Date) {
827
- normalized[key] = value.toISOString();
828
- }
829
- }
830
- return normalized;
831
- }
832
- };
833
860
 
834
861
  // src/storage/index.ts
862
+ var isClientConfig = (config) => {
863
+ return "client" in config;
864
+ };
835
865
  var ConvexStore = class extends storage.MastraStorage {
836
- operations;
837
- memory;
838
- workflows;
839
- scores;
866
+ stores = {};
840
867
  constructor(config) {
841
868
  super({ id: config.id, name: config.name ?? "ConvexStore", disableInit: config.disableInit });
842
- const client = new ConvexAdminClient(config);
843
- this.operations = new StoreOperationsConvex(client);
844
- this.memory = new MemoryConvex(this.operations);
845
- this.workflows = new WorkflowsConvex(this.operations);
846
- this.scores = new ScoresConvex(this.operations);
869
+ const client = isClientConfig(config) ? config.client : new ConvexAdminClient(config);
870
+ const domainConfig = { client };
871
+ const memory = new MemoryConvex(domainConfig);
872
+ const workflows = new WorkflowsConvex(domainConfig);
873
+ const scores = new ScoresConvex(domainConfig);
847
874
  this.stores = {
848
- operations: this.operations,
849
- memory: this.memory,
850
- workflows: this.workflows,
851
- scores: this.scores
875
+ memory,
876
+ workflows,
877
+ scores
852
878
  };
853
879
  }
854
880
  get supports() {
@@ -858,138 +884,12 @@ var ConvexStore = class extends storage.MastraStorage {
858
884
  hasColumn: false,
859
885
  createTable: false,
860
886
  deleteMessages: true,
861
- observabilityInstance: false,
862
- listScoresBySpan: false
887
+ observability: false,
888
+ indexManagement: false,
889
+ listScoresBySpan: false,
890
+ agents: false
863
891
  };
864
892
  }
865
- async createTable(_args) {
866
- }
867
- async clearTable({ tableName }) {
868
- await this.operations.clearTable({ tableName });
869
- }
870
- async dropTable({ tableName }) {
871
- await this.operations.dropTable({ tableName });
872
- }
873
- async alterTable(_args) {
874
- }
875
- async insert({ tableName, record }) {
876
- await this.operations.insert({ tableName, record });
877
- }
878
- async batchInsert({ tableName, records }) {
879
- await this.operations.batchInsert({ tableName, records });
880
- }
881
- async load({ tableName, keys }) {
882
- return this.operations.load({ tableName, keys });
883
- }
884
- async getThreadById({ threadId }) {
885
- return this.memory.getThreadById({ threadId });
886
- }
887
- async saveThread({ thread }) {
888
- return this.memory.saveThread({ thread });
889
- }
890
- async updateThread({
891
- id,
892
- title,
893
- metadata
894
- }) {
895
- return this.memory.updateThread({ id, title, metadata });
896
- }
897
- async deleteThread({ threadId }) {
898
- await this.memory.deleteThread({ threadId });
899
- }
900
- async listMessages(args) {
901
- return this.memory.listMessages(args);
902
- }
903
- async listMessagesById({ messageIds }) {
904
- return this.memory.listMessagesById({ messageIds });
905
- }
906
- async saveMessages(args) {
907
- return this.memory.saveMessages(args);
908
- }
909
- async updateMessages({
910
- messages
911
- }) {
912
- return this.memory.updateMessages({ messages });
913
- }
914
- async deleteMessages(messageIds) {
915
- await this.memory.deleteMessages(messageIds);
916
- }
917
- async listThreadsByResourceId(args) {
918
- return this.memory.listThreadsByResourceId(args);
919
- }
920
- async getResourceById({ resourceId }) {
921
- return this.memory.getResourceById({ resourceId });
922
- }
923
- async saveResource({ resource }) {
924
- return this.memory.saveResource({ resource });
925
- }
926
- async updateResource({
927
- resourceId,
928
- workingMemory,
929
- metadata
930
- }) {
931
- return this.memory.updateResource({ resourceId, workingMemory, metadata });
932
- }
933
- async updateWorkflowResults(params) {
934
- return this.workflows.updateWorkflowResults(params);
935
- }
936
- async updateWorkflowState(params) {
937
- return this.workflows.updateWorkflowState(params);
938
- }
939
- async persistWorkflowSnapshot({
940
- workflowName,
941
- runId,
942
- resourceId,
943
- snapshot
944
- }) {
945
- await this.workflows.persistWorkflowSnapshot({ workflowName, runId, resourceId, snapshot });
946
- }
947
- async loadWorkflowSnapshot({
948
- workflowName,
949
- runId
950
- }) {
951
- return this.workflows.loadWorkflowSnapshot({ workflowName, runId });
952
- }
953
- async listWorkflowRuns(args) {
954
- return this.workflows.listWorkflowRuns(args);
955
- }
956
- async getWorkflowRunById({
957
- runId,
958
- workflowName
959
- }) {
960
- return this.workflows.getWorkflowRunById({ runId, workflowName });
961
- }
962
- async deleteWorkflowRunById({ runId, workflowName }) {
963
- return this.workflows.deleteWorkflowRunById({ runId, workflowName });
964
- }
965
- async getScoreById({ id }) {
966
- return this.scores.getScoreById({ id });
967
- }
968
- async saveScore(score) {
969
- return this.scores.saveScore(score);
970
- }
971
- async listScoresByScorerId({
972
- scorerId,
973
- pagination,
974
- entityId,
975
- entityType,
976
- source
977
- }) {
978
- return this.scores.listScoresByScorerId({ scorerId, pagination, entityId, entityType, source });
979
- }
980
- async listScoresByRunId({
981
- runId,
982
- pagination
983
- }) {
984
- return this.scores.listScoresByRunId({ runId, pagination });
985
- }
986
- async listScoresByEntityId({
987
- entityId,
988
- entityType,
989
- pagination
990
- }) {
991
- return this.scores.listScoresByEntityId({ entityId, entityType, pagination });
992
- }
993
893
  };
994
894
  var INDEX_METADATA_TABLE = "mastra_vector_indexes";
995
895
  var ConvexVector = class extends vector.MastraVector {
@@ -1294,61 +1194,61 @@ function cosineSimilarity(a, b) {
1294
1194
  return dot / (Math.sqrt(magA) * Math.sqrt(magB));
1295
1195
  }
1296
1196
 
1197
+ Object.defineProperty(exports, "mastraStorage", {
1198
+ enumerable: true,
1199
+ get: function () { return chunkBKVR7SL7_cjs.mastraStorage; }
1200
+ });
1297
1201
  Object.defineProperty(exports, "TABLE_MESSAGES", {
1298
1202
  enumerable: true,
1299
- get: function () { return chunkQKN2PWR2_cjs.TABLE_MESSAGES; }
1203
+ get: function () { return chunkH5QJE733_cjs.TABLE_MESSAGES; }
1300
1204
  });
1301
1205
  Object.defineProperty(exports, "TABLE_RESOURCES", {
1302
1206
  enumerable: true,
1303
- get: function () { return chunkQKN2PWR2_cjs.TABLE_RESOURCES; }
1207
+ get: function () { return chunkH5QJE733_cjs.TABLE_RESOURCES; }
1304
1208
  });
1305
1209
  Object.defineProperty(exports, "TABLE_SCORERS", {
1306
1210
  enumerable: true,
1307
- get: function () { return chunkQKN2PWR2_cjs.TABLE_SCORERS; }
1211
+ get: function () { return chunkH5QJE733_cjs.TABLE_SCORERS; }
1308
1212
  });
1309
1213
  Object.defineProperty(exports, "TABLE_THREADS", {
1310
1214
  enumerable: true,
1311
- get: function () { return chunkQKN2PWR2_cjs.TABLE_THREADS; }
1215
+ get: function () { return chunkH5QJE733_cjs.TABLE_THREADS; }
1312
1216
  });
1313
1217
  Object.defineProperty(exports, "TABLE_WORKFLOW_SNAPSHOT", {
1314
1218
  enumerable: true,
1315
- get: function () { return chunkQKN2PWR2_cjs.TABLE_WORKFLOW_SNAPSHOT; }
1219
+ get: function () { return chunkH5QJE733_cjs.TABLE_WORKFLOW_SNAPSHOT; }
1316
1220
  });
1317
1221
  Object.defineProperty(exports, "mastraDocumentsTable", {
1318
1222
  enumerable: true,
1319
- get: function () { return chunkQKN2PWR2_cjs.mastraDocumentsTable; }
1223
+ get: function () { return chunkH5QJE733_cjs.mastraDocumentsTable; }
1320
1224
  });
1321
1225
  Object.defineProperty(exports, "mastraMessagesTable", {
1322
1226
  enumerable: true,
1323
- get: function () { return chunkQKN2PWR2_cjs.mastraMessagesTable; }
1227
+ get: function () { return chunkH5QJE733_cjs.mastraMessagesTable; }
1324
1228
  });
1325
1229
  Object.defineProperty(exports, "mastraResourcesTable", {
1326
1230
  enumerable: true,
1327
- get: function () { return chunkQKN2PWR2_cjs.mastraResourcesTable; }
1231
+ get: function () { return chunkH5QJE733_cjs.mastraResourcesTable; }
1328
1232
  });
1329
1233
  Object.defineProperty(exports, "mastraScoresTable", {
1330
1234
  enumerable: true,
1331
- get: function () { return chunkQKN2PWR2_cjs.mastraScoresTable; }
1332
- });
1333
- Object.defineProperty(exports, "mastraStorage", {
1334
- enumerable: true,
1335
- get: function () { return chunkQKN2PWR2_cjs.mastraStorage; }
1235
+ get: function () { return chunkH5QJE733_cjs.mastraScoresTable; }
1336
1236
  });
1337
1237
  Object.defineProperty(exports, "mastraThreadsTable", {
1338
1238
  enumerable: true,
1339
- get: function () { return chunkQKN2PWR2_cjs.mastraThreadsTable; }
1239
+ get: function () { return chunkH5QJE733_cjs.mastraThreadsTable; }
1340
1240
  });
1341
1241
  Object.defineProperty(exports, "mastraVectorIndexesTable", {
1342
1242
  enumerable: true,
1343
- get: function () { return chunkQKN2PWR2_cjs.mastraVectorIndexesTable; }
1243
+ get: function () { return chunkH5QJE733_cjs.mastraVectorIndexesTable; }
1344
1244
  });
1345
1245
  Object.defineProperty(exports, "mastraVectorsTable", {
1346
1246
  enumerable: true,
1347
- get: function () { return chunkQKN2PWR2_cjs.mastraVectorsTable; }
1247
+ get: function () { return chunkH5QJE733_cjs.mastraVectorsTable; }
1348
1248
  });
1349
1249
  Object.defineProperty(exports, "mastraWorkflowSnapshotsTable", {
1350
1250
  enumerable: true,
1351
- get: function () { return chunkQKN2PWR2_cjs.mastraWorkflowSnapshotsTable; }
1251
+ get: function () { return chunkH5QJE733_cjs.mastraWorkflowSnapshotsTable; }
1352
1252
  });
1353
1253
  exports.ConvexStore = ConvexStore;
1354
1254
  exports.ConvexVector = ConvexVector;