Creating Plot Twists
    Preparing search index...

    Type Alias NewCustomEmoji

    A workspace custom emoji to cache so Plot can render and round-trip it as a reaction. id is the provider-scoped ref stored on reactions, of the form <provider>:<workspace>/<name> (e.g. slack:T0123ABC/party_parrot).

    type NewCustomEmoji = {
        id: string;
        provider: string;
        workspace: string;
        name: string;
        imageUrl: string | null;
        aliasOf: string | null;
        archived: boolean;
    }
    Index

    Properties

    id: string

    Provider-scoped ref: <provider>:<workspace>/<name>. The reaction value.

    provider: string

    e.g. "slack".

    workspace: string

    Provider workspace/team id (e.g. Slack team id T0123ABC).

    name: string

    Bare emoji name without colons (e.g. "party_parrot").

    imageUrl: string | null

    Image URL to render, or null for an alias (see aliasOf).

    aliasOf: string | null

    When this emoji aliases another, the target ref (id of the canonical emoji); else null.

    archived: boolean

    True to mark the emoji removed (archive it) rather than upsert it.