@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.
- package/LICENSE +21 -0
- package/README.md +72 -5
- package/dist/base-command.d.ts +2 -0
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +27 -0
- 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/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 +1710 -25
- package/dist/generated/operations.d.ts.map +1 -1
- package/dist/generated/operations.js +2012 -316
- 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 +19 -0
- package/dist/operation-types.d.ts.map +1 -1
- package/oclif.manifest.json +13474 -238
- package/package.json +2 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxGetThreadCommand extends OperationCommand {
|
|
3
|
+
static description: "Get a mailbox thread";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:get-thread";
|
|
7
|
+
readonly description: "Get a mailbox thread";
|
|
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: "mailboxGetThread";
|
|
17
|
+
readonly path: "/mailbox/threads/{thread_id}";
|
|
18
|
+
readonly pathParams: readonly [{
|
|
19
|
+
readonly name: "thread_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=get-thread.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-thread.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/get-thread.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,gBAAgB;IACnE,MAAM,CAAC,WAAW,yBAA2C;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 MailboxGetThreadCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxGetThread.description;
|
|
6
|
+
static operation = operations.mailboxGetThread;
|
|
7
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxListBodyCommand extends OperationCommand {
|
|
3
|
+
static description: "Get raw message body";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:list-body";
|
|
7
|
+
readonly description: "Get raw message body";
|
|
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: "mailboxListBody";
|
|
17
|
+
readonly path: "/mailbox/messages/{message_id}/body";
|
|
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: "part";
|
|
27
|
+
readonly required: false;
|
|
28
|
+
readonly schema: {
|
|
29
|
+
readonly type: "string";
|
|
30
|
+
readonly enum: readonly ["text", "html", "both"];
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
readonly name: "max_body_chars";
|
|
34
|
+
readonly required: false;
|
|
35
|
+
readonly schema: {
|
|
36
|
+
readonly type: "integer";
|
|
37
|
+
readonly minimum: 1;
|
|
38
|
+
readonly maximum: 1000000;
|
|
39
|
+
};
|
|
40
|
+
}, {
|
|
41
|
+
readonly name: "mailbox_id";
|
|
42
|
+
readonly required: false;
|
|
43
|
+
readonly schema: {
|
|
44
|
+
readonly type: "string";
|
|
45
|
+
};
|
|
46
|
+
}];
|
|
47
|
+
readonly responseKind: "json";
|
|
48
|
+
readonly requestBodyRequired: false;
|
|
49
|
+
readonly requiredKeyKind: "mailbox";
|
|
50
|
+
readonly surface: "mailbox";
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=list-body.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-body.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-body.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,sBAAuB,SAAQ,gBAAgB;IAClE,MAAM,CAAC,WAAW,yBAA0C;IAC5D,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAA8B;CAC/C"}
|
|
@@ -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 MailboxListBodyCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxListBody.description;
|
|
6
|
+
static operation = operations.mailboxListBody;
|
|
7
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxListContentCommand extends OperationCommand {
|
|
3
|
+
static description: "Get clean message content";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:list-content";
|
|
7
|
+
readonly description: "Get clean message content";
|
|
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: "mailboxListContent";
|
|
17
|
+
readonly path: "/mailbox/messages/{message_id}/content";
|
|
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: "part";
|
|
27
|
+
readonly required: false;
|
|
28
|
+
readonly schema: {
|
|
29
|
+
readonly type: "string";
|
|
30
|
+
readonly enum: readonly ["auto", "text", "html"];
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
readonly name: "max_body_chars";
|
|
34
|
+
readonly required: false;
|
|
35
|
+
readonly schema: {
|
|
36
|
+
readonly type: "integer";
|
|
37
|
+
readonly minimum: 1;
|
|
38
|
+
readonly maximum: 1000000;
|
|
39
|
+
};
|
|
40
|
+
}, {
|
|
41
|
+
readonly name: "strip_signature";
|
|
42
|
+
readonly required: false;
|
|
43
|
+
readonly schema: {
|
|
44
|
+
readonly type: "boolean";
|
|
45
|
+
};
|
|
46
|
+
}, {
|
|
47
|
+
readonly name: "strip_quotes";
|
|
48
|
+
readonly required: false;
|
|
49
|
+
readonly schema: {
|
|
50
|
+
readonly type: "boolean";
|
|
51
|
+
};
|
|
52
|
+
}, {
|
|
53
|
+
readonly name: "include_links";
|
|
54
|
+
readonly required: false;
|
|
55
|
+
readonly schema: {
|
|
56
|
+
readonly type: "boolean";
|
|
57
|
+
};
|
|
58
|
+
}, {
|
|
59
|
+
readonly name: "include_html";
|
|
60
|
+
readonly required: false;
|
|
61
|
+
readonly schema: {
|
|
62
|
+
readonly type: "boolean";
|
|
63
|
+
};
|
|
64
|
+
}, {
|
|
65
|
+
readonly name: "include_headers";
|
|
66
|
+
readonly required: false;
|
|
67
|
+
readonly schema: {
|
|
68
|
+
readonly type: "string";
|
|
69
|
+
readonly enum: readonly ["none", "selected", "full"];
|
|
70
|
+
};
|
|
71
|
+
}, {
|
|
72
|
+
readonly name: "include_attachments";
|
|
73
|
+
readonly required: false;
|
|
74
|
+
readonly schema: {
|
|
75
|
+
readonly type: "string";
|
|
76
|
+
readonly enum: readonly ["none", "metadata"];
|
|
77
|
+
};
|
|
78
|
+
}, {
|
|
79
|
+
readonly name: "mailbox_id";
|
|
80
|
+
readonly required: false;
|
|
81
|
+
readonly schema: {
|
|
82
|
+
readonly type: "string";
|
|
83
|
+
};
|
|
84
|
+
}];
|
|
85
|
+
readonly responseKind: "json";
|
|
86
|
+
readonly requestBodyRequired: false;
|
|
87
|
+
readonly requiredKeyKind: "mailbox";
|
|
88
|
+
readonly surface: "mailbox";
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
//# sourceMappingURL=list-content.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-content.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-content.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,gBAAgB;IACrE,MAAM,CAAC,WAAW,8BAA6C;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 MailboxListContentCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxListContent.description;
|
|
6
|
+
static operation = operations.mailboxListContent;
|
|
7
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxListGrantedMailboxesCommand extends OperationCommand {
|
|
3
|
+
static description: "List granted mailboxes";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:list-granted-mailboxes";
|
|
7
|
+
readonly description: "List granted mailboxes";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "get";
|
|
10
|
+
readonly operationId: "mailboxListGrantedMailboxes";
|
|
11
|
+
readonly path: "/mailbox/mailboxes";
|
|
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 responseKind: "json";
|
|
35
|
+
readonly requestBodyRequired: false;
|
|
36
|
+
readonly requiredKeyKind: "mailbox";
|
|
37
|
+
readonly surface: "mailbox";
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=list-granted-mailboxes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-granted-mailboxes.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-granted-mailboxes.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,kCAAmC,SAAQ,gBAAgB;IAC9E,MAAM,CAAC,WAAW,2BAAsD;IACxE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAA0C;CAC3D"}
|
|
@@ -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 MailboxListGrantedMailboxesCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxListGrantedMailboxes.description;
|
|
6
|
+
static operation = operations.mailboxListGrantedMailboxes;
|
|
7
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxListIdentitiesCommand extends OperationCommand {
|
|
3
|
+
static description: "List mailbox sender identities";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:list-identities";
|
|
7
|
+
readonly description: "List mailbox sender identities";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "get";
|
|
10
|
+
readonly operationId: "mailboxListIdentities";
|
|
11
|
+
readonly path: "/mailbox/identities";
|
|
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: "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=list-identities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-identities.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-identities.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 MailboxListIdentitiesCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxListIdentities.description;
|
|
6
|
+
static operation = operations.mailboxListIdentities;
|
|
7
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxListQuotasCommand extends OperationCommand {
|
|
3
|
+
static description: "List mailbox quotas";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:list-quotas";
|
|
7
|
+
readonly description: "List mailbox quotas";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "get";
|
|
10
|
+
readonly operationId: "mailboxListQuotas";
|
|
11
|
+
readonly path: "/mailbox/quotas";
|
|
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: "name";
|
|
29
|
+
readonly required: false;
|
|
30
|
+
readonly schema: {
|
|
31
|
+
readonly type: "string";
|
|
32
|
+
};
|
|
33
|
+
}, {
|
|
34
|
+
readonly name: "scope";
|
|
35
|
+
readonly required: false;
|
|
36
|
+
readonly schema: {
|
|
37
|
+
readonly type: "string";
|
|
38
|
+
readonly enum: readonly ["account", "domain", "global"];
|
|
39
|
+
};
|
|
40
|
+
}, {
|
|
41
|
+
readonly name: "resource_type";
|
|
42
|
+
readonly required: false;
|
|
43
|
+
readonly schema: {
|
|
44
|
+
readonly type: "string";
|
|
45
|
+
readonly enum: readonly ["count", "octets"];
|
|
46
|
+
};
|
|
47
|
+
}, {
|
|
48
|
+
readonly name: "type";
|
|
49
|
+
readonly required: false;
|
|
50
|
+
readonly schema: {
|
|
51
|
+
readonly type: "string";
|
|
52
|
+
};
|
|
53
|
+
}, {
|
|
54
|
+
readonly name: "sort_by";
|
|
55
|
+
readonly required: false;
|
|
56
|
+
readonly schema: {
|
|
57
|
+
readonly type: "string";
|
|
58
|
+
readonly enum: readonly ["name", "used"];
|
|
59
|
+
};
|
|
60
|
+
}, {
|
|
61
|
+
readonly name: "sort_direction";
|
|
62
|
+
readonly required: false;
|
|
63
|
+
readonly schema: {
|
|
64
|
+
readonly type: "string";
|
|
65
|
+
readonly enum: readonly ["asc", "desc"];
|
|
66
|
+
};
|
|
67
|
+
}, {
|
|
68
|
+
readonly name: "mailbox_id";
|
|
69
|
+
readonly required: false;
|
|
70
|
+
readonly schema: {
|
|
71
|
+
readonly type: "string";
|
|
72
|
+
};
|
|
73
|
+
}];
|
|
74
|
+
readonly responseKind: "json";
|
|
75
|
+
readonly requestBodyRequired: false;
|
|
76
|
+
readonly requiredKeyKind: "mailbox";
|
|
77
|
+
readonly surface: "mailbox";
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
//# sourceMappingURL=list-quotas.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-quotas.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-quotas.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,gBAAgB;IACpE,MAAM,CAAC,WAAW,wBAA4C;IAC9D,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAgC;CACjD"}
|
|
@@ -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 MailboxListQuotasCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxListQuotas.description;
|
|
6
|
+
static operation = operations.mailboxListQuotas;
|
|
7
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxListSubmissionsCommand extends OperationCommand {
|
|
3
|
+
static description: "List mailbox submissions";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:list-submissions";
|
|
7
|
+
readonly description: "List mailbox submissions";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "get";
|
|
10
|
+
readonly operationId: "mailboxListSubmissions";
|
|
11
|
+
readonly path: "/mailbox/submissions";
|
|
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: "identity_ids";
|
|
29
|
+
readonly required: false;
|
|
30
|
+
readonly schema: {
|
|
31
|
+
readonly type: "string";
|
|
32
|
+
};
|
|
33
|
+
}, {
|
|
34
|
+
readonly name: "email_ids";
|
|
35
|
+
readonly required: false;
|
|
36
|
+
readonly schema: {
|
|
37
|
+
readonly type: "string";
|
|
38
|
+
};
|
|
39
|
+
}, {
|
|
40
|
+
readonly name: "thread_ids";
|
|
41
|
+
readonly required: false;
|
|
42
|
+
readonly schema: {
|
|
43
|
+
readonly type: "string";
|
|
44
|
+
};
|
|
45
|
+
}, {
|
|
46
|
+
readonly name: "undo_status";
|
|
47
|
+
readonly required: false;
|
|
48
|
+
readonly schema: {
|
|
49
|
+
readonly type: "string";
|
|
50
|
+
readonly enum: readonly ["pending", "final", "canceled"];
|
|
51
|
+
};
|
|
52
|
+
}, {
|
|
53
|
+
readonly name: "after";
|
|
54
|
+
readonly required: false;
|
|
55
|
+
readonly schema: {
|
|
56
|
+
readonly type: "string";
|
|
57
|
+
};
|
|
58
|
+
}, {
|
|
59
|
+
readonly name: "before";
|
|
60
|
+
readonly required: false;
|
|
61
|
+
readonly schema: {
|
|
62
|
+
readonly type: "string";
|
|
63
|
+
};
|
|
64
|
+
}, {
|
|
65
|
+
readonly name: "sort_by";
|
|
66
|
+
readonly required: false;
|
|
67
|
+
readonly schema: {
|
|
68
|
+
readonly type: "string";
|
|
69
|
+
readonly enum: readonly ["send_at", "email_id", "thread_id"];
|
|
70
|
+
};
|
|
71
|
+
}, {
|
|
72
|
+
readonly name: "sort_direction";
|
|
73
|
+
readonly required: false;
|
|
74
|
+
readonly schema: {
|
|
75
|
+
readonly type: "string";
|
|
76
|
+
readonly enum: readonly ["asc", "desc"];
|
|
77
|
+
};
|
|
78
|
+
}, {
|
|
79
|
+
readonly name: "mailbox_id";
|
|
80
|
+
readonly required: false;
|
|
81
|
+
readonly schema: {
|
|
82
|
+
readonly type: "string";
|
|
83
|
+
};
|
|
84
|
+
}];
|
|
85
|
+
readonly responseKind: "json";
|
|
86
|
+
readonly requestBodyRequired: false;
|
|
87
|
+
readonly requiredKeyKind: "mailbox";
|
|
88
|
+
readonly surface: "mailbox";
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
//# sourceMappingURL=list-submissions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-submissions.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-submissions.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,6BAA8B,SAAQ,gBAAgB;IACzE,MAAM,CAAC,WAAW,6BAAiD;IACnE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAqC;CACtD"}
|
|
@@ -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 MailboxListSubmissionsCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxListSubmissions.description;
|
|
6
|
+
static operation = operations.mailboxListSubmissions;
|
|
7
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class MailboxListThreadMessagesCommand extends OperationCommand {
|
|
3
|
+
static description: "List thread messages";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "mailbox:list-thread-messages";
|
|
7
|
+
readonly description: "List thread messages";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "get";
|
|
10
|
+
readonly operationId: "mailboxListThreadMessages";
|
|
11
|
+
readonly path: "/mailbox/threads/{thread_id}/messages";
|
|
12
|
+
readonly pathParams: readonly [{
|
|
13
|
+
readonly name: "thread_id";
|
|
14
|
+
readonly required: true;
|
|
15
|
+
readonly schema: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
};
|
|
18
|
+
}];
|
|
19
|
+
readonly queryParams: readonly [{
|
|
20
|
+
readonly name: "cursor";
|
|
21
|
+
readonly required: false;
|
|
22
|
+
readonly schema: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
};
|
|
25
|
+
}, {
|
|
26
|
+
readonly name: "limit";
|
|
27
|
+
readonly required: false;
|
|
28
|
+
readonly schema: {
|
|
29
|
+
readonly type: "integer";
|
|
30
|
+
readonly minimum: 1;
|
|
31
|
+
readonly maximum: 100;
|
|
32
|
+
};
|
|
33
|
+
}, {
|
|
34
|
+
readonly name: "sort";
|
|
35
|
+
readonly required: false;
|
|
36
|
+
readonly schema: {
|
|
37
|
+
readonly type: "string";
|
|
38
|
+
readonly enum: readonly ["asc", "desc"];
|
|
39
|
+
};
|
|
40
|
+
}, {
|
|
41
|
+
readonly name: "mailbox_id";
|
|
42
|
+
readonly required: false;
|
|
43
|
+
readonly schema: {
|
|
44
|
+
readonly type: "string";
|
|
45
|
+
};
|
|
46
|
+
}];
|
|
47
|
+
readonly responseKind: "json";
|
|
48
|
+
readonly requestBodyRequired: false;
|
|
49
|
+
readonly requiredKeyKind: "mailbox";
|
|
50
|
+
readonly surface: "mailbox";
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=list-thread-messages.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-thread-messages.d.ts","sourceRoot":"","sources":["../../../src/commands/mailbox/list-thread-messages.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,gCAAiC,SAAQ,gBAAgB;IAC5E,MAAM,CAAC,WAAW,yBAAoD;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 MailboxListThreadMessagesCommand extends OperationCommand {
|
|
5
|
+
static description = operations.mailboxListThreadMessages.description;
|
|
6
|
+
static operation = operations.mailboxListThreadMessages;
|
|
7
|
+
}
|