@mastra/client-js 1.27.0-alpha.3 → 1.27.0-alpha.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 +22 -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 +205 -9
- package/dist/route-types.generated.d.ts.map +1 -1
- package/dist/types.d.ts +40 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -46624,6 +46624,19 @@ export type GetDatasetsDatasetIdItems_Response = {
|
|
|
46624
46624
|
input: unknown;
|
|
46625
46625
|
groundTruth?: unknown | undefined;
|
|
46626
46626
|
expectedTrajectory?: unknown | undefined;
|
|
46627
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
46628
|
+
toolMocks?: {
|
|
46629
|
+
/** Name of the tool this mock applies to */
|
|
46630
|
+
toolName: string;
|
|
46631
|
+
/** Arguments to match against the tool call */
|
|
46632
|
+
args: {
|
|
46633
|
+
[key: string]: unknown;
|
|
46634
|
+
};
|
|
46635
|
+
/** Output served to the agent when matched */
|
|
46636
|
+
output: unknown;
|
|
46637
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
46638
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
46639
|
+
}[] | undefined;
|
|
46627
46640
|
requestContext?: {
|
|
46628
46641
|
[key: string]: unknown;
|
|
46629
46642
|
} | undefined;
|
|
@@ -46633,7 +46646,7 @@ export type GetDatasetsDatasetIdItems_Response = {
|
|
|
46633
46646
|
/** Source/provenance of this dataset item */
|
|
46634
46647
|
source?: {
|
|
46635
46648
|
/** How this item was created */
|
|
46636
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
46649
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
46637
46650
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
46638
46651
|
referenceId?: string | undefined;
|
|
46639
46652
|
} | undefined;
|
|
@@ -46866,6 +46879,19 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
46866
46879
|
/** Maximum retries per tool before penalizing (default: 2) */
|
|
46867
46880
|
maxRetriesPerTool?: number | undefined;
|
|
46868
46881
|
} | undefined) | null;
|
|
46882
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
46883
|
+
toolMocks?: {
|
|
46884
|
+
/** Name of the tool this mock applies to */
|
|
46885
|
+
toolName: string;
|
|
46886
|
+
/** Arguments to match against the tool call */
|
|
46887
|
+
args: {
|
|
46888
|
+
[key: string]: unknown;
|
|
46889
|
+
};
|
|
46890
|
+
/** Output served to the agent when matched */
|
|
46891
|
+
output: unknown;
|
|
46892
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
46893
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
46894
|
+
}[] | undefined;
|
|
46869
46895
|
/** Request context preset for this item */
|
|
46870
46896
|
requestContext?: {
|
|
46871
46897
|
[key: string]: unknown;
|
|
@@ -46877,7 +46903,7 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
46877
46903
|
/** Source/provenance of this dataset item */
|
|
46878
46904
|
source?: {
|
|
46879
46905
|
/** How this item was created */
|
|
46880
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
46906
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
46881
46907
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
46882
46908
|
referenceId?: string | undefined;
|
|
46883
46909
|
} | undefined;
|
|
@@ -46889,6 +46915,19 @@ export type PostDatasetsDatasetIdItems_Response = {
|
|
|
46889
46915
|
input: unknown;
|
|
46890
46916
|
groundTruth?: unknown | undefined;
|
|
46891
46917
|
expectedTrajectory?: unknown | undefined;
|
|
46918
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
46919
|
+
toolMocks?: {
|
|
46920
|
+
/** Name of the tool this mock applies to */
|
|
46921
|
+
toolName: string;
|
|
46922
|
+
/** Arguments to match against the tool call */
|
|
46923
|
+
args: {
|
|
46924
|
+
[key: string]: unknown;
|
|
46925
|
+
};
|
|
46926
|
+
/** Output served to the agent when matched */
|
|
46927
|
+
output: unknown;
|
|
46928
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
46929
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
46930
|
+
}[] | undefined;
|
|
46892
46931
|
requestContext?: {
|
|
46893
46932
|
[key: string]: unknown;
|
|
46894
46933
|
} | undefined;
|
|
@@ -46898,7 +46937,7 @@ export type PostDatasetsDatasetIdItems_Response = {
|
|
|
46898
46937
|
/** Source/provenance of this dataset item */
|
|
46899
46938
|
source?: {
|
|
46900
46939
|
/** How this item was created */
|
|
46901
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
46940
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
46902
46941
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
46903
46942
|
referenceId?: string | undefined;
|
|
46904
46943
|
} | undefined;
|
|
@@ -47123,6 +47162,19 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
47123
47162
|
/** Maximum retries per tool before penalizing (default: 2) */
|
|
47124
47163
|
maxRetriesPerTool?: number | undefined;
|
|
47125
47164
|
} | undefined) | null;
|
|
47165
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
47166
|
+
toolMocks?: {
|
|
47167
|
+
/** Name of the tool this mock applies to */
|
|
47168
|
+
toolName: string;
|
|
47169
|
+
/** Arguments to match against the tool call */
|
|
47170
|
+
args: {
|
|
47171
|
+
[key: string]: unknown;
|
|
47172
|
+
};
|
|
47173
|
+
/** Output served to the agent when matched */
|
|
47174
|
+
output: unknown;
|
|
47175
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
47176
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
47177
|
+
}[] | undefined;
|
|
47126
47178
|
requestContext?: {
|
|
47127
47179
|
[key: string]: unknown;
|
|
47128
47180
|
} | undefined;
|
|
@@ -47132,7 +47184,7 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
47132
47184
|
/** Source/provenance of this dataset item */
|
|
47133
47185
|
source?: {
|
|
47134
47186
|
/** How this item was created */
|
|
47135
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
47187
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
47136
47188
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
47137
47189
|
referenceId?: string | undefined;
|
|
47138
47190
|
} | undefined;
|
|
@@ -47146,6 +47198,19 @@ export type PostDatasetsDatasetIdItemsBatch_Response = {
|
|
|
47146
47198
|
input: unknown;
|
|
47147
47199
|
groundTruth?: unknown | undefined;
|
|
47148
47200
|
expectedTrajectory?: unknown | undefined;
|
|
47201
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
47202
|
+
toolMocks?: {
|
|
47203
|
+
/** Name of the tool this mock applies to */
|
|
47204
|
+
toolName: string;
|
|
47205
|
+
/** Arguments to match against the tool call */
|
|
47206
|
+
args: {
|
|
47207
|
+
[key: string]: unknown;
|
|
47208
|
+
};
|
|
47209
|
+
/** Output served to the agent when matched */
|
|
47210
|
+
output: unknown;
|
|
47211
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
47212
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
47213
|
+
}[] | undefined;
|
|
47149
47214
|
requestContext?: {
|
|
47150
47215
|
[key: string]: unknown;
|
|
47151
47216
|
} | undefined;
|
|
@@ -47155,7 +47220,7 @@ export type PostDatasetsDatasetIdItemsBatch_Response = {
|
|
|
47155
47220
|
/** Source/provenance of this dataset item */
|
|
47156
47221
|
source?: {
|
|
47157
47222
|
/** How this item was created */
|
|
47158
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
47223
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
47159
47224
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
47160
47225
|
referenceId?: string | undefined;
|
|
47161
47226
|
} | undefined;
|
|
@@ -47226,6 +47291,19 @@ export type GetDatasetsDatasetIdItemsItemId_Response = {
|
|
|
47226
47291
|
input: unknown;
|
|
47227
47292
|
groundTruth?: unknown | undefined;
|
|
47228
47293
|
expectedTrajectory?: unknown | undefined;
|
|
47294
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
47295
|
+
toolMocks?: {
|
|
47296
|
+
/** Name of the tool this mock applies to */
|
|
47297
|
+
toolName: string;
|
|
47298
|
+
/** Arguments to match against the tool call */
|
|
47299
|
+
args: {
|
|
47300
|
+
[key: string]: unknown;
|
|
47301
|
+
};
|
|
47302
|
+
/** Output served to the agent when matched */
|
|
47303
|
+
output: unknown;
|
|
47304
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
47305
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
47306
|
+
}[] | undefined;
|
|
47229
47307
|
requestContext?: {
|
|
47230
47308
|
[key: string]: unknown;
|
|
47231
47309
|
} | undefined;
|
|
@@ -47235,7 +47313,7 @@ export type GetDatasetsDatasetIdItemsItemId_Response = {
|
|
|
47235
47313
|
/** Source/provenance of this dataset item */
|
|
47236
47314
|
source?: {
|
|
47237
47315
|
/** How this item was created */
|
|
47238
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
47316
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
47239
47317
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
47240
47318
|
referenceId?: string | undefined;
|
|
47241
47319
|
} | undefined;
|
|
@@ -47463,6 +47541,19 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
47463
47541
|
/** Maximum retries per tool before penalizing (default: 2) */
|
|
47464
47542
|
maxRetriesPerTool?: number | undefined;
|
|
47465
47543
|
} | undefined) | null;
|
|
47544
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
47545
|
+
toolMocks?: {
|
|
47546
|
+
/** Name of the tool this mock applies to */
|
|
47547
|
+
toolName: string;
|
|
47548
|
+
/** Arguments to match against the tool call */
|
|
47549
|
+
args: {
|
|
47550
|
+
[key: string]: unknown;
|
|
47551
|
+
};
|
|
47552
|
+
/** Output served to the agent when matched */
|
|
47553
|
+
output: unknown;
|
|
47554
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
47555
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
47556
|
+
}[] | undefined;
|
|
47466
47557
|
/** Request context preset for this item */
|
|
47467
47558
|
requestContext?: {
|
|
47468
47559
|
[key: string]: unknown;
|
|
@@ -47474,7 +47565,7 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
47474
47565
|
/** Source/provenance of this dataset item */
|
|
47475
47566
|
source?: {
|
|
47476
47567
|
/** How this item was created */
|
|
47477
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
47568
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
47478
47569
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
47479
47570
|
referenceId?: string | undefined;
|
|
47480
47571
|
} | undefined;
|
|
@@ -47486,6 +47577,19 @@ export type PatchDatasetsDatasetIdItemsItemId_Response = {
|
|
|
47486
47577
|
input: unknown;
|
|
47487
47578
|
groundTruth?: unknown | undefined;
|
|
47488
47579
|
expectedTrajectory?: unknown | undefined;
|
|
47580
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
47581
|
+
toolMocks?: {
|
|
47582
|
+
/** Name of the tool this mock applies to */
|
|
47583
|
+
toolName: string;
|
|
47584
|
+
/** Arguments to match against the tool call */
|
|
47585
|
+
args: {
|
|
47586
|
+
[key: string]: unknown;
|
|
47587
|
+
};
|
|
47588
|
+
/** Output served to the agent when matched */
|
|
47589
|
+
output: unknown;
|
|
47590
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
47591
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
47592
|
+
}[] | undefined;
|
|
47489
47593
|
requestContext?: {
|
|
47490
47594
|
[key: string]: unknown;
|
|
47491
47595
|
} | undefined;
|
|
@@ -47495,7 +47599,7 @@ export type PatchDatasetsDatasetIdItemsItemId_Response = {
|
|
|
47495
47599
|
/** Source/provenance of this dataset item */
|
|
47496
47600
|
source?: {
|
|
47497
47601
|
/** How this item was created */
|
|
47498
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
47602
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
47499
47603
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
47500
47604
|
referenceId?: string | undefined;
|
|
47501
47605
|
} | undefined;
|
|
@@ -47604,6 +47708,19 @@ export type GetDatasetsDatasetIdItemsItemIdHistory_Response = {
|
|
|
47604
47708
|
input: unknown;
|
|
47605
47709
|
groundTruth?: unknown | undefined;
|
|
47606
47710
|
expectedTrajectory?: unknown | undefined;
|
|
47711
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
47712
|
+
toolMocks?: {
|
|
47713
|
+
/** Name of the tool this mock applies to */
|
|
47714
|
+
toolName: string;
|
|
47715
|
+
/** Arguments to match against the tool call */
|
|
47716
|
+
args: {
|
|
47717
|
+
[key: string]: unknown;
|
|
47718
|
+
};
|
|
47719
|
+
/** Output served to the agent when matched */
|
|
47720
|
+
output: unknown;
|
|
47721
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
47722
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
47723
|
+
}[] | undefined;
|
|
47607
47724
|
metadata?: {
|
|
47608
47725
|
[key: string]: unknown;
|
|
47609
47726
|
} | undefined;
|
|
@@ -47647,6 +47764,19 @@ export type GetDatasetsDatasetIdItemsItemIdVersionsDatasetVersion_Response = {
|
|
|
47647
47764
|
input: unknown;
|
|
47648
47765
|
groundTruth?: unknown | undefined;
|
|
47649
47766
|
expectedTrajectory?: unknown | undefined;
|
|
47767
|
+
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
47768
|
+
toolMocks?: {
|
|
47769
|
+
/** Name of the tool this mock applies to */
|
|
47770
|
+
toolName: string;
|
|
47771
|
+
/** Arguments to match against the tool call */
|
|
47772
|
+
args: {
|
|
47773
|
+
[key: string]: unknown;
|
|
47774
|
+
};
|
|
47775
|
+
/** Output served to the agent when matched */
|
|
47776
|
+
output: unknown;
|
|
47777
|
+
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
47778
|
+
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
47779
|
+
}[] | undefined;
|
|
47650
47780
|
requestContext?: {
|
|
47651
47781
|
[key: string]: unknown;
|
|
47652
47782
|
} | undefined;
|
|
@@ -47656,7 +47786,7 @@ export type GetDatasetsDatasetIdItemsItemIdVersionsDatasetVersion_Response = {
|
|
|
47656
47786
|
/** Source/provenance of this dataset item */
|
|
47657
47787
|
source?: {
|
|
47658
47788
|
/** How this item was created */
|
|
47659
|
-
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result';
|
|
47789
|
+
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
47660
47790
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
47661
47791
|
referenceId?: string | undefined;
|
|
47662
47792
|
} | undefined;
|
|
@@ -47871,6 +48001,28 @@ export type PostDatasetsDatasetIdExperiments_Response = {
|
|
|
47871
48001
|
startedAt: Date;
|
|
47872
48002
|
completedAt: Date;
|
|
47873
48003
|
retryCount: number;
|
|
48004
|
+
/** Diagnostic receipt for item-level tool mocks */
|
|
48005
|
+
toolMockReport?: ({
|
|
48006
|
+
served: {
|
|
48007
|
+
mockIndex: number;
|
|
48008
|
+
toolName: string;
|
|
48009
|
+
args: unknown;
|
|
48010
|
+
}[];
|
|
48011
|
+
unconsumed: {
|
|
48012
|
+
mockIndex: number;
|
|
48013
|
+
toolName: string;
|
|
48014
|
+
args: unknown;
|
|
48015
|
+
}[];
|
|
48016
|
+
liveCalls: {
|
|
48017
|
+
toolName: string;
|
|
48018
|
+
args: unknown;
|
|
48019
|
+
}[];
|
|
48020
|
+
failure?: {
|
|
48021
|
+
code: 'TOOL_MOCK_MISMATCH' | 'TOOL_MOCK_EXHAUSTED';
|
|
48022
|
+
toolName: string;
|
|
48023
|
+
args: unknown;
|
|
48024
|
+
} | undefined;
|
|
48025
|
+
} | undefined) | null;
|
|
47874
48026
|
scores: {
|
|
47875
48027
|
scorerId: string;
|
|
47876
48028
|
scorerName: string;
|
|
@@ -47977,6 +48129,28 @@ export type GetDatasetsDatasetIdExperimentsExperimentIdResults_Response = {
|
|
|
47977
48129
|
traceId: string | null;
|
|
47978
48130
|
status?: (('needs-review' | 'reviewed' | 'complete') | null) | undefined;
|
|
47979
48131
|
tags?: (string[] | null) | undefined;
|
|
48132
|
+
/** Diagnostic receipt for item-level tool mocks */
|
|
48133
|
+
toolMockReport?: ({
|
|
48134
|
+
served: {
|
|
48135
|
+
mockIndex: number;
|
|
48136
|
+
toolName: string;
|
|
48137
|
+
args: unknown;
|
|
48138
|
+
}[];
|
|
48139
|
+
unconsumed: {
|
|
48140
|
+
mockIndex: number;
|
|
48141
|
+
toolName: string;
|
|
48142
|
+
args: unknown;
|
|
48143
|
+
}[];
|
|
48144
|
+
liveCalls: {
|
|
48145
|
+
toolName: string;
|
|
48146
|
+
args: unknown;
|
|
48147
|
+
}[];
|
|
48148
|
+
failure?: {
|
|
48149
|
+
code: 'TOOL_MOCK_MISMATCH' | 'TOOL_MOCK_EXHAUSTED';
|
|
48150
|
+
toolName: string;
|
|
48151
|
+
args: unknown;
|
|
48152
|
+
} | undefined;
|
|
48153
|
+
} | undefined) | null;
|
|
47980
48154
|
createdAt: Date;
|
|
47981
48155
|
}[];
|
|
47982
48156
|
pagination: {
|
|
@@ -48037,6 +48211,28 @@ export type PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_Respons
|
|
|
48037
48211
|
traceId: string | null;
|
|
48038
48212
|
status?: (('needs-review' | 'reviewed' | 'complete') | null) | undefined;
|
|
48039
48213
|
tags?: (string[] | null) | undefined;
|
|
48214
|
+
/** Diagnostic receipt for item-level tool mocks */
|
|
48215
|
+
toolMockReport?: ({
|
|
48216
|
+
served: {
|
|
48217
|
+
mockIndex: number;
|
|
48218
|
+
toolName: string;
|
|
48219
|
+
args: unknown;
|
|
48220
|
+
}[];
|
|
48221
|
+
unconsumed: {
|
|
48222
|
+
mockIndex: number;
|
|
48223
|
+
toolName: string;
|
|
48224
|
+
args: unknown;
|
|
48225
|
+
}[];
|
|
48226
|
+
liveCalls: {
|
|
48227
|
+
toolName: string;
|
|
48228
|
+
args: unknown;
|
|
48229
|
+
}[];
|
|
48230
|
+
failure?: {
|
|
48231
|
+
code: 'TOOL_MOCK_MISMATCH' | 'TOOL_MOCK_EXHAUSTED';
|
|
48232
|
+
toolName: string;
|
|
48233
|
+
args: unknown;
|
|
48234
|
+
} | undefined;
|
|
48235
|
+
} | undefined) | null;
|
|
48040
48236
|
createdAt: Date;
|
|
48041
48237
|
};
|
|
48042
48238
|
export type PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_Request = Simplify<(PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_PathParams extends never ? {} : {
|