@github/copilot-language-server 1.260.0 → 1.261.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/README.md CHANGED
@@ -1,3 +1 @@
1
1
  **Important:** If you are looking to use GitHub Copilot, please see [copilot.github.com](https://copilot.github.com) for more information. This package provides an internal library and is not intended for public use.
2
-
3
-
@@ -57,7 +57,7 @@ export interface ContextResolver<T extends SupportedContextItem> {
57
57
  * - the timeBudget the provider has to provide context items
58
58
  * - the previousUsageStatistics, which contains information about the last request to the provider
59
59
  */
60
- export type Status = 'full' | 'partial' | 'none';
60
+ export type Status = 'full' | 'partial' | 'none' | 'error';
61
61
 
62
62
  export type ContextUsageStatistics = {
63
63
  usage: Status;