From fff1fd4accadda9b4232b9fff682b22c4ef43713 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 01:25:05 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- ee/tabby-webserver/graphql/schema.graphql | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ee/tabby-webserver/graphql/schema.graphql b/ee/tabby-webserver/graphql/schema.graphql index a749d42b7093..1105d26e24e9 100644 --- a/ee/tabby-webserver/graphql/schema.graphql +++ b/ee/tabby-webserver/graphql/schema.graphql @@ -169,6 +169,7 @@ type Mutation { deleteEmailSetting: Boolean! uploadLicense(license: String!): Boolean! resetLicense: Boolean! + createGithubRepositoryProvider(displayName: String!, applicationId: String!, applicationSecret: String!): Boolean! updateGithubProvidedRepositoryActive(id: ID!, active: Boolean!): Boolean! } @@ -189,6 +190,7 @@ type FileEntrySearchResult { type GithubProvidedRepository { id: ID! + vendorId: String! githubRepositoryProviderId: ID! name: String! gitUrl: String! @@ -202,7 +204,7 @@ type Query { users(after: String, before: String, first: Int, last: Int): UserConnection! invitations(after: String, before: String, first: Int, last: Int): InvitationConnection! githubRepositoryProviders(after: String, before: String, first: Int, last: Int): GithubRepositoryProviderConnection! - githubProvidedRepositories(githubRepositoryProviderId: ID!, after: String, before: String, first: Int, last: Int): GithubProvidedRepositoryConnection! + githubRepositoriesByProvider(githubRepositoryProviderId: ID!, after: String, before: String, first: Int, last: Int): GithubProvidedRepositoryConnection! jobRuns(ids: [ID!], jobs: [String!], after: String, before: String, first: Int, last: Int): JobRunConnection! jobRunStats(jobs: [String!]): JobStats! emailSetting: EmailSetting @@ -220,6 +222,10 @@ type Query { dailyStats(start: DateTimeUtc!, end: DateTimeUtc!, users: [ID!], languages: [Language!]): [CompletionStats!]! } +input NetworkSettingInput { + externalUrl: String! +} + enum Encryption { START_TLS SSL_TLS