@mastra/client-js 1.32.0 → 1.32.1-alpha.0

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,12 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 1.32.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`8a0d145`](https://github.com/mastra-ai/mastra/commit/8a0d145aadbdf7278665aceaaec364b35dd9bd94), [`bd2f1d2`](https://github.com/mastra-ai/mastra/commit/bd2f1d274d05e60e2366f005ea0d94d5cea0d5ff), [`21a0eb8`](https://github.com/mastra-ai/mastra/commit/21a0eb86746ba0b703acea360d4f84c6a5a493f2), [`de86fd7`](https://github.com/mastra-ai/mastra/commit/de86fd7119f0438381d1a642e3d258143c0b9c29), [`2745031`](https://github.com/mastra-ai/mastra/commit/2745031d1d4a4978f037092da371428c32e2842a), [`db650ce`](https://github.com/mastra-ai/mastra/commit/db650ce490348914e85b93651d83acdf8f2a4c31), [`6354eeb`](https://github.com/mastra-ai/mastra/commit/6354eeb32efa9f5f68f51dda394e90e2ee76f1fb)]:
8
+ - @mastra/core@1.51.1-alpha.0
9
+
3
10
  ## 1.32.0
4
11
 
5
12
  ### Minor Changes
@@ -3,7 +3,7 @@ name: mastra-client-js
3
3
  description: Documentation for @mastra/client-js. Use when working with @mastra/client-js APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/client-js"
6
- version: "1.32.0"
6
+ version: "1.32.1-alpha.0"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.32.0",
2
+ "version": "1.32.1-alpha.0",
3
3
  "package": "@mastra/client-js",
4
4
  "exports": {
5
5
  "RequestContext": {
@@ -30,7 +30,7 @@ const pinger = new Agent({
30
30
 
31
31
  const mastra = new Mastra({
32
32
  agents: { pinger },
33
- storage: new LibSQLStore({ url: 'file:./mastra.db' }),
33
+ storage: new LibSQLStore({ id: 'mastra-storage', url: 'file:./mastra.db' }),
34
34
  })
35
35
 
36
36
  await mastra.schedules.create({
@@ -164,7 +164,7 @@ Hooks let you run code at key points in an agent schedule's lifecycle, for examp
164
164
  ```typescript
165
165
  const mastra = new Mastra({
166
166
  agents: { pinger },
167
- storage: new LibSQLStore({ url: 'file:./mastra.db' }),
167
+ storage: new LibSQLStore({ id: 'mastra-storage', url: 'file:./mastra.db' }),
168
168
  schedules: {
169
169
  prepare: async ({ agentId, schedule, trigger }) => {
170
170
  // Return overrides, null to skip this fire, or undefined for defaults
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/client-js",
3
- "version": "1.32.0",
3
+ "version": "1.32.1-alpha.0",
4
4
  "description": "The official TypeScript library for the Mastra Client API",
5
5
  "author": "",
6
6
  "type": "module",
@@ -39,7 +39,7 @@
39
39
  "canonicalize": "^1.0.8",
40
40
  "jose": "^6.2.1",
41
41
  "json-schema": "^0.4.0",
42
- "@mastra/core": "1.51.0",
42
+ "@mastra/core": "1.51.1-alpha.0",
43
43
  "@mastra/schema-compat": "1.3.4"
44
44
  },
45
45
  "peerDependencies": {
@@ -57,8 +57,8 @@
57
57
  "vitest": "4.1.10",
58
58
  "zod": "^4.4.3",
59
59
  "@internal/ai-sdk-v4": "0.0.61",
60
- "@internal/ai-sdk-v5": "0.0.61",
61
60
  "@internal/lint": "0.0.114",
61
+ "@internal/ai-sdk-v5": "0.0.61",
62
62
  "@internal/types-builder": "0.0.89"
63
63
  },
64
64
  "engines": {