@github/copilot-language-server 1.271.0 → 1.273.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.
@@ -57,11 +57,12 @@ 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' | 'error';
60
+ export type ResolutionStatus = 'full' | 'partial' | 'none' | 'error';
61
+ export type UsageStatus = ResolutionStatus | `${ResolutionStatus}_content_excluded`;
61
62
 
62
63
  export type ContextUsageStatistics = {
63
- usage: Status;
64
- resolution: Status;
64
+ usage: UsageStatus;
65
+ resolution: ResolutionStatus;
65
66
  };
66
67
 
67
68
  export interface DocumentContext {