mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
feat(server): runtime service config (#7644)
This commit is contained in:
@@ -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'];
|
||||
|
||||
Reference in New Issue
Block a user