import * as Types from '../graphql-types'; export type GetAllComponentTypesQueryVariables = Types.Exact<{ cloudId: Types.Scalars['ID']; }>; export type GetAllComponentTypesQuery = { __typename?: 'Query'; compass?: { __typename?: 'CompassCatalogQueryApi'; componentTypes?: { __typename?: 'CompassComponentTypeConnection'; nodes?: Array<{ __typename?: 'CompassComponentTypeObject'; id: string; name?: string | null; description?: string | null; iconUrl?: string | null; }> | null; } | { __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 GetAllComponentTypes = "\n query getAllComponentTypes($cloudId: ID!) {\n compass {\n componentTypes(cloudId: $cloudId) {\n ... on CompassComponentTypeConnection {\n nodes {\n id\n name\n description\n iconUrl\n }\n }\n ... on QueryError {\n identifier\n message\n extensions {\n statusCode\n errorType\n }\n }\n }\n }\n}\n ";