Creating Plot Twists
    Preparing search index...

    Type Alias ActivityMeta

    Represents metadata about an activity, typically from an external system.

    Activity metadata enables tracking where activities originated from, which is useful for synchronization, deduplication, and linking back to external systems.

    const googleCalendarMeta: ActivityMeta = {
    type: "google-calendar-event",
    id: "event-123",
    calendarId: "primary",
    htmlLink: "https://calendar.google.com/event/123"
    };
    type ActivityMeta = {
        source: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Additional source-specific properties

    Index

    Properties

    Properties

    source: string

    The type identifier for the source system