jmap-kit
    Preparing search index...

    Type Alias SearchSnippetGetRequestInvocationArgs

    The arguments for fetching SearchSnippet objects via a SearchSnippet/get call.

    This is NOT a standard /get method. It takes a filter (the same as passed to Email/query) and a list of Email ids, and returns search snippets for those Emails.

    type SearchSnippetGetRequestInvocationArgs = {
        accountId: Id;
        emailIds: Id[];
        filter?:
            | FilterOperator<EmailFilterCondition>
            | FilterCondition<EmailFilterCondition>
            | null;
    }
    Index

    Properties

    accountId: Id

    The id of the account to use.

    emailIds: Id[]

    The ids of the Emails to fetch snippets for.

    filter?:
        | FilterOperator<EmailFilterCondition>
        | FilterCondition<EmailFilterCondition>
        | null

    The same filter as passed to Email/query.