@github/copilot-language-server 1.322.0 → 1.324.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.
@@ -117,9 +117,16 @@ export interface ResolveRequest {
117
117
  * After the time budget runs out, the request will be cancelled via the CancellationToken.
118
118
  * Providers can use this value as a hint when computing context. Providers should expect the
119
119
  * request to be cancelled once the time budget runs out.
120
+ *
121
+ * @deprecated Use `timeoutEnd` instead.
120
122
  */
121
123
  timeBudget: number;
122
124
 
125
+ /**
126
+ * Unix timestamp representing the exact time the request will be cancelled via the CancellationToken.
127
+ */
128
+ timeoutEnd: number;
129
+
123
130
  /**
124
131
  * Various statistics about the last completion request. This can be used by the context provider
125
132
  * to make decisions about what context to provide for the current call.