fix(core): ai context gql file (#10145)

This commit is contained in:
akumatus
2025-02-13 06:57:12 +00:00
parent 39182b5fc6
commit 35cbbb3c4b
5 changed files with 39 additions and 18 deletions

View File

@@ -42,11 +42,6 @@ export interface AddContextDocInput {
docId: Scalars['String']['input'];
}
export interface RemoveContextDocInput {
contextId: Scalars['String']['input'];
docId: Scalars['String']['input'];
}
export interface AlreadyInSpaceDataType {
__typename?: 'AlreadyInSpaceDataType';
spaceId: Scalars['String']['output'];
@@ -1315,6 +1310,11 @@ export interface RemoveAvatar {
success: Scalars['Boolean']['output'];
}
export interface RemoveContextDocInput {
contextId: Scalars['String']['input'];
docId: Scalars['String']['input'];
}
export interface RevokeDocUserRoleInput {
docId: Scalars['String']['input'];
userId: Scalars['String']['input'];
@@ -1952,18 +1952,19 @@ export type AddContextDocMutationVariables = Exact<{
options: AddContextDocInput;
}>;
export type RemoveContextDocMutationVariables = Exact<{
options: RemoveContextDocInput;
}>;
export type AddContextDocMutation = {
__typename?: 'Mutation';
addContextDoc: Array<{
__typename?: 'CopilotContextListItem';
id: string;
createdAt: number;
}>;
};
export type RemoveContextDocMutationVariables = Exact<{
options: RemoveContextDocInput;
}>;
export type RemoveContextDocMutation = {
__typename?: 'Mutation';
removeContextDoc: boolean;