File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -961,15 +961,14 @@ export interface Annotations {
961
961
priority ?: number ;
962
962
963
963
/**
964
- * The moment the resource was last modified, stored as a Unix epoch timestamp .
964
+ * The moment the resource was last modified, as an ISO 8601 formatted string .
965
965
*
966
- * Value is the number of **milliseconds** since 1970-01-01 00:00:00 UTC.
967
- * (Use `Date.now()` in JS/TS, or `Math.floor(Date.now() / 1000)` if you prefer seconds.)
966
+ * Should be an ISO 8601 formatted string (e.g., "2025-01-12T15:00:58Z").
968
967
*
969
968
* Examples: last activity timestamp in an open file, timestamp when the resource
970
969
* was attached, etc.
971
970
*/
972
- lastModified ?: number ;
971
+ lastModified ?: string ;
973
972
}
974
973
975
974
/** */
@@ -1151,11 +1150,11 @@ export interface CompleteRequest extends Request {
1151
1150
* Additional, optional context for completions
1152
1151
*/
1153
1152
context ?: {
1154
- /**
1155
- * Previously-resolved variables in a URI template or prompt.
1156
- */
1157
- arguments ?: { [ key : string ] : string } ;
1158
- } ;
1153
+ /**
1154
+ * Previously-resolved variables in a URI template or prompt.
1155
+ */
1156
+ arguments ?: { [ key : string ] : string } ;
1157
+ } ;
1159
1158
} ;
1160
1159
}
1161
1160
You can’t perform that action at this time.
0 commit comments