changedInput schema / properties / provider / description
Previous value: -"Return only inboxes served by this provider. Omit for all of them."New value: +"Return only inboxes reached through this CONNECTOR. Not the brand of the address: a Gmail mailbox connected over IMAP is provider 'imap'. Use `service` for the brand. Omit for all of them."
addedInput schema / properties / service
Added value: +{
+ "description": "Return only inboxes whose account BRAND is this. Set on inboxes reached over plain IMAP; null for a first-party connector, so service 'gmail' means Gmail-over-app-password and provider 'gmail' means Gmail-over-Google-API. Omit for all of them.",
+ "enum": [
+ "gmail",
+ "fastmail",
+ "icloud",
+ "yahoo",
+ "zoho",
+ "yandex",
+ "generic"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / available
Added value: +{
+ "description": "Every inbox this key can reach, on a filtered call that matched none of them, so the filter can be corrected without a second call.",
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "email_address": {
+ "type": "string"
+ },
+ "provider": {
+ "type": "string"
+ },
+ "service": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "email_address",
+ "provider"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / filter
Added value: +{
+ "additionalProperties": false,
+ "description": "The provider/service filter that was applied.",
+ "properties": {
+ "provider": {
+ "type": "string"
+ },
+ "service": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+}
addedOutput schema / properties / matched
Added value: +{
+ "description": "Present only on a filtered call that matched nothing. Always 0; its presence is what distinguishes an unmatched filter from an empty account, which carries setup_required instead.",
+ "type": "integer"
+}
addedOutput schema / properties / message
Added value: +{
+ "description": "What happened, when `inboxes` is empty: either that no mailbox is connected yet, or that the filter matched none of the ones that are.",
+ "type": "string"
+}
addedOutput schema / properties / setup_required
Added value: +{
+ "description": "Present and true ONLY when this key can reach no mailbox at all. Never set by a filter that matched nothing — see `matched`.",
+ "type": "boolean"
+}
addedOutput schema / properties / setup_url
Added value: +{
+ "description": "Where the user connects their first mailbox.",
+ "type": "string"
+}