@mastra/libsql 1.0.0-beta.6 → 1.0.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @mastra/libsql
2
2
 
3
+ ## 1.0.0-beta.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Add delete workflow run API ([#10991](https://github.com/mastra-ai/mastra/pull/10991))
8
+
9
+ ```typescript
10
+ await workflow.deleteWorkflowRunById(runId);
11
+ ```
12
+
13
+ - Updated dependencies [[`edb07e4`](https://github.com/mastra-ai/mastra/commit/edb07e49283e0c28bd094a60e03439bf6ecf0221), [`b7e17d3`](https://github.com/mastra-ai/mastra/commit/b7e17d3f5390bb5a71efc112204413656fcdc18d), [`261473a`](https://github.com/mastra-ai/mastra/commit/261473ac637e633064a22076671e2e02b002214d), [`5d7000f`](https://github.com/mastra-ai/mastra/commit/5d7000f757cd65ea9dc5b05e662fd83dfd44e932), [`4f0331a`](https://github.com/mastra-ai/mastra/commit/4f0331a79bf6eb5ee598a5086e55de4b5a0ada03), [`8a000da`](https://github.com/mastra-ai/mastra/commit/8a000da0c09c679a2312f6b3aa05b2ca78ca7393)]:
14
+ - @mastra/core@1.0.0-beta.10
15
+
3
16
  ## 1.0.0-beta.6
4
17
 
5
18
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -3424,6 +3424,24 @@ var WorkflowsLibSQL = class extends storage.WorkflowsStorage {
3424
3424
  );
3425
3425
  }
3426
3426
  }
3427
+ async deleteWorkflowRunById({ runId, workflowName }) {
3428
+ try {
3429
+ await this.client.execute({
3430
+ sql: `DELETE FROM ${storage.TABLE_WORKFLOW_SNAPSHOT} WHERE workflow_name = ? AND run_id = ?`,
3431
+ args: [workflowName, runId]
3432
+ });
3433
+ } catch (error$1) {
3434
+ throw new error.MastraError(
3435
+ {
3436
+ id: storage.createStorageErrorId("LIBSQL", "DELETE_WORKFLOW_RUN_BY_ID", "FAILED"),
3437
+ domain: error.ErrorDomain.STORAGE,
3438
+ category: error.ErrorCategory.THIRD_PARTY,
3439
+ details: { runId, workflowName }
3440
+ },
3441
+ error$1
3442
+ );
3443
+ }
3444
+ }
3427
3445
  async listWorkflowRuns({
3428
3446
  workflowName,
3429
3447
  fromDate,
@@ -3686,6 +3704,9 @@ var LibSQLStore = class extends storage.MastraStorage {
3686
3704
  }) {
3687
3705
  return this.stores.workflows.getWorkflowRunById({ runId, workflowName });
3688
3706
  }
3707
+ async deleteWorkflowRunById({ runId, workflowName }) {
3708
+ return this.stores.workflows.deleteWorkflowRunById({ runId, workflowName });
3709
+ }
3689
3710
  async getResourceById({ resourceId }) {
3690
3711
  return this.stores.memory.getResourceById({ resourceId });
3691
3712
  }