JMAP for Contacts implementation (closes #1576)

This commit is contained in:
mdecimus
2025-10-03 11:55:04 +02:00
parent 3da4619d43
commit d000b5975a
15 changed files with 669 additions and 159 deletions

View File

@@ -146,14 +146,6 @@ impl Filter {
}
}
pub fn has_text_token(field: impl Into<u8>, text: impl Into<String>) -> Self {
Filter::HasText {
field: field.into(),
text: text.into(),
tokenize: true,
}
}
pub fn is_in_bitmap(field: impl Into<u8>, value: impl Into<TagValue>) -> Self {
Self::InBitmap(BitmapClass::Tag {
field: field.into(),