Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Apr 9, 2024
1 parent 201bec5 commit e1b2606
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions ee/tabby-webserver/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,22 @@ enum Language {
PYTHON
JAVA
KOTLIN
JAVASCRIPT_TYPESCRIPT
JAVASCRIPT
TYPESCRIPT
GO
RUBY
CSHARP
C
CPLUS_PLUS
CPP
SOLIDITY
OTHER
}

type GithubRepositoryProviderEdge {
node: GithubRepositoryProvider!
cursor: String!
}

type JobRun {
id: ID!
job: String!
Expand Down Expand Up @@ -54,6 +60,11 @@ type LicenseInfo {
expiresAt: DateTimeUtc
}

type GithubRepositoryProviderConnection {
edges: [GithubRepositoryProviderEdge!]!
pageInfo: PageInfo!
}

input SecuritySettingInput {
allowedRegisterDomainList: [String!]!
disableClientSideTelemetry: Boolean!
Expand Down Expand Up @@ -82,6 +93,12 @@ type ServerInfo {
allowSelfSignup: Boolean!
}

type GithubRepositoryProvider {
id: ID!
displayName: String!
applicationId: String!
}

input PasswordChangeInput {
oldPassword: String
newPassword1: String!
Expand Down Expand Up @@ -186,6 +203,7 @@ type Query {
me: User!
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!
jobRuns(ids: [ID!], jobs: [String!], after: String, before: String, first: Int, last: Int): JobRunConnection!
jobRunStats(jobs: [String!]): JobStats!
emailSetting: EmailSetting
Expand Down

0 comments on commit e1b2606

Please sign in to comment.