@agent-inspect/viewer 6.21.0 → 6.23.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/dist/index.cjs +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +9 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1136,6 +1136,10 @@ function extractSessionWorkflowMetadata(record) {
|
|
|
1136
1136
|
assignString("toolCallId", record.toolCallId);
|
|
1137
1137
|
assignString("mcpToolCallId", record.mcpToolCallId);
|
|
1138
1138
|
assignString("linkedStepId", record.linkedStepId);
|
|
1139
|
+
assignString("operationId", record.operationId);
|
|
1140
|
+
assignString("attemptId", record.attemptId);
|
|
1141
|
+
assignString("fallbackOf", record.fallbackOf);
|
|
1142
|
+
assignString("idempotencyKey", record.idempotencyKey);
|
|
1139
1143
|
assignString("correlationId", record.correlationId);
|
|
1140
1144
|
assignString("requestId", record.requestId);
|
|
1141
1145
|
assignString("decisionId", record.decisionId);
|
|
@@ -1144,6 +1148,11 @@ function extractSessionWorkflowMetadata(record) {
|
|
|
1144
1148
|
out.attempt = attempt;
|
|
1145
1149
|
found = true;
|
|
1146
1150
|
}
|
|
1151
|
+
const attemptNumber = finitePositiveInt(record.attemptNumber);
|
|
1152
|
+
if (attemptNumber !== void 0) {
|
|
1153
|
+
out.attemptNumber = attemptNumber;
|
|
1154
|
+
found = true;
|
|
1155
|
+
}
|
|
1147
1156
|
return found ? out : void 0;
|
|
1148
1157
|
}
|
|
1149
1158
|
function sessionKeyForRun(meta, options) {
|