@remit/api-openapi-spec 0.0.27 → 0.0.29

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.
Files changed (2) hide show
  1. package/openapi.json +46 -1
  2. 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
  },
@@ -4404,10 +4407,11 @@
4404
4407
  "enum": [
4405
4408
  "Corresponds",
4406
4409
  "Lookalike",
4410
+ "ForeignAddress",
4407
4411
  "Unrelated",
4408
4412
  "NoClaim"
4409
4413
  ],
4410
- "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."
4414
+ "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. `ForeignAddress` — the name spells out an email address at a domain the sender does not send from. `Unrelated` — no relation. `NoClaim` — the name is empty, or is an address at the sending domain, so it claims no other identity."
4411
4415
  },
4412
4416
  "RemitImap.EmptyTrashResponse": {
4413
4417
  "type": "object",
@@ -4772,6 +4776,37 @@
4772
4776
  },
4773
4777
  "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
4778
  },
4779
+ "RemitImap.JunkOnlyFlag": {
4780
+ "type": "object",
4781
+ "required": [
4782
+ "value"
4783
+ ],
4784
+ "properties": {
4785
+ "value": {
4786
+ "type": "boolean"
4787
+ }
4788
+ },
4789
+ "allOf": [
4790
+ {
4791
+ "$ref": "#/components/schemas/RemitImap.AddressFlagBase"
4792
+ }
4793
+ ],
4794
+ "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."
4795
+ },
4796
+ "RemitImap.JunkOnlyFlagUpdate": {
4797
+ "type": "object",
4798
+ "properties": {
4799
+ "value": {
4800
+ "type": "boolean"
4801
+ }
4802
+ },
4803
+ "allOf": [
4804
+ {
4805
+ "$ref": "#/components/schemas/RemitImap.AddressFlagBaseUpdate"
4806
+ }
4807
+ ],
4808
+ "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."
4809
+ },
4775
4810
  "RemitImap.LabelAction": {
4776
4811
  "type": "string",
4777
4812
  "enum": [
@@ -7247,6 +7282,16 @@
7247
7282
  ],
7248
7283
  "nullable": true
7249
7284
  },
7285
+ "junkOnly": {
7286
+ "type": "object",
7287
+ "allOf": [
7288
+ {
7289
+ "$ref": "#/components/schemas/RemitImap.JunkOnlyFlagUpdate"
7290
+ }
7291
+ ],
7292
+ "nullable": true,
7293
+ "description": "Set to `null` to offer this address in autocomplete again"
7294
+ },
7250
7295
  "category": {
7251
7296
  "type": "object",
7252
7297
  "allOf": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-openapi-spec",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "description": "Remit API OpenAPI 3 document, generated from TypeSpec.",
5
5
  "exports": {
6
6
  ".": "./openapi.json",