@remit/api-openapi-spec 0.0.27 → 0.0.28
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 +44 -0
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -3443,6 +3443,9 @@
|
|
|
3443
3443
|
"wellknown": {
|
|
3444
3444
|
"$ref": "#/components/schemas/RemitImap.WellknownFlag"
|
|
3445
3445
|
},
|
|
3446
|
+
"junkOnly": {
|
|
3447
|
+
"$ref": "#/components/schemas/RemitImap.JunkOnlyFlag"
|
|
3448
|
+
},
|
|
3446
3449
|
"category": {
|
|
3447
3450
|
"$ref": "#/components/schemas/RemitImap.CategoryFlag"
|
|
3448
3451
|
},
|
|
@@ -4772,6 +4775,37 @@
|
|
|
4772
4775
|
},
|
|
4773
4776
|
"description": "Per-account appointment of a canonical role to at most one mailbox (RFC 032 exclusive-folder-appointment, issue #976). A role with no `mailboxId` is unfilled — either genuinely unappointed, or the account has no matching folder yet. Persisted as per-(account, role) AccountSetting rows (RFC 032 settings tiers), surfaced on AccountResponse.folderAppointments — never on the Mailbox entity, so two folders can never both claim the same role."
|
|
4774
4777
|
},
|
|
4778
|
+
"RemitImap.JunkOnlyFlag": {
|
|
4779
|
+
"type": "object",
|
|
4780
|
+
"required": [
|
|
4781
|
+
"value"
|
|
4782
|
+
],
|
|
4783
|
+
"properties": {
|
|
4784
|
+
"value": {
|
|
4785
|
+
"type": "boolean"
|
|
4786
|
+
}
|
|
4787
|
+
},
|
|
4788
|
+
"allOf": [
|
|
4789
|
+
{
|
|
4790
|
+
"$ref": "#/components/schemas/RemitImap.AddressFlagBase"
|
|
4791
|
+
}
|
|
4792
|
+
],
|
|
4793
|
+
"description": "Address was only ever seen on mail in a Junk folder: withheld from autocomplete suggestions until the account corresponds with it, flags it, or meets it on live mail. Written by sync and by the boot-time repair; clear it by patching this key to null."
|
|
4794
|
+
},
|
|
4795
|
+
"RemitImap.JunkOnlyFlagUpdate": {
|
|
4796
|
+
"type": "object",
|
|
4797
|
+
"properties": {
|
|
4798
|
+
"value": {
|
|
4799
|
+
"type": "boolean"
|
|
4800
|
+
}
|
|
4801
|
+
},
|
|
4802
|
+
"allOf": [
|
|
4803
|
+
{
|
|
4804
|
+
"$ref": "#/components/schemas/RemitImap.AddressFlagBaseUpdate"
|
|
4805
|
+
}
|
|
4806
|
+
],
|
|
4807
|
+
"description": "Address was only ever seen on mail in a Junk folder: withheld from autocomplete suggestions until the account corresponds with it, flags it, or meets it on live mail. Written by sync and by the boot-time repair; clear it by patching this key to null."
|
|
4808
|
+
},
|
|
4775
4809
|
"RemitImap.LabelAction": {
|
|
4776
4810
|
"type": "string",
|
|
4777
4811
|
"enum": [
|
|
@@ -7247,6 +7281,16 @@
|
|
|
7247
7281
|
],
|
|
7248
7282
|
"nullable": true
|
|
7249
7283
|
},
|
|
7284
|
+
"junkOnly": {
|
|
7285
|
+
"type": "object",
|
|
7286
|
+
"allOf": [
|
|
7287
|
+
{
|
|
7288
|
+
"$ref": "#/components/schemas/RemitImap.JunkOnlyFlagUpdate"
|
|
7289
|
+
}
|
|
7290
|
+
],
|
|
7291
|
+
"nullable": true,
|
|
7292
|
+
"description": "Set to `null` to offer this address in autocomplete again"
|
|
7293
|
+
},
|
|
7250
7294
|
"category": {
|
|
7251
7295
|
"type": "object",
|
|
7252
7296
|
"allOf": [
|