@mastra/client-js 1.29.0 → 1.29.1-alpha.1

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,20 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 1.29.1-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`cc440a3`](https://github.com/mastra-ai/mastra/commit/cc440a39400d8ce06655462b26c1666a1b3d4320), [`ea6327b`](https://github.com/mastra-ai/mastra/commit/ea6327ba2d63ca647804bc97b347e03a58617162), [`3439fa8`](https://github.com/mastra-ai/mastra/commit/3439fa836ecfcaa257b40c20b30ac2a8be22e9ea), [`85107f2`](https://github.com/mastra-ai/mastra/commit/85107f2758b527147fccbedff962961927c2d3b8), [`1042cb4`](https://github.com/mastra-ai/mastra/commit/1042cb4da227c0a1315a6362262be3058866c5f8), [`06ff9e0`](https://github.com/mastra-ai/mastra/commit/06ff9e0befd1d642ab87ff749285ee4091205c7e), [`7f5e1ff`](https://github.com/mastra-ai/mastra/commit/7f5e1ff695a92f672bb3976363925d1e9136b54a), [`b8375c1`](https://github.com/mastra-ai/mastra/commit/b8375c1f8fe905df8ae2ae9a893bb365f17aec4e), [`003f35d`](https://github.com/mastra-ai/mastra/commit/003f35d19e07b23b4bacc591c8bc0c59b42124ae)]:
8
+ - @mastra/core@1.49.0-alpha.1
9
+ - @mastra/schema-compat@1.3.3-alpha.0
10
+
11
+ ## 1.29.1-alpha.0
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`0f69865`](https://github.com/mastra-ai/mastra/commit/0f69865aced225d98eac812e22699dc445ee18cb)]:
16
+ - @mastra/core@1.48.1-alpha.0
17
+
3
18
  ## 1.29.0
4
19
 
5
20
  ### 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.29.0"
6
+ version: "1.29.1-alpha.1"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.29.0",
2
+ "version": "1.29.1-alpha.1",
3
3
  "package": "@mastra/client-js",
4
4
  "exports": {
5
5
  "RequestContext": {
@@ -2,7 +2,7 @@
2
2
 
3
3
  **Added in:** `@mastra/core@1.46.0`
4
4
 
5
- > **Beta:** This feature is in alpha. Breaking changes may occur without a major version bump until the API is stable.
5
+ > **Beta:** This feature is in beta. Breaking changes may occur without a major version bump until the API is stable.
6
6
 
7
7
  A heartbeat runs an agent on a cron schedule. On each fire, Mastra sends a prompt to the agent, either as a [signal](https://mastra.ai/docs/agents/signals) into a thread or as a threadless `agent.generate()` run. Use heartbeats for recurring agent work such as daily summaries, periodic checks, or scheduled nudges into a conversation.
8
8
 
@@ -194,6 +194,7 @@ Use the `editor` field on a code-defined agent to control which fields the edito
194
194
  import { Agent } from '@mastra/core/agent'
195
195
 
196
196
  export const supportAgent = new Agent({
197
+ id: 'support-agent',
197
198
  name: 'support-agent',
198
199
  model: 'openai/gpt-5.5',
199
200
  editor: { instructions: true, tools: { description: true } },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/client-js",
3
- "version": "1.29.0",
3
+ "version": "1.29.1-alpha.1",
4
4
  "description": "The official TypeScript library for the Mastra Client API",
5
5
  "author": "",
6
6
  "type": "module",
@@ -39,8 +39,8 @@
39
39
  "canonicalize": "^1.0.8",
40
40
  "jose": "^6.2.1",
41
41
  "json-schema": "^0.4.0",
42
- "@mastra/schema-compat": "1.3.2",
43
- "@mastra/core": "1.48.0"
42
+ "@mastra/core": "1.49.0-alpha.1",
43
+ "@mastra/schema-compat": "1.3.3-alpha.0"
44
44
  },
45
45
  "peerDependencies": {
46
46
  "zod": "^3.25.0 || ^4.0.0"
@@ -57,9 +57,9 @@
57
57
  "vitest": "4.1.8",
58
58
  "zod": "^4.4.3",
59
59
  "@internal/ai-sdk-v4": "0.0.57",
60
- "@internal/types-builder": "0.0.85",
60
+ "@internal/ai-sdk-v5": "0.0.57",
61
61
  "@internal/lint": "0.0.110",
62
- "@internal/ai-sdk-v5": "0.0.57"
62
+ "@internal/types-builder": "0.0.85"
63
63
  },
64
64
  "engines": {
65
65
  "node": ">=22.13.0"