@vectorize-io/vectorize-client
    Preparing search index...

    Interface GITHUBConfig

    Configuration for GitHub connector

    GITHUBConfig

    interface GITHUBConfig {
        createdAfter?: Date;
        includeIssues: boolean;
        includePullRequests: boolean;
        issueLabels?: string[];
        issueStatus: GITHUBConfigIssueStatusEnum;
        maxItems?: number;
        pullRequestLabels?: string[];
        pullRequestStatus: GITHUBConfigPullRequestStatusEnum;
        repositories: string[];
    }
    Index

    Properties

    createdAfter?: Date

    Created After. Filter for items created after this date. Example: Enter a date: Example 2012-12-31

    GITHUBConfig

    includeIssues: boolean

    Include Issues

    GITHUBConfig

    includePullRequests: boolean

    Include Pull Requests

    GITHUBConfig

    issueLabels?: string[]

    Issue Labels. Example: Optionally filter by label. E.g. bug

    GITHUBConfig

    Issue Status

    GITHUBConfig

    maxItems?: number

    Max Items. Leave blank for no limit, or specify a maximum number. Example: Enter maximum number of items to fetch (leave blank for no limit)

    GITHUBConfig

    pullRequestLabels?: string[]

    Pull Request Labels. Example: Optionally filter by label. E.g. fix

    GITHUBConfig

    Pull Request Status

    GITHUBConfig

    repositories: string[]

    Repositories. Example: Example: owner1/repo1

    GITHUBConfig