jseeqret - v1.0.4
    Preparing search index...
    • Poll the exchange channel for new blobs addressed to me.

      A message is "addressed to me" when its thread contains a reply whose text is <@SELF_USER_ID>. We match on the exact mention token to avoid false positives from free-form chatter.

      Parameters

      • opts: {
            client: SlackClient;
            channel_id: string;
            self_user_id: string;
            oldest_ts?: string;
        }

      Returns AsyncGenerator<
          {
              file_ts: string;
              reply_ts: string;
              file_id: string;
              sender_user_id: string;
              ciphertext: Buffer;
          },
          any,
          any,
      >