@squidcloud/client
    Preparing search index...

    Type Alias DiscoverSourceRepositoriesRequest

    DiscoverSourceRepositoriesRequest:
        | {
            draftIntegration?: never;
            integrationId: string;
            integrationType: SourceCodeIntegrationType;
        }
        | {
            draftIntegration: IntegrationInfo;
            integrationId?: never;
            integrationType: SourceCodeIntegrationType;
        }

    Requests discovery from an existing or draft source-code integration.

    Type Declaration

    • {
          draftIntegration?: never;
          integrationId: string;
          integrationType: SourceCodeIntegrationType;
      }
      • OptionaldraftIntegration?: never

        Prevents draft and persisted integration inputs from mixing.

      • integrationId: string

        Identifies the persisted integration.

      • integrationType: SourceCodeIntegrationType

        Identifies the source-code integration type.

    • {
          draftIntegration: IntegrationInfo;
          integrationId?: never;
          integrationType: SourceCodeIntegrationType;
      }
      • draftIntegration: IntegrationInfo

        Supplies an integration that has not been persisted.

      • OptionalintegrationId?: never

        Prevents draft and persisted integration inputs from mixing.

      • integrationType: SourceCodeIntegrationType

        Identifies the source-code integration type.