@remit/api-openapi-types 0.0.22 → 0.0.23
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/types.d.ts +5 -5
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -2504,10 +2504,10 @@ standing to persist.
|
|
|
2504
2504
|
}
|
|
2505
2505
|
/**
|
|
2506
2506
|
* Aggregate response for `searchThreads`. Carries the matching rows (`items`), a
|
|
2507
|
-
pagination `continuationToken`, and an optional `count` of
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2507
|
+
pagination `continuationToken`, and an optional `count` of every message the
|
|
2508
|
+
query matches. `items` is omitted when `results=false` (count-only); `count` is
|
|
2509
|
+
present only when `count=true`. Thread-specific so the shared `ResultList<T>`
|
|
2510
|
+
(7 endpoints) stays untouched.
|
|
2511
2511
|
*/
|
|
2512
2512
|
export interface ThreadSearchResponse {
|
|
2513
2513
|
/**
|
|
@@ -2519,7 +2519,7 @@ server-capped window. `items` is omitted when `results=false` (count-only);
|
|
|
2519
2519
|
*/
|
|
2520
2520
|
continuationToken?: String800;
|
|
2521
2521
|
/**
|
|
2522
|
-
*
|
|
2522
|
+
* How many messages the query matches, over the whole mailbox and independent of `limit`. Present only when `count=true`. With `senderTrust` or `dkimMismatch` in the query the count is over the enriched window instead, since those are resolved off the row.
|
|
2523
2523
|
*/
|
|
2524
2524
|
count?: number;
|
|
2525
2525
|
}
|