import * as Types from '../graphql-types'; export type GetCatalogBootstrapStatusQueryVariables = Types.Exact<{ id: Types.Scalars['ID']; }>; export type GetCatalogBootstrapStatusQuery = { __typename?: 'Query'; compass?: { __typename?: 'CompassCatalogQueryApi'; catalogBootstrap?: { __typename?: 'CompassCatalogBootstrap'; status: Types.CompassCatalogBootstrapStatus; } | { __typename?: 'QueryError'; identifier?: string | null; message?: string | null; extensions?: Array<{ __typename?: 'AdminApplicationErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'CplsQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'GenericQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'HelpLayoutQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraIssueCommandPaletteActionUnsupportedErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraIssueFieldUnsupportedErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraIssueSearchErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'JiraVersionConnectionResultQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'LpConnectionQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ShepherdGenericQueryErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ToolchainCheckAuthErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ToolchainContainerConnectionErrorExtension'; statusCode?: number | null; errorType?: string | null; } | { __typename?: 'ToolchainWorkspaceConnectionErrorExtension'; statusCode?: number | null; errorType?: string | null; }> | null; } | null; } | null; }; export declare const GetCatalogBootstrapStatus = "\n query getCatalogBootstrapStatus($id: ID!) {\n compass @optIn(to: \"compass-beta\") {\n catalogBootstrap(cloudId: $id) {\n ... on CompassCatalogBootstrap {\n status\n }\n ... on QueryError {\n identifier\n message\n extensions {\n statusCode\n errorType\n }\n }\n }\n }\n}\n ";