codegened

This commit is contained in:
tonyrewin 2022-11-16 19:38:36 +03:00
parent 4d9930a4ff
commit 251177374b
2 changed files with 6 additions and 6 deletions

View File

@ -352,8 +352,8 @@ export type QueryIsEmailUsedArgs = {
}
export type QueryLoadAuthorsByArgs = {
limit?: InputMaybe<Scalars['Int']>
by?: InputMaybe<AuthorsBy>
limit?: InputMaybe<Scalars['Int']>
offset?: InputMaybe<Scalars['Int']>
}
@ -363,20 +363,20 @@ export type QueryLoadChatsArgs = {
}
export type QueryLoadMessagesByArgs = {
limit?: InputMaybe<Scalars['Int']>
by: MessagesBy
limit?: InputMaybe<Scalars['Int']>
offset?: InputMaybe<Scalars['Int']>
}
export type QueryLoadReactionsByArgs = {
offset?: InputMaybe<Scalars['Int']>
by: ReactionBy
limit?: InputMaybe<Scalars['Int']>
offset?: InputMaybe<Scalars['Int']>
}
export type QueryLoadShoutsByArgs = {
limit?: InputMaybe<Scalars['Int']>
by?: InputMaybe<ShoutsBy>
limit?: InputMaybe<Scalars['Int']>
offset?: InputMaybe<Scalars['Int']>
}

View File

@ -1,6 +1,6 @@
export const isDev = import.meta.env.MODE === 'development'
export const apiBaseUrl = 'https://testapi.discours.io'
// export const apiBaseUrl = 'https://testapi.discours.io'
// export const apiBaseUrl = 'https://newapi.discours.io'
// testapi.discours.io
// export const apiBaseUrl = 'http://localhost:8080'
export const apiBaseUrl = 'http://localhost:8080'