forked from ericc-ch/copilot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget-copilot-usage.ts
More file actions
37 lines (33 loc) · 931 Bytes
/
get-copilot-usage.ts
File metadata and controls
37 lines (33 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { GITHUB_API_BASE_URL, githubHeaders } from "~/lib/api-config"
import { HTTPError } from "~/lib/error"
import { state } from "~/lib/state"
export interface CopilotUsageResponse {
copilot_plan: string
access_type_sku: string
assigned_date: string
chat_enabled: boolean
quota_reset_date: string
can_signup_for_limited: boolean
organization_list: string[]
quota_snapshots: {
[key: string]: {
unlimited: boolean
remaining: number
entitlement: number
overage_count: number
percent_remaining: number
}
}
}
export const getCopilotUsage = async (): Promise<CopilotUsageResponse> => {
const response = await fetch(
`${GITHUB_API_BASE_URL}/copilot_internal/user`,
{
headers: githubHeaders(state),
},
)
if (!response.ok) {
throw new HTTPError("Failed to get Copilot usage", response)
}
return (await response.json()) as CopilotUsageResponse
}