@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.cjs
CHANGED
|
@@ -1143,6 +1143,10 @@ function extractSessionWorkflowMetadata(record) {
|
|
|
1143
1143
|
assignString("toolCallId", record.toolCallId);
|
|
1144
1144
|
assignString("mcpToolCallId", record.mcpToolCallId);
|
|
1145
1145
|
assignString("linkedStepId", record.linkedStepId);
|
|
1146
|
+
assignString("operationId", record.operationId);
|
|
1147
|
+
assignString("attemptId", record.attemptId);
|
|
1148
|
+
assignString("fallbackOf", record.fallbackOf);
|
|
1149
|
+
assignString("idempotencyKey", record.idempotencyKey);
|
|
1146
1150
|
assignString("correlationId", record.correlationId);
|
|
1147
1151
|
assignString("requestId", record.requestId);
|
|
1148
1152
|
assignString("decisionId", record.decisionId);
|
|
@@ -1151,6 +1155,11 @@ function extractSessionWorkflowMetadata(record) {
|
|
|
1151
1155
|
out.attempt = attempt;
|
|
1152
1156
|
found = true;
|
|
1153
1157
|
}
|
|
1158
|
+
const attemptNumber = finitePositiveInt(record.attemptNumber);
|
|
1159
|
+
if (attemptNumber !== void 0) {
|
|
1160
|
+
out.attemptNumber = attemptNumber;
|
|
1161
|
+
found = true;
|
|
1162
|
+
}
|
|
1154
1163
|
return found ? out : void 0;
|
|
1155
1164
|
}
|
|
1156
1165
|
function sessionKeyForRun(meta, options) {
|