@@ -2105,15 +2105,15 @@ func decodeCheckpointDiffPayload(payload any) CheckpointDiffInput {
21052105 SubjectID : strings .TrimSpace (typed .SubjectID ),
21062106 SessionID : strings .TrimSpace (typed .SessionID ),
21072107 CheckpointID : strings .TrimSpace (typed .CheckpointID ),
2108- RunID : strings .TrimSpace (typed .RunID ),
21092108 Scope : strings .TrimSpace (typed .Scope ),
2109+ RunID : strings .TrimSpace (typed .RunID ),
21102110 }
21112111 case map [string ]any :
21122112 return CheckpointDiffInput {
21132113 SessionID : readStringValue (typed , "session_id" ),
21142114 CheckpointID : readStringValue (typed , "checkpoint_id" ),
2115- RunID : readStringValue (typed , "run_id" ),
21162115 Scope : readStringValue (typed , "scope" ),
2116+ RunID : readStringValue (typed , "run_id" ),
21172117 }
21182118 default :
21192119 raw , marshalErr := json .Marshal (payload )
@@ -2130,8 +2130,8 @@ func decodeCheckpointDiffPayload(payload any) CheckpointDiffInput {
21302130 return CheckpointDiffInput {
21312131 SessionID : strings .TrimSpace (decoded .SessionID ),
21322132 CheckpointID : strings .TrimSpace (decoded .CheckpointID ),
2133- RunID : strings .TrimSpace (decoded .RunID ),
21342133 Scope : strings .TrimSpace (decoded .Scope ),
2134+ RunID : strings .TrimSpace (decoded .RunID ),
21352135 }
21362136 }
21372137}
0 commit comments