feat(server): runtime service config (#7644)

This commit is contained in:
liuyi
2024-07-30 14:58:24 +08:00
committed by GitHub
parent 67248316bd
commit fcf0ecbaa2
8 changed files with 136 additions and 10 deletions

View File

@@ -798,6 +798,7 @@ export interface Query {
serverConfig: ServerConfigType;
/** get all server runtime configurable settings */
serverRuntimeConfig: Array<ServerRuntimeConfigType>;
serverServiceConfigs: Array<ServerServiceConfig>;
/** Get user by email */
user: Maybe<UserOrLimitedUser>;
/** Get user by id */
@@ -952,6 +953,12 @@ export interface ServerRuntimeConfigType {
value: Scalars['JSON']['output'];
}
export interface ServerServiceConfig {
__typename?: 'ServerServiceConfig';
config: Scalars['JSONObject']['output'];
name: Scalars['String']['output'];
}
export interface SubscriptionAlreadyExistsDataType {
__typename?: 'SubscriptionAlreadyExistsDataType';
plan: Scalars['String']['output'];