@remit/api-openapi-types 0.0.3 → 0.0.4
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/package.json +1 -1
- package/types.d.ts +2 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -144,7 +144,7 @@ current enum emitter anyway, so the wire contract uses the bare form.
|
|
|
144
144
|
/**
|
|
145
145
|
* System message flags defined in RFC 9051 Section 2.3.2 - MUST be supported by all servers
|
|
146
146
|
*/
|
|
147
|
-
export type MessageSystemFlag = "
|
|
147
|
+
export type MessageSystemFlag = "\\Seen" | "\\Answered" | "\\Flagged" | "\\Deleted" | "\\Draft";
|
|
148
148
|
/**
|
|
149
149
|
* Common keyword flags (non-system flags) for messages - widely supported but not required
|
|
150
150
|
*/
|
|
@@ -152,7 +152,7 @@ current enum emitter anyway, so the wire contract uses the bare form.
|
|
|
152
152
|
/**
|
|
153
153
|
* Mailbox attributes per RFC 9051 Section 7.3.1
|
|
154
154
|
*/
|
|
155
|
-
export type MailboxAttribute = "
|
|
155
|
+
export type MailboxAttribute = "\\NonExistent" | "\\Noinferiors" | "\\Noselect" | "\\HasChildren" | "\\HasNoChildren" | "\\Marked" | "\\Unmarked" | "\\Subscribed" | "\\Remote";
|
|
156
156
|
/**
|
|
157
157
|
* Storage backend types for message and body part content
|
|
158
158
|
*/
|