@mastra/client-js 1.37.0-alpha.4 → 1.37.0-alpha.6
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 +37 -0
- package/dist/docs/SKILL.md +3 -3
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/docs-editor-overview.md +201 -206
- package/dist/docs/references/reference-client-js-agents.md +1 -1
- package/dist/docs/references/reference-editor-versioning.md +130 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/route-types.generated.d.ts +10 -0
- package/dist/route-types.generated.d.ts.map +1 -1
- package/dist/types.d.ts +5 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/dist/docs/references/reference-client-js-agent-builder.md +0 -163
|
@@ -1431,6 +1431,8 @@ type Shared_Type_80 = {
|
|
|
1431
1431
|
executionSource?: string | undefined;
|
|
1432
1432
|
/** Filter by tags (must have all specified tags) */
|
|
1433
1433
|
tags?: string[] | undefined;
|
|
1434
|
+
/** Filter by one or more trace IDs */
|
|
1435
|
+
traceIds?: string[] | undefined;
|
|
1434
1436
|
/** Filter by metric name(s) */
|
|
1435
1437
|
name?: string[] | undefined;
|
|
1436
1438
|
/** Filter by execution source */
|
|
@@ -2127,6 +2129,7 @@ type Shared_Type_122 = {
|
|
|
2127
2129
|
toolMocks?: Shared_Type_120[] | undefined;
|
|
2128
2130
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
2129
2131
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
2132
|
+
scorerIds?: string[] | undefined;
|
|
2130
2133
|
requestContext?: {
|
|
2131
2134
|
[key: string]: unknown;
|
|
2132
2135
|
} | undefined;
|
|
@@ -6780,6 +6783,7 @@ export type GetObservabilityMetrics_QueryParams = {
|
|
|
6780
6783
|
requestId?: (string | undefined) | undefined;
|
|
6781
6784
|
executionSource?: (string | undefined) | undefined;
|
|
6782
6785
|
tags?: ((string[] | undefined) | undefined) | unknown;
|
|
6786
|
+
traceIds?: ((string[] | undefined) | undefined) | unknown;
|
|
6783
6787
|
name?: ((string[] | undefined) | undefined) | unknown;
|
|
6784
6788
|
/** Filter by execution source */
|
|
6785
6789
|
source?: (string | undefined) | undefined;
|
|
@@ -13691,6 +13695,8 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
13691
13695
|
toolMocks?: Shared_Type_120[] | undefined;
|
|
13692
13696
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13693
13697
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13698
|
+
/** IDs of scorers selected for this item */
|
|
13699
|
+
scorerIds?: string[] | undefined;
|
|
13694
13700
|
/** Request context preset for this item */
|
|
13695
13701
|
requestContext?: {
|
|
13696
13702
|
[key: string]: unknown;
|
|
@@ -13734,6 +13740,7 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
13734
13740
|
toolMocks?: Shared_Type_120[] | undefined;
|
|
13735
13741
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13736
13742
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13743
|
+
scorerIds?: string[] | undefined;
|
|
13737
13744
|
requestContext?: {
|
|
13738
13745
|
[key: string]: unknown;
|
|
13739
13746
|
} | undefined;
|
|
@@ -13832,6 +13839,8 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
13832
13839
|
toolMocks?: Shared_Type_120[] | undefined;
|
|
13833
13840
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13834
13841
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13842
|
+
/** IDs of scorers selected for this item */
|
|
13843
|
+
scorerIds?: (string[] | undefined) | null;
|
|
13835
13844
|
/** Request context preset for this item */
|
|
13836
13845
|
requestContext?: {
|
|
13837
13846
|
[key: string]: unknown;
|
|
@@ -13932,6 +13941,7 @@ export type GetDatasetsDatasetIdItemsItemIdHistory_Response = {
|
|
|
13932
13941
|
toolMocks?: Shared_Type_120[] | undefined;
|
|
13933
13942
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13934
13943
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13944
|
+
scorerIds?: string[] | undefined;
|
|
13935
13945
|
metadata?: {
|
|
13936
13946
|
[key: string]: unknown;
|
|
13937
13947
|
} | undefined;
|