@remit/api-openapi-spec 0.0.10 → 0.0.11
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 +27 -7
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -3086,10 +3086,6 @@
|
|
|
3086
3086
|
},
|
|
3087
3087
|
"RemitImap.AutoMovedInfo": {
|
|
3088
3088
|
"type": "object",
|
|
3089
|
-
"required": [
|
|
3090
|
-
"action",
|
|
3091
|
-
"fromPlacement"
|
|
3092
|
-
],
|
|
3093
3089
|
"properties": {
|
|
3094
3090
|
"action": {
|
|
3095
3091
|
"allOf": [
|
|
@@ -3097,14 +3093,38 @@
|
|
|
3097
3093
|
"$ref": "#/components/schemas/RemitImap.PlacementAction"
|
|
3098
3094
|
}
|
|
3099
3095
|
],
|
|
3100
|
-
"description": "
|
|
3096
|
+
"description": "Classifier move only: direction Remit moved the message — MoveToInbox | MoveToJunk. Absent for a standing-filter move, which names its destination via `destinationMailboxId` instead."
|
|
3101
3097
|
},
|
|
3102
3098
|
"fromPlacement": {
|
|
3103
3099
|
"type": "string",
|
|
3104
|
-
"description": "
|
|
3100
|
+
"description": "Classifier move only: folder role the message was moved from — inbox | junk | other. Used to render \"moved from Junk\" and to resolve the undo target via MailboxRole. Absent for a standing-filter move, which names its source via `fromMailboxId`."
|
|
3101
|
+
},
|
|
3102
|
+
"fromMailboxId": {
|
|
3103
|
+
"allOf": [
|
|
3104
|
+
{
|
|
3105
|
+
"$ref": "#/components/schemas/UUID"
|
|
3106
|
+
}
|
|
3107
|
+
],
|
|
3108
|
+
"description": "Standing-filter move only: the mailbox the message was moved out of. The undo target — the client resolves its display name for the badge and moves the message back here."
|
|
3109
|
+
},
|
|
3110
|
+
"destinationMailboxId": {
|
|
3111
|
+
"allOf": [
|
|
3112
|
+
{
|
|
3113
|
+
"$ref": "#/components/schemas/UUID"
|
|
3114
|
+
}
|
|
3115
|
+
],
|
|
3116
|
+
"description": "Standing-filter move only: the mailbox the filter moved the message into. The move is still in effect while the message sits here."
|
|
3117
|
+
},
|
|
3118
|
+
"filterId": {
|
|
3119
|
+
"allOf": [
|
|
3120
|
+
{
|
|
3121
|
+
"$ref": "#/components/schemas/UUID"
|
|
3122
|
+
}
|
|
3123
|
+
],
|
|
3124
|
+
"description": "Standing-filter move only: the filter that moved the message, for the Settings › Filters link. Undo does not disable it."
|
|
3105
3125
|
}
|
|
3106
3126
|
},
|
|
3107
|
-
"description": "Present only when Remit auto-moved this message on body-sync (a
|
|
3127
|
+
"description": "Present only when Remit auto-moved this message on body-sync. Two shapes share this model: a classifier placement move carries `action` + `fromPlacement` (Inbox/Junk direction); a standing-filter move carries `fromMailboxId` + `destinationMailboxId` + `filterId` (an arbitrary destination folder). Absent means the message was not auto-moved by Remit — clients treat absence as no indicator."
|
|
3108
3128
|
},
|
|
3109
3129
|
"RemitImap.BlockedFlag": {
|
|
3110
3130
|
"type": "object",
|