@sendmux/cli 1.0.0 → 1.1.0
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/LICENSE +21 -0
- package/README.md +73 -5
- package/dist/base-command.d.ts +4 -2
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +31 -4
- package/dist/commands/mailbox/batch-delete-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-delete-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-delete-messages.js +7 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-get-messages.js +7 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-update-messages.js +7 -0
- package/dist/commands/mailbox/count-messages.d.ts +142 -0
- package/dist/commands/mailbox/count-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/count-messages.js +7 -0
- package/dist/commands/mailbox/create-folder.d.ts +26 -0
- package/dist/commands/mailbox/create-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/create-folder.js +7 -0
- package/dist/commands/mailbox/delete-folder.d.ts +38 -0
- package/dist/commands/mailbox/delete-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-folder.js +7 -0
- package/dist/commands/mailbox/delete-message.d.ts +44 -0
- package/dist/commands/mailbox/delete-message.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-message.js +7 -0
- package/dist/commands/mailbox/folders/list.d.ts +17 -1
- package/dist/commands/mailbox/folders/list.d.ts.map +1 -1
- package/dist/commands/mailbox/folders/list.js +5 -4
- package/dist/commands/mailbox/get-changes.d.ts +82 -0
- package/dist/commands/mailbox/get-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-changes.js +7 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder-changes.js +7 -0
- package/dist/commands/mailbox/get-folder.d.ts +38 -0
- package/dist/commands/mailbox/get-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder.js +7 -0
- package/dist/commands/mailbox/get-identity.d.ts +26 -0
- package/dist/commands/mailbox/get-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/get-identity.js +7 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts +44 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/get-message-attachment.js +7 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-quota-changes.js +7 -0
- package/dist/commands/mailbox/get-session.d.ts +32 -0
- package/dist/commands/mailbox/get-session.d.ts.map +1 -0
- package/dist/commands/mailbox/get-session.js +7 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission-changes.js +7 -0
- package/dist/commands/mailbox/get-submission.d.ts +38 -0
- package/dist/commands/mailbox/get-submission.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission.js +7 -0
- package/dist/commands/mailbox/get-thread-content.d.ts +112 -0
- package/dist/commands/mailbox/get-thread-content.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread-content.js +7 -0
- package/dist/commands/mailbox/get-thread.d.ts +38 -0
- package/dist/commands/mailbox/get-thread.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread.js +7 -0
- package/dist/commands/mailbox/list-body.d.ts +53 -0
- package/dist/commands/mailbox/list-body.d.ts.map +1 -0
- package/dist/commands/mailbox/list-body.js +7 -0
- package/dist/commands/mailbox/list-content.d.ts +91 -0
- package/dist/commands/mailbox/list-content.d.ts.map +1 -0
- package/dist/commands/mailbox/list-content.js +7 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts +40 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts.map +1 -0
- package/dist/commands/mailbox/list-granted-mailboxes.js +7 -0
- package/dist/commands/mailbox/list-identities.d.ts +40 -0
- package/dist/commands/mailbox/list-identities.d.ts.map +1 -0
- package/dist/commands/mailbox/list-identities.js +7 -0
- package/dist/commands/mailbox/list-quotas.d.ts +80 -0
- package/dist/commands/mailbox/list-quotas.d.ts.map +1 -0
- package/dist/commands/mailbox/list-quotas.js +7 -0
- package/dist/commands/mailbox/list-submissions.d.ts +91 -0
- package/dist/commands/mailbox/list-submissions.d.ts.map +1 -0
- package/dist/commands/mailbox/list-submissions.js +7 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts +53 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/list-thread-messages.js +7 -0
- package/dist/commands/mailbox/list-threads.d.ts +89 -0
- package/dist/commands/mailbox/list-threads.d.ts.map +1 -0
- package/dist/commands/mailbox/list-threads.js +7 -0
- package/dist/commands/mailbox/list-usage.d.ts +32 -0
- package/dist/commands/mailbox/list-usage.d.ts.map +1 -0
- package/dist/commands/mailbox/list-usage.js +7 -0
- package/dist/commands/mailbox/me/get.d.ts +13 -2
- package/dist/commands/mailbox/me/get.d.ts.map +1 -1
- package/dist/commands/mailbox/me/get.js +5 -4
- package/dist/commands/mailbox/messages/get.d.ts +16 -2
- package/dist/commands/mailbox/messages/get.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/get.js +5 -4
- package/dist/commands/mailbox/messages/list.d.ts +84 -1
- package/dist/commands/mailbox/messages/list.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/list.js +5 -4
- package/dist/commands/mailbox/query-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/query-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-folder-changes.js +7 -0
- package/dist/commands/mailbox/query-message-changes.d.ts +176 -0
- package/dist/commands/mailbox/query-message-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-message-changes.js +7 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts +150 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts.map +1 -0
- package/dist/commands/mailbox/search-message-snippets.js +7 -0
- package/dist/commands/mailbox/send-message.d.ts +33 -0
- package/dist/commands/mailbox/send-message.d.ts.map +1 -0
- package/dist/commands/mailbox/send-message.js +7 -0
- package/dist/commands/mailbox/stream-events.d.ts +60 -0
- package/dist/commands/mailbox/stream-events.d.ts.map +1 -0
- package/dist/commands/mailbox/stream-events.js +7 -0
- package/dist/commands/mailbox/update-folder.d.ts +38 -0
- package/dist/commands/mailbox/update-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/update-folder.js +7 -0
- package/dist/commands/mailbox/update-identity.d.ts +26 -0
- package/dist/commands/mailbox/update-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/update-identity.js +7 -0
- package/dist/commands/mailbox/update-message.d.ts +38 -0
- package/dist/commands/mailbox/update-message.d.ts.map +1 -0
- package/dist/commands/mailbox/update-message.js +7 -0
- package/dist/commands/mailbox/upload-attachment.d.ts +32 -0
- package/dist/commands/mailbox/upload-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/upload-attachment.js +7 -0
- package/dist/commands/management/activate-provider.d.ts +33 -0
- package/dist/commands/management/activate-provider.d.ts.map +1 -0
- package/dist/commands/management/activate-provider.js +7 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts +26 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/check-mailbox-availability.d.ts +26 -0
- package/dist/commands/management/check-mailbox-availability.d.ts.map +1 -0
- package/dist/commands/management/check-mailbox-availability.js +7 -0
- package/dist/commands/management/create-domain.d.ts +27 -0
- package/dist/commands/management/create-domain.d.ts.map +1 -0
- package/dist/commands/management/create-domain.js +7 -0
- package/dist/commands/management/create-mailbox-key.d.ts +33 -0
- package/dist/commands/management/create-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox-key.js +7 -0
- package/dist/commands/management/create-mailbox.d.ts +27 -0
- package/dist/commands/management/create-mailbox.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox.js +7 -0
- package/dist/commands/management/create-provider.d.ts +27 -0
- package/dist/commands/management/create-provider.d.ts.map +1 -0
- package/dist/commands/management/create-provider.js +7 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts +27 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/create-webhook.d.ts +27 -0
- package/dist/commands/management/create-webhook.d.ts.map +1 -0
- package/dist/commands/management/create-webhook.js +7 -0
- package/dist/commands/management/deactivate-provider.d.ts +33 -0
- package/dist/commands/management/deactivate-provider.d.ts.map +1 -0
- package/dist/commands/management/deactivate-provider.js +7 -0
- package/dist/commands/management/delete-domain.d.ts +26 -0
- package/dist/commands/management/delete-domain.d.ts.map +1 -0
- package/dist/commands/management/delete-domain.js +7 -0
- package/dist/commands/management/delete-mailbox-key.d.ts +32 -0
- package/dist/commands/management/delete-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox-key.js +7 -0
- package/dist/commands/management/delete-mailbox.d.ts +26 -0
- package/dist/commands/management/delete-mailbox.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox.js +7 -0
- package/dist/commands/management/delete-provider.d.ts +26 -0
- package/dist/commands/management/delete-provider.d.ts.map +1 -0
- package/dist/commands/management/delete-provider.js +7 -0
- package/dist/commands/management/delete-webhook.d.ts +26 -0
- package/dist/commands/management/delete-webhook.d.ts.map +1 -0
- package/dist/commands/management/delete-webhook.js +7 -0
- package/dist/commands/management/domains/get.d.ts +9 -1
- package/dist/commands/management/domains/get.d.ts.map +1 -1
- package/dist/commands/management/domains/get.js +5 -4
- package/dist/commands/management/domains/list.d.ts +11 -1
- package/dist/commands/management/domains/list.d.ts.map +1 -1
- package/dist/commands/management/domains/list.js +5 -4
- package/dist/commands/management/get-delivery-payload.d.ts +32 -0
- package/dist/commands/management/get-delivery-payload.d.ts.map +1 -0
- package/dist/commands/management/get-delivery-payload.js +7 -0
- package/dist/commands/management/get-domain-filters.d.ts +32 -0
- package/dist/commands/management/get-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/get-domain-filters.js +7 -0
- package/dist/commands/management/get-domain-zone-file.d.ts +26 -0
- package/dist/commands/management/get-domain-zone-file.d.ts.map +1 -0
- package/dist/commands/management/get-domain-zone-file.js +7 -0
- package/dist/commands/management/get-email-log.d.ts +32 -0
- package/dist/commands/management/get-email-log.d.ts.map +1 -0
- package/dist/commands/management/get-email-log.js +7 -0
- package/dist/commands/management/get-email-metrics.d.ts +52 -0
- package/dist/commands/management/get-email-metrics.d.ts.map +1 -0
- package/dist/commands/management/get-email-metrics.js +7 -0
- package/dist/commands/management/get-inbox-log.d.ts +26 -0
- package/dist/commands/management/get-inbox-log.d.ts.map +1 -0
- package/dist/commands/management/get-inbox-log.js +7 -0
- package/dist/commands/management/get-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/get-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox-filters.js +7 -0
- package/dist/commands/management/get-mailbox.d.ts +32 -0
- package/dist/commands/management/get-mailbox.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox.js +7 -0
- package/dist/commands/management/get-provider-limits.d.ts +20 -0
- package/dist/commands/management/get-provider-limits.d.ts.map +1 -0
- package/dist/commands/management/get-provider-limits.js +7 -0
- package/dist/commands/management/get-provider-stats.d.ts +20 -0
- package/dist/commands/management/get-provider-stats.d.ts.map +1 -0
- package/dist/commands/management/get-provider-stats.js +7 -0
- package/dist/commands/management/get-provider-usage.d.ts +20 -0
- package/dist/commands/management/get-provider-usage.d.ts.map +1 -0
- package/dist/commands/management/get-provider-usage.js +7 -0
- package/dist/commands/management/get-provider.d.ts +32 -0
- package/dist/commands/management/get-provider.d.ts.map +1 -0
- package/dist/commands/management/get-provider.js +7 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts +20 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/get-spend-summary.d.ts +27 -0
- package/dist/commands/management/get-spend-summary.d.ts.map +1 -0
- package/dist/commands/management/get-spend-summary.js +7 -0
- package/dist/commands/management/get-webhook.d.ts +32 -0
- package/dist/commands/management/get-webhook.d.ts.map +1 -0
- package/dist/commands/management/get-webhook.js +7 -0
- package/dist/commands/management/list-balance.d.ts +20 -0
- package/dist/commands/management/list-balance.d.ts.map +1 -0
- package/dist/commands/management/list-balance.js +7 -0
- package/dist/commands/management/list-delivery.d.ts +54 -0
- package/dist/commands/management/list-delivery.d.ts.map +1 -0
- package/dist/commands/management/list-delivery.js +7 -0
- package/dist/commands/management/list-email-logs.d.ts +65 -0
- package/dist/commands/management/list-email-logs.d.ts.map +1 -0
- package/dist/commands/management/list-email-logs.js +7 -0
- package/dist/commands/management/list-inbox-logs.d.ts +65 -0
- package/dist/commands/management/list-inbox-logs.d.ts.map +1 -0
- package/dist/commands/management/list-inbox-logs.js +7 -0
- package/dist/commands/management/list-transactions.d.ts +41 -0
- package/dist/commands/management/list-transactions.d.ts.map +1 -0
- package/dist/commands/management/list-transactions.js +7 -0
- package/dist/commands/management/list-webhooks.d.ts +34 -0
- package/dist/commands/management/list-webhooks.d.ts.map +1 -0
- package/dist/commands/management/list-webhooks.js +7 -0
- package/dist/commands/management/mailboxes/list.d.ts +15 -1
- package/dist/commands/management/mailboxes/list.d.ts.map +1 -1
- package/dist/commands/management/mailboxes/list.js +5 -4
- package/dist/commands/management/providers/list.d.ts +19 -1
- package/dist/commands/management/providers/list.d.ts.map +1 -1
- package/dist/commands/management/providers/list.js +5 -4
- package/dist/commands/management/request-sending-account-limit-increase.d.ts +27 -0
- package/dist/commands/management/request-sending-account-limit-increase.d.ts.map +1 -0
- package/dist/commands/management/request-sending-account-limit-increase.js +7 -0
- package/dist/commands/management/resume-mailbox.d.ts +33 -0
- package/dist/commands/management/resume-mailbox.d.ts.map +1 -0
- package/dist/commands/management/resume-mailbox.js +7 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts +33 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts.map +1 -0
- package/dist/commands/management/rotate-webhook-secret.js +7 -0
- package/dist/commands/management/set-domain-filters.d.ts +32 -0
- package/dist/commands/management/set-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/set-domain-filters.js +7 -0
- package/dist/commands/management/set-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/set-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/set-mailbox-filters.js +7 -0
- package/dist/commands/management/suspend-mailbox.d.ts +33 -0
- package/dist/commands/management/suspend-mailbox.d.ts.map +1 -0
- package/dist/commands/management/suspend-mailbox.js +7 -0
- package/dist/commands/management/test-provider.d.ts +33 -0
- package/dist/commands/management/test-provider.d.ts.map +1 -0
- package/dist/commands/management/test-provider.js +7 -0
- package/dist/commands/management/test-webhook.d.ts +33 -0
- package/dist/commands/management/test-webhook.d.ts.map +1 -0
- package/dist/commands/management/test-webhook.js +7 -0
- package/dist/commands/management/update-domain.d.ts +32 -0
- package/dist/commands/management/update-domain.d.ts.map +1 -0
- package/dist/commands/management/update-domain.js +7 -0
- package/dist/commands/management/update-mailbox.d.ts +32 -0
- package/dist/commands/management/update-mailbox.d.ts.map +1 -0
- package/dist/commands/management/update-mailbox.js +7 -0
- package/dist/commands/management/update-provider.d.ts +32 -0
- package/dist/commands/management/update-provider.d.ts.map +1 -0
- package/dist/commands/management/update-provider.js +7 -0
- package/dist/commands/management/update-webhook.d.ts +32 -0
- package/dist/commands/management/update-webhook.d.ts.map +1 -0
- package/dist/commands/management/update-webhook.js +7 -0
- package/dist/commands/management/verify-domain.d.ts +26 -0
- package/dist/commands/management/verify-domain.d.ts.map +1 -0
- package/dist/commands/management/verify-domain.js +7 -0
- package/dist/commands/sending/get-open-api-spec.d.ts +26 -0
- package/dist/commands/sending/get-open-api-spec.d.ts.map +1 -0
- package/dist/commands/sending/get-open-api-spec.js +7 -0
- package/dist/commands/sending/send/batch.d.ts +8 -2
- package/dist/commands/sending/send/batch.d.ts.map +1 -1
- package/dist/commands/sending/send/batch.js +5 -4
- package/dist/commands/sending/send.d.ts +8 -2
- package/dist/commands/sending/send.d.ts.map +1 -1
- package/dist/commands/sending/send.js +5 -4
- package/dist/generated/operations.d.ts +1731 -25
- package/dist/generated/operations.d.ts.map +1 -1
- package/dist/generated/operations.js +2035 -316
- package/dist/key-kind.d.ts +3 -0
- package/dist/key-kind.d.ts.map +1 -1
- package/dist/key-kind.js +13 -1
- package/dist/operation-flags.d.ts +3 -3
- package/dist/operation-flags.d.ts.map +1 -1
- package/dist/operation-flags.js +132 -21
- package/dist/operation-runner.d.ts.map +1 -1
- package/dist/operation-runner.js +65 -7
- package/dist/operation-types.d.ts +21 -2
- package/dist/operation-types.d.ts.map +1 -1
- package/oclif.manifest.json +13569 -200
- package/package.json +3 -2
|
@@ -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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query-message-changes.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/query-message-changes.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,iCAAkC,SAAQ,gBAAgB;IAC7E,MAAM,CAAC,WAAW,8BAAqD;IACvE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAyC;CAC1D"}
|
|
@@ -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 MailboxQueryMessageChangesCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxQueryMessageChanges.description;
|
|
6
|
+
static operation = operations.mailboxQueryMessageChanges;
|
|
7
|
+
}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxSearchMessageSnippetsCommand extends OperationCommand {
|
|
3
|
+
static description: "Get message search snippets";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:search-message-snippets";
|
|
7
|
+
readonly description: "Get message search snippets";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "get";
|
|
10
|
+
readonly operationId: "mailboxSearchMessageSnippets";
|
|
11
|
+
readonly path: "/mailbox/messages/search-snippets";
|
|
12
|
+
readonly pathParams: readonly [];
|
|
13
|
+
readonly queryParams: readonly [{
|
|
14
|
+
readonly name: "folder_id";
|
|
15
|
+
readonly required: false;
|
|
16
|
+
readonly schema: {
|
|
17
|
+
readonly type: "string";
|
|
18
|
+
};
|
|
19
|
+
}, {
|
|
20
|
+
readonly name: "from";
|
|
21
|
+
readonly required: false;
|
|
22
|
+
readonly schema: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
};
|
|
25
|
+
}, {
|
|
26
|
+
readonly name: "to";
|
|
27
|
+
readonly required: false;
|
|
28
|
+
readonly schema: {
|
|
29
|
+
readonly type: "string";
|
|
30
|
+
};
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "cc";
|
|
33
|
+
readonly required: false;
|
|
34
|
+
readonly schema: {
|
|
35
|
+
readonly type: "string";
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
readonly name: "bcc";
|
|
39
|
+
readonly required: false;
|
|
40
|
+
readonly schema: {
|
|
41
|
+
readonly type: "string";
|
|
42
|
+
};
|
|
43
|
+
}, {
|
|
44
|
+
readonly name: "subject";
|
|
45
|
+
readonly required: false;
|
|
46
|
+
readonly schema: {
|
|
47
|
+
readonly type: "string";
|
|
48
|
+
};
|
|
49
|
+
}, {
|
|
50
|
+
readonly name: "body";
|
|
51
|
+
readonly required: false;
|
|
52
|
+
readonly schema: {
|
|
53
|
+
readonly type: "string";
|
|
54
|
+
};
|
|
55
|
+
}, {
|
|
56
|
+
readonly name: "header_name";
|
|
57
|
+
readonly required: false;
|
|
58
|
+
readonly schema: {
|
|
59
|
+
readonly type: "string";
|
|
60
|
+
};
|
|
61
|
+
}, {
|
|
62
|
+
readonly name: "header_value";
|
|
63
|
+
readonly required: false;
|
|
64
|
+
readonly schema: {
|
|
65
|
+
readonly type: "string";
|
|
66
|
+
};
|
|
67
|
+
}, {
|
|
68
|
+
readonly name: "min_size_bytes";
|
|
69
|
+
readonly required: false;
|
|
70
|
+
readonly schema: {
|
|
71
|
+
readonly type: "integer";
|
|
72
|
+
readonly minimum: 0;
|
|
73
|
+
};
|
|
74
|
+
}, {
|
|
75
|
+
readonly name: "max_size_bytes";
|
|
76
|
+
readonly required: false;
|
|
77
|
+
readonly schema: {
|
|
78
|
+
readonly type: "integer";
|
|
79
|
+
readonly minimum: 0;
|
|
80
|
+
};
|
|
81
|
+
}, {
|
|
82
|
+
readonly name: "keyword";
|
|
83
|
+
readonly required: false;
|
|
84
|
+
readonly schema: {
|
|
85
|
+
readonly type: "string";
|
|
86
|
+
};
|
|
87
|
+
}, {
|
|
88
|
+
readonly name: "not_keyword";
|
|
89
|
+
readonly required: false;
|
|
90
|
+
readonly schema: {
|
|
91
|
+
readonly type: "string";
|
|
92
|
+
};
|
|
93
|
+
}, {
|
|
94
|
+
readonly name: "after";
|
|
95
|
+
readonly required: false;
|
|
96
|
+
readonly schema: {
|
|
97
|
+
readonly type: "string";
|
|
98
|
+
};
|
|
99
|
+
}, {
|
|
100
|
+
readonly name: "before";
|
|
101
|
+
readonly required: false;
|
|
102
|
+
readonly schema: {
|
|
103
|
+
readonly type: "string";
|
|
104
|
+
};
|
|
105
|
+
}, {
|
|
106
|
+
readonly name: "has_attachment";
|
|
107
|
+
readonly required: false;
|
|
108
|
+
readonly schema: {
|
|
109
|
+
readonly type: "boolean";
|
|
110
|
+
};
|
|
111
|
+
}, {
|
|
112
|
+
readonly name: "is_unread";
|
|
113
|
+
readonly required: false;
|
|
114
|
+
readonly schema: {
|
|
115
|
+
readonly type: "boolean";
|
|
116
|
+
};
|
|
117
|
+
}, {
|
|
118
|
+
readonly name: "q";
|
|
119
|
+
readonly required: true;
|
|
120
|
+
readonly schema: {
|
|
121
|
+
readonly type: "string";
|
|
122
|
+
};
|
|
123
|
+
}, {
|
|
124
|
+
readonly name: "message_ids";
|
|
125
|
+
readonly required: false;
|
|
126
|
+
readonly schema: {
|
|
127
|
+
readonly type: "string";
|
|
128
|
+
};
|
|
129
|
+
}, {
|
|
130
|
+
readonly name: "limit";
|
|
131
|
+
readonly required: false;
|
|
132
|
+
readonly schema: {
|
|
133
|
+
readonly type: "integer";
|
|
134
|
+
readonly minimum: 1;
|
|
135
|
+
readonly maximum: 100;
|
|
136
|
+
};
|
|
137
|
+
}, {
|
|
138
|
+
readonly name: "mailbox_id";
|
|
139
|
+
readonly required: false;
|
|
140
|
+
readonly schema: {
|
|
141
|
+
readonly type: "string";
|
|
142
|
+
};
|
|
143
|
+
}];
|
|
144
|
+
readonly responseKind: "json";
|
|
145
|
+
readonly requestBodyRequired: false;
|
|
146
|
+
readonly requiredKeyKind: "mailbox";
|
|
147
|
+
readonly surface: "mailbox";
|
|
148
|
+
};
|
|
149
|
+
}
|
|
150
|
+
//# sourceMappingURL=search-message-snippets.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-message-snippets.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/search-message-snippets.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,mCAAoC,SAAQ,gBAAgB;IAC/E,MAAM,CAAC,WAAW,gCAAuD;IACzE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAA2C;CAC5D"}
|
|
@@ -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 MailboxSearchMessageSnippetsCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxSearchMessageSnippets.description;
|
|
6
|
+
static operation = operations.mailboxSearchMessageSnippets;
|
|
7
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxSendMessageCommand extends OperationCommand {
|
|
3
|
+
static description: "Send a mailbox message";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "mailbox:send-message";
|
|
7
|
+
readonly description: "Send a mailbox message";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "mailboxSendMessage";
|
|
18
|
+
readonly path: "/mailbox/messages/send";
|
|
19
|
+
readonly pathParams: readonly [];
|
|
20
|
+
readonly queryParams: readonly [{
|
|
21
|
+
readonly name: "mailbox_id";
|
|
22
|
+
readonly required: false;
|
|
23
|
+
readonly schema: {
|
|
24
|
+
readonly type: "string";
|
|
25
|
+
};
|
|
26
|
+
}];
|
|
27
|
+
readonly responseKind: "json";
|
|
28
|
+
readonly requestBodyRequired: false;
|
|
29
|
+
readonly requiredKeyKind: "mailbox";
|
|
30
|
+
readonly surface: "mailbox";
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=send-message.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"send-message.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/send-message.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,gBAAgB;IACrE,MAAM,CAAC,WAAW,2BAA6C;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 MailboxSendMessageCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxSendMessage.description;
|
|
6
|
+
static operation = operations.mailboxSendMessage;
|
|
7
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxStreamEventsCommand extends OperationCommand {
|
|
3
|
+
static description: "Stream mailbox events";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:stream-events";
|
|
7
|
+
readonly description: "Stream mailbox events";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Last-Event-ID";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
};
|
|
14
|
+
}];
|
|
15
|
+
readonly method: "get";
|
|
16
|
+
readonly operationId: "mailboxStreamEvents";
|
|
17
|
+
readonly path: "/mailbox/events";
|
|
18
|
+
readonly pathParams: readonly [];
|
|
19
|
+
readonly queryParams: readonly [{
|
|
20
|
+
readonly name: "event_types";
|
|
21
|
+
readonly required: false;
|
|
22
|
+
readonly schema: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
};
|
|
25
|
+
}, {
|
|
26
|
+
readonly name: "last_event_id";
|
|
27
|
+
readonly required: false;
|
|
28
|
+
readonly schema: {
|
|
29
|
+
readonly type: "string";
|
|
30
|
+
};
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "ping";
|
|
33
|
+
readonly required: false;
|
|
34
|
+
readonly schema: {
|
|
35
|
+
readonly type: "integer";
|
|
36
|
+
readonly minimum: 10;
|
|
37
|
+
readonly maximum: 300;
|
|
38
|
+
};
|
|
39
|
+
}, {
|
|
40
|
+
readonly name: "close_after";
|
|
41
|
+
readonly required: false;
|
|
42
|
+
readonly schema: {
|
|
43
|
+
readonly type: "integer";
|
|
44
|
+
readonly minimum: 30;
|
|
45
|
+
readonly maximum: 3600;
|
|
46
|
+
};
|
|
47
|
+
}, {
|
|
48
|
+
readonly name: "mailbox_id";
|
|
49
|
+
readonly required: false;
|
|
50
|
+
readonly schema: {
|
|
51
|
+
readonly type: "string";
|
|
52
|
+
};
|
|
53
|
+
}];
|
|
54
|
+
readonly responseKind: "json";
|
|
55
|
+
readonly requestBodyRequired: false;
|
|
56
|
+
readonly requiredKeyKind: "mailbox";
|
|
57
|
+
readonly surface: "mailbox";
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=stream-events.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stream-events.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/stream-events.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,0BAA2B,SAAQ,gBAAgB;IACtE,MAAM,CAAC,WAAW,0BAA8C;IAChE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC;CACnD"}
|
|
@@ -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 MailboxStreamEventsCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxStreamEvents.description;
|
|
6
|
+
static operation = operations.mailboxStreamEvents;
|
|
7
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxUpdateFolderCommand extends OperationCommand {
|
|
3
|
+
static description: "Update a mailbox folder";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "mailbox:update-folder";
|
|
7
|
+
readonly description: "Update a mailbox folder";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "If-Match";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
};
|
|
14
|
+
}];
|
|
15
|
+
readonly method: "patch";
|
|
16
|
+
readonly operationId: "mailboxUpdateFolder";
|
|
17
|
+
readonly path: "/mailbox/folders/{folder_id}";
|
|
18
|
+
readonly pathParams: readonly [{
|
|
19
|
+
readonly name: "folder_id";
|
|
20
|
+
readonly required: true;
|
|
21
|
+
readonly schema: {
|
|
22
|
+
readonly type: "string";
|
|
23
|
+
};
|
|
24
|
+
}];
|
|
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";
|
|
33
|
+
readonly requestBodyRequired: false;
|
|
34
|
+
readonly requiredKeyKind: "mailbox";
|
|
35
|
+
readonly surface: "mailbox";
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=update-folder.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-folder.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/update-folder.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,0BAA2B,SAAQ,gBAAgB;IACtE,MAAM,CAAC,WAAW,4BAA8C;IAChE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC;CACnD"}
|
|
@@ -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 MailboxUpdateFolderCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxUpdateFolder.description;
|
|
6
|
+
static operation = operations.mailboxUpdateFolder;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxUpdateIdentityCommand extends OperationCommand {
|
|
3
|
+
static description: "Update mailbox sender identity";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "mailbox:update-identity";
|
|
7
|
+
readonly description: "Update mailbox sender identity";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "patch";
|
|
10
|
+
readonly operationId: "mailboxUpdateIdentity";
|
|
11
|
+
readonly path: "/mailbox/identity";
|
|
12
|
+
readonly pathParams: readonly [];
|
|
13
|
+
readonly queryParams: readonly [{
|
|
14
|
+
readonly name: "mailbox_id";
|
|
15
|
+
readonly required: false;
|
|
16
|
+
readonly schema: {
|
|
17
|
+
readonly type: "string";
|
|
18
|
+
};
|
|
19
|
+
}];
|
|
20
|
+
readonly responseKind: "json";
|
|
21
|
+
readonly requestBodyRequired: false;
|
|
22
|
+
readonly requiredKeyKind: "mailbox";
|
|
23
|
+
readonly surface: "mailbox";
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=update-identity.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-identity.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/update-identity.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,4BAA6B,SAAQ,gBAAgB;IACxE,MAAM,CAAC,WAAW,mCAAgD;IAClE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;MAAoC;CACrD"}
|
|
@@ -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 MailboxUpdateIdentityCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxUpdateIdentity.description;
|
|
6
|
+
static operation = operations.mailboxUpdateIdentity;
|
|
7
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxUpdateMessageCommand extends OperationCommand {
|
|
3
|
+
static description: "Update mailbox message flags";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "mailbox:update-message";
|
|
7
|
+
readonly description: "Update mailbox message flags";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "If-Match";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
};
|
|
14
|
+
}];
|
|
15
|
+
readonly method: "patch";
|
|
16
|
+
readonly operationId: "mailboxUpdateMessage";
|
|
17
|
+
readonly path: "/mailbox/messages/{message_id}";
|
|
18
|
+
readonly pathParams: readonly [{
|
|
19
|
+
readonly name: "message_id";
|
|
20
|
+
readonly required: true;
|
|
21
|
+
readonly schema: {
|
|
22
|
+
readonly type: "string";
|
|
23
|
+
};
|
|
24
|
+
}];
|
|
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";
|
|
33
|
+
readonly requestBodyRequired: false;
|
|
34
|
+
readonly requiredKeyKind: "mailbox";
|
|
35
|
+
readonly surface: "mailbox";
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=update-message.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-message.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/update-message.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,2BAA4B,SAAQ,gBAAgB;IACvE,MAAM,CAAC,WAAW,iCAA+C;IACjE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAmC;CACpD"}
|
|
@@ -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 MailboxUpdateMessageCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxUpdateMessage.description;
|
|
6
|
+
static operation = operations.mailboxUpdateMessage;
|
|
7
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxUploadAttachmentCommand extends OperationCommand {
|
|
3
|
+
static description: "Upload a mailbox attachment";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "binary";
|
|
6
|
+
readonly command: "mailbox:upload-attachment";
|
|
7
|
+
readonly description: "Upload a mailbox attachment";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "post";
|
|
10
|
+
readonly operationId: "mailboxUploadAttachment";
|
|
11
|
+
readonly path: "/mailbox/attachments:upload";
|
|
12
|
+
readonly pathParams: readonly [];
|
|
13
|
+
readonly queryParams: readonly [{
|
|
14
|
+
readonly name: "filename";
|
|
15
|
+
readonly required: true;
|
|
16
|
+
readonly schema: {
|
|
17
|
+
readonly type: "string";
|
|
18
|
+
};
|
|
19
|
+
}, {
|
|
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=upload-attachment.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"upload-attachment.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/upload-attachment.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,8BAA+B,SAAQ,gBAAgB;IAC1E,MAAM,CAAC,WAAW,gCAAkD;IACpE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;MAAsC;CACvD"}
|
|
@@ -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 MailboxUploadAttachmentCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxUploadAttachment.description;
|
|
6
|
+
static operation = operations.mailboxUploadAttachment;
|
|
7
|
+
}
|