@remit/api-http-client 0.0.24 → 0.0.25

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/package.json +1 -1
  2. package/types.gen.ts +12 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-http-client",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts",
package/types.gen.ts CHANGED
@@ -245,6 +245,10 @@ export type RemitImapAccountResponse = {
245
245
  * HTML email signature for this account
246
246
  */
247
247
  signatureHtml?: string;
248
+ /**
249
+ * 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).
250
+ */
251
+ composeLanguages?: Array<string>;
248
252
  /**
249
253
  * 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}.
250
254
  */
@@ -2350,6 +2354,10 @@ export type RemitImapUpdateAccountInput = {
2350
2354
  * HTML email signature
2351
2355
  */
2352
2356
  signatureHtml?: string;
2357
+ /**
2358
+ * BCP 47 language tags this account writes mail in, most-used first (issue #686). Replaces the stored list outright; an empty array clears it.
2359
+ */
2360
+ composeLanguages?: Array<string>;
2353
2361
  /**
2354
2362
  * Account-level mute flag. Pass a MutedFlag object to mute; pass `null` to clear the mute.
2355
2363
  */
@@ -2625,6 +2633,10 @@ export type RemitImapAccountResponseWritable = {
2625
2633
  * HTML email signature for this account
2626
2634
  */
2627
2635
  signatureHtml?: string;
2636
+ /**
2637
+ * 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).
2638
+ */
2639
+ composeLanguages?: Array<string>;
2628
2640
  /**
2629
2641
  * 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}.
2630
2642
  */