@remit/api-openapi-types 0.0.25 → 0.0.26
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 +9 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -224,7 +224,7 @@ current enum emitter anyway, so the wire contract uses the bare form.
|
|
|
224
224
|
/**
|
|
225
225
|
* Known user-setting keys. Each maps, in the registry, to a required value kind and a zod schema. New keys are added deliberately by extending this enum and the registry — never as an ad-hoc column.
|
|
226
226
|
*/
|
|
227
|
-
export type AccountSettingName = "Theme" | "Density" | "DefaultComposerFormat" | "PinnedFolders" | "AccountSignaturePlainText" | "AccountSignatureHtml" | "AccountDisplayName" | "AccountMuted" | "MailboxDisplayName" | "MailboxMuted" | "FolderRoleAppointment" | "MailboxRole";
|
|
227
|
+
export type AccountSettingName = "Theme" | "Density" | "DefaultComposerFormat" | "PinnedFolders" | "AccountSignaturePlainText" | "AccountSignatureHtml" | "AccountDisplayName" | "AccountMuted" | "AccountComposeLanguages" | "MailboxDisplayName" | "MailboxMuted" | "FolderRoleAppointment" | "MailboxRole";
|
|
228
228
|
/**
|
|
229
229
|
* Explicit state engine for a pending placement-move marker (issue #1271, epic #1281). Recovery keys off this field, not control-flow inference: a redelivered/retried call drives a marker forward from whichever state it is actually in, rather than re-deriving intent by comparing the message's current location.
|
|
230
230
|
*/
|
|
@@ -1048,6 +1048,10 @@ never from a raw content-type line — parameters carry `name=` and
|
|
|
1048
1048
|
* HTML email signature for this account
|
|
1049
1049
|
*/
|
|
1050
1050
|
signatureHtml?: string;
|
|
1051
|
+
/**
|
|
1052
|
+
* BCP 47 language tags this account writes mail in, most-used first (issue #686). The first entry is what a new message opens on; the whole list is the candidate set language detection chooses inside. Absent when the user has not configured one, and the client falls back to the browser's own languages. Sourced from a per-account AccountSetting row (RFC 032).
|
|
1053
|
+
*/
|
|
1054
|
+
composeLanguages?: string[];
|
|
1051
1055
|
/**
|
|
1052
1056
|
* Per-account appointment of each canonical role (Inbox, Drafts, Sent, Archive, Junk, Trash, All, Flagged) to at most one mailbox (RFC 032 exclusive-folder-appointment, issue #976). Always carries one entry per CanonicalMailboxRole member; an entry's `mailboxId` is a persisted user choice when set, or a server-proposed detection result when the user hasn't appointed that role yet. Write with PUT /accounts/{accountId}/folder-roles/{role}.
|
|
1053
1057
|
*/
|
|
@@ -2244,6 +2248,10 @@ standing to persist.
|
|
|
2244
2248
|
* HTML email signature
|
|
2245
2249
|
*/
|
|
2246
2250
|
signatureHtml?: string;
|
|
2251
|
+
/**
|
|
2252
|
+
* BCP 47 language tags this account writes mail in, most-used first (issue #686). Replaces the stored list outright; an empty array clears it.
|
|
2253
|
+
*/
|
|
2254
|
+
composeLanguages?: string[];
|
|
2247
2255
|
/**
|
|
2248
2256
|
* Account-level mute flag. Pass a MutedFlag object to mute; pass `null` to clear the mute.
|
|
2249
2257
|
*/
|