mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
fix(core): fetch share docs on non-cloud workspace (#7144)
This commit is contained in:
@@ -93,6 +93,12 @@ export interface CreateCopilotPromptInput {
|
||||
name: Scalars['String']['input'];
|
||||
}
|
||||
|
||||
export interface CreateUserInput {
|
||||
email: Scalars['String']['input'];
|
||||
name: InputMaybe<Scalars['String']['input']>;
|
||||
password: InputMaybe<Scalars['String']['input']>;
|
||||
}
|
||||
|
||||
export interface DeleteSessionInput {
|
||||
docId: Scalars['String']['input'];
|
||||
sessionIds: Array<Scalars['String']['input']>;
|
||||
@@ -122,6 +128,11 @@ export enum InvoiceStatus {
|
||||
Void = 'Void',
|
||||
}
|
||||
|
||||
export interface ListUserInput {
|
||||
first: InputMaybe<Scalars['Int']['input']>;
|
||||
skip: InputMaybe<Scalars['Int']['input']>;
|
||||
}
|
||||
|
||||
export enum OAuthProviderType {
|
||||
GitHub = 'GitHub',
|
||||
Google = 'Google',
|
||||
|
||||
Reference in New Issue
Block a user