@mastra/mssql 0.5.3 → 0.5.4

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,25 @@
1
1
  # @mastra/mssql
2
2
 
3
+ ## 0.5.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Add restart method to workflow run that allows restarting an active workflow run ([#10703](https://github.com/mastra-ai/mastra/pull/10703))
8
+ Add status filter to `getWorkflowRuns`
9
+ Add automatic restart to restart active workflow runs when server starts
10
+ - Updated dependencies [[`5cc85aa`](https://github.com/mastra-ai/mastra/commit/5cc85aa4329773cac8314f3aa0146227b6b158e4), [`c53f8e6`](https://github.com/mastra-ai/mastra/commit/c53f8e68df42464935f9a63eb0fc765a65aacb83), [`386ab43`](https://github.com/mastra-ai/mastra/commit/386ab4350cf2a814fb4ac0a5fc6983ca93158ffe), [`2b62302`](https://github.com/mastra-ai/mastra/commit/2b623027a9d65c1dbc963bf651e9e6a9d09da1fa), [`7d85da4`](https://github.com/mastra-ai/mastra/commit/7d85da42a5fab56009a959a9c20328558d14f4b5), [`3d7c5bd`](https://github.com/mastra-ai/mastra/commit/3d7c5bdbee1b2693cd45bf207b960dd9b7277680), [`31b381e`](https://github.com/mastra-ai/mastra/commit/31b381efb48e031c0ecc46bc6e410ae6e67b88e5), [`54cc99c`](https://github.com/mastra-ai/mastra/commit/54cc99cb99483b9e08ec41fa1502f43b71b4c351), [`e77a5f9`](https://github.com/mastra-ai/mastra/commit/e77a5f9718dc418e29e3c8a389299ed6dc0a6401), [`b685c9c`](https://github.com/mastra-ai/mastra/commit/b685c9c0b89f49e0d4542c4ac72569682db69794), [`b069af5`](https://github.com/mastra-ai/mastra/commit/b069af514c4dcfc4fdcb164303569bfff1c26e3d), [`7dc8304`](https://github.com/mastra-ai/mastra/commit/7dc830420296db516b86dcec663e54d0309b8fb8), [`6942109`](https://github.com/mastra-ai/mastra/commit/694210903c70e3c26b5ce8ca4f4637ca2d9eb369), [`62d13f4`](https://github.com/mastra-ai/mastra/commit/62d13f4d1db1c16742831f210fe4c2caf8a26d57), [`358ab98`](https://github.com/mastra-ai/mastra/commit/358ab98024c388e383aca15616e8988bf4a5b66e)]:
11
+ - @mastra/core@0.24.7
12
+
13
+ ## 0.5.4-alpha.0
14
+
15
+ ### Patch Changes
16
+
17
+ - Add restart method to workflow run that allows restarting an active workflow run ([#10703](https://github.com/mastra-ai/mastra/pull/10703))
18
+ Add status filter to `getWorkflowRuns`
19
+ Add automatic restart to restart active workflow runs when server starts
20
+ - Updated dependencies [[`5cc85aa`](https://github.com/mastra-ai/mastra/commit/5cc85aa4329773cac8314f3aa0146227b6b158e4), [`c53f8e6`](https://github.com/mastra-ai/mastra/commit/c53f8e68df42464935f9a63eb0fc765a65aacb83), [`386ab43`](https://github.com/mastra-ai/mastra/commit/386ab4350cf2a814fb4ac0a5fc6983ca93158ffe), [`2b62302`](https://github.com/mastra-ai/mastra/commit/2b623027a9d65c1dbc963bf651e9e6a9d09da1fa), [`7d85da4`](https://github.com/mastra-ai/mastra/commit/7d85da42a5fab56009a959a9c20328558d14f4b5), [`3d7c5bd`](https://github.com/mastra-ai/mastra/commit/3d7c5bdbee1b2693cd45bf207b960dd9b7277680), [`31b381e`](https://github.com/mastra-ai/mastra/commit/31b381efb48e031c0ecc46bc6e410ae6e67b88e5), [`e77a5f9`](https://github.com/mastra-ai/mastra/commit/e77a5f9718dc418e29e3c8a389299ed6dc0a6401), [`b069af5`](https://github.com/mastra-ai/mastra/commit/b069af514c4dcfc4fdcb164303569bfff1c26e3d), [`7dc8304`](https://github.com/mastra-ai/mastra/commit/7dc830420296db516b86dcec663e54d0309b8fb8), [`6942109`](https://github.com/mastra-ai/mastra/commit/694210903c70e3c26b5ce8ca4f4637ca2d9eb369), [`62d13f4`](https://github.com/mastra-ai/mastra/commit/62d13f4d1db1c16742831f210fe4c2caf8a26d57), [`358ab98`](https://github.com/mastra-ai/mastra/commit/358ab98024c388e383aca15616e8988bf4a5b66e)]:
21
+ - @mastra/core@0.24.7-alpha.1
22
+
3
23
  ## 0.5.3
4
24
 
5
25
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -2979,13 +2979,14 @@ var WorkflowsMSSQL = class extends storage.WorkflowsStorage {
2979
2979
  snapshot = {
2980
2980
  context: {},
2981
2981
  activePaths: [],
2982
+ activeStepsPath: {},
2982
2983
  timestamp: Date.now(),
2983
2984
  suspendedPaths: {},
2984
2985
  resumeLabels: {},
2985
2986
  serializedStepGraph: [],
2987
+ status: "pending",
2986
2988
  value: {},
2987
2989
  waitingPaths: {},
2988
- status: "pending",
2989
2990
  runId,
2990
2991
  runtimeContext: {}
2991
2992
  };
@@ -3215,7 +3216,8 @@ var WorkflowsMSSQL = class extends storage.WorkflowsStorage {
3215
3216
  toDate,
3216
3217
  limit,
3217
3218
  offset,
3218
- resourceId
3219
+ resourceId,
3220
+ status
3219
3221
  } = {}) {
3220
3222
  try {
3221
3223
  const conditions = [];
@@ -3224,6 +3226,10 @@ var WorkflowsMSSQL = class extends storage.WorkflowsStorage {
3224
3226
  conditions.push(`[workflow_name] = @workflowName`);
3225
3227
  paramMap["workflowName"] = workflowName;
3226
3228
  }
3229
+ if (status) {
3230
+ conditions.push(`JSON_VALUE([snapshot], '$.status') = @status`);
3231
+ paramMap["status"] = status;
3232
+ }
3227
3233
  if (resourceId) {
3228
3234
  const hasResourceId = await this.operations.hasColumn(storage.TABLE_WORKFLOW_SNAPSHOT, "resourceId");
3229
3235
  if (hasResourceId) {
@@ -3527,15 +3533,8 @@ var MSSQLStore = class extends storage.MastraStorage {
3527
3533
  }) {
3528
3534
  return this.stores.workflows.loadWorkflowSnapshot({ workflowName, runId });
3529
3535
  }
3530
- async getWorkflowRuns({
3531
- workflowName,
3532
- fromDate,
3533
- toDate,
3534
- limit,
3535
- offset,
3536
- resourceId
3537
- } = {}) {
3538
- return this.stores.workflows.getWorkflowRuns({ workflowName, fromDate, toDate, limit, offset, resourceId });
3536
+ async getWorkflowRuns(args = {}) {
3537
+ return this.stores.workflows.getWorkflowRuns(args);
3539
3538
  }
3540
3539
  async getWorkflowRunById({
3541
3540
  runId,