mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-15 05:37:32 +00:00
feat(core): add ai usage in account-setting (#6516)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
query getCopilotQuota($workspaceId: String!, $docId: String!) {
|
||||
query getCopilotQuota {
|
||||
currentUser {
|
||||
copilot {
|
||||
quota {
|
||||
|
||||
@@ -281,7 +281,7 @@ export const getCopilotQuotaQuery = {
|
||||
definitionName: 'currentUser',
|
||||
containsFile: false,
|
||||
query: `
|
||||
query getCopilotQuota($workspaceId: String!, $docId: String!) {
|
||||
query getCopilotQuota {
|
||||
currentUser {
|
||||
copilot {
|
||||
quota {
|
||||
|
||||
@@ -369,10 +369,7 @@ export type GetCopilotHistoriesQuery = {
|
||||
} | null;
|
||||
};
|
||||
|
||||
export type GetCopilotQuotaQueryVariables = Exact<{
|
||||
workspaceId: Scalars['String']['input'];
|
||||
docId: Scalars['String']['input'];
|
||||
}>;
|
||||
export type GetCopilotQuotaQueryVariables = Exact<{ [key: string]: never }>;
|
||||
|
||||
export type GetCopilotQuotaQuery = {
|
||||
__typename?: 'Query';
|
||||
|
||||
Reference in New Issue
Block a user