|
@@ -41,7 +41,7 @@ export enum AppCategoriesEnum {
|
|
|
Photography = 'PHOTOGRAPHY',
|
|
|
Security = 'SECURITY',
|
|
|
Social = 'SOCIAL',
|
|
|
- Utilities = 'UTILITIES'
|
|
|
+ Utilities = 'UTILITIES',
|
|
|
}
|
|
|
|
|
|
export type AppInfo = {
|
|
@@ -79,7 +79,7 @@ export enum AppStatusEnum {
|
|
|
Starting = 'STARTING',
|
|
|
Stopped = 'STOPPED',
|
|
|
Stopping = 'STOPPING',
|
|
|
- Uninstalling = 'UNINSTALLING'
|
|
|
+ Uninstalling = 'UNINSTALLING',
|
|
|
}
|
|
|
|
|
|
export type Cpu = {
|
|
@@ -102,7 +102,7 @@ export enum FieldTypesEnum {
|
|
|
Number = 'number',
|
|
|
Password = 'password',
|
|
|
Text = 'text',
|
|
|
- Url = 'url'
|
|
|
+ Url = 'url',
|
|
|
}
|
|
|
|
|
|
export type FormField = {
|
|
@@ -134,37 +134,30 @@ export type Mutation = {
|
|
|
updateAppConfig: App;
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type MutationInstallAppArgs = {
|
|
|
input: AppInputType;
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type MutationLoginArgs = {
|
|
|
input: UsernamePasswordInput;
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type MutationRegisterArgs = {
|
|
|
input: UsernamePasswordInput;
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type MutationStartAppArgs = {
|
|
|
id: Scalars['String'];
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type MutationStopAppArgs = {
|
|
|
id: Scalars['String'];
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type MutationUninstallAppArgs = {
|
|
|
id: Scalars['String'];
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type MutationUpdateAppConfigArgs = {
|
|
|
input: AppInputType;
|
|
|
};
|
|
@@ -180,7 +173,6 @@ export type Query = {
|
|
|
version: Scalars['String'];
|
|
|
};
|
|
|
|
|
|
-
|
|
|
export type QueryGetAppArgs = {
|
|
|
id: Scalars['String'];
|
|
|
};
|
|
@@ -210,67 +202,155 @@ export type UsernamePasswordInput = {
|
|
|
username: Scalars['String'];
|
|
|
};
|
|
|
|
|
|
-export type LoginMutationVariables = Exact<{
|
|
|
- input: UsernamePasswordInput;
|
|
|
+export type InstallAppMutationVariables = Exact<{
|
|
|
+ input: AppInputType;
|
|
|
}>;
|
|
|
|
|
|
+export type InstallAppMutation = { __typename?: 'Mutation'; installApp: { __typename?: 'App'; id: string } };
|
|
|
|
|
|
-export type LoginMutation = { __typename?: 'Mutation', login: { __typename?: 'UserResponse', user?: { __typename?: 'User', id: string } | null } };
|
|
|
+export type LoginMutationVariables = Exact<{
|
|
|
+ input: UsernamePasswordInput;
|
|
|
+}>;
|
|
|
|
|
|
-export type LogoutMutationVariables = Exact<{ [key: string]: never; }>;
|
|
|
+export type LoginMutation = { __typename?: 'Mutation'; login: { __typename?: 'UserResponse'; user?: { __typename?: 'User'; id: string } | null } };
|
|
|
|
|
|
+export type LogoutMutationVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
-export type LogoutMutation = { __typename?: 'Mutation', logout: boolean };
|
|
|
+export type LogoutMutation = { __typename?: 'Mutation'; logout: boolean };
|
|
|
|
|
|
export type RegisterMutationVariables = Exact<{
|
|
|
input: UsernamePasswordInput;
|
|
|
}>;
|
|
|
|
|
|
-
|
|
|
-export type RegisterMutation = { __typename?: 'Mutation', register: { __typename?: 'UserResponse', user?: { __typename?: 'User', id: string } | null } };
|
|
|
+export type RegisterMutation = { __typename?: 'Mutation'; register: { __typename?: 'UserResponse'; user?: { __typename?: 'User'; id: string } | null } };
|
|
|
|
|
|
export type GetAppQueryVariables = Exact<{
|
|
|
appId: Scalars['String'];
|
|
|
}>;
|
|
|
|
|
|
+export type GetAppQuery = {
|
|
|
+ __typename?: 'Query';
|
|
|
+ getApp: {
|
|
|
+ __typename?: 'AppResponse';
|
|
|
+ app?: { __typename?: 'App'; id: string; status: AppStatusEnum; config: any } | null;
|
|
|
+ info: {
|
|
|
+ __typename?: 'AppInfo';
|
|
|
+ id: string;
|
|
|
+ port: number;
|
|
|
+ name: string;
|
|
|
+ description: string;
|
|
|
+ available: boolean;
|
|
|
+ version?: string | null;
|
|
|
+ image: string;
|
|
|
+ short_desc: string;
|
|
|
+ author: string;
|
|
|
+ source: string;
|
|
|
+ installed: boolean;
|
|
|
+ categories: Array<AppCategoriesEnum>;
|
|
|
+ url_suffix?: string | null;
|
|
|
+ form_fields: Array<{
|
|
|
+ __typename?: 'FormField';
|
|
|
+ type: FieldTypesEnum;
|
|
|
+ label: string;
|
|
|
+ max?: number | null;
|
|
|
+ min?: number | null;
|
|
|
+ hint?: string | null;
|
|
|
+ required?: boolean | null;
|
|
|
+ env_variable: string;
|
|
|
+ }>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+};
|
|
|
|
|
|
-export type GetAppQuery = { __typename?: 'Query', getApp: { __typename?: 'AppResponse', app?: { __typename?: 'App', id: string, status: AppStatusEnum, config: any } | null, info: { __typename?: 'AppInfo', id: string, port: number, name: string, description: string, available: boolean, version?: string | null, image: string, short_desc: string, author: string, source: string, installed: boolean, categories: Array<AppCategoriesEnum>, url_suffix?: string | null, form_fields: Array<{ __typename?: 'FormField', type: FieldTypesEnum, label: string, max?: number | null, min?: number | null, hint?: string | null, required?: boolean | null, env_variable: string }> } } };
|
|
|
-
|
|
|
-export type InstalledAppsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
-
|
|
|
-
|
|
|
-export type InstalledAppsQuery = { __typename?: 'Query', installedApps: Array<{ __typename?: 'App', id: string, status: AppStatusEnum, config: any }> };
|
|
|
-
|
|
|
-export type ConfiguredQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
-
|
|
|
-
|
|
|
-export type ConfiguredQuery = { __typename?: 'Query', isConfigured: boolean };
|
|
|
-
|
|
|
-export type ListAppsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
+export type InstalledAppsQueryVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
+export type InstalledAppsQuery = { __typename?: 'Query'; installedApps: Array<{ __typename?: 'App'; id: string; status: AppStatusEnum; config: any }> };
|
|
|
|
|
|
-export type ListAppsQuery = { __typename?: 'Query', listAppsInfo: { __typename?: 'ListAppsResonse', total: number, apps: Array<{ __typename?: 'AppInfo', id: string, available: boolean, installed: boolean, image: string, port: number, name: string, version?: string | null, short_desc: string, author: string, categories: Array<AppCategoriesEnum> }> } };
|
|
|
+export type ConfiguredQueryVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
-export type MeQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
+export type ConfiguredQuery = { __typename?: 'Query'; isConfigured: boolean };
|
|
|
|
|
|
+export type ListAppsQueryVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
-export type MeQuery = { __typename?: 'Query', me?: { __typename?: 'User', id: string } | null };
|
|
|
+export type ListAppsQuery = {
|
|
|
+ __typename?: 'Query';
|
|
|
+ listAppsInfo: {
|
|
|
+ __typename?: 'ListAppsResonse';
|
|
|
+ total: number;
|
|
|
+ apps: Array<{
|
|
|
+ __typename?: 'AppInfo';
|
|
|
+ id: string;
|
|
|
+ available: boolean;
|
|
|
+ installed: boolean;
|
|
|
+ image: string;
|
|
|
+ port: number;
|
|
|
+ name: string;
|
|
|
+ version?: string | null;
|
|
|
+ short_desc: string;
|
|
|
+ author: string;
|
|
|
+ categories: Array<AppCategoriesEnum>;
|
|
|
+ }>;
|
|
|
+ };
|
|
|
+};
|
|
|
|
|
|
-export type SystemInfoQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
+export type MeQueryVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
+export type MeQuery = { __typename?: 'Query'; me?: { __typename?: 'User'; id: string } | null };
|
|
|
|
|
|
-export type SystemInfoQuery = { __typename?: 'Query', systemInfo?: { __typename?: 'SystemInfoResponse', cpu: { __typename?: 'Cpu', load: number }, disk: { __typename?: 'DiskMemory', available: number, used: number, total: number }, memory: { __typename?: 'DiskMemory', available: number, used: number, total: number } } | null };
|
|
|
+export type SystemInfoQueryVariables = Exact<{ [key: string]: never }>;
|
|
|
|
|
|
+export type SystemInfoQuery = {
|
|
|
+ __typename?: 'Query';
|
|
|
+ systemInfo?: {
|
|
|
+ __typename?: 'SystemInfoResponse';
|
|
|
+ cpu: { __typename?: 'Cpu'; load: number };
|
|
|
+ disk: { __typename?: 'DiskMemory'; available: number; used: number; total: number };
|
|
|
+ memory: { __typename?: 'DiskMemory'; available: number; used: number; total: number };
|
|
|
+ } | null;
|
|
|
+};
|
|
|
|
|
|
-export const LoginDocument = gql`
|
|
|
- mutation Login($input: UsernamePasswordInput!) {
|
|
|
- login(input: $input) {
|
|
|
- user {
|
|
|
+export const InstallAppDocument = gql`
|
|
|
+ mutation installApp($input: AppInputType!) {
|
|
|
+ installApp(input: $input) {
|
|
|
id
|
|
|
}
|
|
|
}
|
|
|
+`;
|
|
|
+export type InstallAppMutationFn = Apollo.MutationFunction<InstallAppMutation, InstallAppMutationVariables>;
|
|
|
+
|
|
|
+/**
|
|
|
+ * __useInstallAppMutation__
|
|
|
+ *
|
|
|
+ * To run a mutation, you first call `useInstallAppMutation` within a React component and pass it any options that fit your needs.
|
|
|
+ * When your component renders, `useInstallAppMutation` returns a tuple that includes:
|
|
|
+ * - A mutate function that you can call at any time to execute the mutation
|
|
|
+ * - An object with fields that represent the current status of the mutation's execution
|
|
|
+ *
|
|
|
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
|
+ *
|
|
|
+ * @example
|
|
|
+ * const [installAppMutation, { data, loading, error }] = useInstallAppMutation({
|
|
|
+ * variables: {
|
|
|
+ * input: // value for 'input'
|
|
|
+ * },
|
|
|
+ * });
|
|
|
+ */
|
|
|
+export function useInstallAppMutation(baseOptions?: Apollo.MutationHookOptions<InstallAppMutation, InstallAppMutationVariables>) {
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useMutation<InstallAppMutation, InstallAppMutationVariables>(InstallAppDocument, options);
|
|
|
}
|
|
|
- `;
|
|
|
+export type InstallAppMutationHookResult = ReturnType<typeof useInstallAppMutation>;
|
|
|
+export type InstallAppMutationResult = Apollo.MutationResult<InstallAppMutation>;
|
|
|
+export type InstallAppMutationOptions = Apollo.BaseMutationOptions<InstallAppMutation, InstallAppMutationVariables>;
|
|
|
+export const LoginDocument = gql`
|
|
|
+ mutation Login($input: UsernamePasswordInput!) {
|
|
|
+ login(input: $input) {
|
|
|
+ user {
|
|
|
+ id
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+`;
|
|
|
export type LoginMutationFn = Apollo.MutationFunction<LoginMutation, LoginMutationVariables>;
|
|
|
|
|
|
/**
|
|
@@ -291,17 +371,17 @@ export type LoginMutationFn = Apollo.MutationFunction<LoginMutation, LoginMutati
|
|
|
* });
|
|
|
*/
|
|
|
export function useLoginMutation(baseOptions?: Apollo.MutationHookOptions<LoginMutation, LoginMutationVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useMutation<LoginMutation, LoginMutationVariables>(LoginDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useMutation<LoginMutation, LoginMutationVariables>(LoginDocument, options);
|
|
|
+}
|
|
|
export type LoginMutationHookResult = ReturnType<typeof useLoginMutation>;
|
|
|
export type LoginMutationResult = Apollo.MutationResult<LoginMutation>;
|
|
|
export type LoginMutationOptions = Apollo.BaseMutationOptions<LoginMutation, LoginMutationVariables>;
|
|
|
export const LogoutDocument = gql`
|
|
|
- mutation Logout {
|
|
|
- logout
|
|
|
-}
|
|
|
- `;
|
|
|
+ mutation Logout {
|
|
|
+ logout
|
|
|
+ }
|
|
|
+`;
|
|
|
export type LogoutMutationFn = Apollo.MutationFunction<LogoutMutation, LogoutMutationVariables>;
|
|
|
|
|
|
/**
|
|
@@ -321,21 +401,21 @@ export type LogoutMutationFn = Apollo.MutationFunction<LogoutMutation, LogoutMut
|
|
|
* });
|
|
|
*/
|
|
|
export function useLogoutMutation(baseOptions?: Apollo.MutationHookOptions<LogoutMutation, LogoutMutationVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useMutation<LogoutMutation, LogoutMutationVariables>(LogoutDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useMutation<LogoutMutation, LogoutMutationVariables>(LogoutDocument, options);
|
|
|
+}
|
|
|
export type LogoutMutationHookResult = ReturnType<typeof useLogoutMutation>;
|
|
|
export type LogoutMutationResult = Apollo.MutationResult<LogoutMutation>;
|
|
|
export type LogoutMutationOptions = Apollo.BaseMutationOptions<LogoutMutation, LogoutMutationVariables>;
|
|
|
export const RegisterDocument = gql`
|
|
|
- mutation Register($input: UsernamePasswordInput!) {
|
|
|
- register(input: $input) {
|
|
|
- user {
|
|
|
- id
|
|
|
+ mutation Register($input: UsernamePasswordInput!) {
|
|
|
+ register(input: $input) {
|
|
|
+ user {
|
|
|
+ id
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
- `;
|
|
|
+`;
|
|
|
export type RegisterMutationFn = Apollo.MutationFunction<RegisterMutation, RegisterMutationVariables>;
|
|
|
|
|
|
/**
|
|
@@ -356,47 +436,47 @@ export type RegisterMutationFn = Apollo.MutationFunction<RegisterMutation, Regis
|
|
|
* });
|
|
|
*/
|
|
|
export function useRegisterMutation(baseOptions?: Apollo.MutationHookOptions<RegisterMutation, RegisterMutationVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useMutation<RegisterMutation, RegisterMutationVariables>(RegisterDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useMutation<RegisterMutation, RegisterMutationVariables>(RegisterDocument, options);
|
|
|
+}
|
|
|
export type RegisterMutationHookResult = ReturnType<typeof useRegisterMutation>;
|
|
|
export type RegisterMutationResult = Apollo.MutationResult<RegisterMutation>;
|
|
|
export type RegisterMutationOptions = Apollo.BaseMutationOptions<RegisterMutation, RegisterMutationVariables>;
|
|
|
export const GetAppDocument = gql`
|
|
|
- query GetApp($appId: String!) {
|
|
|
- getApp(id: $appId) {
|
|
|
- app {
|
|
|
- id
|
|
|
- status
|
|
|
- config
|
|
|
- }
|
|
|
- info {
|
|
|
- id
|
|
|
- port
|
|
|
- name
|
|
|
- description
|
|
|
- available
|
|
|
- version
|
|
|
- image
|
|
|
- short_desc
|
|
|
- author
|
|
|
- source
|
|
|
- installed
|
|
|
- categories
|
|
|
- url_suffix
|
|
|
- form_fields {
|
|
|
- type
|
|
|
- label
|
|
|
- max
|
|
|
- min
|
|
|
- hint
|
|
|
- required
|
|
|
- env_variable
|
|
|
+ query GetApp($appId: String!) {
|
|
|
+ getApp(id: $appId) {
|
|
|
+ app {
|
|
|
+ id
|
|
|
+ status
|
|
|
+ config
|
|
|
+ }
|
|
|
+ info {
|
|
|
+ id
|
|
|
+ port
|
|
|
+ name
|
|
|
+ description
|
|
|
+ available
|
|
|
+ version
|
|
|
+ image
|
|
|
+ short_desc
|
|
|
+ author
|
|
|
+ source
|
|
|
+ installed
|
|
|
+ categories
|
|
|
+ url_suffix
|
|
|
+ form_fields {
|
|
|
+ type
|
|
|
+ label
|
|
|
+ max
|
|
|
+ min
|
|
|
+ hint
|
|
|
+ required
|
|
|
+ env_variable
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
- `;
|
|
|
+`;
|
|
|
|
|
|
/**
|
|
|
* __useGetAppQuery__
|
|
@@ -415,25 +495,25 @@ export const GetAppDocument = gql`
|
|
|
* });
|
|
|
*/
|
|
|
export function useGetAppQuery(baseOptions: Apollo.QueryHookOptions<GetAppQuery, GetAppQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useQuery<GetAppQuery, GetAppQueryVariables>(GetAppDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useQuery<GetAppQuery, GetAppQueryVariables>(GetAppDocument, options);
|
|
|
+}
|
|
|
export function useGetAppLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<GetAppQuery, GetAppQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useLazyQuery<GetAppQuery, GetAppQueryVariables>(GetAppDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useLazyQuery<GetAppQuery, GetAppQueryVariables>(GetAppDocument, options);
|
|
|
+}
|
|
|
export type GetAppQueryHookResult = ReturnType<typeof useGetAppQuery>;
|
|
|
export type GetAppLazyQueryHookResult = ReturnType<typeof useGetAppLazyQuery>;
|
|
|
export type GetAppQueryResult = Apollo.QueryResult<GetAppQuery, GetAppQueryVariables>;
|
|
|
export const InstalledAppsDocument = gql`
|
|
|
- query InstalledApps {
|
|
|
- installedApps {
|
|
|
- id
|
|
|
- status
|
|
|
- config
|
|
|
+ query InstalledApps {
|
|
|
+ installedApps {
|
|
|
+ id
|
|
|
+ status
|
|
|
+ config
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
- `;
|
|
|
+`;
|
|
|
|
|
|
/**
|
|
|
* __useInstalledAppsQuery__
|
|
@@ -451,21 +531,21 @@ export const InstalledAppsDocument = gql`
|
|
|
* });
|
|
|
*/
|
|
|
export function useInstalledAppsQuery(baseOptions?: Apollo.QueryHookOptions<InstalledAppsQuery, InstalledAppsQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useQuery<InstalledAppsQuery, InstalledAppsQueryVariables>(InstalledAppsDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useQuery<InstalledAppsQuery, InstalledAppsQueryVariables>(InstalledAppsDocument, options);
|
|
|
+}
|
|
|
export function useInstalledAppsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<InstalledAppsQuery, InstalledAppsQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useLazyQuery<InstalledAppsQuery, InstalledAppsQueryVariables>(InstalledAppsDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useLazyQuery<InstalledAppsQuery, InstalledAppsQueryVariables>(InstalledAppsDocument, options);
|
|
|
+}
|
|
|
export type InstalledAppsQueryHookResult = ReturnType<typeof useInstalledAppsQuery>;
|
|
|
export type InstalledAppsLazyQueryHookResult = ReturnType<typeof useInstalledAppsLazyQuery>;
|
|
|
export type InstalledAppsQueryResult = Apollo.QueryResult<InstalledAppsQuery, InstalledAppsQueryVariables>;
|
|
|
export const ConfiguredDocument = gql`
|
|
|
- query Configured {
|
|
|
- isConfigured
|
|
|
-}
|
|
|
- `;
|
|
|
+ query Configured {
|
|
|
+ isConfigured
|
|
|
+ }
|
|
|
+`;
|
|
|
|
|
|
/**
|
|
|
* __useConfiguredQuery__
|
|
@@ -483,35 +563,35 @@ export const ConfiguredDocument = gql`
|
|
|
* });
|
|
|
*/
|
|
|
export function useConfiguredQuery(baseOptions?: Apollo.QueryHookOptions<ConfiguredQuery, ConfiguredQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useQuery<ConfiguredQuery, ConfiguredQueryVariables>(ConfiguredDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useQuery<ConfiguredQuery, ConfiguredQueryVariables>(ConfiguredDocument, options);
|
|
|
+}
|
|
|
export function useConfiguredLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ConfiguredQuery, ConfiguredQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useLazyQuery<ConfiguredQuery, ConfiguredQueryVariables>(ConfiguredDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useLazyQuery<ConfiguredQuery, ConfiguredQueryVariables>(ConfiguredDocument, options);
|
|
|
+}
|
|
|
export type ConfiguredQueryHookResult = ReturnType<typeof useConfiguredQuery>;
|
|
|
export type ConfiguredLazyQueryHookResult = ReturnType<typeof useConfiguredLazyQuery>;
|
|
|
export type ConfiguredQueryResult = Apollo.QueryResult<ConfiguredQuery, ConfiguredQueryVariables>;
|
|
|
export const ListAppsDocument = gql`
|
|
|
- query ListApps {
|
|
|
- listAppsInfo {
|
|
|
- apps {
|
|
|
- id
|
|
|
- available
|
|
|
- installed
|
|
|
- image
|
|
|
- port
|
|
|
- name
|
|
|
- version
|
|
|
- short_desc
|
|
|
- author
|
|
|
- categories
|
|
|
+ query ListApps {
|
|
|
+ listAppsInfo {
|
|
|
+ apps {
|
|
|
+ id
|
|
|
+ available
|
|
|
+ installed
|
|
|
+ image
|
|
|
+ port
|
|
|
+ name
|
|
|
+ version
|
|
|
+ short_desc
|
|
|
+ author
|
|
|
+ categories
|
|
|
+ }
|
|
|
+ total
|
|
|
}
|
|
|
- total
|
|
|
}
|
|
|
-}
|
|
|
- `;
|
|
|
+`;
|
|
|
|
|
|
/**
|
|
|
* __useListAppsQuery__
|
|
@@ -529,23 +609,23 @@ export const ListAppsDocument = gql`
|
|
|
* });
|
|
|
*/
|
|
|
export function useListAppsQuery(baseOptions?: Apollo.QueryHookOptions<ListAppsQuery, ListAppsQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useQuery<ListAppsQuery, ListAppsQueryVariables>(ListAppsDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useQuery<ListAppsQuery, ListAppsQueryVariables>(ListAppsDocument, options);
|
|
|
+}
|
|
|
export function useListAppsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ListAppsQuery, ListAppsQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useLazyQuery<ListAppsQuery, ListAppsQueryVariables>(ListAppsDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useLazyQuery<ListAppsQuery, ListAppsQueryVariables>(ListAppsDocument, options);
|
|
|
+}
|
|
|
export type ListAppsQueryHookResult = ReturnType<typeof useListAppsQuery>;
|
|
|
export type ListAppsLazyQueryHookResult = ReturnType<typeof useListAppsLazyQuery>;
|
|
|
export type ListAppsQueryResult = Apollo.QueryResult<ListAppsQuery, ListAppsQueryVariables>;
|
|
|
export const MeDocument = gql`
|
|
|
- query Me {
|
|
|
- me {
|
|
|
- id
|
|
|
+ query Me {
|
|
|
+ me {
|
|
|
+ id
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
- `;
|
|
|
+`;
|
|
|
|
|
|
/**
|
|
|
* __useMeQuery__
|
|
@@ -563,35 +643,35 @@ export const MeDocument = gql`
|
|
|
* });
|
|
|
*/
|
|
|
export function useMeQuery(baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useQuery<MeQuery, MeQueryVariables>(MeDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useQuery<MeQuery, MeQueryVariables>(MeDocument, options);
|
|
|
+}
|
|
|
export function useMeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useLazyQuery<MeQuery, MeQueryVariables>(MeDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useLazyQuery<MeQuery, MeQueryVariables>(MeDocument, options);
|
|
|
+}
|
|
|
export type MeQueryHookResult = ReturnType<typeof useMeQuery>;
|
|
|
export type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;
|
|
|
export type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;
|
|
|
export const SystemInfoDocument = gql`
|
|
|
- query SystemInfo {
|
|
|
- systemInfo {
|
|
|
- cpu {
|
|
|
- load
|
|
|
- }
|
|
|
- disk {
|
|
|
- available
|
|
|
- used
|
|
|
- total
|
|
|
- }
|
|
|
- memory {
|
|
|
- available
|
|
|
- used
|
|
|
- total
|
|
|
+ query SystemInfo {
|
|
|
+ systemInfo {
|
|
|
+ cpu {
|
|
|
+ load
|
|
|
+ }
|
|
|
+ disk {
|
|
|
+ available
|
|
|
+ used
|
|
|
+ total
|
|
|
+ }
|
|
|
+ memory {
|
|
|
+ available
|
|
|
+ used
|
|
|
+ total
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
- `;
|
|
|
+`;
|
|
|
|
|
|
/**
|
|
|
* __useSystemInfoQuery__
|
|
@@ -609,13 +689,13 @@ export const SystemInfoDocument = gql`
|
|
|
* });
|
|
|
*/
|
|
|
export function useSystemInfoQuery(baseOptions?: Apollo.QueryHookOptions<SystemInfoQuery, SystemInfoQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useQuery<SystemInfoQuery, SystemInfoQueryVariables>(SystemInfoDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useQuery<SystemInfoQuery, SystemInfoQueryVariables>(SystemInfoDocument, options);
|
|
|
+}
|
|
|
export function useSystemInfoLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<SystemInfoQuery, SystemInfoQueryVariables>) {
|
|
|
- const options = {...defaultOptions, ...baseOptions}
|
|
|
- return Apollo.useLazyQuery<SystemInfoQuery, SystemInfoQueryVariables>(SystemInfoDocument, options);
|
|
|
- }
|
|
|
+ const options = { ...defaultOptions, ...baseOptions };
|
|
|
+ return Apollo.useLazyQuery<SystemInfoQuery, SystemInfoQueryVariables>(SystemInfoDocument, options);
|
|
|
+}
|
|
|
export type SystemInfoQueryHookResult = ReturnType<typeof useSystemInfoQuery>;
|
|
|
export type SystemInfoLazyQueryHookResult = ReturnType<typeof useSystemInfoLazyQuery>;
|
|
|
-export type SystemInfoQueryResult = Apollo.QueryResult<SystemInfoQuery, SystemInfoQueryVariables>;
|
|
|
+export type SystemInfoQueryResult = Apollo.QueryResult<SystemInfoQuery, SystemInfoQueryVariables>;
|