@remit/api-openapi-spec 0.0.20 → 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/openapi.json +29 -4
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -1573,7 +1573,7 @@
|
|
|
1573
1573
|
"name": "count",
|
|
1574
1574
|
"in": "query",
|
|
1575
1575
|
"required": false,
|
|
1576
|
-
"description": "Include
|
|
1576
|
+
"description": "Include how many messages the query matches. Counted over the whole mailbox, independent of `limit`.",
|
|
1577
1577
|
"schema": {
|
|
1578
1578
|
"type": "boolean"
|
|
1579
1579
|
}
|
|
@@ -1591,7 +1591,7 @@
|
|
|
1591
1591
|
"name": "limit",
|
|
1592
1592
|
"in": "query",
|
|
1593
1593
|
"required": false,
|
|
1594
|
-
"description": "
|
|
1594
|
+
"description": "Page size for the rows returned, capped server-side at 500. Bounds the read, not the `count`.",
|
|
1595
1595
|
"schema": {
|
|
1596
1596
|
"type": "integer",
|
|
1597
1597
|
"format": "int32"
|
|
@@ -4170,6 +4170,16 @@
|
|
|
4170
4170
|
},
|
|
4171
4171
|
"description": "Complete message description including all related data. Body content is delivered via the per-part `BodyPartResponse.contentUrl` (CloudFront, JWT-authorized at the edge); the legacy `bodyText`/`bodyHtml` fields were removed once content delivery cut over end-to-end (#224)."
|
|
4172
4172
|
},
|
|
4173
|
+
"RemitImap.DisplayNameCorrespondence": {
|
|
4174
|
+
"type": "string",
|
|
4175
|
+
"enum": [
|
|
4176
|
+
"Corresponds",
|
|
4177
|
+
"Lookalike",
|
|
4178
|
+
"Unrelated",
|
|
4179
|
+
"NoClaim"
|
|
4180
|
+
],
|
|
4181
|
+
"description": "How the From display name relates to the From domain. `Corresponds` — the name is contained in the domain. `Lookalike` — the name is one or two characters away from a domain label. `Unrelated` — no relation. `NoClaim` — the name is empty or is the address itself, so it claims no identity."
|
|
4182
|
+
},
|
|
4173
4183
|
"RemitImap.EmptyTrashResponse": {
|
|
4174
4184
|
"type": "object",
|
|
4175
4185
|
"required": [
|
|
@@ -4892,6 +4902,21 @@
|
|
|
4892
4902
|
"dkimMismatch": {
|
|
4893
4903
|
"type": "boolean",
|
|
4894
4904
|
"description": "True when DKIM signing domain(s) are present and none aligns with the From domain"
|
|
4905
|
+
},
|
|
4906
|
+
"displayNameCorrespondence": {
|
|
4907
|
+
"allOf": [
|
|
4908
|
+
{
|
|
4909
|
+
"$ref": "#/components/schemas/RemitImap.DisplayNameCorrespondence"
|
|
4910
|
+
}
|
|
4911
|
+
],
|
|
4912
|
+
"description": "How the From display name relates to the From domain. Present only for a message the provider's own filter already classified as spam, and only when the sender is not bulk-shaped (no List-Unsubscribe) — absence means the comparison was never made, never that it found nothing."
|
|
4913
|
+
},
|
|
4914
|
+
"offDomainLinkDomains": {
|
|
4915
|
+
"type": "array",
|
|
4916
|
+
"items": {
|
|
4917
|
+
"type": "string"
|
|
4918
|
+
},
|
|
4919
|
+
"description": "Registrable domains (eTLD+1) the body's links point at, excluding the From address's own registrable domain. Present only for a message the provider's own filter already classified as spam; an empty array means every link stayed on the sender's domain, absence means the comparison was never made."
|
|
4895
4920
|
}
|
|
4896
4921
|
},
|
|
4897
4922
|
"description": "Structured sender-authenticity signal, derived from headers at classification time. Absent for messages classified before this field was introduced — clients should treat absence as no-signal."
|
|
@@ -6450,10 +6475,10 @@
|
|
|
6450
6475
|
"count": {
|
|
6451
6476
|
"type": "integer",
|
|
6452
6477
|
"format": "int32",
|
|
6453
|
-
"description": "
|
|
6478
|
+
"description": "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."
|
|
6454
6479
|
}
|
|
6455
6480
|
},
|
|
6456
|
-
"description": "Aggregate response for `searchThreads`. Carries the matching rows (`items`), a\npagination `continuationToken`, and an optional `count` of
|
|
6481
|
+
"description": "Aggregate response for `searchThreads`. Carries the matching rows (`items`), a\npagination `continuationToken`, and an optional `count` of every message the\nquery matches. `items` is omitted when `results=false` (count-only); `count` is\npresent only when `count=true`. Thread-specific so the shared `ResultList<T>`\n(7 endpoints) stays untouched."
|
|
6457
6482
|
},
|
|
6458
6483
|
"RemitImap.TrustedFlag": {
|
|
6459
6484
|
"type": "object",
|