@remit/data-ports 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types.ts +8 -0
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -462,6 +462,14 @@ export type SearchOptions = {
|
|
|
462
462
|
unread?: boolean;
|
|
463
463
|
starred?: boolean;
|
|
464
464
|
attachments?: boolean;
|
|
465
|
+
/**
|
|
466
|
+
* Any-of set over the denormalized `category` column on the ThreadMessage
|
|
467
|
+
* row. An empty or absent set means no category filter. `uncategorized` is
|
|
468
|
+
* a member like any other — the column is NOT NULL with that default, so it
|
|
469
|
+
* names the not-yet-classified state rather than standing for absence
|
|
470
|
+
* (issue #45).
|
|
471
|
+
*/
|
|
472
|
+
category?: ThreadMessageItem["category"][];
|
|
465
473
|
};
|
|
466
474
|
|
|
467
475
|
export type CreateLabelInput = Omit<
|