Allow apollo sandbox access

This commit is contained in:
Hongbo Wu 2022-11-11 15:24:54 +08:00
parent 477b5d7d24
commit 67b26be547
4 changed files with 13 additions and 0 deletions

View file

@ -1945,6 +1945,10 @@ export type SetUserPersonalizationInput = {
libraryLayoutType?: InputMaybe<Scalars['String']>;
librarySortOrder?: InputMaybe<SortOrder>;
margin?: InputMaybe<Scalars['Int']>;
speechRate?: InputMaybe<Scalars['String']>;
speechSecondaryVoice?: InputMaybe<Scalars['String']>;
speechVoice?: InputMaybe<Scalars['String']>;
speechVolume?: InputMaybe<Scalars['String']>;
theme?: InputMaybe<Scalars['String']>;
};

View file

@ -1441,6 +1441,10 @@ input SetUserPersonalizationInput {
libraryLayoutType: String
librarySortOrder: SortOrder
margin: Int
speechRate: String
speechSecondaryVoice: String
speechVoice: String
speechVolume: String
theme: String
}

View file

@ -1003,6 +1003,10 @@ const schema = gql`
margin: Int
libraryLayoutType: String @sanitize
librarySortOrder: SortOrder
speechVoice: String
speechSecondaryVoice: String
speechRate: String
speechVolume: String
}
# Type: ArticleSavingRequest

View file

@ -9,5 +9,6 @@ export const corsConfig = {
'https://web-demo.omnivore.app',
'http://localhost:3000',
'lsp://logseq.io',
'https://studio.apollographql.com',
],
}