@@ -46,7 +46,8 @@ type Documents = {
4646 "\n mutation ConnectSignIn($input: ConnectSignInInput!) {\n connectSignIn(input: $input)\n }\n" : typeof types . ConnectSignInDocument ,
4747 "\n mutation SignOut {\n connectSignOut\n }\n" : typeof types . SignOutDocument ,
4848 "\n fragment PartialCloud on Cloud {\n error\n apiKey {\n valid\n error\n }\n cloud {\n status\n error\n }\n minigraphql {\n status\n error\n }\n relay {\n status\n error\n }\n }\n" : typeof types . PartialCloudFragmentDoc ,
49- "\n query serverState {\n cloud {\n ...PartialCloud\n }\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" : typeof types . ServerStateDocument ,
49+ "\n query cloudState {\n cloud {\n ...PartialCloud\n }\n }\n" : typeof types . CloudStateDocument ,
50+ "\n query serverState {\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" : typeof types . ServerStateDocument ,
5051 "\n query getTheme {\n publicTheme {\n name\n showBannerImage\n showBannerGradient\n headerBackgroundColor\n showHeaderDescription\n headerPrimaryTextColor\n headerSecondaryTextColor\n }\n }\n" : typeof types . GetThemeDocument ,
5152} ;
5253const documents : Documents = {
@@ -82,7 +83,8 @@ const documents: Documents = {
8283 "\n mutation ConnectSignIn($input: ConnectSignInInput!) {\n connectSignIn(input: $input)\n }\n" : types . ConnectSignInDocument ,
8384 "\n mutation SignOut {\n connectSignOut\n }\n" : types . SignOutDocument ,
8485 "\n fragment PartialCloud on Cloud {\n error\n apiKey {\n valid\n error\n }\n cloud {\n status\n error\n }\n minigraphql {\n status\n error\n }\n relay {\n status\n error\n }\n }\n" : types . PartialCloudFragmentDoc ,
85- "\n query serverState {\n cloud {\n ...PartialCloud\n }\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" : types . ServerStateDocument ,
86+ "\n query cloudState {\n cloud {\n ...PartialCloud\n }\n }\n" : types . CloudStateDocument ,
87+ "\n query serverState {\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" : types . ServerStateDocument ,
8688 "\n query getTheme {\n publicTheme {\n name\n showBannerImage\n showBannerGradient\n headerBackgroundColor\n showHeaderDescription\n headerPrimaryTextColor\n headerSecondaryTextColor\n }\n }\n" : types . GetThemeDocument ,
8789} ;
8890
@@ -231,7 +233,11 @@ export function graphql(source: "\n fragment PartialCloud on Cloud {\n error
231233/**
232234 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
233235 */
234- export function graphql ( source : "\n query serverState {\n cloud {\n ...PartialCloud\n }\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" ) : ( typeof documents ) [ "\n query serverState {\n cloud {\n ...PartialCloud\n }\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" ] ;
236+ export function graphql ( source : "\n query cloudState {\n cloud {\n ...PartialCloud\n }\n }\n" ) : ( typeof documents ) [ "\n query cloudState {\n cloud {\n ...PartialCloud\n }\n }\n" ] ;
237+ /**
238+ * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
239+ */
240+ export function graphql ( source : "\n query serverState {\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" ) : ( typeof documents ) [ "\n query serverState {\n config {\n error\n valid\n }\n info {\n os {\n hostname\n }\n }\n owner {\n avatar\n username\n }\n registration {\n state\n expiration\n keyFile {\n contents\n }\n updateExpiration\n }\n vars {\n regGen\n regState\n configError\n configValid\n }\n }\n" ] ;
235241/**
236242 * The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
237243 */
0 commit comments