@cfxlabsinc/b2b-services
    Preparing search index...

    Interface SentryProjectArgs

    interface SentryProjectArgs {
        organization?: string;
        project: string;
        sentryAuthToken: Input<string>;
        teams?: string[];
    }
    Index
    organization?: string
    project: string

    Sentry project slug, e.g. cfx-deposit-api.

    Required, and never derived from the package name. Four slugs do not follow cfx-<package>: ledger-account-api is cfx-account-transfer-api, utila-transaction-api is cfx-utila-signer-api, and escrow-transfer-api / wire-email-handler carry no prefix. Deriving it would make import: miss and Pulumi create a SECOND project, splitting those services' issue history in two.

    sentryAuthToken: Input<string>

    From sentryAuthTokenFromDoppler, or wherever this stack keeps it.

    teams?: string[]