@@ -247,8 +247,8 @@ export type BotRole = {
247
247
export type BotServer = {
248
248
__typename ?: 'BotServer'
249
249
adminRole ?: Maybe < Scalars [ 'String' ] [ 'output' ] >
250
+ botChannel ?: Maybe < Scalars [ 'String' ] [ 'output' ] >
250
251
botId : Scalars [ 'String' ] [ 'output' ]
251
- commandChannel ?: Maybe < Scalars [ 'String' ] [ 'output' ] >
252
252
createdAt ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] >
253
253
dryRun ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] >
254
254
enableSync ?: Maybe < Scalars [ 'Boolean' ] [ 'output' ] >
@@ -1346,7 +1346,7 @@ export type UserUpdateBotInput = {
1346
1346
1347
1347
export type UserUpdateBotServerInput = {
1348
1348
adminRole ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] >
1349
- commandChannel ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] >
1349
+ botChannel ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] >
1350
1350
dryRun ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] >
1351
1351
enableSync ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] >
1352
1352
mentionRoles ?: InputMaybe < Scalars [ 'Boolean' ] [ 'input' ] >
@@ -1530,7 +1530,7 @@ export type BotServerDetailsFragment = {
1530
1530
botId : string
1531
1531
serverId : string
1532
1532
adminRole ?: string | null
1533
- commandChannel ?: string | null
1533
+ botChannel ?: string | null
1534
1534
dryRun ?: boolean | null
1535
1535
enableSync ?: boolean | null
1536
1536
mentionRoles ?: boolean | null
@@ -1853,7 +1853,7 @@ export type UserFindOneBotServerQuery = {
1853
1853
botId : string
1854
1854
serverId : string
1855
1855
adminRole ?: string | null
1856
- commandChannel ?: string | null
1856
+ botChannel ?: string | null
1857
1857
dryRun ?: boolean | null
1858
1858
enableSync ?: boolean | null
1859
1859
mentionRoles ?: boolean | null
@@ -1928,7 +1928,7 @@ export type UserTestBotServerConfigMutation = {
1928
1928
botId : string
1929
1929
serverId : string
1930
1930
adminRole ?: string | null
1931
- commandChannel ?: string | null
1931
+ botChannel ?: string | null
1932
1932
dryRun ?: boolean | null
1933
1933
enableSync ?: boolean | null
1934
1934
mentionRoles ?: boolean | null
@@ -1953,7 +1953,7 @@ export type UserUpdateBotServerMutation = {
1953
1953
botId : string
1954
1954
serverId : string
1955
1955
adminRole ?: string | null
1956
- commandChannel ?: string | null
1956
+ botChannel ?: string | null
1957
1957
dryRun ?: boolean | null
1958
1958
enableSync ?: boolean | null
1959
1959
mentionRoles ?: boolean | null
@@ -6161,7 +6161,7 @@ export const BotServerDetailsFragmentDoc = gql`
6161
6161
botId
6162
6162
serverId
6163
6163
adminRole
6164
- commandChannel
6164
+ botChannel
6165
6165
dryRun
6166
6166
enableSync
6167
6167
mentionRoles
@@ -10449,7 +10449,7 @@ export function UserUpdateBotInputSchema(): z.ZodObject<Properties<UserUpdateBot
10449
10449
export function UserUpdateBotServerInputSchema ( ) : z . ZodObject < Properties < UserUpdateBotServerInput > > {
10450
10450
return z . object ( {
10451
10451
adminRole : z . string ( ) . nullish ( ) ,
10452
- commandChannel : z . string ( ) . nullish ( ) ,
10452
+ botChannel : z . string ( ) . nullish ( ) ,
10453
10453
dryRun : z . boolean ( ) . nullish ( ) ,
10454
10454
enableSync : z . boolean ( ) . nullish ( ) ,
10455
10455
mentionRoles : z . boolean ( ) . nullish ( ) ,
0 commit comments