@mastra/client-js 1.24.0-alpha.1 → 1.24.0-alpha.3
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 +38 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/route-types.generated.d.ts +35 -0
- package/dist/route-types.generated.d.ts.map +1 -1
- package/dist/types.d.ts +12 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -321,6 +321,13 @@ export type PostAgentsAgentIdClone_Response = {
|
|
|
321
321
|
status: string;
|
|
322
322
|
activeVersionId?: string | undefined;
|
|
323
323
|
authorId?: string | undefined;
|
|
324
|
+
/** Resolved author identity (when an auth provider is configured) */
|
|
325
|
+
author?: {
|
|
326
|
+
id: string;
|
|
327
|
+
name?: string | undefined;
|
|
328
|
+
email?: string | undefined;
|
|
329
|
+
avatarUrl?: string | undefined;
|
|
330
|
+
} | undefined;
|
|
324
331
|
metadata?: {
|
|
325
332
|
[key: string]: unknown;
|
|
326
333
|
} | undefined;
|
|
@@ -13901,6 +13908,13 @@ export type GetStoredAgents_Response = {
|
|
|
13901
13908
|
status: string;
|
|
13902
13909
|
activeVersionId?: string | undefined;
|
|
13903
13910
|
authorId?: string | undefined;
|
|
13911
|
+
/** Resolved author identity (when an auth provider is configured) */
|
|
13912
|
+
author?: {
|
|
13913
|
+
id: string;
|
|
13914
|
+
name?: string | undefined;
|
|
13915
|
+
email?: string | undefined;
|
|
13916
|
+
avatarUrl?: string | undefined;
|
|
13917
|
+
} | undefined;
|
|
13904
13918
|
metadata?: {
|
|
13905
13919
|
[key: string]: unknown;
|
|
13906
13920
|
} | undefined;
|
|
@@ -18228,6 +18242,13 @@ export type GetStoredAgentsStoredAgentId_Response = {
|
|
|
18228
18242
|
status: string;
|
|
18229
18243
|
activeVersionId?: string | undefined;
|
|
18230
18244
|
authorId?: string | undefined;
|
|
18245
|
+
/** Resolved author identity (when an auth provider is configured) */
|
|
18246
|
+
author?: {
|
|
18247
|
+
id: string;
|
|
18248
|
+
name?: string | undefined;
|
|
18249
|
+
email?: string | undefined;
|
|
18250
|
+
avatarUrl?: string | undefined;
|
|
18251
|
+
} | undefined;
|
|
18231
18252
|
metadata?: {
|
|
18232
18253
|
[key: string]: unknown;
|
|
18233
18254
|
} | undefined;
|
|
@@ -22452,6 +22473,13 @@ export type PostStoredAgents_Response = {
|
|
|
22452
22473
|
status: string;
|
|
22453
22474
|
activeVersionId?: string | undefined;
|
|
22454
22475
|
authorId?: string | undefined;
|
|
22476
|
+
/** Resolved author identity (when an auth provider is configured) */
|
|
22477
|
+
author?: {
|
|
22478
|
+
id: string;
|
|
22479
|
+
name?: string | undefined;
|
|
22480
|
+
email?: string | undefined;
|
|
22481
|
+
avatarUrl?: string | undefined;
|
|
22482
|
+
} | undefined;
|
|
22455
22483
|
metadata?: {
|
|
22456
22484
|
[key: string]: unknown;
|
|
22457
22485
|
} | undefined;
|
|
@@ -26669,6 +26697,13 @@ export type PatchStoredAgentsStoredAgentId_Response = {
|
|
|
26669
26697
|
status: string;
|
|
26670
26698
|
activeVersionId?: string | undefined;
|
|
26671
26699
|
authorId?: string | undefined;
|
|
26700
|
+
/** Resolved author identity (when an auth provider is configured) */
|
|
26701
|
+
author?: {
|
|
26702
|
+
id: string;
|
|
26703
|
+
name?: string | undefined;
|
|
26704
|
+
email?: string | undefined;
|
|
26705
|
+
avatarUrl?: string | undefined;
|
|
26706
|
+
} | undefined;
|
|
26672
26707
|
metadata?: {
|
|
26673
26708
|
[key: string]: unknown;
|
|
26674
26709
|
} | undefined;
|