@sendmux/cli 1.0.0 → 1.0.1

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 (302) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +72 -5
  3. package/dist/base-command.d.ts +2 -0
  4. package/dist/base-command.d.ts.map +1 -1
  5. package/dist/base-command.js +27 -0
  6. package/dist/commands/mailbox/batch-delete-messages.d.ts +26 -0
  7. package/dist/commands/mailbox/batch-delete-messages.d.ts.map +1 -0
  8. package/dist/commands/mailbox/batch-delete-messages.js +7 -0
  9. package/dist/commands/mailbox/batch-get-messages.d.ts +26 -0
  10. package/dist/commands/mailbox/batch-get-messages.d.ts.map +1 -0
  11. package/dist/commands/mailbox/batch-get-messages.js +7 -0
  12. package/dist/commands/mailbox/batch-update-messages.d.ts +26 -0
  13. package/dist/commands/mailbox/batch-update-messages.d.ts.map +1 -0
  14. package/dist/commands/mailbox/batch-update-messages.js +7 -0
  15. package/dist/commands/mailbox/count-messages.d.ts +142 -0
  16. package/dist/commands/mailbox/count-messages.d.ts.map +1 -0
  17. package/dist/commands/mailbox/count-messages.js +7 -0
  18. package/dist/commands/mailbox/create-folder.d.ts +26 -0
  19. package/dist/commands/mailbox/create-folder.d.ts.map +1 -0
  20. package/dist/commands/mailbox/create-folder.js +7 -0
  21. package/dist/commands/mailbox/delete-folder.d.ts +38 -0
  22. package/dist/commands/mailbox/delete-folder.d.ts.map +1 -0
  23. package/dist/commands/mailbox/delete-folder.js +7 -0
  24. package/dist/commands/mailbox/delete-message.d.ts +44 -0
  25. package/dist/commands/mailbox/delete-message.d.ts.map +1 -0
  26. package/dist/commands/mailbox/delete-message.js +7 -0
  27. package/dist/commands/mailbox/folders/list.d.ts +17 -1
  28. package/dist/commands/mailbox/folders/list.d.ts.map +1 -1
  29. package/dist/commands/mailbox/folders/list.js +5 -4
  30. package/dist/commands/mailbox/get-changes.d.ts +82 -0
  31. package/dist/commands/mailbox/get-changes.d.ts.map +1 -0
  32. package/dist/commands/mailbox/get-changes.js +7 -0
  33. package/dist/commands/mailbox/get-folder-changes.d.ts +40 -0
  34. package/dist/commands/mailbox/get-folder-changes.d.ts.map +1 -0
  35. package/dist/commands/mailbox/get-folder-changes.js +7 -0
  36. package/dist/commands/mailbox/get-folder.d.ts +38 -0
  37. package/dist/commands/mailbox/get-folder.d.ts.map +1 -0
  38. package/dist/commands/mailbox/get-folder.js +7 -0
  39. package/dist/commands/mailbox/get-identity.d.ts +26 -0
  40. package/dist/commands/mailbox/get-identity.d.ts.map +1 -0
  41. package/dist/commands/mailbox/get-identity.js +7 -0
  42. package/dist/commands/mailbox/get-message-attachment.d.ts +44 -0
  43. package/dist/commands/mailbox/get-message-attachment.d.ts.map +1 -0
  44. package/dist/commands/mailbox/get-message-attachment.js +7 -0
  45. package/dist/commands/mailbox/get-quota-changes.d.ts +40 -0
  46. package/dist/commands/mailbox/get-quota-changes.d.ts.map +1 -0
  47. package/dist/commands/mailbox/get-quota-changes.js +7 -0
  48. package/dist/commands/mailbox/get-session.d.ts +32 -0
  49. package/dist/commands/mailbox/get-session.d.ts.map +1 -0
  50. package/dist/commands/mailbox/get-session.js +7 -0
  51. package/dist/commands/mailbox/get-submission-changes.d.ts +40 -0
  52. package/dist/commands/mailbox/get-submission-changes.d.ts.map +1 -0
  53. package/dist/commands/mailbox/get-submission-changes.js +7 -0
  54. package/dist/commands/mailbox/get-submission.d.ts +38 -0
  55. package/dist/commands/mailbox/get-submission.d.ts.map +1 -0
  56. package/dist/commands/mailbox/get-submission.js +7 -0
  57. package/dist/commands/mailbox/get-thread-content.d.ts +112 -0
  58. package/dist/commands/mailbox/get-thread-content.d.ts.map +1 -0
  59. package/dist/commands/mailbox/get-thread-content.js +7 -0
  60. package/dist/commands/mailbox/get-thread.d.ts +38 -0
  61. package/dist/commands/mailbox/get-thread.d.ts.map +1 -0
  62. package/dist/commands/mailbox/get-thread.js +7 -0
  63. package/dist/commands/mailbox/list-body.d.ts +53 -0
  64. package/dist/commands/mailbox/list-body.d.ts.map +1 -0
  65. package/dist/commands/mailbox/list-body.js +7 -0
  66. package/dist/commands/mailbox/list-content.d.ts +91 -0
  67. package/dist/commands/mailbox/list-content.d.ts.map +1 -0
  68. package/dist/commands/mailbox/list-content.js +7 -0
  69. package/dist/commands/mailbox/list-granted-mailboxes.d.ts +40 -0
  70. package/dist/commands/mailbox/list-granted-mailboxes.d.ts.map +1 -0
  71. package/dist/commands/mailbox/list-granted-mailboxes.js +7 -0
  72. package/dist/commands/mailbox/list-identities.d.ts +40 -0
  73. package/dist/commands/mailbox/list-identities.d.ts.map +1 -0
  74. package/dist/commands/mailbox/list-identities.js +7 -0
  75. package/dist/commands/mailbox/list-quotas.d.ts +80 -0
  76. package/dist/commands/mailbox/list-quotas.d.ts.map +1 -0
  77. package/dist/commands/mailbox/list-quotas.js +7 -0
  78. package/dist/commands/mailbox/list-submissions.d.ts +91 -0
  79. package/dist/commands/mailbox/list-submissions.d.ts.map +1 -0
  80. package/dist/commands/mailbox/list-submissions.js +7 -0
  81. package/dist/commands/mailbox/list-thread-messages.d.ts +53 -0
  82. package/dist/commands/mailbox/list-thread-messages.d.ts.map +1 -0
  83. package/dist/commands/mailbox/list-thread-messages.js +7 -0
  84. package/dist/commands/mailbox/list-threads.d.ts +89 -0
  85. package/dist/commands/mailbox/list-threads.d.ts.map +1 -0
  86. package/dist/commands/mailbox/list-threads.js +7 -0
  87. package/dist/commands/mailbox/list-usage.d.ts +32 -0
  88. package/dist/commands/mailbox/list-usage.d.ts.map +1 -0
  89. package/dist/commands/mailbox/list-usage.js +7 -0
  90. package/dist/commands/mailbox/me/get.d.ts +13 -2
  91. package/dist/commands/mailbox/me/get.d.ts.map +1 -1
  92. package/dist/commands/mailbox/me/get.js +5 -4
  93. package/dist/commands/mailbox/messages/get.d.ts +16 -2
  94. package/dist/commands/mailbox/messages/get.d.ts.map +1 -1
  95. package/dist/commands/mailbox/messages/get.js +5 -4
  96. package/dist/commands/mailbox/messages/list.d.ts +84 -1
  97. package/dist/commands/mailbox/messages/list.d.ts.map +1 -1
  98. package/dist/commands/mailbox/messages/list.js +5 -4
  99. package/dist/commands/mailbox/query-folder-changes.d.ts +40 -0
  100. package/dist/commands/mailbox/query-folder-changes.d.ts.map +1 -0
  101. package/dist/commands/mailbox/query-folder-changes.js +7 -0
  102. package/dist/commands/mailbox/query-message-changes.d.ts +176 -0
  103. package/dist/commands/mailbox/query-message-changes.d.ts.map +1 -0
  104. package/dist/commands/mailbox/query-message-changes.js +7 -0
  105. package/dist/commands/mailbox/search-message-snippets.d.ts +150 -0
  106. package/dist/commands/mailbox/search-message-snippets.d.ts.map +1 -0
  107. package/dist/commands/mailbox/search-message-snippets.js +7 -0
  108. package/dist/commands/mailbox/send-message.d.ts +33 -0
  109. package/dist/commands/mailbox/send-message.d.ts.map +1 -0
  110. package/dist/commands/mailbox/send-message.js +7 -0
  111. package/dist/commands/mailbox/stream-events.d.ts +60 -0
  112. package/dist/commands/mailbox/stream-events.d.ts.map +1 -0
  113. package/dist/commands/mailbox/stream-events.js +7 -0
  114. package/dist/commands/mailbox/update-folder.d.ts +38 -0
  115. package/dist/commands/mailbox/update-folder.d.ts.map +1 -0
  116. package/dist/commands/mailbox/update-folder.js +7 -0
  117. package/dist/commands/mailbox/update-identity.d.ts +26 -0
  118. package/dist/commands/mailbox/update-identity.d.ts.map +1 -0
  119. package/dist/commands/mailbox/update-identity.js +7 -0
  120. package/dist/commands/mailbox/update-message.d.ts +38 -0
  121. package/dist/commands/mailbox/update-message.d.ts.map +1 -0
  122. package/dist/commands/mailbox/update-message.js +7 -0
  123. package/dist/commands/mailbox/upload-attachment.d.ts +32 -0
  124. package/dist/commands/mailbox/upload-attachment.d.ts.map +1 -0
  125. package/dist/commands/mailbox/upload-attachment.js +7 -0
  126. package/dist/commands/management/activate-provider.d.ts +33 -0
  127. package/dist/commands/management/activate-provider.d.ts.map +1 -0
  128. package/dist/commands/management/activate-provider.js +7 -0
  129. package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts +26 -0
  130. package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts.map +1 -0
  131. package/dist/commands/management/cancel-shared-amazon-ses-limit-request.js +7 -0
  132. package/dist/commands/management/create-domain.d.ts +27 -0
  133. package/dist/commands/management/create-domain.d.ts.map +1 -0
  134. package/dist/commands/management/create-domain.js +7 -0
  135. package/dist/commands/management/create-mailbox-key.d.ts +33 -0
  136. package/dist/commands/management/create-mailbox-key.d.ts.map +1 -0
  137. package/dist/commands/management/create-mailbox-key.js +7 -0
  138. package/dist/commands/management/create-mailbox.d.ts +27 -0
  139. package/dist/commands/management/create-mailbox.d.ts.map +1 -0
  140. package/dist/commands/management/create-mailbox.js +7 -0
  141. package/dist/commands/management/create-provider.d.ts +27 -0
  142. package/dist/commands/management/create-provider.d.ts.map +1 -0
  143. package/dist/commands/management/create-provider.js +7 -0
  144. package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts +27 -0
  145. package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts.map +1 -0
  146. package/dist/commands/management/create-shared-amazon-ses-limit-request.js +7 -0
  147. package/dist/commands/management/create-webhook.d.ts +27 -0
  148. package/dist/commands/management/create-webhook.d.ts.map +1 -0
  149. package/dist/commands/management/create-webhook.js +7 -0
  150. package/dist/commands/management/deactivate-provider.d.ts +33 -0
  151. package/dist/commands/management/deactivate-provider.d.ts.map +1 -0
  152. package/dist/commands/management/deactivate-provider.js +7 -0
  153. package/dist/commands/management/delete-domain.d.ts +26 -0
  154. package/dist/commands/management/delete-domain.d.ts.map +1 -0
  155. package/dist/commands/management/delete-domain.js +7 -0
  156. package/dist/commands/management/delete-mailbox-key.d.ts +32 -0
  157. package/dist/commands/management/delete-mailbox-key.d.ts.map +1 -0
  158. package/dist/commands/management/delete-mailbox-key.js +7 -0
  159. package/dist/commands/management/delete-mailbox.d.ts +26 -0
  160. package/dist/commands/management/delete-mailbox.d.ts.map +1 -0
  161. package/dist/commands/management/delete-mailbox.js +7 -0
  162. package/dist/commands/management/delete-provider.d.ts +26 -0
  163. package/dist/commands/management/delete-provider.d.ts.map +1 -0
  164. package/dist/commands/management/delete-provider.js +7 -0
  165. package/dist/commands/management/delete-webhook.d.ts +26 -0
  166. package/dist/commands/management/delete-webhook.d.ts.map +1 -0
  167. package/dist/commands/management/delete-webhook.js +7 -0
  168. package/dist/commands/management/domains/get.d.ts +9 -1
  169. package/dist/commands/management/domains/get.d.ts.map +1 -1
  170. package/dist/commands/management/domains/get.js +5 -4
  171. package/dist/commands/management/domains/list.d.ts +11 -1
  172. package/dist/commands/management/domains/list.d.ts.map +1 -1
  173. package/dist/commands/management/domains/list.js +5 -4
  174. package/dist/commands/management/get-delivery-payload.d.ts +32 -0
  175. package/dist/commands/management/get-delivery-payload.d.ts.map +1 -0
  176. package/dist/commands/management/get-delivery-payload.js +7 -0
  177. package/dist/commands/management/get-domain-filters.d.ts +32 -0
  178. package/dist/commands/management/get-domain-filters.d.ts.map +1 -0
  179. package/dist/commands/management/get-domain-filters.js +7 -0
  180. package/dist/commands/management/get-domain-zone-file.d.ts +26 -0
  181. package/dist/commands/management/get-domain-zone-file.d.ts.map +1 -0
  182. package/dist/commands/management/get-domain-zone-file.js +7 -0
  183. package/dist/commands/management/get-email-log.d.ts +32 -0
  184. package/dist/commands/management/get-email-log.d.ts.map +1 -0
  185. package/dist/commands/management/get-email-log.js +7 -0
  186. package/dist/commands/management/get-email-metrics.d.ts +52 -0
  187. package/dist/commands/management/get-email-metrics.d.ts.map +1 -0
  188. package/dist/commands/management/get-email-metrics.js +7 -0
  189. package/dist/commands/management/get-inbox-log.d.ts +26 -0
  190. package/dist/commands/management/get-inbox-log.d.ts.map +1 -0
  191. package/dist/commands/management/get-inbox-log.js +7 -0
  192. package/dist/commands/management/get-mailbox-filters.d.ts +32 -0
  193. package/dist/commands/management/get-mailbox-filters.d.ts.map +1 -0
  194. package/dist/commands/management/get-mailbox-filters.js +7 -0
  195. package/dist/commands/management/get-mailbox.d.ts +32 -0
  196. package/dist/commands/management/get-mailbox.d.ts.map +1 -0
  197. package/dist/commands/management/get-mailbox.js +7 -0
  198. package/dist/commands/management/get-provider-limits.d.ts +20 -0
  199. package/dist/commands/management/get-provider-limits.d.ts.map +1 -0
  200. package/dist/commands/management/get-provider-limits.js +7 -0
  201. package/dist/commands/management/get-provider-stats.d.ts +20 -0
  202. package/dist/commands/management/get-provider-stats.d.ts.map +1 -0
  203. package/dist/commands/management/get-provider-stats.js +7 -0
  204. package/dist/commands/management/get-provider-usage.d.ts +20 -0
  205. package/dist/commands/management/get-provider-usage.d.ts.map +1 -0
  206. package/dist/commands/management/get-provider-usage.js +7 -0
  207. package/dist/commands/management/get-provider.d.ts +32 -0
  208. package/dist/commands/management/get-provider.d.ts.map +1 -0
  209. package/dist/commands/management/get-provider.js +7 -0
  210. package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts +20 -0
  211. package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts.map +1 -0
  212. package/dist/commands/management/get-shared-amazon-ses-limit-request.js +7 -0
  213. package/dist/commands/management/get-spend-summary.d.ts +27 -0
  214. package/dist/commands/management/get-spend-summary.d.ts.map +1 -0
  215. package/dist/commands/management/get-spend-summary.js +7 -0
  216. package/dist/commands/management/get-webhook.d.ts +32 -0
  217. package/dist/commands/management/get-webhook.d.ts.map +1 -0
  218. package/dist/commands/management/get-webhook.js +7 -0
  219. package/dist/commands/management/list-balance.d.ts +20 -0
  220. package/dist/commands/management/list-balance.d.ts.map +1 -0
  221. package/dist/commands/management/list-balance.js +7 -0
  222. package/dist/commands/management/list-delivery.d.ts +54 -0
  223. package/dist/commands/management/list-delivery.d.ts.map +1 -0
  224. package/dist/commands/management/list-delivery.js +7 -0
  225. package/dist/commands/management/list-email-logs.d.ts +65 -0
  226. package/dist/commands/management/list-email-logs.d.ts.map +1 -0
  227. package/dist/commands/management/list-email-logs.js +7 -0
  228. package/dist/commands/management/list-inbox-logs.d.ts +65 -0
  229. package/dist/commands/management/list-inbox-logs.d.ts.map +1 -0
  230. package/dist/commands/management/list-inbox-logs.js +7 -0
  231. package/dist/commands/management/list-transactions.d.ts +41 -0
  232. package/dist/commands/management/list-transactions.d.ts.map +1 -0
  233. package/dist/commands/management/list-transactions.js +7 -0
  234. package/dist/commands/management/list-webhooks.d.ts +34 -0
  235. package/dist/commands/management/list-webhooks.d.ts.map +1 -0
  236. package/dist/commands/management/list-webhooks.js +7 -0
  237. package/dist/commands/management/mailboxes/list.d.ts +15 -1
  238. package/dist/commands/management/mailboxes/list.d.ts.map +1 -1
  239. package/dist/commands/management/mailboxes/list.js +5 -4
  240. package/dist/commands/management/providers/list.d.ts +19 -1
  241. package/dist/commands/management/providers/list.d.ts.map +1 -1
  242. package/dist/commands/management/providers/list.js +5 -4
  243. package/dist/commands/management/request-sending-account-limit-increase.d.ts +27 -0
  244. package/dist/commands/management/request-sending-account-limit-increase.d.ts.map +1 -0
  245. package/dist/commands/management/request-sending-account-limit-increase.js +7 -0
  246. package/dist/commands/management/resume-mailbox.d.ts +33 -0
  247. package/dist/commands/management/resume-mailbox.d.ts.map +1 -0
  248. package/dist/commands/management/resume-mailbox.js +7 -0
  249. package/dist/commands/management/rotate-webhook-secret.d.ts +33 -0
  250. package/dist/commands/management/rotate-webhook-secret.d.ts.map +1 -0
  251. package/dist/commands/management/rotate-webhook-secret.js +7 -0
  252. package/dist/commands/management/set-domain-filters.d.ts +32 -0
  253. package/dist/commands/management/set-domain-filters.d.ts.map +1 -0
  254. package/dist/commands/management/set-domain-filters.js +7 -0
  255. package/dist/commands/management/set-mailbox-filters.d.ts +32 -0
  256. package/dist/commands/management/set-mailbox-filters.d.ts.map +1 -0
  257. package/dist/commands/management/set-mailbox-filters.js +7 -0
  258. package/dist/commands/management/suspend-mailbox.d.ts +33 -0
  259. package/dist/commands/management/suspend-mailbox.d.ts.map +1 -0
  260. package/dist/commands/management/suspend-mailbox.js +7 -0
  261. package/dist/commands/management/test-provider.d.ts +33 -0
  262. package/dist/commands/management/test-provider.d.ts.map +1 -0
  263. package/dist/commands/management/test-provider.js +7 -0
  264. package/dist/commands/management/test-webhook.d.ts +33 -0
  265. package/dist/commands/management/test-webhook.d.ts.map +1 -0
  266. package/dist/commands/management/test-webhook.js +7 -0
  267. package/dist/commands/management/update-domain.d.ts +32 -0
  268. package/dist/commands/management/update-domain.d.ts.map +1 -0
  269. package/dist/commands/management/update-domain.js +7 -0
  270. package/dist/commands/management/update-mailbox.d.ts +32 -0
  271. package/dist/commands/management/update-mailbox.d.ts.map +1 -0
  272. package/dist/commands/management/update-mailbox.js +7 -0
  273. package/dist/commands/management/update-provider.d.ts +32 -0
  274. package/dist/commands/management/update-provider.d.ts.map +1 -0
  275. package/dist/commands/management/update-provider.js +7 -0
  276. package/dist/commands/management/update-webhook.d.ts +32 -0
  277. package/dist/commands/management/update-webhook.d.ts.map +1 -0
  278. package/dist/commands/management/update-webhook.js +7 -0
  279. package/dist/commands/management/verify-domain.d.ts +26 -0
  280. package/dist/commands/management/verify-domain.d.ts.map +1 -0
  281. package/dist/commands/management/verify-domain.js +7 -0
  282. package/dist/commands/sending/get-open-api-spec.d.ts +26 -0
  283. package/dist/commands/sending/get-open-api-spec.d.ts.map +1 -0
  284. package/dist/commands/sending/get-open-api-spec.js +7 -0
  285. package/dist/commands/sending/send/batch.d.ts +8 -2
  286. package/dist/commands/sending/send/batch.d.ts.map +1 -1
  287. package/dist/commands/sending/send/batch.js +5 -4
  288. package/dist/commands/sending/send.d.ts +8 -2
  289. package/dist/commands/sending/send.d.ts.map +1 -1
  290. package/dist/commands/sending/send.js +5 -4
  291. package/dist/generated/operations.d.ts +1710 -25
  292. package/dist/generated/operations.d.ts.map +1 -1
  293. package/dist/generated/operations.js +2012 -316
  294. package/dist/operation-flags.d.ts +3 -3
  295. package/dist/operation-flags.d.ts.map +1 -1
  296. package/dist/operation-flags.js +132 -21
  297. package/dist/operation-runner.d.ts.map +1 -1
  298. package/dist/operation-runner.js +65 -7
  299. package/dist/operation-types.d.ts +19 -0
  300. package/dist/operation-types.d.ts.map +1 -1
  301. package/oclif.manifest.json +13474 -238
  302. package/package.json +2 -1
@@ -0,0 +1,89 @@
1
+ import { OperationCommand } from "../../operation-command.js";
2
+ export default class MailboxListThreadsCommand extends OperationCommand {
3
+ static description: "List mailbox threads";
4
+ static operation: {
5
+ readonly bodyKind: "none";
6
+ readonly command: "mailbox:list-threads";
7
+ readonly description: "List mailbox threads";
8
+ readonly headerParams: readonly [];
9
+ readonly method: "get";
10
+ readonly operationId: "mailboxListThreads";
11
+ readonly path: "/mailbox/threads";
12
+ readonly pathParams: readonly [];
13
+ readonly queryParams: readonly [{
14
+ readonly name: "cursor";
15
+ readonly required: false;
16
+ readonly schema: {
17
+ readonly type: "string";
18
+ };
19
+ }, {
20
+ readonly name: "limit";
21
+ readonly required: false;
22
+ readonly schema: {
23
+ readonly type: "integer";
24
+ readonly minimum: 1;
25
+ readonly maximum: 100;
26
+ };
27
+ }, {
28
+ readonly name: "q";
29
+ readonly required: false;
30
+ readonly schema: {
31
+ readonly type: "string";
32
+ };
33
+ }, {
34
+ readonly name: "participant";
35
+ readonly required: false;
36
+ readonly schema: {
37
+ readonly type: "string";
38
+ };
39
+ }, {
40
+ readonly name: "folder_id";
41
+ readonly required: false;
42
+ readonly schema: {
43
+ readonly type: "string";
44
+ };
45
+ }, {
46
+ readonly name: "after";
47
+ readonly required: false;
48
+ readonly schema: {
49
+ readonly type: "string";
50
+ };
51
+ }, {
52
+ readonly name: "before";
53
+ readonly required: false;
54
+ readonly schema: {
55
+ readonly type: "string";
56
+ };
57
+ }, {
58
+ readonly name: "has_attachment";
59
+ readonly required: false;
60
+ readonly schema: {
61
+ readonly type: "boolean";
62
+ };
63
+ }, {
64
+ readonly name: "is_unread";
65
+ readonly required: false;
66
+ readonly schema: {
67
+ readonly type: "boolean";
68
+ };
69
+ }, {
70
+ readonly name: "sort_direction";
71
+ readonly required: false;
72
+ readonly schema: {
73
+ readonly type: "string";
74
+ readonly enum: readonly ["asc", "desc"];
75
+ };
76
+ }, {
77
+ readonly name: "mailbox_id";
78
+ readonly required: false;
79
+ readonly schema: {
80
+ readonly type: "string";
81
+ };
82
+ }];
83
+ readonly responseKind: "json";
84
+ readonly requestBodyRequired: false;
85
+ readonly requiredKeyKind: "mailbox";
86
+ readonly surface: "mailbox";
87
+ };
88
+ }
89
+ //# sourceMappingURL=list-threads.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-threads.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-threads.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,gBAAgB;IACrE,MAAM,CAAC,WAAW,yBAA6C;IAC/D,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAiC;CAClD"}
@@ -0,0 +1,7 @@
1
+ // This file is generated by scripts/generate-cli.mjs
2
+ import { operations } from "../../generated/operations.js";
3
+ import { OperationCommand } from "../../operation-command.js";
4
+ export default class MailboxListThreadsCommand extends OperationCommand {
5
+ static description = operations.mailboxListThreads.description;
6
+ static operation = operations.mailboxListThreads;
7
+ }
@@ -0,0 +1,32 @@
1
+ import { OperationCommand } from "../../operation-command.js";
2
+ export default class MailboxListUsageCommand extends OperationCommand {
3
+ static description: "Get mailbox usage";
4
+ static operation: {
5
+ readonly bodyKind: "none";
6
+ readonly command: "mailbox:list-usage";
7
+ readonly description: "Get mailbox usage";
8
+ readonly headerParams: readonly [{
9
+ readonly name: "If-None-Match";
10
+ readonly required: false;
11
+ readonly schema: {
12
+ readonly type: "string";
13
+ };
14
+ }];
15
+ readonly method: "get";
16
+ readonly operationId: "mailboxListUsage";
17
+ readonly path: "/mailbox/usage";
18
+ readonly pathParams: readonly [];
19
+ readonly queryParams: readonly [{
20
+ readonly name: "mailbox_id";
21
+ readonly required: false;
22
+ readonly schema: {
23
+ readonly type: "string";
24
+ };
25
+ }];
26
+ readonly responseKind: "json";
27
+ readonly requestBodyRequired: false;
28
+ readonly requiredKeyKind: "mailbox";
29
+ readonly surface: "mailbox";
30
+ };
31
+ }
32
+ //# sourceMappingURL=list-usage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-usage.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-usage.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,gBAAgB;IACnE,MAAM,CAAC,WAAW,sBAA2C;IAC7D,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;MAA+B;CAChD"}
@@ -0,0 +1,7 @@
1
+ // This file is generated by scripts/generate-cli.mjs
2
+ import { operations } from "../../generated/operations.js";
3
+ import { OperationCommand } from "../../operation-command.js";
4
+ export default class MailboxListUsageCommand extends OperationCommand {
5
+ static description = operations.mailboxListUsage.description;
6
+ static operation = operations.mailboxListUsage;
7
+ }
@@ -1,18 +1,29 @@
1
1
  import { OperationCommand } from "../../../operation-command.js";
2
- export default class MailboxMeGet extends OperationCommand {
2
+ export default class MailboxGetMeCommand extends OperationCommand {
3
3
  static description: "Self-introspect the calling mailbox";
4
4
  static operation: {
5
+ readonly bodyKind: "none";
5
6
  readonly command: "mailbox:me:get";
6
7
  readonly description: "Self-introspect the calling mailbox";
7
8
  readonly headerParams: readonly [{
8
9
  readonly name: "If-None-Match";
9
10
  readonly required: false;
11
+ readonly schema: {
12
+ readonly type: "string";
13
+ };
10
14
  }];
11
15
  readonly method: "get";
12
16
  readonly operationId: "mailboxGetMe";
13
17
  readonly path: "/mailbox/me";
14
18
  readonly pathParams: readonly [];
15
- readonly queryParams: readonly [];
19
+ readonly queryParams: readonly [{
20
+ readonly name: "mailbox_id";
21
+ readonly required: false;
22
+ readonly schema: {
23
+ readonly type: "string";
24
+ };
25
+ }];
26
+ readonly responseKind: "json";
16
27
  readonly requestBodyRequired: false;
17
28
  readonly requiredKeyKind: "mailbox";
18
29
  readonly surface: "mailbox";
@@ -1 +1 @@
1
- {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../../src/commands/mailbox/me/get.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,gBAAgB;IACxD,MAAM,CAAC,WAAW,wCAA8C;IAChE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;MAAkC;CACnD"}
1
+ {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../../src/commands/mailbox/me/get.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,gBAAgB;IAC/D,MAAM,CAAC,WAAW,wCAAuC;IACzD,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;MAA2B;CAC5C"}
@@ -1,6 +1,7 @@
1
- import { curatedOperations } from "../../../generated/operations.js";
1
+ // This file is generated by scripts/generate-cli.mjs
2
+ import { operations } from "../../../generated/operations.js";
2
3
  import { OperationCommand } from "../../../operation-command.js";
3
- export default class MailboxMeGet extends OperationCommand {
4
- static description = curatedOperations.mailboxGetMe.description;
5
- static operation = curatedOperations.mailboxGetMe;
4
+ export default class MailboxGetMeCommand extends OperationCommand {
5
+ static description = operations.mailboxGetMe.description;
6
+ static operation = operations.mailboxGetMe;
6
7
  }
@@ -1,12 +1,16 @@
1
1
  import { OperationCommand } from "../../../operation-command.js";
2
- export default class MailboxMessagesGet extends OperationCommand {
2
+ export default class MailboxGetMessageCommand extends OperationCommand {
3
3
  static description: "Get a mailbox message";
4
4
  static operation: {
5
+ readonly bodyKind: "none";
5
6
  readonly command: "mailbox:messages:get";
6
7
  readonly description: "Get a mailbox message";
7
8
  readonly headerParams: readonly [{
8
9
  readonly name: "If-None-Match";
9
10
  readonly required: false;
11
+ readonly schema: {
12
+ readonly type: "string";
13
+ };
10
14
  }];
11
15
  readonly method: "get";
12
16
  readonly operationId: "mailboxGetMessage";
@@ -14,8 +18,18 @@ export default class MailboxMessagesGet extends OperationCommand {
14
18
  readonly pathParams: readonly [{
15
19
  readonly name: "message_id";
16
20
  readonly required: true;
21
+ readonly schema: {
22
+ readonly type: "string";
23
+ };
17
24
  }];
18
- readonly queryParams: readonly [];
25
+ readonly queryParams: readonly [{
26
+ readonly name: "mailbox_id";
27
+ readonly required: false;
28
+ readonly schema: {
29
+ readonly type: "string";
30
+ };
31
+ }];
32
+ readonly responseKind: "json";
19
33
  readonly requestBodyRequired: false;
20
34
  readonly requiredKeyKind: "mailbox";
21
35
  readonly surface: "mailbox";
@@ -1 +1 @@
1
- {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../../src/commands/mailbox/messages/get.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,gBAAgB;IAC9D,MAAM,CAAC,WAAW,0BAAmD;IACrE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;MAAuC;CACxD"}
1
+ {"version":3,"file":"get.d.ts","sourceRoot":"","sources":["../../../../src/commands/mailbox/messages/get.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,gBAAgB;IACpE,MAAM,CAAC,WAAW,0BAA4C;IAC9D,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAgC;CACjD"}
@@ -1,6 +1,7 @@
1
- import { curatedOperations } from "../../../generated/operations.js";
1
+ // This file is generated by scripts/generate-cli.mjs
2
+ import { operations } from "../../../generated/operations.js";
2
3
  import { OperationCommand } from "../../../operation-command.js";
3
- export default class MailboxMessagesGet extends OperationCommand {
4
- static description = curatedOperations.mailboxGetMessage.description;
5
- static operation = curatedOperations.mailboxGetMessage;
4
+ export default class MailboxGetMessageCommand extends OperationCommand {
5
+ static description = operations.mailboxGetMessage.description;
6
+ static operation = operations.mailboxGetMessage;
6
7
  }
@@ -1,7 +1,8 @@
1
1
  import { OperationCommand } from "../../../operation-command.js";
2
- export default class MailboxMessagesList extends OperationCommand {
2
+ export default class MailboxListMessagesCommand extends OperationCommand {
3
3
  static description: "List mailbox messages";
4
4
  static operation: {
5
+ readonly bodyKind: "none";
5
6
  readonly command: "mailbox:messages:list";
6
7
  readonly description: "List mailbox messages";
7
8
  readonly headerParams: readonly [];
@@ -12,73 +13,155 @@ export default class MailboxMessagesList extends OperationCommand {
12
13
  readonly queryParams: readonly [{
13
14
  readonly name: "cursor";
14
15
  readonly required: false;
16
+ readonly schema: {
17
+ readonly type: "string";
18
+ };
15
19
  }, {
16
20
  readonly name: "limit";
17
21
  readonly required: false;
22
+ readonly schema: {
23
+ readonly type: "integer";
24
+ readonly minimum: 1;
25
+ readonly maximum: 100;
26
+ };
18
27
  }, {
19
28
  readonly name: "folder_id";
20
29
  readonly required: false;
30
+ readonly schema: {
31
+ readonly type: "string";
32
+ };
21
33
  }, {
22
34
  readonly name: "thread_id";
23
35
  readonly required: false;
36
+ readonly schema: {
37
+ readonly type: "string";
38
+ };
24
39
  }, {
25
40
  readonly name: "q";
26
41
  readonly required: false;
42
+ readonly schema: {
43
+ readonly type: "string";
44
+ };
27
45
  }, {
28
46
  readonly name: "from";
29
47
  readonly required: false;
48
+ readonly schema: {
49
+ readonly type: "string";
50
+ };
30
51
  }, {
31
52
  readonly name: "to";
32
53
  readonly required: false;
54
+ readonly schema: {
55
+ readonly type: "string";
56
+ };
33
57
  }, {
34
58
  readonly name: "cc";
35
59
  readonly required: false;
60
+ readonly schema: {
61
+ readonly type: "string";
62
+ };
36
63
  }, {
37
64
  readonly name: "bcc";
38
65
  readonly required: false;
66
+ readonly schema: {
67
+ readonly type: "string";
68
+ };
39
69
  }, {
40
70
  readonly name: "subject";
41
71
  readonly required: false;
72
+ readonly schema: {
73
+ readonly type: "string";
74
+ };
42
75
  }, {
43
76
  readonly name: "body";
44
77
  readonly required: false;
78
+ readonly schema: {
79
+ readonly type: "string";
80
+ };
45
81
  }, {
46
82
  readonly name: "header_name";
47
83
  readonly required: false;
84
+ readonly schema: {
85
+ readonly type: "string";
86
+ };
48
87
  }, {
49
88
  readonly name: "header_value";
50
89
  readonly required: false;
90
+ readonly schema: {
91
+ readonly type: "string";
92
+ };
51
93
  }, {
52
94
  readonly name: "min_size_bytes";
53
95
  readonly required: false;
96
+ readonly schema: {
97
+ readonly type: "integer";
98
+ readonly minimum: 0;
99
+ };
54
100
  }, {
55
101
  readonly name: "max_size_bytes";
56
102
  readonly required: false;
103
+ readonly schema: {
104
+ readonly type: "integer";
105
+ readonly minimum: 0;
106
+ };
57
107
  }, {
58
108
  readonly name: "keyword";
59
109
  readonly required: false;
110
+ readonly schema: {
111
+ readonly type: "string";
112
+ };
60
113
  }, {
61
114
  readonly name: "not_keyword";
62
115
  readonly required: false;
116
+ readonly schema: {
117
+ readonly type: "string";
118
+ };
63
119
  }, {
64
120
  readonly name: "after";
65
121
  readonly required: false;
122
+ readonly schema: {
123
+ readonly type: "string";
124
+ };
66
125
  }, {
67
126
  readonly name: "before";
68
127
  readonly required: false;
128
+ readonly schema: {
129
+ readonly type: "string";
130
+ };
69
131
  }, {
70
132
  readonly name: "has_attachment";
71
133
  readonly required: false;
134
+ readonly schema: {
135
+ readonly type: "boolean";
136
+ };
72
137
  }, {
73
138
  readonly name: "is_unread";
74
139
  readonly required: false;
140
+ readonly schema: {
141
+ readonly type: "boolean";
142
+ };
75
143
  }, {
76
144
  readonly name: "sort_by";
77
145
  readonly required: false;
146
+ readonly schema: {
147
+ readonly type: "string";
148
+ readonly enum: readonly ["received_at", "sent_at", "subject", "from", "to", "size_bytes"];
149
+ };
78
150
  }, {
79
151
  readonly name: "sort_direction";
80
152
  readonly required: false;
153
+ readonly schema: {
154
+ readonly type: "string";
155
+ readonly enum: readonly ["asc", "desc"];
156
+ };
157
+ }, {
158
+ readonly name: "mailbox_id";
159
+ readonly required: false;
160
+ readonly schema: {
161
+ readonly type: "string";
162
+ };
81
163
  }];
164
+ readonly responseKind: "json";
82
165
  readonly requestBodyRequired: false;
83
166
  readonly requiredKeyKind: "mailbox";
84
167
  readonly surface: "mailbox";
@@ -1 +1 @@
1
- {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../src/commands/mailbox/messages/list.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,gBAAgB;IAC/D,MAAM,CAAC,WAAW,0BAAqD;IACvE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAyC;CAC1D"}
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../src/commands/mailbox/messages/list.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAEjE,MAAM,CAAC,OAAO,OAAO,0BAA2B,SAAQ,gBAAgB;IACtE,MAAM,CAAC,WAAW,0BAA8C;IAChE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC;CACnD"}
@@ -1,6 +1,7 @@
1
- import { curatedOperations } from "../../../generated/operations.js";
1
+ // This file is generated by scripts/generate-cli.mjs
2
+ import { operations } from "../../../generated/operations.js";
2
3
  import { OperationCommand } from "../../../operation-command.js";
3
- export default class MailboxMessagesList extends OperationCommand {
4
- static description = curatedOperations.mailboxListMessages.description;
5
- static operation = curatedOperations.mailboxListMessages;
4
+ export default class MailboxListMessagesCommand extends OperationCommand {
5
+ static description = operations.mailboxListMessages.description;
6
+ static operation = operations.mailboxListMessages;
6
7
  }
@@ -0,0 +1,40 @@
1
+ import { OperationCommand } from "../../operation-command.js";
2
+ export default class MailboxQueryFolderChangesCommand extends OperationCommand {
3
+ static description: "Get folder query changes";
4
+ static operation: {
5
+ readonly bodyKind: "none";
6
+ readonly command: "mailbox:query-folder-changes";
7
+ readonly description: "Get folder query changes";
8
+ readonly headerParams: readonly [];
9
+ readonly method: "get";
10
+ readonly operationId: "mailboxQueryFolderChanges";
11
+ readonly path: "/mailbox/folders/query-changes";
12
+ readonly pathParams: readonly [];
13
+ readonly queryParams: readonly [{
14
+ readonly name: "since_query_state";
15
+ readonly required: false;
16
+ readonly schema: {
17
+ readonly type: "string";
18
+ };
19
+ }, {
20
+ readonly name: "limit";
21
+ readonly required: false;
22
+ readonly schema: {
23
+ readonly type: "integer";
24
+ readonly minimum: 1;
25
+ readonly maximum: 500;
26
+ };
27
+ }, {
28
+ readonly name: "mailbox_id";
29
+ readonly required: false;
30
+ readonly schema: {
31
+ readonly type: "string";
32
+ };
33
+ }];
34
+ readonly responseKind: "json";
35
+ readonly requestBodyRequired: false;
36
+ readonly requiredKeyKind: "mailbox";
37
+ readonly surface: "mailbox";
38
+ };
39
+ }
40
+ //# sourceMappingURL=query-folder-changes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"query-folder-changes.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/query-folder-changes.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,gCAAiC,SAAQ,gBAAgB;IAC5E,MAAM,CAAC,WAAW,6BAAoD;IACtE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAwC;CACzD"}
@@ -0,0 +1,7 @@
1
+ // This file is generated by scripts/generate-cli.mjs
2
+ import { operations } from "../../generated/operations.js";
3
+ import { OperationCommand } from "../../operation-command.js";
4
+ export default class MailboxQueryFolderChangesCommand extends OperationCommand {
5
+ static description = operations.mailboxQueryFolderChanges.description;
6
+ static operation = operations.mailboxQueryFolderChanges;
7
+ }
@@ -0,0 +1,176 @@
1
+ import { OperationCommand } from "../../operation-command.js";
2
+ export default class MailboxQueryMessageChangesCommand extends OperationCommand {
3
+ static description: "Get message query changes";
4
+ static operation: {
5
+ readonly bodyKind: "none";
6
+ readonly command: "mailbox:query-message-changes";
7
+ readonly description: "Get message query changes";
8
+ readonly headerParams: readonly [];
9
+ readonly method: "get";
10
+ readonly operationId: "mailboxQueryMessageChanges";
11
+ readonly path: "/mailbox/messages/query-changes";
12
+ readonly pathParams: readonly [];
13
+ readonly queryParams: readonly [{
14
+ readonly name: "since_query_state";
15
+ readonly required: false;
16
+ readonly schema: {
17
+ readonly type: "string";
18
+ };
19
+ }, {
20
+ readonly name: "limit";
21
+ readonly required: false;
22
+ readonly schema: {
23
+ readonly type: "integer";
24
+ readonly minimum: 1;
25
+ readonly maximum: 500;
26
+ };
27
+ }, {
28
+ readonly name: "up_to_id";
29
+ readonly required: false;
30
+ readonly schema: {
31
+ readonly type: "string";
32
+ };
33
+ }, {
34
+ readonly name: "calculate_total";
35
+ readonly required: false;
36
+ readonly schema: {
37
+ readonly type: "boolean";
38
+ };
39
+ }, {
40
+ readonly name: "folder_id";
41
+ readonly required: false;
42
+ readonly schema: {
43
+ readonly type: "string";
44
+ };
45
+ }, {
46
+ readonly name: "q";
47
+ readonly required: false;
48
+ readonly schema: {
49
+ readonly type: "string";
50
+ };
51
+ }, {
52
+ readonly name: "from";
53
+ readonly required: false;
54
+ readonly schema: {
55
+ readonly type: "string";
56
+ };
57
+ }, {
58
+ readonly name: "to";
59
+ readonly required: false;
60
+ readonly schema: {
61
+ readonly type: "string";
62
+ };
63
+ }, {
64
+ readonly name: "cc";
65
+ readonly required: false;
66
+ readonly schema: {
67
+ readonly type: "string";
68
+ };
69
+ }, {
70
+ readonly name: "bcc";
71
+ readonly required: false;
72
+ readonly schema: {
73
+ readonly type: "string";
74
+ };
75
+ }, {
76
+ readonly name: "subject";
77
+ readonly required: false;
78
+ readonly schema: {
79
+ readonly type: "string";
80
+ };
81
+ }, {
82
+ readonly name: "body";
83
+ readonly required: false;
84
+ readonly schema: {
85
+ readonly type: "string";
86
+ };
87
+ }, {
88
+ readonly name: "header_name";
89
+ readonly required: false;
90
+ readonly schema: {
91
+ readonly type: "string";
92
+ };
93
+ }, {
94
+ readonly name: "header_value";
95
+ readonly required: false;
96
+ readonly schema: {
97
+ readonly type: "string";
98
+ };
99
+ }, {
100
+ readonly name: "min_size_bytes";
101
+ readonly required: false;
102
+ readonly schema: {
103
+ readonly type: "integer";
104
+ readonly minimum: 0;
105
+ };
106
+ }, {
107
+ readonly name: "max_size_bytes";
108
+ readonly required: false;
109
+ readonly schema: {
110
+ readonly type: "integer";
111
+ readonly minimum: 0;
112
+ };
113
+ }, {
114
+ readonly name: "keyword";
115
+ readonly required: false;
116
+ readonly schema: {
117
+ readonly type: "string";
118
+ };
119
+ }, {
120
+ readonly name: "not_keyword";
121
+ readonly required: false;
122
+ readonly schema: {
123
+ readonly type: "string";
124
+ };
125
+ }, {
126
+ readonly name: "after";
127
+ readonly required: false;
128
+ readonly schema: {
129
+ readonly type: "string";
130
+ };
131
+ }, {
132
+ readonly name: "before";
133
+ readonly required: false;
134
+ readonly schema: {
135
+ readonly type: "string";
136
+ };
137
+ }, {
138
+ readonly name: "has_attachment";
139
+ readonly required: false;
140
+ readonly schema: {
141
+ readonly type: "boolean";
142
+ };
143
+ }, {
144
+ readonly name: "is_unread";
145
+ readonly required: false;
146
+ readonly schema: {
147
+ readonly type: "boolean";
148
+ };
149
+ }, {
150
+ readonly name: "sort_by";
151
+ readonly required: false;
152
+ readonly schema: {
153
+ readonly type: "string";
154
+ readonly enum: readonly ["received_at", "sent_at", "subject", "from", "to", "size_bytes"];
155
+ };
156
+ }, {
157
+ readonly name: "sort_direction";
158
+ readonly required: false;
159
+ readonly schema: {
160
+ readonly type: "string";
161
+ readonly enum: readonly ["asc", "desc"];
162
+ };
163
+ }, {
164
+ readonly name: "mailbox_id";
165
+ readonly required: false;
166
+ readonly schema: {
167
+ readonly type: "string";
168
+ };
169
+ }];
170
+ readonly responseKind: "json";
171
+ readonly requestBodyRequired: false;
172
+ readonly requiredKeyKind: "mailbox";
173
+ readonly surface: "mailbox";
174
+ };
175
+ }
176
+ //# sourceMappingURL=query-message-changes.d.ts.map