freeboard
    Preparing search index...
    • Query revocation feed using cursor-based pagination with retention window.

      Parameters

      • params: { sinceCursor?: string | null; limit?: number; retentionSeconds?: number } = {}

      Returns Promise<
          {
              events: {
                  eventId: string;
                  dashboardId: string;
                  shareTokenVersion: number;
                  revokedAt: string;
              }[];
              nextCursor: string
              | null;
              cursorExpired: boolean;
          },
      >