mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Allow apollo sandbox access
This commit is contained in:
parent
477b5d7d24
commit
67b26be547
4 changed files with 13 additions and 0 deletions
|
|
@ -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']>;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1441,6 +1441,10 @@ input SetUserPersonalizationInput {
|
|||
libraryLayoutType: String
|
||||
librarySortOrder: SortOrder
|
||||
margin: Int
|
||||
speechRate: String
|
||||
speechSecondaryVoice: String
|
||||
speechVoice: String
|
||||
speechVolume: String
|
||||
theme: String
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1003,6 +1003,10 @@ const schema = gql`
|
|||
margin: Int
|
||||
libraryLayoutType: String @sanitize
|
||||
librarySortOrder: SortOrder
|
||||
speechVoice: String
|
||||
speechSecondaryVoice: String
|
||||
speechRate: String
|
||||
speechVolume: String
|
||||
}
|
||||
|
||||
# Type: ArticleSavingRequest
|
||||
|
|
|
|||
|
|
@ -9,5 +9,6 @@ export const corsConfig = {
|
|||
'https://web-demo.omnivore.app',
|
||||
'http://localhost:3000',
|
||||
'lsp://logseq.io',
|
||||
'https://studio.apollographql.com',
|
||||
],
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue