@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
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const operations: {
|
|
2
2
|
readonly mailboxBatchDeleteMessages: {
|
|
3
|
+
readonly bodyKind: "json";
|
|
3
4
|
readonly command: "mailbox:batch-delete-messages";
|
|
4
5
|
readonly description: "Batch delete mailbox messages";
|
|
5
6
|
readonly headerParams: readonly [];
|
|
@@ -7,12 +8,20 @@ export declare const operations: {
|
|
|
7
8
|
readonly operationId: "mailboxBatchDeleteMessages";
|
|
8
9
|
readonly path: "/mailbox/messages:batch-delete";
|
|
9
10
|
readonly pathParams: readonly [];
|
|
10
|
-
readonly queryParams: readonly [
|
|
11
|
+
readonly queryParams: readonly [{
|
|
12
|
+
readonly name: "mailbox_id";
|
|
13
|
+
readonly required: false;
|
|
14
|
+
readonly schema: {
|
|
15
|
+
readonly type: "string";
|
|
16
|
+
};
|
|
17
|
+
}];
|
|
18
|
+
readonly responseKind: "json";
|
|
11
19
|
readonly requestBodyRequired: false;
|
|
12
20
|
readonly requiredKeyKind: "mailbox";
|
|
13
21
|
readonly surface: "mailbox";
|
|
14
22
|
};
|
|
15
23
|
readonly mailboxBatchGetMessages: {
|
|
24
|
+
readonly bodyKind: "json";
|
|
16
25
|
readonly command: "mailbox:batch-get-messages";
|
|
17
26
|
readonly description: "Batch get mailbox messages";
|
|
18
27
|
readonly headerParams: readonly [];
|
|
@@ -20,12 +29,20 @@ export declare const operations: {
|
|
|
20
29
|
readonly operationId: "mailboxBatchGetMessages";
|
|
21
30
|
readonly path: "/mailbox/messages:batch-get";
|
|
22
31
|
readonly pathParams: readonly [];
|
|
23
|
-
readonly queryParams: readonly [
|
|
32
|
+
readonly queryParams: readonly [{
|
|
33
|
+
readonly name: "mailbox_id";
|
|
34
|
+
readonly required: false;
|
|
35
|
+
readonly schema: {
|
|
36
|
+
readonly type: "string";
|
|
37
|
+
};
|
|
38
|
+
}];
|
|
39
|
+
readonly responseKind: "json";
|
|
24
40
|
readonly requestBodyRequired: false;
|
|
25
41
|
readonly requiredKeyKind: "mailbox";
|
|
26
42
|
readonly surface: "mailbox";
|
|
27
43
|
};
|
|
28
44
|
readonly mailboxBatchUpdateMessages: {
|
|
45
|
+
readonly bodyKind: "json";
|
|
29
46
|
readonly command: "mailbox:batch-update-messages";
|
|
30
47
|
readonly description: "Batch update mailbox messages";
|
|
31
48
|
readonly headerParams: readonly [];
|
|
@@ -33,12 +50,20 @@ export declare const operations: {
|
|
|
33
50
|
readonly operationId: "mailboxBatchUpdateMessages";
|
|
34
51
|
readonly path: "/mailbox/messages:batch-update";
|
|
35
52
|
readonly pathParams: readonly [];
|
|
36
|
-
readonly queryParams: readonly [
|
|
53
|
+
readonly queryParams: readonly [{
|
|
54
|
+
readonly name: "mailbox_id";
|
|
55
|
+
readonly required: false;
|
|
56
|
+
readonly schema: {
|
|
57
|
+
readonly type: "string";
|
|
58
|
+
};
|
|
59
|
+
}];
|
|
60
|
+
readonly responseKind: "json";
|
|
37
61
|
readonly requestBodyRequired: false;
|
|
38
62
|
readonly requiredKeyKind: "mailbox";
|
|
39
63
|
readonly surface: "mailbox";
|
|
40
64
|
};
|
|
41
65
|
readonly mailboxCountMessages: {
|
|
66
|
+
readonly bodyKind: "none";
|
|
42
67
|
readonly command: "mailbox:count-messages";
|
|
43
68
|
readonly description: "Count mailbox messages";
|
|
44
69
|
readonly headerParams: readonly [];
|
|
@@ -49,66 +74,133 @@ export declare const operations: {
|
|
|
49
74
|
readonly queryParams: readonly [{
|
|
50
75
|
readonly name: "folder_id";
|
|
51
76
|
readonly required: false;
|
|
77
|
+
readonly schema: {
|
|
78
|
+
readonly type: "string";
|
|
79
|
+
};
|
|
52
80
|
}, {
|
|
53
81
|
readonly name: "thread_id";
|
|
54
82
|
readonly required: false;
|
|
83
|
+
readonly schema: {
|
|
84
|
+
readonly type: "string";
|
|
85
|
+
};
|
|
55
86
|
}, {
|
|
56
87
|
readonly name: "q";
|
|
57
88
|
readonly required: false;
|
|
89
|
+
readonly schema: {
|
|
90
|
+
readonly type: "string";
|
|
91
|
+
};
|
|
58
92
|
}, {
|
|
59
93
|
readonly name: "from";
|
|
60
94
|
readonly required: false;
|
|
95
|
+
readonly schema: {
|
|
96
|
+
readonly type: "string";
|
|
97
|
+
};
|
|
61
98
|
}, {
|
|
62
99
|
readonly name: "to";
|
|
63
100
|
readonly required: false;
|
|
101
|
+
readonly schema: {
|
|
102
|
+
readonly type: "string";
|
|
103
|
+
};
|
|
64
104
|
}, {
|
|
65
105
|
readonly name: "cc";
|
|
66
106
|
readonly required: false;
|
|
107
|
+
readonly schema: {
|
|
108
|
+
readonly type: "string";
|
|
109
|
+
};
|
|
67
110
|
}, {
|
|
68
111
|
readonly name: "bcc";
|
|
69
112
|
readonly required: false;
|
|
113
|
+
readonly schema: {
|
|
114
|
+
readonly type: "string";
|
|
115
|
+
};
|
|
70
116
|
}, {
|
|
71
117
|
readonly name: "subject";
|
|
72
118
|
readonly required: false;
|
|
119
|
+
readonly schema: {
|
|
120
|
+
readonly type: "string";
|
|
121
|
+
};
|
|
73
122
|
}, {
|
|
74
123
|
readonly name: "body";
|
|
75
124
|
readonly required: false;
|
|
125
|
+
readonly schema: {
|
|
126
|
+
readonly type: "string";
|
|
127
|
+
};
|
|
76
128
|
}, {
|
|
77
129
|
readonly name: "header_name";
|
|
78
130
|
readonly required: false;
|
|
131
|
+
readonly schema: {
|
|
132
|
+
readonly type: "string";
|
|
133
|
+
};
|
|
79
134
|
}, {
|
|
80
135
|
readonly name: "header_value";
|
|
81
136
|
readonly required: false;
|
|
137
|
+
readonly schema: {
|
|
138
|
+
readonly type: "string";
|
|
139
|
+
};
|
|
82
140
|
}, {
|
|
83
141
|
readonly name: "min_size_bytes";
|
|
84
142
|
readonly required: false;
|
|
143
|
+
readonly schema: {
|
|
144
|
+
readonly type: "integer";
|
|
145
|
+
readonly minimum: 0;
|
|
146
|
+
};
|
|
85
147
|
}, {
|
|
86
148
|
readonly name: "max_size_bytes";
|
|
87
149
|
readonly required: false;
|
|
150
|
+
readonly schema: {
|
|
151
|
+
readonly type: "integer";
|
|
152
|
+
readonly minimum: 0;
|
|
153
|
+
};
|
|
88
154
|
}, {
|
|
89
155
|
readonly name: "keyword";
|
|
90
156
|
readonly required: false;
|
|
157
|
+
readonly schema: {
|
|
158
|
+
readonly type: "string";
|
|
159
|
+
};
|
|
91
160
|
}, {
|
|
92
161
|
readonly name: "not_keyword";
|
|
93
162
|
readonly required: false;
|
|
163
|
+
readonly schema: {
|
|
164
|
+
readonly type: "string";
|
|
165
|
+
};
|
|
94
166
|
}, {
|
|
95
167
|
readonly name: "after";
|
|
96
168
|
readonly required: false;
|
|
169
|
+
readonly schema: {
|
|
170
|
+
readonly type: "string";
|
|
171
|
+
};
|
|
97
172
|
}, {
|
|
98
173
|
readonly name: "before";
|
|
99
174
|
readonly required: false;
|
|
175
|
+
readonly schema: {
|
|
176
|
+
readonly type: "string";
|
|
177
|
+
};
|
|
100
178
|
}, {
|
|
101
179
|
readonly name: "has_attachment";
|
|
102
180
|
readonly required: false;
|
|
181
|
+
readonly schema: {
|
|
182
|
+
readonly type: "boolean";
|
|
183
|
+
};
|
|
103
184
|
}, {
|
|
104
185
|
readonly name: "is_unread";
|
|
105
186
|
readonly required: false;
|
|
187
|
+
readonly schema: {
|
|
188
|
+
readonly type: "boolean";
|
|
189
|
+
};
|
|
190
|
+
}, {
|
|
191
|
+
readonly name: "mailbox_id";
|
|
192
|
+
readonly required: false;
|
|
193
|
+
readonly schema: {
|
|
194
|
+
readonly type: "string";
|
|
195
|
+
};
|
|
106
196
|
}];
|
|
197
|
+
readonly responseKind: "json";
|
|
107
198
|
readonly requestBodyRequired: false;
|
|
108
199
|
readonly requiredKeyKind: "mailbox";
|
|
109
200
|
readonly surface: "mailbox";
|
|
110
201
|
};
|
|
111
202
|
readonly mailboxCreateFolder: {
|
|
203
|
+
readonly bodyKind: "json";
|
|
112
204
|
readonly command: "mailbox:create-folder";
|
|
113
205
|
readonly description: "Create a mailbox folder";
|
|
114
206
|
readonly headerParams: readonly [];
|
|
@@ -116,17 +208,28 @@ export declare const operations: {
|
|
|
116
208
|
readonly operationId: "mailboxCreateFolder";
|
|
117
209
|
readonly path: "/mailbox/folders";
|
|
118
210
|
readonly pathParams: readonly [];
|
|
119
|
-
readonly queryParams: readonly [
|
|
211
|
+
readonly queryParams: readonly [{
|
|
212
|
+
readonly name: "mailbox_id";
|
|
213
|
+
readonly required: false;
|
|
214
|
+
readonly schema: {
|
|
215
|
+
readonly type: "string";
|
|
216
|
+
};
|
|
217
|
+
}];
|
|
218
|
+
readonly responseKind: "json";
|
|
120
219
|
readonly requestBodyRequired: false;
|
|
121
220
|
readonly requiredKeyKind: "mailbox";
|
|
122
221
|
readonly surface: "mailbox";
|
|
123
222
|
};
|
|
124
223
|
readonly mailboxDeleteFolder: {
|
|
224
|
+
readonly bodyKind: "none";
|
|
125
225
|
readonly command: "mailbox:delete-folder";
|
|
126
226
|
readonly description: "Delete a mailbox folder";
|
|
127
227
|
readonly headerParams: readonly [{
|
|
128
228
|
readonly name: "If-Match";
|
|
129
229
|
readonly required: false;
|
|
230
|
+
readonly schema: {
|
|
231
|
+
readonly type: "string";
|
|
232
|
+
};
|
|
130
233
|
}];
|
|
131
234
|
readonly method: "delete";
|
|
132
235
|
readonly operationId: "mailboxDeleteFolder";
|
|
@@ -134,18 +237,32 @@ export declare const operations: {
|
|
|
134
237
|
readonly pathParams: readonly [{
|
|
135
238
|
readonly name: "folder_id";
|
|
136
239
|
readonly required: true;
|
|
240
|
+
readonly schema: {
|
|
241
|
+
readonly type: "string";
|
|
242
|
+
};
|
|
137
243
|
}];
|
|
138
|
-
readonly queryParams: readonly [
|
|
244
|
+
readonly queryParams: readonly [{
|
|
245
|
+
readonly name: "mailbox_id";
|
|
246
|
+
readonly required: false;
|
|
247
|
+
readonly schema: {
|
|
248
|
+
readonly type: "string";
|
|
249
|
+
};
|
|
250
|
+
}];
|
|
251
|
+
readonly responseKind: "json";
|
|
139
252
|
readonly requestBodyRequired: false;
|
|
140
253
|
readonly requiredKeyKind: "mailbox";
|
|
141
254
|
readonly surface: "mailbox";
|
|
142
255
|
};
|
|
143
256
|
readonly mailboxDeleteMessage: {
|
|
257
|
+
readonly bodyKind: "none";
|
|
144
258
|
readonly command: "mailbox:delete-message";
|
|
145
259
|
readonly description: "Delete a mailbox message";
|
|
146
260
|
readonly headerParams: readonly [{
|
|
147
261
|
readonly name: "If-Match";
|
|
148
262
|
readonly required: false;
|
|
263
|
+
readonly schema: {
|
|
264
|
+
readonly type: "string";
|
|
265
|
+
};
|
|
149
266
|
}];
|
|
150
267
|
readonly method: "delete";
|
|
151
268
|
readonly operationId: "mailboxDeleteMessage";
|
|
@@ -153,16 +270,30 @@ export declare const operations: {
|
|
|
153
270
|
readonly pathParams: readonly [{
|
|
154
271
|
readonly name: "message_id";
|
|
155
272
|
readonly required: true;
|
|
273
|
+
readonly schema: {
|
|
274
|
+
readonly type: "string";
|
|
275
|
+
};
|
|
156
276
|
}];
|
|
157
277
|
readonly queryParams: readonly [{
|
|
158
278
|
readonly name: "permanent";
|
|
159
279
|
readonly required: false;
|
|
280
|
+
readonly schema: {
|
|
281
|
+
readonly type: "boolean";
|
|
282
|
+
};
|
|
283
|
+
}, {
|
|
284
|
+
readonly name: "mailbox_id";
|
|
285
|
+
readonly required: false;
|
|
286
|
+
readonly schema: {
|
|
287
|
+
readonly type: "string";
|
|
288
|
+
};
|
|
160
289
|
}];
|
|
290
|
+
readonly responseKind: "json";
|
|
161
291
|
readonly requestBodyRequired: false;
|
|
162
292
|
readonly requiredKeyKind: "mailbox";
|
|
163
293
|
readonly surface: "mailbox";
|
|
164
294
|
};
|
|
165
295
|
readonly mailboxGetChanges: {
|
|
296
|
+
readonly bodyKind: "none";
|
|
166
297
|
readonly command: "mailbox:get-changes";
|
|
167
298
|
readonly description: "Get mailbox changes";
|
|
168
299
|
readonly headerParams: readonly [];
|
|
@@ -173,41 +304,81 @@ export declare const operations: {
|
|
|
173
304
|
readonly queryParams: readonly [{
|
|
174
305
|
readonly name: "since_state";
|
|
175
306
|
readonly required: false;
|
|
307
|
+
readonly schema: {
|
|
308
|
+
readonly type: "string";
|
|
309
|
+
};
|
|
176
310
|
}, {
|
|
177
311
|
readonly name: "types";
|
|
178
312
|
readonly required: false;
|
|
313
|
+
readonly schema: {
|
|
314
|
+
readonly type: "string";
|
|
315
|
+
};
|
|
179
316
|
}, {
|
|
180
317
|
readonly name: "messages_since_state";
|
|
181
318
|
readonly required: false;
|
|
319
|
+
readonly schema: {
|
|
320
|
+
readonly type: "string";
|
|
321
|
+
};
|
|
182
322
|
}, {
|
|
183
323
|
readonly name: "folders_since_state";
|
|
184
324
|
readonly required: false;
|
|
325
|
+
readonly schema: {
|
|
326
|
+
readonly type: "string";
|
|
327
|
+
};
|
|
185
328
|
}, {
|
|
186
329
|
readonly name: "threads_since_state";
|
|
187
330
|
readonly required: false;
|
|
331
|
+
readonly schema: {
|
|
332
|
+
readonly type: "string";
|
|
333
|
+
};
|
|
188
334
|
}, {
|
|
189
335
|
readonly name: "submissions_since_state";
|
|
190
336
|
readonly required: false;
|
|
337
|
+
readonly schema: {
|
|
338
|
+
readonly type: "string";
|
|
339
|
+
};
|
|
191
340
|
}, {
|
|
192
341
|
readonly name: "identities_since_state";
|
|
193
342
|
readonly required: false;
|
|
343
|
+
readonly schema: {
|
|
344
|
+
readonly type: "string";
|
|
345
|
+
};
|
|
194
346
|
}, {
|
|
195
347
|
readonly name: "quotas_since_state";
|
|
196
348
|
readonly required: false;
|
|
349
|
+
readonly schema: {
|
|
350
|
+
readonly type: "string";
|
|
351
|
+
};
|
|
197
352
|
}, {
|
|
198
353
|
readonly name: "limit";
|
|
199
354
|
readonly required: false;
|
|
355
|
+
readonly schema: {
|
|
356
|
+
readonly type: "integer";
|
|
357
|
+
readonly minimum: 1;
|
|
358
|
+
readonly maximum: 500;
|
|
359
|
+
};
|
|
360
|
+
}, {
|
|
361
|
+
readonly name: "mailbox_id";
|
|
362
|
+
readonly required: false;
|
|
363
|
+
readonly schema: {
|
|
364
|
+
readonly type: "string";
|
|
365
|
+
};
|
|
200
366
|
}];
|
|
367
|
+
readonly responseKind: "json";
|
|
201
368
|
readonly requestBodyRequired: false;
|
|
202
369
|
readonly requiredKeyKind: "mailbox";
|
|
203
370
|
readonly surface: "mailbox";
|
|
204
371
|
};
|
|
205
372
|
readonly mailboxGetFolder: {
|
|
373
|
+
readonly bodyKind: "none";
|
|
206
374
|
readonly command: "mailbox:get-folder";
|
|
207
375
|
readonly description: "Get a mailbox folder";
|
|
208
376
|
readonly headerParams: readonly [{
|
|
209
377
|
readonly name: "If-None-Match";
|
|
210
378
|
readonly required: false;
|
|
379
|
+
readonly schema: {
|
|
380
|
+
readonly type: "string";
|
|
381
|
+
};
|
|
211
382
|
}];
|
|
212
383
|
readonly method: "get";
|
|
213
384
|
readonly operationId: "mailboxGetFolder";
|
|
@@ -215,13 +386,24 @@ export declare const operations: {
|
|
|
215
386
|
readonly pathParams: readonly [{
|
|
216
387
|
readonly name: "folder_id";
|
|
217
388
|
readonly required: true;
|
|
389
|
+
readonly schema: {
|
|
390
|
+
readonly type: "string";
|
|
391
|
+
};
|
|
218
392
|
}];
|
|
219
|
-
readonly queryParams: readonly [
|
|
393
|
+
readonly queryParams: readonly [{
|
|
394
|
+
readonly name: "mailbox_id";
|
|
395
|
+
readonly required: false;
|
|
396
|
+
readonly schema: {
|
|
397
|
+
readonly type: "string";
|
|
398
|
+
};
|
|
399
|
+
}];
|
|
400
|
+
readonly responseKind: "json";
|
|
220
401
|
readonly requestBodyRequired: false;
|
|
221
402
|
readonly requiredKeyKind: "mailbox";
|
|
222
403
|
readonly surface: "mailbox";
|
|
223
404
|
};
|
|
224
405
|
readonly mailboxGetFolderChanges: {
|
|
406
|
+
readonly bodyKind: "none";
|
|
225
407
|
readonly command: "mailbox:get-folder-changes";
|
|
226
408
|
readonly description: "Get folder changes";
|
|
227
409
|
readonly headerParams: readonly [];
|
|
@@ -232,15 +414,31 @@ export declare const operations: {
|
|
|
232
414
|
readonly queryParams: readonly [{
|
|
233
415
|
readonly name: "since_state";
|
|
234
416
|
readonly required: false;
|
|
417
|
+
readonly schema: {
|
|
418
|
+
readonly type: "string";
|
|
419
|
+
};
|
|
235
420
|
}, {
|
|
236
421
|
readonly name: "limit";
|
|
237
422
|
readonly required: false;
|
|
423
|
+
readonly schema: {
|
|
424
|
+
readonly type: "integer";
|
|
425
|
+
readonly minimum: 1;
|
|
426
|
+
readonly maximum: 500;
|
|
427
|
+
};
|
|
428
|
+
}, {
|
|
429
|
+
readonly name: "mailbox_id";
|
|
430
|
+
readonly required: false;
|
|
431
|
+
readonly schema: {
|
|
432
|
+
readonly type: "string";
|
|
433
|
+
};
|
|
238
434
|
}];
|
|
435
|
+
readonly responseKind: "json";
|
|
239
436
|
readonly requestBodyRequired: false;
|
|
240
437
|
readonly requiredKeyKind: "mailbox";
|
|
241
438
|
readonly surface: "mailbox";
|
|
242
439
|
};
|
|
243
440
|
readonly mailboxGetIdentity: {
|
|
441
|
+
readonly bodyKind: "none";
|
|
244
442
|
readonly command: "mailbox:get-identity";
|
|
245
443
|
readonly description: "Get mailbox sender identity";
|
|
246
444
|
readonly headerParams: readonly [];
|
|
@@ -248,33 +446,55 @@ export declare const operations: {
|
|
|
248
446
|
readonly operationId: "mailboxGetIdentity";
|
|
249
447
|
readonly path: "/mailbox/identity";
|
|
250
448
|
readonly pathParams: readonly [];
|
|
251
|
-
readonly queryParams: readonly [
|
|
449
|
+
readonly queryParams: readonly [{
|
|
450
|
+
readonly name: "mailbox_id";
|
|
451
|
+
readonly required: false;
|
|
452
|
+
readonly schema: {
|
|
453
|
+
readonly type: "string";
|
|
454
|
+
};
|
|
455
|
+
}];
|
|
456
|
+
readonly responseKind: "json";
|
|
252
457
|
readonly requestBodyRequired: false;
|
|
253
458
|
readonly requiredKeyKind: "mailbox";
|
|
254
459
|
readonly surface: "mailbox";
|
|
255
460
|
};
|
|
256
461
|
readonly mailboxGetMe: {
|
|
462
|
+
readonly bodyKind: "none";
|
|
257
463
|
readonly command: "mailbox:me:get";
|
|
258
464
|
readonly description: "Self-introspect the calling mailbox";
|
|
259
465
|
readonly headerParams: readonly [{
|
|
260
466
|
readonly name: "If-None-Match";
|
|
261
467
|
readonly required: false;
|
|
468
|
+
readonly schema: {
|
|
469
|
+
readonly type: "string";
|
|
470
|
+
};
|
|
262
471
|
}];
|
|
263
472
|
readonly method: "get";
|
|
264
473
|
readonly operationId: "mailboxGetMe";
|
|
265
474
|
readonly path: "/mailbox/me";
|
|
266
475
|
readonly pathParams: readonly [];
|
|
267
|
-
readonly queryParams: readonly [
|
|
476
|
+
readonly queryParams: readonly [{
|
|
477
|
+
readonly name: "mailbox_id";
|
|
478
|
+
readonly required: false;
|
|
479
|
+
readonly schema: {
|
|
480
|
+
readonly type: "string";
|
|
481
|
+
};
|
|
482
|
+
}];
|
|
483
|
+
readonly responseKind: "json";
|
|
268
484
|
readonly requestBodyRequired: false;
|
|
269
485
|
readonly requiredKeyKind: "mailbox";
|
|
270
486
|
readonly surface: "mailbox";
|
|
271
487
|
};
|
|
272
488
|
readonly mailboxGetMessage: {
|
|
489
|
+
readonly bodyKind: "none";
|
|
273
490
|
readonly command: "mailbox:messages:get";
|
|
274
491
|
readonly description: "Get a mailbox message";
|
|
275
492
|
readonly headerParams: readonly [{
|
|
276
493
|
readonly name: "If-None-Match";
|
|
277
494
|
readonly required: false;
|
|
495
|
+
readonly schema: {
|
|
496
|
+
readonly type: "string";
|
|
497
|
+
};
|
|
278
498
|
}];
|
|
279
499
|
readonly method: "get";
|
|
280
500
|
readonly operationId: "mailboxGetMessage";
|
|
@@ -282,18 +502,32 @@ export declare const operations: {
|
|
|
282
502
|
readonly pathParams: readonly [{
|
|
283
503
|
readonly name: "message_id";
|
|
284
504
|
readonly required: true;
|
|
505
|
+
readonly schema: {
|
|
506
|
+
readonly type: "string";
|
|
507
|
+
};
|
|
285
508
|
}];
|
|
286
|
-
readonly queryParams: readonly [
|
|
509
|
+
readonly queryParams: readonly [{
|
|
510
|
+
readonly name: "mailbox_id";
|
|
511
|
+
readonly required: false;
|
|
512
|
+
readonly schema: {
|
|
513
|
+
readonly type: "string";
|
|
514
|
+
};
|
|
515
|
+
}];
|
|
516
|
+
readonly responseKind: "json";
|
|
287
517
|
readonly requestBodyRequired: false;
|
|
288
518
|
readonly requiredKeyKind: "mailbox";
|
|
289
519
|
readonly surface: "mailbox";
|
|
290
520
|
};
|
|
291
521
|
readonly mailboxGetMessageAttachment: {
|
|
522
|
+
readonly bodyKind: "none";
|
|
292
523
|
readonly command: "mailbox:get-message-attachment";
|
|
293
524
|
readonly description: "Download a message attachment";
|
|
294
525
|
readonly headerParams: readonly [{
|
|
295
526
|
readonly name: "Range";
|
|
296
527
|
readonly required: false;
|
|
528
|
+
readonly schema: {
|
|
529
|
+
readonly type: "string";
|
|
530
|
+
};
|
|
297
531
|
}];
|
|
298
532
|
readonly method: "get";
|
|
299
533
|
readonly operationId: "mailboxGetMessageAttachment";
|
|
@@ -301,16 +535,30 @@ export declare const operations: {
|
|
|
301
535
|
readonly pathParams: readonly [{
|
|
302
536
|
readonly name: "message_id";
|
|
303
537
|
readonly required: true;
|
|
538
|
+
readonly schema: {
|
|
539
|
+
readonly type: "string";
|
|
540
|
+
};
|
|
304
541
|
}, {
|
|
305
542
|
readonly name: "attachment_id";
|
|
306
543
|
readonly required: true;
|
|
544
|
+
readonly schema: {
|
|
545
|
+
readonly type: "string";
|
|
546
|
+
};
|
|
307
547
|
}];
|
|
308
|
-
readonly queryParams: readonly [
|
|
548
|
+
readonly queryParams: readonly [{
|
|
549
|
+
readonly name: "mailbox_id";
|
|
550
|
+
readonly required: false;
|
|
551
|
+
readonly schema: {
|
|
552
|
+
readonly type: "string";
|
|
553
|
+
};
|
|
554
|
+
}];
|
|
555
|
+
readonly responseKind: "json";
|
|
309
556
|
readonly requestBodyRequired: false;
|
|
310
557
|
readonly requiredKeyKind: "mailbox";
|
|
311
558
|
readonly surface: "mailbox";
|
|
312
559
|
};
|
|
313
560
|
readonly mailboxGetQuotaChanges: {
|
|
561
|
+
readonly bodyKind: "none";
|
|
314
562
|
readonly command: "mailbox:get-quota-changes";
|
|
315
563
|
readonly description: "Get quota changes";
|
|
316
564
|
readonly headerParams: readonly [];
|
|
@@ -321,36 +569,66 @@ export declare const operations: {
|
|
|
321
569
|
readonly queryParams: readonly [{
|
|
322
570
|
readonly name: "since_state";
|
|
323
571
|
readonly required: false;
|
|
572
|
+
readonly schema: {
|
|
573
|
+
readonly type: "string";
|
|
574
|
+
};
|
|
324
575
|
}, {
|
|
325
576
|
readonly name: "limit";
|
|
326
577
|
readonly required: false;
|
|
578
|
+
readonly schema: {
|
|
579
|
+
readonly type: "integer";
|
|
580
|
+
readonly minimum: 1;
|
|
581
|
+
readonly maximum: 500;
|
|
582
|
+
};
|
|
583
|
+
}, {
|
|
584
|
+
readonly name: "mailbox_id";
|
|
585
|
+
readonly required: false;
|
|
586
|
+
readonly schema: {
|
|
587
|
+
readonly type: "string";
|
|
588
|
+
};
|
|
327
589
|
}];
|
|
590
|
+
readonly responseKind: "json";
|
|
328
591
|
readonly requestBodyRequired: false;
|
|
329
592
|
readonly requiredKeyKind: "mailbox";
|
|
330
593
|
readonly surface: "mailbox";
|
|
331
594
|
};
|
|
332
595
|
readonly mailboxGetSession: {
|
|
596
|
+
readonly bodyKind: "none";
|
|
333
597
|
readonly command: "mailbox:get-session";
|
|
334
598
|
readonly description: "Get mailbox API session";
|
|
335
599
|
readonly headerParams: readonly [{
|
|
336
600
|
readonly name: "If-None-Match";
|
|
337
601
|
readonly required: false;
|
|
602
|
+
readonly schema: {
|
|
603
|
+
readonly type: "string";
|
|
604
|
+
};
|
|
338
605
|
}];
|
|
339
606
|
readonly method: "get";
|
|
340
607
|
readonly operationId: "mailboxGetSession";
|
|
341
608
|
readonly path: "/mailbox/session";
|
|
342
609
|
readonly pathParams: readonly [];
|
|
343
|
-
readonly queryParams: readonly [
|
|
610
|
+
readonly queryParams: readonly [{
|
|
611
|
+
readonly name: "mailbox_id";
|
|
612
|
+
readonly required: false;
|
|
613
|
+
readonly schema: {
|
|
614
|
+
readonly type: "string";
|
|
615
|
+
};
|
|
616
|
+
}];
|
|
617
|
+
readonly responseKind: "json";
|
|
344
618
|
readonly requestBodyRequired: false;
|
|
345
619
|
readonly requiredKeyKind: "mailbox";
|
|
346
620
|
readonly surface: "mailbox";
|
|
347
621
|
};
|
|
348
622
|
readonly mailboxGetSubmission: {
|
|
623
|
+
readonly bodyKind: "none";
|
|
349
624
|
readonly command: "mailbox:get-submission";
|
|
350
625
|
readonly description: "Get a mailbox submission";
|
|
351
626
|
readonly headerParams: readonly [{
|
|
352
627
|
readonly name: "If-None-Match";
|
|
353
628
|
readonly required: false;
|
|
629
|
+
readonly schema: {
|
|
630
|
+
readonly type: "string";
|
|
631
|
+
};
|
|
354
632
|
}];
|
|
355
633
|
readonly method: "get";
|
|
356
634
|
readonly operationId: "mailboxGetSubmission";
|
|
@@ -358,13 +636,24 @@ export declare const operations: {
|
|
|
358
636
|
readonly pathParams: readonly [{
|
|
359
637
|
readonly name: "submission_id";
|
|
360
638
|
readonly required: true;
|
|
639
|
+
readonly schema: {
|
|
640
|
+
readonly type: "string";
|
|
641
|
+
};
|
|
361
642
|
}];
|
|
362
|
-
readonly queryParams: readonly [
|
|
643
|
+
readonly queryParams: readonly [{
|
|
644
|
+
readonly name: "mailbox_id";
|
|
645
|
+
readonly required: false;
|
|
646
|
+
readonly schema: {
|
|
647
|
+
readonly type: "string";
|
|
648
|
+
};
|
|
649
|
+
}];
|
|
650
|
+
readonly responseKind: "json";
|
|
363
651
|
readonly requestBodyRequired: false;
|
|
364
652
|
readonly requiredKeyKind: "mailbox";
|
|
365
653
|
readonly surface: "mailbox";
|
|
366
654
|
};
|
|
367
655
|
readonly mailboxGetSubmissionChanges: {
|
|
656
|
+
readonly bodyKind: "none";
|
|
368
657
|
readonly command: "mailbox:get-submission-changes";
|
|
369
658
|
readonly description: "Get submission changes";
|
|
370
659
|
readonly headerParams: readonly [];
|
|
@@ -375,20 +664,39 @@ export declare const operations: {
|
|
|
375
664
|
readonly queryParams: readonly [{
|
|
376
665
|
readonly name: "since_state";
|
|
377
666
|
readonly required: false;
|
|
667
|
+
readonly schema: {
|
|
668
|
+
readonly type: "string";
|
|
669
|
+
};
|
|
378
670
|
}, {
|
|
379
671
|
readonly name: "limit";
|
|
380
672
|
readonly required: false;
|
|
673
|
+
readonly schema: {
|
|
674
|
+
readonly type: "integer";
|
|
675
|
+
readonly minimum: 1;
|
|
676
|
+
readonly maximum: 500;
|
|
677
|
+
};
|
|
678
|
+
}, {
|
|
679
|
+
readonly name: "mailbox_id";
|
|
680
|
+
readonly required: false;
|
|
681
|
+
readonly schema: {
|
|
682
|
+
readonly type: "string";
|
|
683
|
+
};
|
|
381
684
|
}];
|
|
685
|
+
readonly responseKind: "json";
|
|
382
686
|
readonly requestBodyRequired: false;
|
|
383
687
|
readonly requiredKeyKind: "mailbox";
|
|
384
688
|
readonly surface: "mailbox";
|
|
385
689
|
};
|
|
386
690
|
readonly mailboxGetThread: {
|
|
691
|
+
readonly bodyKind: "none";
|
|
387
692
|
readonly command: "mailbox:get-thread";
|
|
388
693
|
readonly description: "Get a mailbox thread";
|
|
389
694
|
readonly headerParams: readonly [{
|
|
390
695
|
readonly name: "If-None-Match";
|
|
391
696
|
readonly required: false;
|
|
697
|
+
readonly schema: {
|
|
698
|
+
readonly type: "string";
|
|
699
|
+
};
|
|
392
700
|
}];
|
|
393
701
|
readonly method: "get";
|
|
394
702
|
readonly operationId: "mailboxGetThread";
|
|
@@ -396,18 +704,32 @@ export declare const operations: {
|
|
|
396
704
|
readonly pathParams: readonly [{
|
|
397
705
|
readonly name: "thread_id";
|
|
398
706
|
readonly required: true;
|
|
707
|
+
readonly schema: {
|
|
708
|
+
readonly type: "string";
|
|
709
|
+
};
|
|
399
710
|
}];
|
|
400
|
-
readonly queryParams: readonly [
|
|
711
|
+
readonly queryParams: readonly [{
|
|
712
|
+
readonly name: "mailbox_id";
|
|
713
|
+
readonly required: false;
|
|
714
|
+
readonly schema: {
|
|
715
|
+
readonly type: "string";
|
|
716
|
+
};
|
|
717
|
+
}];
|
|
718
|
+
readonly responseKind: "json";
|
|
401
719
|
readonly requestBodyRequired: false;
|
|
402
720
|
readonly requiredKeyKind: "mailbox";
|
|
403
721
|
readonly surface: "mailbox";
|
|
404
722
|
};
|
|
405
723
|
readonly mailboxGetThreadContent: {
|
|
724
|
+
readonly bodyKind: "none";
|
|
406
725
|
readonly command: "mailbox:get-thread-content";
|
|
407
726
|
readonly description: "Get clean thread content";
|
|
408
727
|
readonly headerParams: readonly [{
|
|
409
728
|
readonly name: "If-None-Match";
|
|
410
729
|
readonly required: false;
|
|
730
|
+
readonly schema: {
|
|
731
|
+
readonly type: "string";
|
|
732
|
+
};
|
|
411
733
|
}];
|
|
412
734
|
readonly method: "get";
|
|
413
735
|
readonly operationId: "mailboxGetThreadContent";
|
|
@@ -415,51 +737,106 @@ export declare const operations: {
|
|
|
415
737
|
readonly pathParams: readonly [{
|
|
416
738
|
readonly name: "thread_id";
|
|
417
739
|
readonly required: true;
|
|
740
|
+
readonly schema: {
|
|
741
|
+
readonly type: "string";
|
|
742
|
+
};
|
|
418
743
|
}];
|
|
419
744
|
readonly queryParams: readonly [{
|
|
420
745
|
readonly name: "part";
|
|
421
746
|
readonly required: false;
|
|
747
|
+
readonly schema: {
|
|
748
|
+
readonly type: "string";
|
|
749
|
+
readonly enum: readonly ["auto", "text", "html"];
|
|
750
|
+
};
|
|
422
751
|
}, {
|
|
423
752
|
readonly name: "max_body_chars";
|
|
424
753
|
readonly required: false;
|
|
754
|
+
readonly schema: {
|
|
755
|
+
readonly type: "integer";
|
|
756
|
+
readonly minimum: 1;
|
|
757
|
+
readonly maximum: 1000000;
|
|
758
|
+
};
|
|
425
759
|
}, {
|
|
426
760
|
readonly name: "strip_signature";
|
|
427
761
|
readonly required: false;
|
|
762
|
+
readonly schema: {
|
|
763
|
+
readonly type: "boolean";
|
|
764
|
+
};
|
|
428
765
|
}, {
|
|
429
766
|
readonly name: "strip_quotes";
|
|
430
767
|
readonly required: false;
|
|
768
|
+
readonly schema: {
|
|
769
|
+
readonly type: "boolean";
|
|
770
|
+
};
|
|
431
771
|
}, {
|
|
432
772
|
readonly name: "include_links";
|
|
433
773
|
readonly required: false;
|
|
774
|
+
readonly schema: {
|
|
775
|
+
readonly type: "boolean";
|
|
776
|
+
};
|
|
434
777
|
}, {
|
|
435
778
|
readonly name: "include_html";
|
|
436
779
|
readonly required: false;
|
|
780
|
+
readonly schema: {
|
|
781
|
+
readonly type: "boolean";
|
|
782
|
+
};
|
|
437
783
|
}, {
|
|
438
784
|
readonly name: "include_headers";
|
|
439
785
|
readonly required: false;
|
|
786
|
+
readonly schema: {
|
|
787
|
+
readonly type: "string";
|
|
788
|
+
readonly enum: readonly ["none", "selected", "full"];
|
|
789
|
+
};
|
|
440
790
|
}, {
|
|
441
791
|
readonly name: "include_attachments";
|
|
442
792
|
readonly required: false;
|
|
793
|
+
readonly schema: {
|
|
794
|
+
readonly type: "string";
|
|
795
|
+
readonly enum: readonly ["none", "metadata"];
|
|
796
|
+
};
|
|
443
797
|
}, {
|
|
444
798
|
readonly name: "cursor";
|
|
445
799
|
readonly required: false;
|
|
800
|
+
readonly schema: {
|
|
801
|
+
readonly type: "string";
|
|
802
|
+
};
|
|
446
803
|
}, {
|
|
447
804
|
readonly name: "limit";
|
|
448
805
|
readonly required: false;
|
|
806
|
+
readonly schema: {
|
|
807
|
+
readonly type: "integer";
|
|
808
|
+
readonly minimum: 1;
|
|
809
|
+
readonly maximum: 100;
|
|
810
|
+
};
|
|
449
811
|
}, {
|
|
450
812
|
readonly name: "sort";
|
|
451
813
|
readonly required: false;
|
|
814
|
+
readonly schema: {
|
|
815
|
+
readonly type: "string";
|
|
816
|
+
readonly enum: readonly ["asc", "desc"];
|
|
817
|
+
};
|
|
818
|
+
}, {
|
|
819
|
+
readonly name: "mailbox_id";
|
|
820
|
+
readonly required: false;
|
|
821
|
+
readonly schema: {
|
|
822
|
+
readonly type: "string";
|
|
823
|
+
};
|
|
452
824
|
}];
|
|
825
|
+
readonly responseKind: "json";
|
|
453
826
|
readonly requestBodyRequired: false;
|
|
454
827
|
readonly requiredKeyKind: "mailbox";
|
|
455
828
|
readonly surface: "mailbox";
|
|
456
829
|
};
|
|
457
830
|
readonly mailboxListBody: {
|
|
831
|
+
readonly bodyKind: "none";
|
|
458
832
|
readonly command: "mailbox:list-body";
|
|
459
833
|
readonly description: "Get raw message body";
|
|
460
834
|
readonly headerParams: readonly [{
|
|
461
835
|
readonly name: "If-None-Match";
|
|
462
836
|
readonly required: false;
|
|
837
|
+
readonly schema: {
|
|
838
|
+
readonly type: "string";
|
|
839
|
+
};
|
|
463
840
|
}];
|
|
464
841
|
readonly method: "get";
|
|
465
842
|
readonly operationId: "mailboxListBody";
|
|
@@ -467,24 +844,47 @@ export declare const operations: {
|
|
|
467
844
|
readonly pathParams: readonly [{
|
|
468
845
|
readonly name: "message_id";
|
|
469
846
|
readonly required: true;
|
|
847
|
+
readonly schema: {
|
|
848
|
+
readonly type: "string";
|
|
849
|
+
};
|
|
470
850
|
}];
|
|
471
851
|
readonly queryParams: readonly [{
|
|
472
852
|
readonly name: "part";
|
|
473
853
|
readonly required: false;
|
|
854
|
+
readonly schema: {
|
|
855
|
+
readonly type: "string";
|
|
856
|
+
readonly enum: readonly ["text", "html", "both"];
|
|
857
|
+
};
|
|
474
858
|
}, {
|
|
475
859
|
readonly name: "max_body_chars";
|
|
476
860
|
readonly required: false;
|
|
861
|
+
readonly schema: {
|
|
862
|
+
readonly type: "integer";
|
|
863
|
+
readonly minimum: 1;
|
|
864
|
+
readonly maximum: 1000000;
|
|
865
|
+
};
|
|
866
|
+
}, {
|
|
867
|
+
readonly name: "mailbox_id";
|
|
868
|
+
readonly required: false;
|
|
869
|
+
readonly schema: {
|
|
870
|
+
readonly type: "string";
|
|
871
|
+
};
|
|
477
872
|
}];
|
|
873
|
+
readonly responseKind: "json";
|
|
478
874
|
readonly requestBodyRequired: false;
|
|
479
875
|
readonly requiredKeyKind: "mailbox";
|
|
480
876
|
readonly surface: "mailbox";
|
|
481
877
|
};
|
|
482
878
|
readonly mailboxListContent: {
|
|
879
|
+
readonly bodyKind: "none";
|
|
483
880
|
readonly command: "mailbox:list-content";
|
|
484
881
|
readonly description: "Get clean message content";
|
|
485
882
|
readonly headerParams: readonly [{
|
|
486
883
|
readonly name: "If-None-Match";
|
|
487
884
|
readonly required: false;
|
|
885
|
+
readonly schema: {
|
|
886
|
+
readonly type: "string";
|
|
887
|
+
};
|
|
488
888
|
}];
|
|
489
889
|
readonly method: "get";
|
|
490
890
|
readonly operationId: "mailboxListContent";
|
|
@@ -492,37 +892,77 @@ export declare const operations: {
|
|
|
492
892
|
readonly pathParams: readonly [{
|
|
493
893
|
readonly name: "message_id";
|
|
494
894
|
readonly required: true;
|
|
895
|
+
readonly schema: {
|
|
896
|
+
readonly type: "string";
|
|
897
|
+
};
|
|
495
898
|
}];
|
|
496
899
|
readonly queryParams: readonly [{
|
|
497
900
|
readonly name: "part";
|
|
498
901
|
readonly required: false;
|
|
902
|
+
readonly schema: {
|
|
903
|
+
readonly type: "string";
|
|
904
|
+
readonly enum: readonly ["auto", "text", "html"];
|
|
905
|
+
};
|
|
499
906
|
}, {
|
|
500
907
|
readonly name: "max_body_chars";
|
|
501
908
|
readonly required: false;
|
|
909
|
+
readonly schema: {
|
|
910
|
+
readonly type: "integer";
|
|
911
|
+
readonly minimum: 1;
|
|
912
|
+
readonly maximum: 1000000;
|
|
913
|
+
};
|
|
502
914
|
}, {
|
|
503
915
|
readonly name: "strip_signature";
|
|
504
916
|
readonly required: false;
|
|
917
|
+
readonly schema: {
|
|
918
|
+
readonly type: "boolean";
|
|
919
|
+
};
|
|
505
920
|
}, {
|
|
506
921
|
readonly name: "strip_quotes";
|
|
507
922
|
readonly required: false;
|
|
923
|
+
readonly schema: {
|
|
924
|
+
readonly type: "boolean";
|
|
925
|
+
};
|
|
508
926
|
}, {
|
|
509
927
|
readonly name: "include_links";
|
|
510
928
|
readonly required: false;
|
|
929
|
+
readonly schema: {
|
|
930
|
+
readonly type: "boolean";
|
|
931
|
+
};
|
|
511
932
|
}, {
|
|
512
933
|
readonly name: "include_html";
|
|
513
934
|
readonly required: false;
|
|
935
|
+
readonly schema: {
|
|
936
|
+
readonly type: "boolean";
|
|
937
|
+
};
|
|
514
938
|
}, {
|
|
515
939
|
readonly name: "include_headers";
|
|
516
940
|
readonly required: false;
|
|
941
|
+
readonly schema: {
|
|
942
|
+
readonly type: "string";
|
|
943
|
+
readonly enum: readonly ["none", "selected", "full"];
|
|
944
|
+
};
|
|
517
945
|
}, {
|
|
518
946
|
readonly name: "include_attachments";
|
|
519
947
|
readonly required: false;
|
|
948
|
+
readonly schema: {
|
|
949
|
+
readonly type: "string";
|
|
950
|
+
readonly enum: readonly ["none", "metadata"];
|
|
951
|
+
};
|
|
952
|
+
}, {
|
|
953
|
+
readonly name: "mailbox_id";
|
|
954
|
+
readonly required: false;
|
|
955
|
+
readonly schema: {
|
|
956
|
+
readonly type: "string";
|
|
957
|
+
};
|
|
520
958
|
}];
|
|
959
|
+
readonly responseKind: "json";
|
|
521
960
|
readonly requestBodyRequired: false;
|
|
522
961
|
readonly requiredKeyKind: "mailbox";
|
|
523
962
|
readonly surface: "mailbox";
|
|
524
963
|
};
|
|
525
964
|
readonly mailboxListFolders: {
|
|
965
|
+
readonly bodyKind: "none";
|
|
526
966
|
readonly command: "mailbox:folders:list";
|
|
527
967
|
readonly description: "List mailbox folders";
|
|
528
968
|
readonly headerParams: readonly [];
|
|
@@ -533,15 +973,66 @@ export declare const operations: {
|
|
|
533
973
|
readonly queryParams: readonly [{
|
|
534
974
|
readonly name: "cursor";
|
|
535
975
|
readonly required: false;
|
|
976
|
+
readonly schema: {
|
|
977
|
+
readonly type: "string";
|
|
978
|
+
};
|
|
536
979
|
}, {
|
|
537
980
|
readonly name: "limit";
|
|
538
981
|
readonly required: false;
|
|
982
|
+
readonly schema: {
|
|
983
|
+
readonly type: "integer";
|
|
984
|
+
readonly minimum: 1;
|
|
985
|
+
readonly maximum: 100;
|
|
986
|
+
};
|
|
987
|
+
}, {
|
|
988
|
+
readonly name: "mailbox_id";
|
|
989
|
+
readonly required: false;
|
|
990
|
+
readonly schema: {
|
|
991
|
+
readonly type: "string";
|
|
992
|
+
};
|
|
539
993
|
}];
|
|
994
|
+
readonly responseKind: "json";
|
|
995
|
+
readonly requestBodyRequired: false;
|
|
996
|
+
readonly requiredKeyKind: "mailbox";
|
|
997
|
+
readonly surface: "mailbox";
|
|
998
|
+
};
|
|
999
|
+
readonly mailboxListGrantedMailboxes: {
|
|
1000
|
+
readonly bodyKind: "none";
|
|
1001
|
+
readonly command: "mailbox:list-granted-mailboxes";
|
|
1002
|
+
readonly description: "List granted mailboxes";
|
|
1003
|
+
readonly headerParams: readonly [];
|
|
1004
|
+
readonly method: "get";
|
|
1005
|
+
readonly operationId: "mailboxListGrantedMailboxes";
|
|
1006
|
+
readonly path: "/mailbox/mailboxes";
|
|
1007
|
+
readonly pathParams: readonly [];
|
|
1008
|
+
readonly queryParams: readonly [{
|
|
1009
|
+
readonly name: "cursor";
|
|
1010
|
+
readonly required: false;
|
|
1011
|
+
readonly schema: {
|
|
1012
|
+
readonly type: "string";
|
|
1013
|
+
};
|
|
1014
|
+
}, {
|
|
1015
|
+
readonly name: "limit";
|
|
1016
|
+
readonly required: false;
|
|
1017
|
+
readonly schema: {
|
|
1018
|
+
readonly type: "integer";
|
|
1019
|
+
readonly minimum: 1;
|
|
1020
|
+
readonly maximum: 100;
|
|
1021
|
+
};
|
|
1022
|
+
}, {
|
|
1023
|
+
readonly name: "q";
|
|
1024
|
+
readonly required: false;
|
|
1025
|
+
readonly schema: {
|
|
1026
|
+
readonly type: "string";
|
|
1027
|
+
};
|
|
1028
|
+
}];
|
|
1029
|
+
readonly responseKind: "json";
|
|
540
1030
|
readonly requestBodyRequired: false;
|
|
541
1031
|
readonly requiredKeyKind: "mailbox";
|
|
542
1032
|
readonly surface: "mailbox";
|
|
543
1033
|
};
|
|
544
1034
|
readonly mailboxListIdentities: {
|
|
1035
|
+
readonly bodyKind: "none";
|
|
545
1036
|
readonly command: "mailbox:list-identities";
|
|
546
1037
|
readonly description: "List mailbox sender identities";
|
|
547
1038
|
readonly headerParams: readonly [];
|
|
@@ -552,15 +1043,31 @@ export declare const operations: {
|
|
|
552
1043
|
readonly queryParams: readonly [{
|
|
553
1044
|
readonly name: "cursor";
|
|
554
1045
|
readonly required: false;
|
|
1046
|
+
readonly schema: {
|
|
1047
|
+
readonly type: "string";
|
|
1048
|
+
};
|
|
555
1049
|
}, {
|
|
556
1050
|
readonly name: "limit";
|
|
557
1051
|
readonly required: false;
|
|
1052
|
+
readonly schema: {
|
|
1053
|
+
readonly type: "integer";
|
|
1054
|
+
readonly minimum: 1;
|
|
1055
|
+
readonly maximum: 100;
|
|
1056
|
+
};
|
|
1057
|
+
}, {
|
|
1058
|
+
readonly name: "mailbox_id";
|
|
1059
|
+
readonly required: false;
|
|
1060
|
+
readonly schema: {
|
|
1061
|
+
readonly type: "string";
|
|
1062
|
+
};
|
|
558
1063
|
}];
|
|
1064
|
+
readonly responseKind: "json";
|
|
559
1065
|
readonly requestBodyRequired: false;
|
|
560
1066
|
readonly requiredKeyKind: "mailbox";
|
|
561
1067
|
readonly surface: "mailbox";
|
|
562
1068
|
};
|
|
563
1069
|
readonly mailboxListMessages: {
|
|
1070
|
+
readonly bodyKind: "none";
|
|
564
1071
|
readonly command: "mailbox:messages:list";
|
|
565
1072
|
readonly description: "List mailbox messages";
|
|
566
1073
|
readonly headerParams: readonly [];
|
|
@@ -571,78 +1078,161 @@ export declare const operations: {
|
|
|
571
1078
|
readonly queryParams: readonly [{
|
|
572
1079
|
readonly name: "cursor";
|
|
573
1080
|
readonly required: false;
|
|
1081
|
+
readonly schema: {
|
|
1082
|
+
readonly type: "string";
|
|
1083
|
+
};
|
|
574
1084
|
}, {
|
|
575
1085
|
readonly name: "limit";
|
|
576
1086
|
readonly required: false;
|
|
1087
|
+
readonly schema: {
|
|
1088
|
+
readonly type: "integer";
|
|
1089
|
+
readonly minimum: 1;
|
|
1090
|
+
readonly maximum: 100;
|
|
1091
|
+
};
|
|
577
1092
|
}, {
|
|
578
1093
|
readonly name: "folder_id";
|
|
579
1094
|
readonly required: false;
|
|
1095
|
+
readonly schema: {
|
|
1096
|
+
readonly type: "string";
|
|
1097
|
+
};
|
|
580
1098
|
}, {
|
|
581
1099
|
readonly name: "thread_id";
|
|
582
1100
|
readonly required: false;
|
|
1101
|
+
readonly schema: {
|
|
1102
|
+
readonly type: "string";
|
|
1103
|
+
};
|
|
583
1104
|
}, {
|
|
584
1105
|
readonly name: "q";
|
|
585
1106
|
readonly required: false;
|
|
1107
|
+
readonly schema: {
|
|
1108
|
+
readonly type: "string";
|
|
1109
|
+
};
|
|
586
1110
|
}, {
|
|
587
1111
|
readonly name: "from";
|
|
588
1112
|
readonly required: false;
|
|
1113
|
+
readonly schema: {
|
|
1114
|
+
readonly type: "string";
|
|
1115
|
+
};
|
|
589
1116
|
}, {
|
|
590
1117
|
readonly name: "to";
|
|
591
1118
|
readonly required: false;
|
|
1119
|
+
readonly schema: {
|
|
1120
|
+
readonly type: "string";
|
|
1121
|
+
};
|
|
592
1122
|
}, {
|
|
593
1123
|
readonly name: "cc";
|
|
594
1124
|
readonly required: false;
|
|
1125
|
+
readonly schema: {
|
|
1126
|
+
readonly type: "string";
|
|
1127
|
+
};
|
|
595
1128
|
}, {
|
|
596
1129
|
readonly name: "bcc";
|
|
597
1130
|
readonly required: false;
|
|
1131
|
+
readonly schema: {
|
|
1132
|
+
readonly type: "string";
|
|
1133
|
+
};
|
|
598
1134
|
}, {
|
|
599
1135
|
readonly name: "subject";
|
|
600
1136
|
readonly required: false;
|
|
1137
|
+
readonly schema: {
|
|
1138
|
+
readonly type: "string";
|
|
1139
|
+
};
|
|
601
1140
|
}, {
|
|
602
1141
|
readonly name: "body";
|
|
603
1142
|
readonly required: false;
|
|
1143
|
+
readonly schema: {
|
|
1144
|
+
readonly type: "string";
|
|
1145
|
+
};
|
|
604
1146
|
}, {
|
|
605
1147
|
readonly name: "header_name";
|
|
606
1148
|
readonly required: false;
|
|
1149
|
+
readonly schema: {
|
|
1150
|
+
readonly type: "string";
|
|
1151
|
+
};
|
|
607
1152
|
}, {
|
|
608
1153
|
readonly name: "header_value";
|
|
609
1154
|
readonly required: false;
|
|
1155
|
+
readonly schema: {
|
|
1156
|
+
readonly type: "string";
|
|
1157
|
+
};
|
|
610
1158
|
}, {
|
|
611
1159
|
readonly name: "min_size_bytes";
|
|
612
1160
|
readonly required: false;
|
|
1161
|
+
readonly schema: {
|
|
1162
|
+
readonly type: "integer";
|
|
1163
|
+
readonly minimum: 0;
|
|
1164
|
+
};
|
|
613
1165
|
}, {
|
|
614
1166
|
readonly name: "max_size_bytes";
|
|
615
1167
|
readonly required: false;
|
|
1168
|
+
readonly schema: {
|
|
1169
|
+
readonly type: "integer";
|
|
1170
|
+
readonly minimum: 0;
|
|
1171
|
+
};
|
|
616
1172
|
}, {
|
|
617
1173
|
readonly name: "keyword";
|
|
618
1174
|
readonly required: false;
|
|
1175
|
+
readonly schema: {
|
|
1176
|
+
readonly type: "string";
|
|
1177
|
+
};
|
|
619
1178
|
}, {
|
|
620
1179
|
readonly name: "not_keyword";
|
|
621
1180
|
readonly required: false;
|
|
1181
|
+
readonly schema: {
|
|
1182
|
+
readonly type: "string";
|
|
1183
|
+
};
|
|
622
1184
|
}, {
|
|
623
1185
|
readonly name: "after";
|
|
624
1186
|
readonly required: false;
|
|
1187
|
+
readonly schema: {
|
|
1188
|
+
readonly type: "string";
|
|
1189
|
+
};
|
|
625
1190
|
}, {
|
|
626
1191
|
readonly name: "before";
|
|
627
1192
|
readonly required: false;
|
|
1193
|
+
readonly schema: {
|
|
1194
|
+
readonly type: "string";
|
|
1195
|
+
};
|
|
628
1196
|
}, {
|
|
629
1197
|
readonly name: "has_attachment";
|
|
630
1198
|
readonly required: false;
|
|
1199
|
+
readonly schema: {
|
|
1200
|
+
readonly type: "boolean";
|
|
1201
|
+
};
|
|
631
1202
|
}, {
|
|
632
1203
|
readonly name: "is_unread";
|
|
633
1204
|
readonly required: false;
|
|
1205
|
+
readonly schema: {
|
|
1206
|
+
readonly type: "boolean";
|
|
1207
|
+
};
|
|
634
1208
|
}, {
|
|
635
1209
|
readonly name: "sort_by";
|
|
636
1210
|
readonly required: false;
|
|
1211
|
+
readonly schema: {
|
|
1212
|
+
readonly type: "string";
|
|
1213
|
+
readonly enum: readonly ["received_at", "sent_at", "subject", "from", "to", "size_bytes"];
|
|
1214
|
+
};
|
|
637
1215
|
}, {
|
|
638
1216
|
readonly name: "sort_direction";
|
|
639
1217
|
readonly required: false;
|
|
1218
|
+
readonly schema: {
|
|
1219
|
+
readonly type: "string";
|
|
1220
|
+
readonly enum: readonly ["asc", "desc"];
|
|
1221
|
+
};
|
|
1222
|
+
}, {
|
|
1223
|
+
readonly name: "mailbox_id";
|
|
1224
|
+
readonly required: false;
|
|
1225
|
+
readonly schema: {
|
|
1226
|
+
readonly type: "string";
|
|
1227
|
+
};
|
|
640
1228
|
}];
|
|
1229
|
+
readonly responseKind: "json";
|
|
641
1230
|
readonly requestBodyRequired: false;
|
|
642
1231
|
readonly requiredKeyKind: "mailbox";
|
|
643
1232
|
readonly surface: "mailbox";
|
|
644
1233
|
};
|
|
645
1234
|
readonly mailboxListQuotas: {
|
|
1235
|
+
readonly bodyKind: "none";
|
|
646
1236
|
readonly command: "mailbox:list-quotas";
|
|
647
1237
|
readonly description: "List mailbox quotas";
|
|
648
1238
|
readonly headerParams: readonly [];
|
|
@@ -653,33 +1243,71 @@ export declare const operations: {
|
|
|
653
1243
|
readonly queryParams: readonly [{
|
|
654
1244
|
readonly name: "cursor";
|
|
655
1245
|
readonly required: false;
|
|
1246
|
+
readonly schema: {
|
|
1247
|
+
readonly type: "string";
|
|
1248
|
+
};
|
|
656
1249
|
}, {
|
|
657
1250
|
readonly name: "limit";
|
|
658
1251
|
readonly required: false;
|
|
1252
|
+
readonly schema: {
|
|
1253
|
+
readonly type: "integer";
|
|
1254
|
+
readonly minimum: 1;
|
|
1255
|
+
readonly maximum: 100;
|
|
1256
|
+
};
|
|
659
1257
|
}, {
|
|
660
1258
|
readonly name: "name";
|
|
661
1259
|
readonly required: false;
|
|
1260
|
+
readonly schema: {
|
|
1261
|
+
readonly type: "string";
|
|
1262
|
+
};
|
|
662
1263
|
}, {
|
|
663
1264
|
readonly name: "scope";
|
|
664
1265
|
readonly required: false;
|
|
1266
|
+
readonly schema: {
|
|
1267
|
+
readonly type: "string";
|
|
1268
|
+
readonly enum: readonly ["account", "domain", "global"];
|
|
1269
|
+
};
|
|
665
1270
|
}, {
|
|
666
1271
|
readonly name: "resource_type";
|
|
667
1272
|
readonly required: false;
|
|
1273
|
+
readonly schema: {
|
|
1274
|
+
readonly type: "string";
|
|
1275
|
+
readonly enum: readonly ["count", "octets"];
|
|
1276
|
+
};
|
|
668
1277
|
}, {
|
|
669
1278
|
readonly name: "type";
|
|
670
1279
|
readonly required: false;
|
|
1280
|
+
readonly schema: {
|
|
1281
|
+
readonly type: "string";
|
|
1282
|
+
};
|
|
671
1283
|
}, {
|
|
672
1284
|
readonly name: "sort_by";
|
|
673
1285
|
readonly required: false;
|
|
1286
|
+
readonly schema: {
|
|
1287
|
+
readonly type: "string";
|
|
1288
|
+
readonly enum: readonly ["name", "used"];
|
|
1289
|
+
};
|
|
674
1290
|
}, {
|
|
675
1291
|
readonly name: "sort_direction";
|
|
676
1292
|
readonly required: false;
|
|
1293
|
+
readonly schema: {
|
|
1294
|
+
readonly type: "string";
|
|
1295
|
+
readonly enum: readonly ["asc", "desc"];
|
|
1296
|
+
};
|
|
1297
|
+
}, {
|
|
1298
|
+
readonly name: "mailbox_id";
|
|
1299
|
+
readonly required: false;
|
|
1300
|
+
readonly schema: {
|
|
1301
|
+
readonly type: "string";
|
|
1302
|
+
};
|
|
677
1303
|
}];
|
|
1304
|
+
readonly responseKind: "json";
|
|
678
1305
|
readonly requestBodyRequired: false;
|
|
679
1306
|
readonly requiredKeyKind: "mailbox";
|
|
680
1307
|
readonly surface: "mailbox";
|
|
681
1308
|
};
|
|
682
1309
|
readonly mailboxListSubmissions: {
|
|
1310
|
+
readonly bodyKind: "none";
|
|
683
1311
|
readonly command: "mailbox:list-submissions";
|
|
684
1312
|
readonly description: "List mailbox submissions";
|
|
685
1313
|
readonly headerParams: readonly [];
|
|
@@ -690,39 +1318,82 @@ export declare const operations: {
|
|
|
690
1318
|
readonly queryParams: readonly [{
|
|
691
1319
|
readonly name: "cursor";
|
|
692
1320
|
readonly required: false;
|
|
1321
|
+
readonly schema: {
|
|
1322
|
+
readonly type: "string";
|
|
1323
|
+
};
|
|
693
1324
|
}, {
|
|
694
1325
|
readonly name: "limit";
|
|
695
1326
|
readonly required: false;
|
|
1327
|
+
readonly schema: {
|
|
1328
|
+
readonly type: "integer";
|
|
1329
|
+
readonly minimum: 1;
|
|
1330
|
+
readonly maximum: 100;
|
|
1331
|
+
};
|
|
696
1332
|
}, {
|
|
697
1333
|
readonly name: "identity_ids";
|
|
698
1334
|
readonly required: false;
|
|
1335
|
+
readonly schema: {
|
|
1336
|
+
readonly type: "string";
|
|
1337
|
+
};
|
|
699
1338
|
}, {
|
|
700
1339
|
readonly name: "email_ids";
|
|
701
1340
|
readonly required: false;
|
|
1341
|
+
readonly schema: {
|
|
1342
|
+
readonly type: "string";
|
|
1343
|
+
};
|
|
702
1344
|
}, {
|
|
703
1345
|
readonly name: "thread_ids";
|
|
704
1346
|
readonly required: false;
|
|
1347
|
+
readonly schema: {
|
|
1348
|
+
readonly type: "string";
|
|
1349
|
+
};
|
|
705
1350
|
}, {
|
|
706
1351
|
readonly name: "undo_status";
|
|
707
1352
|
readonly required: false;
|
|
1353
|
+
readonly schema: {
|
|
1354
|
+
readonly type: "string";
|
|
1355
|
+
readonly enum: readonly ["pending", "final", "canceled"];
|
|
1356
|
+
};
|
|
708
1357
|
}, {
|
|
709
1358
|
readonly name: "after";
|
|
710
1359
|
readonly required: false;
|
|
1360
|
+
readonly schema: {
|
|
1361
|
+
readonly type: "string";
|
|
1362
|
+
};
|
|
711
1363
|
}, {
|
|
712
1364
|
readonly name: "before";
|
|
713
1365
|
readonly required: false;
|
|
1366
|
+
readonly schema: {
|
|
1367
|
+
readonly type: "string";
|
|
1368
|
+
};
|
|
714
1369
|
}, {
|
|
715
1370
|
readonly name: "sort_by";
|
|
716
1371
|
readonly required: false;
|
|
1372
|
+
readonly schema: {
|
|
1373
|
+
readonly type: "string";
|
|
1374
|
+
readonly enum: readonly ["send_at", "email_id", "thread_id"];
|
|
1375
|
+
};
|
|
717
1376
|
}, {
|
|
718
1377
|
readonly name: "sort_direction";
|
|
719
1378
|
readonly required: false;
|
|
1379
|
+
readonly schema: {
|
|
1380
|
+
readonly type: "string";
|
|
1381
|
+
readonly enum: readonly ["asc", "desc"];
|
|
1382
|
+
};
|
|
1383
|
+
}, {
|
|
1384
|
+
readonly name: "mailbox_id";
|
|
1385
|
+
readonly required: false;
|
|
1386
|
+
readonly schema: {
|
|
1387
|
+
readonly type: "string";
|
|
1388
|
+
};
|
|
720
1389
|
}];
|
|
1390
|
+
readonly responseKind: "json";
|
|
721
1391
|
readonly requestBodyRequired: false;
|
|
722
1392
|
readonly requiredKeyKind: "mailbox";
|
|
723
1393
|
readonly surface: "mailbox";
|
|
724
1394
|
};
|
|
725
1395
|
readonly mailboxListThreadMessages: {
|
|
1396
|
+
readonly bodyKind: "none";
|
|
726
1397
|
readonly command: "mailbox:list-thread-messages";
|
|
727
1398
|
readonly description: "List thread messages";
|
|
728
1399
|
readonly headerParams: readonly [];
|
|
@@ -732,22 +1403,45 @@ export declare const operations: {
|
|
|
732
1403
|
readonly pathParams: readonly [{
|
|
733
1404
|
readonly name: "thread_id";
|
|
734
1405
|
readonly required: true;
|
|
1406
|
+
readonly schema: {
|
|
1407
|
+
readonly type: "string";
|
|
1408
|
+
};
|
|
735
1409
|
}];
|
|
736
1410
|
readonly queryParams: readonly [{
|
|
737
1411
|
readonly name: "cursor";
|
|
738
1412
|
readonly required: false;
|
|
1413
|
+
readonly schema: {
|
|
1414
|
+
readonly type: "string";
|
|
1415
|
+
};
|
|
739
1416
|
}, {
|
|
740
1417
|
readonly name: "limit";
|
|
741
1418
|
readonly required: false;
|
|
1419
|
+
readonly schema: {
|
|
1420
|
+
readonly type: "integer";
|
|
1421
|
+
readonly minimum: 1;
|
|
1422
|
+
readonly maximum: 100;
|
|
1423
|
+
};
|
|
742
1424
|
}, {
|
|
743
1425
|
readonly name: "sort";
|
|
744
1426
|
readonly required: false;
|
|
1427
|
+
readonly schema: {
|
|
1428
|
+
readonly type: "string";
|
|
1429
|
+
readonly enum: readonly ["asc", "desc"];
|
|
1430
|
+
};
|
|
1431
|
+
}, {
|
|
1432
|
+
readonly name: "mailbox_id";
|
|
1433
|
+
readonly required: false;
|
|
1434
|
+
readonly schema: {
|
|
1435
|
+
readonly type: "string";
|
|
1436
|
+
};
|
|
745
1437
|
}];
|
|
1438
|
+
readonly responseKind: "json";
|
|
746
1439
|
readonly requestBodyRequired: false;
|
|
747
1440
|
readonly requiredKeyKind: "mailbox";
|
|
748
1441
|
readonly surface: "mailbox";
|
|
749
1442
|
};
|
|
750
1443
|
readonly mailboxListThreads: {
|
|
1444
|
+
readonly bodyKind: "none";
|
|
751
1445
|
readonly command: "mailbox:list-threads";
|
|
752
1446
|
readonly description: "List mailbox threads";
|
|
753
1447
|
readonly headerParams: readonly [];
|
|
@@ -758,55 +1452,107 @@ export declare const operations: {
|
|
|
758
1452
|
readonly queryParams: readonly [{
|
|
759
1453
|
readonly name: "cursor";
|
|
760
1454
|
readonly required: false;
|
|
1455
|
+
readonly schema: {
|
|
1456
|
+
readonly type: "string";
|
|
1457
|
+
};
|
|
761
1458
|
}, {
|
|
762
1459
|
readonly name: "limit";
|
|
763
1460
|
readonly required: false;
|
|
1461
|
+
readonly schema: {
|
|
1462
|
+
readonly type: "integer";
|
|
1463
|
+
readonly minimum: 1;
|
|
1464
|
+
readonly maximum: 100;
|
|
1465
|
+
};
|
|
764
1466
|
}, {
|
|
765
1467
|
readonly name: "q";
|
|
766
1468
|
readonly required: false;
|
|
1469
|
+
readonly schema: {
|
|
1470
|
+
readonly type: "string";
|
|
1471
|
+
};
|
|
767
1472
|
}, {
|
|
768
1473
|
readonly name: "participant";
|
|
769
1474
|
readonly required: false;
|
|
1475
|
+
readonly schema: {
|
|
1476
|
+
readonly type: "string";
|
|
1477
|
+
};
|
|
770
1478
|
}, {
|
|
771
1479
|
readonly name: "folder_id";
|
|
772
1480
|
readonly required: false;
|
|
1481
|
+
readonly schema: {
|
|
1482
|
+
readonly type: "string";
|
|
1483
|
+
};
|
|
773
1484
|
}, {
|
|
774
1485
|
readonly name: "after";
|
|
775
1486
|
readonly required: false;
|
|
1487
|
+
readonly schema: {
|
|
1488
|
+
readonly type: "string";
|
|
1489
|
+
};
|
|
776
1490
|
}, {
|
|
777
1491
|
readonly name: "before";
|
|
778
1492
|
readonly required: false;
|
|
1493
|
+
readonly schema: {
|
|
1494
|
+
readonly type: "string";
|
|
1495
|
+
};
|
|
779
1496
|
}, {
|
|
780
1497
|
readonly name: "has_attachment";
|
|
781
1498
|
readonly required: false;
|
|
1499
|
+
readonly schema: {
|
|
1500
|
+
readonly type: "boolean";
|
|
1501
|
+
};
|
|
782
1502
|
}, {
|
|
783
1503
|
readonly name: "is_unread";
|
|
784
1504
|
readonly required: false;
|
|
1505
|
+
readonly schema: {
|
|
1506
|
+
readonly type: "boolean";
|
|
1507
|
+
};
|
|
785
1508
|
}, {
|
|
786
1509
|
readonly name: "sort_direction";
|
|
787
1510
|
readonly required: false;
|
|
1511
|
+
readonly schema: {
|
|
1512
|
+
readonly type: "string";
|
|
1513
|
+
readonly enum: readonly ["asc", "desc"];
|
|
1514
|
+
};
|
|
1515
|
+
}, {
|
|
1516
|
+
readonly name: "mailbox_id";
|
|
1517
|
+
readonly required: false;
|
|
1518
|
+
readonly schema: {
|
|
1519
|
+
readonly type: "string";
|
|
1520
|
+
};
|
|
788
1521
|
}];
|
|
1522
|
+
readonly responseKind: "json";
|
|
789
1523
|
readonly requestBodyRequired: false;
|
|
790
1524
|
readonly requiredKeyKind: "mailbox";
|
|
791
1525
|
readonly surface: "mailbox";
|
|
792
1526
|
};
|
|
793
1527
|
readonly mailboxListUsage: {
|
|
1528
|
+
readonly bodyKind: "none";
|
|
794
1529
|
readonly command: "mailbox:list-usage";
|
|
795
1530
|
readonly description: "Get mailbox usage";
|
|
796
1531
|
readonly headerParams: readonly [{
|
|
797
1532
|
readonly name: "If-None-Match";
|
|
798
1533
|
readonly required: false;
|
|
1534
|
+
readonly schema: {
|
|
1535
|
+
readonly type: "string";
|
|
1536
|
+
};
|
|
799
1537
|
}];
|
|
800
1538
|
readonly method: "get";
|
|
801
1539
|
readonly operationId: "mailboxListUsage";
|
|
802
1540
|
readonly path: "/mailbox/usage";
|
|
803
1541
|
readonly pathParams: readonly [];
|
|
804
|
-
readonly queryParams: readonly [
|
|
1542
|
+
readonly queryParams: readonly [{
|
|
1543
|
+
readonly name: "mailbox_id";
|
|
1544
|
+
readonly required: false;
|
|
1545
|
+
readonly schema: {
|
|
1546
|
+
readonly type: "string";
|
|
1547
|
+
};
|
|
1548
|
+
}];
|
|
1549
|
+
readonly responseKind: "json";
|
|
805
1550
|
readonly requestBodyRequired: false;
|
|
806
1551
|
readonly requiredKeyKind: "mailbox";
|
|
807
1552
|
readonly surface: "mailbox";
|
|
808
1553
|
};
|
|
809
1554
|
readonly mailboxQueryFolderChanges: {
|
|
1555
|
+
readonly bodyKind: "none";
|
|
810
1556
|
readonly command: "mailbox:query-folder-changes";
|
|
811
1557
|
readonly description: "Get folder query changes";
|
|
812
1558
|
readonly headerParams: readonly [];
|
|
@@ -817,15 +1563,31 @@ export declare const operations: {
|
|
|
817
1563
|
readonly queryParams: readonly [{
|
|
818
1564
|
readonly name: "since_query_state";
|
|
819
1565
|
readonly required: false;
|
|
1566
|
+
readonly schema: {
|
|
1567
|
+
readonly type: "string";
|
|
1568
|
+
};
|
|
820
1569
|
}, {
|
|
821
1570
|
readonly name: "limit";
|
|
822
1571
|
readonly required: false;
|
|
1572
|
+
readonly schema: {
|
|
1573
|
+
readonly type: "integer";
|
|
1574
|
+
readonly minimum: 1;
|
|
1575
|
+
readonly maximum: 500;
|
|
1576
|
+
};
|
|
1577
|
+
}, {
|
|
1578
|
+
readonly name: "mailbox_id";
|
|
1579
|
+
readonly required: false;
|
|
1580
|
+
readonly schema: {
|
|
1581
|
+
readonly type: "string";
|
|
1582
|
+
};
|
|
823
1583
|
}];
|
|
1584
|
+
readonly responseKind: "json";
|
|
824
1585
|
readonly requestBodyRequired: false;
|
|
825
1586
|
readonly requiredKeyKind: "mailbox";
|
|
826
1587
|
readonly surface: "mailbox";
|
|
827
1588
|
};
|
|
828
1589
|
readonly mailboxQueryMessageChanges: {
|
|
1590
|
+
readonly bodyKind: "none";
|
|
829
1591
|
readonly command: "mailbox:query-message-changes";
|
|
830
1592
|
readonly description: "Get message query changes";
|
|
831
1593
|
readonly headerParams: readonly [];
|
|
@@ -836,81 +1598,167 @@ export declare const operations: {
|
|
|
836
1598
|
readonly queryParams: readonly [{
|
|
837
1599
|
readonly name: "since_query_state";
|
|
838
1600
|
readonly required: false;
|
|
1601
|
+
readonly schema: {
|
|
1602
|
+
readonly type: "string";
|
|
1603
|
+
};
|
|
839
1604
|
}, {
|
|
840
1605
|
readonly name: "limit";
|
|
841
1606
|
readonly required: false;
|
|
1607
|
+
readonly schema: {
|
|
1608
|
+
readonly type: "integer";
|
|
1609
|
+
readonly minimum: 1;
|
|
1610
|
+
readonly maximum: 500;
|
|
1611
|
+
};
|
|
842
1612
|
}, {
|
|
843
1613
|
readonly name: "up_to_id";
|
|
844
1614
|
readonly required: false;
|
|
1615
|
+
readonly schema: {
|
|
1616
|
+
readonly type: "string";
|
|
1617
|
+
};
|
|
845
1618
|
}, {
|
|
846
1619
|
readonly name: "calculate_total";
|
|
847
1620
|
readonly required: false;
|
|
1621
|
+
readonly schema: {
|
|
1622
|
+
readonly type: "boolean";
|
|
1623
|
+
};
|
|
848
1624
|
}, {
|
|
849
1625
|
readonly name: "folder_id";
|
|
850
1626
|
readonly required: false;
|
|
1627
|
+
readonly schema: {
|
|
1628
|
+
readonly type: "string";
|
|
1629
|
+
};
|
|
851
1630
|
}, {
|
|
852
1631
|
readonly name: "q";
|
|
853
1632
|
readonly required: false;
|
|
1633
|
+
readonly schema: {
|
|
1634
|
+
readonly type: "string";
|
|
1635
|
+
};
|
|
854
1636
|
}, {
|
|
855
1637
|
readonly name: "from";
|
|
856
1638
|
readonly required: false;
|
|
1639
|
+
readonly schema: {
|
|
1640
|
+
readonly type: "string";
|
|
1641
|
+
};
|
|
857
1642
|
}, {
|
|
858
1643
|
readonly name: "to";
|
|
859
1644
|
readonly required: false;
|
|
1645
|
+
readonly schema: {
|
|
1646
|
+
readonly type: "string";
|
|
1647
|
+
};
|
|
860
1648
|
}, {
|
|
861
1649
|
readonly name: "cc";
|
|
862
1650
|
readonly required: false;
|
|
1651
|
+
readonly schema: {
|
|
1652
|
+
readonly type: "string";
|
|
1653
|
+
};
|
|
863
1654
|
}, {
|
|
864
1655
|
readonly name: "bcc";
|
|
865
1656
|
readonly required: false;
|
|
1657
|
+
readonly schema: {
|
|
1658
|
+
readonly type: "string";
|
|
1659
|
+
};
|
|
866
1660
|
}, {
|
|
867
1661
|
readonly name: "subject";
|
|
868
1662
|
readonly required: false;
|
|
1663
|
+
readonly schema: {
|
|
1664
|
+
readonly type: "string";
|
|
1665
|
+
};
|
|
869
1666
|
}, {
|
|
870
1667
|
readonly name: "body";
|
|
871
1668
|
readonly required: false;
|
|
1669
|
+
readonly schema: {
|
|
1670
|
+
readonly type: "string";
|
|
1671
|
+
};
|
|
872
1672
|
}, {
|
|
873
1673
|
readonly name: "header_name";
|
|
874
1674
|
readonly required: false;
|
|
1675
|
+
readonly schema: {
|
|
1676
|
+
readonly type: "string";
|
|
1677
|
+
};
|
|
875
1678
|
}, {
|
|
876
1679
|
readonly name: "header_value";
|
|
877
1680
|
readonly required: false;
|
|
1681
|
+
readonly schema: {
|
|
1682
|
+
readonly type: "string";
|
|
1683
|
+
};
|
|
878
1684
|
}, {
|
|
879
1685
|
readonly name: "min_size_bytes";
|
|
880
1686
|
readonly required: false;
|
|
1687
|
+
readonly schema: {
|
|
1688
|
+
readonly type: "integer";
|
|
1689
|
+
readonly minimum: 0;
|
|
1690
|
+
};
|
|
881
1691
|
}, {
|
|
882
1692
|
readonly name: "max_size_bytes";
|
|
883
1693
|
readonly required: false;
|
|
1694
|
+
readonly schema: {
|
|
1695
|
+
readonly type: "integer";
|
|
1696
|
+
readonly minimum: 0;
|
|
1697
|
+
};
|
|
884
1698
|
}, {
|
|
885
1699
|
readonly name: "keyword";
|
|
886
1700
|
readonly required: false;
|
|
1701
|
+
readonly schema: {
|
|
1702
|
+
readonly type: "string";
|
|
1703
|
+
};
|
|
887
1704
|
}, {
|
|
888
1705
|
readonly name: "not_keyword";
|
|
889
1706
|
readonly required: false;
|
|
1707
|
+
readonly schema: {
|
|
1708
|
+
readonly type: "string";
|
|
1709
|
+
};
|
|
890
1710
|
}, {
|
|
891
1711
|
readonly name: "after";
|
|
892
1712
|
readonly required: false;
|
|
1713
|
+
readonly schema: {
|
|
1714
|
+
readonly type: "string";
|
|
1715
|
+
};
|
|
893
1716
|
}, {
|
|
894
1717
|
readonly name: "before";
|
|
895
1718
|
readonly required: false;
|
|
1719
|
+
readonly schema: {
|
|
1720
|
+
readonly type: "string";
|
|
1721
|
+
};
|
|
896
1722
|
}, {
|
|
897
1723
|
readonly name: "has_attachment";
|
|
898
1724
|
readonly required: false;
|
|
1725
|
+
readonly schema: {
|
|
1726
|
+
readonly type: "boolean";
|
|
1727
|
+
};
|
|
899
1728
|
}, {
|
|
900
1729
|
readonly name: "is_unread";
|
|
901
1730
|
readonly required: false;
|
|
1731
|
+
readonly schema: {
|
|
1732
|
+
readonly type: "boolean";
|
|
1733
|
+
};
|
|
902
1734
|
}, {
|
|
903
1735
|
readonly name: "sort_by";
|
|
904
1736
|
readonly required: false;
|
|
1737
|
+
readonly schema: {
|
|
1738
|
+
readonly type: "string";
|
|
1739
|
+
readonly enum: readonly ["received_at", "sent_at", "subject", "from", "to", "size_bytes"];
|
|
1740
|
+
};
|
|
905
1741
|
}, {
|
|
906
1742
|
readonly name: "sort_direction";
|
|
907
1743
|
readonly required: false;
|
|
1744
|
+
readonly schema: {
|
|
1745
|
+
readonly type: "string";
|
|
1746
|
+
readonly enum: readonly ["asc", "desc"];
|
|
1747
|
+
};
|
|
1748
|
+
}, {
|
|
1749
|
+
readonly name: "mailbox_id";
|
|
1750
|
+
readonly required: false;
|
|
1751
|
+
readonly schema: {
|
|
1752
|
+
readonly type: "string";
|
|
1753
|
+
};
|
|
908
1754
|
}];
|
|
1755
|
+
readonly responseKind: "json";
|
|
909
1756
|
readonly requestBodyRequired: false;
|
|
910
1757
|
readonly requiredKeyKind: "mailbox";
|
|
911
1758
|
readonly surface: "mailbox";
|
|
912
1759
|
};
|
|
913
1760
|
readonly mailboxSearchMessageSnippets: {
|
|
1761
|
+
readonly bodyKind: "none";
|
|
914
1762
|
readonly command: "mailbox:search-message-snippets";
|
|
915
1763
|
readonly description: "Get message search snippets";
|
|
916
1764
|
readonly headerParams: readonly [];
|
|
@@ -921,90 +1769,177 @@ export declare const operations: {
|
|
|
921
1769
|
readonly queryParams: readonly [{
|
|
922
1770
|
readonly name: "folder_id";
|
|
923
1771
|
readonly required: false;
|
|
1772
|
+
readonly schema: {
|
|
1773
|
+
readonly type: "string";
|
|
1774
|
+
};
|
|
924
1775
|
}, {
|
|
925
1776
|
readonly name: "from";
|
|
926
1777
|
readonly required: false;
|
|
1778
|
+
readonly schema: {
|
|
1779
|
+
readonly type: "string";
|
|
1780
|
+
};
|
|
927
1781
|
}, {
|
|
928
1782
|
readonly name: "to";
|
|
929
1783
|
readonly required: false;
|
|
1784
|
+
readonly schema: {
|
|
1785
|
+
readonly type: "string";
|
|
1786
|
+
};
|
|
930
1787
|
}, {
|
|
931
1788
|
readonly name: "cc";
|
|
932
1789
|
readonly required: false;
|
|
1790
|
+
readonly schema: {
|
|
1791
|
+
readonly type: "string";
|
|
1792
|
+
};
|
|
933
1793
|
}, {
|
|
934
1794
|
readonly name: "bcc";
|
|
935
1795
|
readonly required: false;
|
|
1796
|
+
readonly schema: {
|
|
1797
|
+
readonly type: "string";
|
|
1798
|
+
};
|
|
936
1799
|
}, {
|
|
937
1800
|
readonly name: "subject";
|
|
938
1801
|
readonly required: false;
|
|
1802
|
+
readonly schema: {
|
|
1803
|
+
readonly type: "string";
|
|
1804
|
+
};
|
|
939
1805
|
}, {
|
|
940
1806
|
readonly name: "body";
|
|
941
1807
|
readonly required: false;
|
|
1808
|
+
readonly schema: {
|
|
1809
|
+
readonly type: "string";
|
|
1810
|
+
};
|
|
942
1811
|
}, {
|
|
943
1812
|
readonly name: "header_name";
|
|
944
1813
|
readonly required: false;
|
|
1814
|
+
readonly schema: {
|
|
1815
|
+
readonly type: "string";
|
|
1816
|
+
};
|
|
945
1817
|
}, {
|
|
946
1818
|
readonly name: "header_value";
|
|
947
1819
|
readonly required: false;
|
|
1820
|
+
readonly schema: {
|
|
1821
|
+
readonly type: "string";
|
|
1822
|
+
};
|
|
948
1823
|
}, {
|
|
949
1824
|
readonly name: "min_size_bytes";
|
|
950
1825
|
readonly required: false;
|
|
1826
|
+
readonly schema: {
|
|
1827
|
+
readonly type: "integer";
|
|
1828
|
+
readonly minimum: 0;
|
|
1829
|
+
};
|
|
951
1830
|
}, {
|
|
952
1831
|
readonly name: "max_size_bytes";
|
|
953
1832
|
readonly required: false;
|
|
1833
|
+
readonly schema: {
|
|
1834
|
+
readonly type: "integer";
|
|
1835
|
+
readonly minimum: 0;
|
|
1836
|
+
};
|
|
954
1837
|
}, {
|
|
955
1838
|
readonly name: "keyword";
|
|
956
1839
|
readonly required: false;
|
|
1840
|
+
readonly schema: {
|
|
1841
|
+
readonly type: "string";
|
|
1842
|
+
};
|
|
957
1843
|
}, {
|
|
958
1844
|
readonly name: "not_keyword";
|
|
959
1845
|
readonly required: false;
|
|
1846
|
+
readonly schema: {
|
|
1847
|
+
readonly type: "string";
|
|
1848
|
+
};
|
|
960
1849
|
}, {
|
|
961
1850
|
readonly name: "after";
|
|
962
1851
|
readonly required: false;
|
|
1852
|
+
readonly schema: {
|
|
1853
|
+
readonly type: "string";
|
|
1854
|
+
};
|
|
963
1855
|
}, {
|
|
964
1856
|
readonly name: "before";
|
|
965
1857
|
readonly required: false;
|
|
1858
|
+
readonly schema: {
|
|
1859
|
+
readonly type: "string";
|
|
1860
|
+
};
|
|
966
1861
|
}, {
|
|
967
1862
|
readonly name: "has_attachment";
|
|
968
1863
|
readonly required: false;
|
|
1864
|
+
readonly schema: {
|
|
1865
|
+
readonly type: "boolean";
|
|
1866
|
+
};
|
|
969
1867
|
}, {
|
|
970
1868
|
readonly name: "is_unread";
|
|
971
1869
|
readonly required: false;
|
|
1870
|
+
readonly schema: {
|
|
1871
|
+
readonly type: "boolean";
|
|
1872
|
+
};
|
|
972
1873
|
}, {
|
|
973
1874
|
readonly name: "q";
|
|
974
1875
|
readonly required: true;
|
|
1876
|
+
readonly schema: {
|
|
1877
|
+
readonly type: "string";
|
|
1878
|
+
};
|
|
975
1879
|
}, {
|
|
976
1880
|
readonly name: "message_ids";
|
|
977
1881
|
readonly required: false;
|
|
1882
|
+
readonly schema: {
|
|
1883
|
+
readonly type: "string";
|
|
1884
|
+
};
|
|
978
1885
|
}, {
|
|
979
1886
|
readonly name: "limit";
|
|
980
1887
|
readonly required: false;
|
|
1888
|
+
readonly schema: {
|
|
1889
|
+
readonly type: "integer";
|
|
1890
|
+
readonly minimum: 1;
|
|
1891
|
+
readonly maximum: 100;
|
|
1892
|
+
};
|
|
1893
|
+
}, {
|
|
1894
|
+
readonly name: "mailbox_id";
|
|
1895
|
+
readonly required: false;
|
|
1896
|
+
readonly schema: {
|
|
1897
|
+
readonly type: "string";
|
|
1898
|
+
};
|
|
981
1899
|
}];
|
|
1900
|
+
readonly responseKind: "json";
|
|
982
1901
|
readonly requestBodyRequired: false;
|
|
983
1902
|
readonly requiredKeyKind: "mailbox";
|
|
984
1903
|
readonly surface: "mailbox";
|
|
985
1904
|
};
|
|
986
1905
|
readonly mailboxSendMessage: {
|
|
1906
|
+
readonly bodyKind: "json";
|
|
987
1907
|
readonly command: "mailbox:send-message";
|
|
988
1908
|
readonly description: "Send a mailbox message";
|
|
989
1909
|
readonly headerParams: readonly [{
|
|
990
1910
|
readonly name: "Idempotency-Key";
|
|
991
1911
|
readonly required: false;
|
|
1912
|
+
readonly schema: {
|
|
1913
|
+
readonly type: "string";
|
|
1914
|
+
readonly maxLength: 255;
|
|
1915
|
+
};
|
|
992
1916
|
}];
|
|
993
1917
|
readonly method: "post";
|
|
994
1918
|
readonly operationId: "mailboxSendMessage";
|
|
995
1919
|
readonly path: "/mailbox/messages/send";
|
|
996
1920
|
readonly pathParams: readonly [];
|
|
997
|
-
readonly queryParams: readonly [
|
|
1921
|
+
readonly queryParams: readonly [{
|
|
1922
|
+
readonly name: "mailbox_id";
|
|
1923
|
+
readonly required: false;
|
|
1924
|
+
readonly schema: {
|
|
1925
|
+
readonly type: "string";
|
|
1926
|
+
};
|
|
1927
|
+
}];
|
|
1928
|
+
readonly responseKind: "json";
|
|
998
1929
|
readonly requestBodyRequired: false;
|
|
999
1930
|
readonly requiredKeyKind: "mailbox";
|
|
1000
1931
|
readonly surface: "mailbox";
|
|
1001
1932
|
};
|
|
1002
1933
|
readonly mailboxStreamEvents: {
|
|
1934
|
+
readonly bodyKind: "none";
|
|
1003
1935
|
readonly command: "mailbox:stream-events";
|
|
1004
1936
|
readonly description: "Stream mailbox events";
|
|
1005
1937
|
readonly headerParams: readonly [{
|
|
1006
1938
|
readonly name: "Last-Event-ID";
|
|
1007
1939
|
readonly required: false;
|
|
1940
|
+
readonly schema: {
|
|
1941
|
+
readonly type: "string";
|
|
1942
|
+
};
|
|
1008
1943
|
}];
|
|
1009
1944
|
readonly method: "get";
|
|
1010
1945
|
readonly operationId: "mailboxStreamEvents";
|
|
@@ -1013,26 +1948,53 @@ export declare const operations: {
|
|
|
1013
1948
|
readonly queryParams: readonly [{
|
|
1014
1949
|
readonly name: "event_types";
|
|
1015
1950
|
readonly required: false;
|
|
1951
|
+
readonly schema: {
|
|
1952
|
+
readonly type: "string";
|
|
1953
|
+
};
|
|
1016
1954
|
}, {
|
|
1017
1955
|
readonly name: "last_event_id";
|
|
1018
1956
|
readonly required: false;
|
|
1957
|
+
readonly schema: {
|
|
1958
|
+
readonly type: "string";
|
|
1959
|
+
};
|
|
1019
1960
|
}, {
|
|
1020
1961
|
readonly name: "ping";
|
|
1021
1962
|
readonly required: false;
|
|
1963
|
+
readonly schema: {
|
|
1964
|
+
readonly type: "integer";
|
|
1965
|
+
readonly minimum: 10;
|
|
1966
|
+
readonly maximum: 300;
|
|
1967
|
+
};
|
|
1022
1968
|
}, {
|
|
1023
1969
|
readonly name: "close_after";
|
|
1024
1970
|
readonly required: false;
|
|
1971
|
+
readonly schema: {
|
|
1972
|
+
readonly type: "integer";
|
|
1973
|
+
readonly minimum: 30;
|
|
1974
|
+
readonly maximum: 3600;
|
|
1975
|
+
};
|
|
1976
|
+
}, {
|
|
1977
|
+
readonly name: "mailbox_id";
|
|
1978
|
+
readonly required: false;
|
|
1979
|
+
readonly schema: {
|
|
1980
|
+
readonly type: "string";
|
|
1981
|
+
};
|
|
1025
1982
|
}];
|
|
1983
|
+
readonly responseKind: "json";
|
|
1026
1984
|
readonly requestBodyRequired: false;
|
|
1027
1985
|
readonly requiredKeyKind: "mailbox";
|
|
1028
1986
|
readonly surface: "mailbox";
|
|
1029
1987
|
};
|
|
1030
1988
|
readonly mailboxUpdateFolder: {
|
|
1989
|
+
readonly bodyKind: "json";
|
|
1031
1990
|
readonly command: "mailbox:update-folder";
|
|
1032
1991
|
readonly description: "Update a mailbox folder";
|
|
1033
1992
|
readonly headerParams: readonly [{
|
|
1034
1993
|
readonly name: "If-Match";
|
|
1035
1994
|
readonly required: false;
|
|
1995
|
+
readonly schema: {
|
|
1996
|
+
readonly type: "string";
|
|
1997
|
+
};
|
|
1036
1998
|
}];
|
|
1037
1999
|
readonly method: "patch";
|
|
1038
2000
|
readonly operationId: "mailboxUpdateFolder";
|
|
@@ -1040,13 +2002,24 @@ export declare const operations: {
|
|
|
1040
2002
|
readonly pathParams: readonly [{
|
|
1041
2003
|
readonly name: "folder_id";
|
|
1042
2004
|
readonly required: true;
|
|
2005
|
+
readonly schema: {
|
|
2006
|
+
readonly type: "string";
|
|
2007
|
+
};
|
|
1043
2008
|
}];
|
|
1044
|
-
readonly queryParams: readonly [
|
|
2009
|
+
readonly queryParams: readonly [{
|
|
2010
|
+
readonly name: "mailbox_id";
|
|
2011
|
+
readonly required: false;
|
|
2012
|
+
readonly schema: {
|
|
2013
|
+
readonly type: "string";
|
|
2014
|
+
};
|
|
2015
|
+
}];
|
|
2016
|
+
readonly responseKind: "json";
|
|
1045
2017
|
readonly requestBodyRequired: false;
|
|
1046
2018
|
readonly requiredKeyKind: "mailbox";
|
|
1047
2019
|
readonly surface: "mailbox";
|
|
1048
2020
|
};
|
|
1049
2021
|
readonly mailboxUpdateIdentity: {
|
|
2022
|
+
readonly bodyKind: "json";
|
|
1050
2023
|
readonly command: "mailbox:update-identity";
|
|
1051
2024
|
readonly description: "Update mailbox sender identity";
|
|
1052
2025
|
readonly headerParams: readonly [];
|
|
@@ -1054,17 +2027,28 @@ export declare const operations: {
|
|
|
1054
2027
|
readonly operationId: "mailboxUpdateIdentity";
|
|
1055
2028
|
readonly path: "/mailbox/identity";
|
|
1056
2029
|
readonly pathParams: readonly [];
|
|
1057
|
-
readonly queryParams: readonly [
|
|
2030
|
+
readonly queryParams: readonly [{
|
|
2031
|
+
readonly name: "mailbox_id";
|
|
2032
|
+
readonly required: false;
|
|
2033
|
+
readonly schema: {
|
|
2034
|
+
readonly type: "string";
|
|
2035
|
+
};
|
|
2036
|
+
}];
|
|
2037
|
+
readonly responseKind: "json";
|
|
1058
2038
|
readonly requestBodyRequired: false;
|
|
1059
2039
|
readonly requiredKeyKind: "mailbox";
|
|
1060
2040
|
readonly surface: "mailbox";
|
|
1061
2041
|
};
|
|
1062
2042
|
readonly mailboxUpdateMessage: {
|
|
2043
|
+
readonly bodyKind: "json";
|
|
1063
2044
|
readonly command: "mailbox:update-message";
|
|
1064
2045
|
readonly description: "Update mailbox message flags";
|
|
1065
2046
|
readonly headerParams: readonly [{
|
|
1066
2047
|
readonly name: "If-Match";
|
|
1067
2048
|
readonly required: false;
|
|
2049
|
+
readonly schema: {
|
|
2050
|
+
readonly type: "string";
|
|
2051
|
+
};
|
|
1068
2052
|
}];
|
|
1069
2053
|
readonly method: "patch";
|
|
1070
2054
|
readonly operationId: "mailboxUpdateMessage";
|
|
@@ -1072,13 +2056,24 @@ export declare const operations: {
|
|
|
1072
2056
|
readonly pathParams: readonly [{
|
|
1073
2057
|
readonly name: "message_id";
|
|
1074
2058
|
readonly required: true;
|
|
2059
|
+
readonly schema: {
|
|
2060
|
+
readonly type: "string";
|
|
2061
|
+
};
|
|
1075
2062
|
}];
|
|
1076
|
-
readonly queryParams: readonly [
|
|
2063
|
+
readonly queryParams: readonly [{
|
|
2064
|
+
readonly name: "mailbox_id";
|
|
2065
|
+
readonly required: false;
|
|
2066
|
+
readonly schema: {
|
|
2067
|
+
readonly type: "string";
|
|
2068
|
+
};
|
|
2069
|
+
}];
|
|
2070
|
+
readonly responseKind: "json";
|
|
1077
2071
|
readonly requestBodyRequired: false;
|
|
1078
2072
|
readonly requiredKeyKind: "mailbox";
|
|
1079
2073
|
readonly surface: "mailbox";
|
|
1080
2074
|
};
|
|
1081
2075
|
readonly mailboxUploadAttachment: {
|
|
2076
|
+
readonly bodyKind: "binary";
|
|
1082
2077
|
readonly command: "mailbox:upload-attachment";
|
|
1083
2078
|
readonly description: "Upload a mailbox attachment";
|
|
1084
2079
|
readonly headerParams: readonly [];
|
|
@@ -1089,17 +2084,32 @@ export declare const operations: {
|
|
|
1089
2084
|
readonly queryParams: readonly [{
|
|
1090
2085
|
readonly name: "filename";
|
|
1091
2086
|
readonly required: true;
|
|
2087
|
+
readonly schema: {
|
|
2088
|
+
readonly type: "string";
|
|
2089
|
+
};
|
|
2090
|
+
}, {
|
|
2091
|
+
readonly name: "mailbox_id";
|
|
2092
|
+
readonly required: false;
|
|
2093
|
+
readonly schema: {
|
|
2094
|
+
readonly type: "string";
|
|
2095
|
+
};
|
|
1092
2096
|
}];
|
|
2097
|
+
readonly responseKind: "json";
|
|
1093
2098
|
readonly requestBodyRequired: false;
|
|
1094
2099
|
readonly requiredKeyKind: "mailbox";
|
|
1095
2100
|
readonly surface: "mailbox";
|
|
1096
2101
|
};
|
|
1097
2102
|
readonly managementActivateProvider: {
|
|
2103
|
+
readonly bodyKind: "none";
|
|
1098
2104
|
readonly command: "management:activate-provider";
|
|
1099
2105
|
readonly description: "Activate a sending account";
|
|
1100
2106
|
readonly headerParams: readonly [{
|
|
1101
2107
|
readonly name: "Idempotency-Key";
|
|
1102
2108
|
readonly required: false;
|
|
2109
|
+
readonly schema: {
|
|
2110
|
+
readonly type: "string";
|
|
2111
|
+
readonly maxLength: 255;
|
|
2112
|
+
};
|
|
1103
2113
|
}];
|
|
1104
2114
|
readonly method: "post";
|
|
1105
2115
|
readonly operationId: "managementActivateProvider";
|
|
@@ -1107,50 +2117,92 @@ export declare const operations: {
|
|
|
1107
2117
|
readonly pathParams: readonly [{
|
|
1108
2118
|
readonly name: "public_id";
|
|
1109
2119
|
readonly required: true;
|
|
2120
|
+
readonly schema: {
|
|
2121
|
+
readonly type: "string";
|
|
2122
|
+
};
|
|
2123
|
+
}];
|
|
2124
|
+
readonly queryParams: readonly [];
|
|
2125
|
+
readonly responseKind: "json";
|
|
2126
|
+
readonly requestBodyRequired: false;
|
|
2127
|
+
readonly requiredKeyKind: "root";
|
|
2128
|
+
readonly surface: "management";
|
|
2129
|
+
};
|
|
2130
|
+
readonly managementCancelSharedAmazonSesLimitRequest: {
|
|
2131
|
+
readonly bodyKind: "none";
|
|
2132
|
+
readonly command: "management:cancel-shared-amazon-ses-limit-request";
|
|
2133
|
+
readonly description: "Cancel a shared Amazon SES daily limit request";
|
|
2134
|
+
readonly headerParams: readonly [];
|
|
2135
|
+
readonly method: "delete";
|
|
2136
|
+
readonly operationId: "managementCancelSharedAmazonSesLimitRequest";
|
|
2137
|
+
readonly path: "/providers/shared-amazon-ses-limit-request/{request_id}";
|
|
2138
|
+
readonly pathParams: readonly [{
|
|
2139
|
+
readonly name: "request_id";
|
|
2140
|
+
readonly required: true;
|
|
2141
|
+
readonly schema: {
|
|
2142
|
+
readonly type: "string";
|
|
2143
|
+
};
|
|
1110
2144
|
}];
|
|
1111
2145
|
readonly queryParams: readonly [];
|
|
2146
|
+
readonly responseKind: "json";
|
|
1112
2147
|
readonly requestBodyRequired: false;
|
|
1113
2148
|
readonly requiredKeyKind: "root";
|
|
1114
2149
|
readonly surface: "management";
|
|
1115
2150
|
};
|
|
1116
2151
|
readonly managementCreateDomain: {
|
|
2152
|
+
readonly bodyKind: "json";
|
|
1117
2153
|
readonly command: "management:create-domain";
|
|
1118
2154
|
readonly description: "Add a mailbox domain";
|
|
1119
2155
|
readonly headerParams: readonly [{
|
|
1120
2156
|
readonly name: "Idempotency-Key";
|
|
1121
2157
|
readonly required: false;
|
|
2158
|
+
readonly schema: {
|
|
2159
|
+
readonly type: "string";
|
|
2160
|
+
readonly maxLength: 255;
|
|
2161
|
+
};
|
|
1122
2162
|
}];
|
|
1123
2163
|
readonly method: "post";
|
|
1124
2164
|
readonly operationId: "managementCreateDomain";
|
|
1125
2165
|
readonly path: "/domains";
|
|
1126
2166
|
readonly pathParams: readonly [];
|
|
1127
2167
|
readonly queryParams: readonly [];
|
|
2168
|
+
readonly responseKind: "json";
|
|
1128
2169
|
readonly requestBodyRequired: false;
|
|
1129
2170
|
readonly requiredKeyKind: "root";
|
|
1130
2171
|
readonly surface: "management";
|
|
1131
2172
|
};
|
|
1132
2173
|
readonly managementCreateMailbox: {
|
|
2174
|
+
readonly bodyKind: "json";
|
|
1133
2175
|
readonly command: "management:create-mailbox";
|
|
1134
2176
|
readonly description: "Create a mailbox";
|
|
1135
2177
|
readonly headerParams: readonly [{
|
|
1136
2178
|
readonly name: "Idempotency-Key";
|
|
1137
2179
|
readonly required: false;
|
|
2180
|
+
readonly schema: {
|
|
2181
|
+
readonly type: "string";
|
|
2182
|
+
readonly maxLength: 255;
|
|
2183
|
+
};
|
|
1138
2184
|
}];
|
|
1139
2185
|
readonly method: "post";
|
|
1140
2186
|
readonly operationId: "managementCreateMailbox";
|
|
1141
2187
|
readonly path: "/mailboxes";
|
|
1142
2188
|
readonly pathParams: readonly [];
|
|
1143
2189
|
readonly queryParams: readonly [];
|
|
2190
|
+
readonly responseKind: "json";
|
|
1144
2191
|
readonly requestBodyRequired: false;
|
|
1145
2192
|
readonly requiredKeyKind: "root";
|
|
1146
2193
|
readonly surface: "management";
|
|
1147
2194
|
};
|
|
1148
2195
|
readonly managementCreateMailboxKey: {
|
|
2196
|
+
readonly bodyKind: "json";
|
|
1149
2197
|
readonly command: "management:create-mailbox-key";
|
|
1150
2198
|
readonly description: "Create a mailbox API key";
|
|
1151
2199
|
readonly headerParams: readonly [{
|
|
1152
2200
|
readonly name: "Idempotency-Key";
|
|
1153
2201
|
readonly required: false;
|
|
2202
|
+
readonly schema: {
|
|
2203
|
+
readonly type: "string";
|
|
2204
|
+
readonly maxLength: 255;
|
|
2205
|
+
};
|
|
1154
2206
|
}];
|
|
1155
2207
|
readonly method: "post";
|
|
1156
2208
|
readonly operationId: "managementCreateMailboxKey";
|
|
@@ -1158,66 +2210,93 @@ export declare const operations: {
|
|
|
1158
2210
|
readonly pathParams: readonly [{
|
|
1159
2211
|
readonly name: "public_id";
|
|
1160
2212
|
readonly required: true;
|
|
2213
|
+
readonly schema: {
|
|
2214
|
+
readonly type: "string";
|
|
2215
|
+
};
|
|
1161
2216
|
}];
|
|
1162
2217
|
readonly queryParams: readonly [];
|
|
2218
|
+
readonly responseKind: "json";
|
|
1163
2219
|
readonly requestBodyRequired: false;
|
|
1164
2220
|
readonly requiredKeyKind: "root";
|
|
1165
2221
|
readonly surface: "management";
|
|
1166
2222
|
};
|
|
1167
2223
|
readonly managementCreateProvider: {
|
|
2224
|
+
readonly bodyKind: "json";
|
|
1168
2225
|
readonly command: "management:create-provider";
|
|
1169
2226
|
readonly description: "Create an SMTP sending account";
|
|
1170
2227
|
readonly headerParams: readonly [{
|
|
1171
2228
|
readonly name: "Idempotency-Key";
|
|
1172
2229
|
readonly required: false;
|
|
2230
|
+
readonly schema: {
|
|
2231
|
+
readonly type: "string";
|
|
2232
|
+
readonly maxLength: 255;
|
|
2233
|
+
};
|
|
1173
2234
|
}];
|
|
1174
2235
|
readonly method: "post";
|
|
1175
2236
|
readonly operationId: "managementCreateProvider";
|
|
1176
2237
|
readonly path: "/providers";
|
|
1177
2238
|
readonly pathParams: readonly [];
|
|
1178
2239
|
readonly queryParams: readonly [];
|
|
2240
|
+
readonly responseKind: "json";
|
|
1179
2241
|
readonly requestBodyRequired: false;
|
|
1180
2242
|
readonly requiredKeyKind: "root";
|
|
1181
2243
|
readonly surface: "management";
|
|
1182
2244
|
};
|
|
1183
2245
|
readonly managementCreateSharedAmazonSesLimitRequest: {
|
|
2246
|
+
readonly bodyKind: "none";
|
|
1184
2247
|
readonly command: "management:create-shared-amazon-ses-limit-request";
|
|
1185
2248
|
readonly description: "Request a shared Amazon SES daily limit increase";
|
|
1186
2249
|
readonly headerParams: readonly [{
|
|
1187
2250
|
readonly name: "Idempotency-Key";
|
|
1188
2251
|
readonly required: false;
|
|
2252
|
+
readonly schema: {
|
|
2253
|
+
readonly type: "string";
|
|
2254
|
+
readonly maxLength: 255;
|
|
2255
|
+
};
|
|
1189
2256
|
}];
|
|
1190
2257
|
readonly method: "post";
|
|
1191
2258
|
readonly operationId: "managementCreateSharedAmazonSesLimitRequest";
|
|
1192
2259
|
readonly path: "/providers/shared-amazon-ses-limit-request";
|
|
1193
2260
|
readonly pathParams: readonly [];
|
|
1194
2261
|
readonly queryParams: readonly [];
|
|
2262
|
+
readonly responseKind: "json";
|
|
1195
2263
|
readonly requestBodyRequired: false;
|
|
1196
2264
|
readonly requiredKeyKind: "root";
|
|
1197
2265
|
readonly surface: "management";
|
|
1198
2266
|
};
|
|
1199
2267
|
readonly managementCreateWebhook: {
|
|
2268
|
+
readonly bodyKind: "json";
|
|
1200
2269
|
readonly command: "management:create-webhook";
|
|
1201
2270
|
readonly description: "Create a webhook subscription";
|
|
1202
2271
|
readonly headerParams: readonly [{
|
|
1203
2272
|
readonly name: "Idempotency-Key";
|
|
1204
2273
|
readonly required: false;
|
|
2274
|
+
readonly schema: {
|
|
2275
|
+
readonly type: "string";
|
|
2276
|
+
readonly maxLength: 255;
|
|
2277
|
+
};
|
|
1205
2278
|
}];
|
|
1206
2279
|
readonly method: "post";
|
|
1207
2280
|
readonly operationId: "managementCreateWebhook";
|
|
1208
2281
|
readonly path: "/webhooks";
|
|
1209
2282
|
readonly pathParams: readonly [];
|
|
1210
2283
|
readonly queryParams: readonly [];
|
|
2284
|
+
readonly responseKind: "json";
|
|
1211
2285
|
readonly requestBodyRequired: false;
|
|
1212
2286
|
readonly requiredKeyKind: "root";
|
|
1213
2287
|
readonly surface: "management";
|
|
1214
2288
|
};
|
|
1215
2289
|
readonly managementDeactivateProvider: {
|
|
2290
|
+
readonly bodyKind: "none";
|
|
1216
2291
|
readonly command: "management:deactivate-provider";
|
|
1217
2292
|
readonly description: "Deactivate a sending account";
|
|
1218
2293
|
readonly headerParams: readonly [{
|
|
1219
2294
|
readonly name: "Idempotency-Key";
|
|
1220
2295
|
readonly required: false;
|
|
2296
|
+
readonly schema: {
|
|
2297
|
+
readonly type: "string";
|
|
2298
|
+
readonly maxLength: 255;
|
|
2299
|
+
};
|
|
1221
2300
|
}];
|
|
1222
2301
|
readonly method: "post";
|
|
1223
2302
|
readonly operationId: "managementDeactivateProvider";
|
|
@@ -1225,13 +2304,18 @@ export declare const operations: {
|
|
|
1225
2304
|
readonly pathParams: readonly [{
|
|
1226
2305
|
readonly name: "public_id";
|
|
1227
2306
|
readonly required: true;
|
|
2307
|
+
readonly schema: {
|
|
2308
|
+
readonly type: "string";
|
|
2309
|
+
};
|
|
1228
2310
|
}];
|
|
1229
2311
|
readonly queryParams: readonly [];
|
|
2312
|
+
readonly responseKind: "json";
|
|
1230
2313
|
readonly requestBodyRequired: false;
|
|
1231
2314
|
readonly requiredKeyKind: "root";
|
|
1232
2315
|
readonly surface: "management";
|
|
1233
2316
|
};
|
|
1234
2317
|
readonly managementDeleteDomain: {
|
|
2318
|
+
readonly bodyKind: "none";
|
|
1235
2319
|
readonly command: "management:delete-domain";
|
|
1236
2320
|
readonly description: "Delete a mailbox domain";
|
|
1237
2321
|
readonly headerParams: readonly [];
|
|
@@ -1241,13 +2325,18 @@ export declare const operations: {
|
|
|
1241
2325
|
readonly pathParams: readonly [{
|
|
1242
2326
|
readonly name: "public_id";
|
|
1243
2327
|
readonly required: true;
|
|
2328
|
+
readonly schema: {
|
|
2329
|
+
readonly type: "string";
|
|
2330
|
+
};
|
|
1244
2331
|
}];
|
|
1245
2332
|
readonly queryParams: readonly [];
|
|
2333
|
+
readonly responseKind: "json";
|
|
1246
2334
|
readonly requestBodyRequired: false;
|
|
1247
2335
|
readonly requiredKeyKind: "root";
|
|
1248
2336
|
readonly surface: "management";
|
|
1249
2337
|
};
|
|
1250
2338
|
readonly managementDeleteMailbox: {
|
|
2339
|
+
readonly bodyKind: "none";
|
|
1251
2340
|
readonly command: "management:delete-mailbox";
|
|
1252
2341
|
readonly description: "Delete a mailbox";
|
|
1253
2342
|
readonly headerParams: readonly [];
|
|
@@ -1257,13 +2346,18 @@ export declare const operations: {
|
|
|
1257
2346
|
readonly pathParams: readonly [{
|
|
1258
2347
|
readonly name: "public_id";
|
|
1259
2348
|
readonly required: true;
|
|
2349
|
+
readonly schema: {
|
|
2350
|
+
readonly type: "string";
|
|
2351
|
+
};
|
|
1260
2352
|
}];
|
|
1261
2353
|
readonly queryParams: readonly [];
|
|
2354
|
+
readonly responseKind: "json";
|
|
1262
2355
|
readonly requestBodyRequired: false;
|
|
1263
2356
|
readonly requiredKeyKind: "root";
|
|
1264
2357
|
readonly surface: "management";
|
|
1265
2358
|
};
|
|
1266
2359
|
readonly managementDeleteMailboxKey: {
|
|
2360
|
+
readonly bodyKind: "none";
|
|
1267
2361
|
readonly command: "management:delete-mailbox-key";
|
|
1268
2362
|
readonly description: "Revoke a mailbox API key";
|
|
1269
2363
|
readonly headerParams: readonly [];
|
|
@@ -1273,16 +2367,24 @@ export declare const operations: {
|
|
|
1273
2367
|
readonly pathParams: readonly [{
|
|
1274
2368
|
readonly name: "public_id";
|
|
1275
2369
|
readonly required: true;
|
|
2370
|
+
readonly schema: {
|
|
2371
|
+
readonly type: "string";
|
|
2372
|
+
};
|
|
1276
2373
|
}, {
|
|
1277
2374
|
readonly name: "key_id";
|
|
1278
2375
|
readonly required: true;
|
|
2376
|
+
readonly schema: {
|
|
2377
|
+
readonly type: "string";
|
|
2378
|
+
};
|
|
1279
2379
|
}];
|
|
1280
2380
|
readonly queryParams: readonly [];
|
|
2381
|
+
readonly responseKind: "json";
|
|
1281
2382
|
readonly requestBodyRequired: false;
|
|
1282
2383
|
readonly requiredKeyKind: "root";
|
|
1283
2384
|
readonly surface: "management";
|
|
1284
2385
|
};
|
|
1285
2386
|
readonly managementDeleteProvider: {
|
|
2387
|
+
readonly bodyKind: "none";
|
|
1286
2388
|
readonly command: "management:delete-provider";
|
|
1287
2389
|
readonly description: "Delete a sending account";
|
|
1288
2390
|
readonly headerParams: readonly [];
|
|
@@ -1292,13 +2394,18 @@ export declare const operations: {
|
|
|
1292
2394
|
readonly pathParams: readonly [{
|
|
1293
2395
|
readonly name: "public_id";
|
|
1294
2396
|
readonly required: true;
|
|
2397
|
+
readonly schema: {
|
|
2398
|
+
readonly type: "string";
|
|
2399
|
+
};
|
|
1295
2400
|
}];
|
|
1296
2401
|
readonly queryParams: readonly [];
|
|
2402
|
+
readonly responseKind: "json";
|
|
1297
2403
|
readonly requestBodyRequired: false;
|
|
1298
2404
|
readonly requiredKeyKind: "root";
|
|
1299
2405
|
readonly surface: "management";
|
|
1300
2406
|
};
|
|
1301
2407
|
readonly managementDeleteWebhook: {
|
|
2408
|
+
readonly bodyKind: "none";
|
|
1302
2409
|
readonly command: "management:delete-webhook";
|
|
1303
2410
|
readonly description: "Delete a webhook subscription";
|
|
1304
2411
|
readonly headerParams: readonly [];
|
|
@@ -1308,13 +2415,18 @@ export declare const operations: {
|
|
|
1308
2415
|
readonly pathParams: readonly [{
|
|
1309
2416
|
readonly name: "public_id";
|
|
1310
2417
|
readonly required: true;
|
|
2418
|
+
readonly schema: {
|
|
2419
|
+
readonly type: "string";
|
|
2420
|
+
};
|
|
1311
2421
|
}];
|
|
1312
2422
|
readonly queryParams: readonly [];
|
|
2423
|
+
readonly responseKind: "json";
|
|
1313
2424
|
readonly requestBodyRequired: false;
|
|
1314
2425
|
readonly requiredKeyKind: "root";
|
|
1315
2426
|
readonly surface: "management";
|
|
1316
2427
|
};
|
|
1317
2428
|
readonly managementGetDeliveryPayload: {
|
|
2429
|
+
readonly bodyKind: "none";
|
|
1318
2430
|
readonly command: "management:get-delivery-payload";
|
|
1319
2431
|
readonly description: "Get a webhook delivery payload";
|
|
1320
2432
|
readonly headerParams: readonly [];
|
|
@@ -1324,21 +2436,32 @@ export declare const operations: {
|
|
|
1324
2436
|
readonly pathParams: readonly [{
|
|
1325
2437
|
readonly name: "public_id";
|
|
1326
2438
|
readonly required: true;
|
|
2439
|
+
readonly schema: {
|
|
2440
|
+
readonly type: "string";
|
|
2441
|
+
};
|
|
1327
2442
|
}, {
|
|
1328
2443
|
readonly name: "delivery_id";
|
|
1329
2444
|
readonly required: true;
|
|
2445
|
+
readonly schema: {
|
|
2446
|
+
readonly type: "string";
|
|
2447
|
+
};
|
|
1330
2448
|
}];
|
|
1331
2449
|
readonly queryParams: readonly [];
|
|
2450
|
+
readonly responseKind: "json";
|
|
1332
2451
|
readonly requestBodyRequired: false;
|
|
1333
2452
|
readonly requiredKeyKind: "root";
|
|
1334
2453
|
readonly surface: "management";
|
|
1335
2454
|
};
|
|
1336
2455
|
readonly managementGetDomain: {
|
|
2456
|
+
readonly bodyKind: "none";
|
|
1337
2457
|
readonly command: "management:domains:get";
|
|
1338
2458
|
readonly description: "Get a mailbox domain";
|
|
1339
2459
|
readonly headerParams: readonly [{
|
|
1340
2460
|
readonly name: "If-None-Match";
|
|
1341
2461
|
readonly required: false;
|
|
2462
|
+
readonly schema: {
|
|
2463
|
+
readonly type: "string";
|
|
2464
|
+
};
|
|
1342
2465
|
}];
|
|
1343
2466
|
readonly method: "get";
|
|
1344
2467
|
readonly operationId: "managementGetDomain";
|
|
@@ -1346,18 +2469,26 @@ export declare const operations: {
|
|
|
1346
2469
|
readonly pathParams: readonly [{
|
|
1347
2470
|
readonly name: "public_id";
|
|
1348
2471
|
readonly required: true;
|
|
2472
|
+
readonly schema: {
|
|
2473
|
+
readonly type: "string";
|
|
2474
|
+
};
|
|
1349
2475
|
}];
|
|
1350
2476
|
readonly queryParams: readonly [];
|
|
2477
|
+
readonly responseKind: "json";
|
|
1351
2478
|
readonly requestBodyRequired: false;
|
|
1352
2479
|
readonly requiredKeyKind: "root";
|
|
1353
2480
|
readonly surface: "management";
|
|
1354
2481
|
};
|
|
1355
2482
|
readonly managementGetDomainFilters: {
|
|
2483
|
+
readonly bodyKind: "none";
|
|
1356
2484
|
readonly command: "management:get-domain-filters";
|
|
1357
2485
|
readonly description: "Get domain-wide sender filters";
|
|
1358
2486
|
readonly headerParams: readonly [{
|
|
1359
2487
|
readonly name: "If-None-Match";
|
|
1360
2488
|
readonly required: false;
|
|
2489
|
+
readonly schema: {
|
|
2490
|
+
readonly type: "string";
|
|
2491
|
+
};
|
|
1361
2492
|
}];
|
|
1362
2493
|
readonly method: "get";
|
|
1363
2494
|
readonly operationId: "managementGetDomainFilters";
|
|
@@ -1365,13 +2496,18 @@ export declare const operations: {
|
|
|
1365
2496
|
readonly pathParams: readonly [{
|
|
1366
2497
|
readonly name: "public_id";
|
|
1367
2498
|
readonly required: true;
|
|
2499
|
+
readonly schema: {
|
|
2500
|
+
readonly type: "string";
|
|
2501
|
+
};
|
|
1368
2502
|
}];
|
|
1369
2503
|
readonly queryParams: readonly [];
|
|
2504
|
+
readonly responseKind: "json";
|
|
1370
2505
|
readonly requestBodyRequired: false;
|
|
1371
2506
|
readonly requiredKeyKind: "root";
|
|
1372
2507
|
readonly surface: "management";
|
|
1373
2508
|
};
|
|
1374
2509
|
readonly managementGetDomainZoneFile: {
|
|
2510
|
+
readonly bodyKind: "none";
|
|
1375
2511
|
readonly command: "management:get-domain-zone-file";
|
|
1376
2512
|
readonly description: "Download a domain as a zone file";
|
|
1377
2513
|
readonly headerParams: readonly [];
|
|
@@ -1381,18 +2517,26 @@ export declare const operations: {
|
|
|
1381
2517
|
readonly pathParams: readonly [{
|
|
1382
2518
|
readonly name: "public_id";
|
|
1383
2519
|
readonly required: true;
|
|
2520
|
+
readonly schema: {
|
|
2521
|
+
readonly type: "string";
|
|
2522
|
+
};
|
|
1384
2523
|
}];
|
|
1385
2524
|
readonly queryParams: readonly [];
|
|
2525
|
+
readonly responseKind: "text";
|
|
1386
2526
|
readonly requestBodyRequired: false;
|
|
1387
2527
|
readonly requiredKeyKind: "root";
|
|
1388
2528
|
readonly surface: "management";
|
|
1389
2529
|
};
|
|
1390
2530
|
readonly managementGetEmailLog: {
|
|
2531
|
+
readonly bodyKind: "none";
|
|
1391
2532
|
readonly command: "management:get-email-log";
|
|
1392
2533
|
readonly description: "Get delivery log";
|
|
1393
2534
|
readonly headerParams: readonly [{
|
|
1394
2535
|
readonly name: "If-None-Match";
|
|
1395
2536
|
readonly required: false;
|
|
2537
|
+
readonly schema: {
|
|
2538
|
+
readonly type: "string";
|
|
2539
|
+
};
|
|
1396
2540
|
}];
|
|
1397
2541
|
readonly method: "get";
|
|
1398
2542
|
readonly operationId: "managementGetEmailLog";
|
|
@@ -1400,13 +2544,18 @@ export declare const operations: {
|
|
|
1400
2544
|
readonly pathParams: readonly [{
|
|
1401
2545
|
readonly name: "public_id";
|
|
1402
2546
|
readonly required: true;
|
|
2547
|
+
readonly schema: {
|
|
2548
|
+
readonly type: "string";
|
|
2549
|
+
};
|
|
1403
2550
|
}];
|
|
1404
2551
|
readonly queryParams: readonly [];
|
|
2552
|
+
readonly responseKind: "json";
|
|
1405
2553
|
readonly requestBodyRequired: false;
|
|
1406
2554
|
readonly requiredKeyKind: "root";
|
|
1407
2555
|
readonly surface: "management";
|
|
1408
2556
|
};
|
|
1409
2557
|
readonly managementGetEmailMetrics: {
|
|
2558
|
+
readonly bodyKind: "none";
|
|
1410
2559
|
readonly command: "management:get-email-metrics";
|
|
1411
2560
|
readonly description: "Get email metrics";
|
|
1412
2561
|
readonly headerParams: readonly [];
|
|
@@ -1417,24 +2566,43 @@ export declare const operations: {
|
|
|
1417
2566
|
readonly queryParams: readonly [{
|
|
1418
2567
|
readonly name: "window";
|
|
1419
2568
|
readonly required: false;
|
|
2569
|
+
readonly schema: {
|
|
2570
|
+
readonly type: "string";
|
|
2571
|
+
readonly enum: readonly ["24h", "7d", "30d"];
|
|
2572
|
+
};
|
|
1420
2573
|
}, {
|
|
1421
2574
|
readonly name: "from_date";
|
|
1422
2575
|
readonly required: false;
|
|
2576
|
+
readonly schema: {
|
|
2577
|
+
readonly type: "string";
|
|
2578
|
+
};
|
|
1423
2579
|
}, {
|
|
1424
2580
|
readonly name: "to_date";
|
|
1425
2581
|
readonly required: false;
|
|
2582
|
+
readonly schema: {
|
|
2583
|
+
readonly type: "string";
|
|
2584
|
+
};
|
|
1426
2585
|
}, {
|
|
1427
2586
|
readonly name: "granularity";
|
|
1428
2587
|
readonly required: false;
|
|
2588
|
+
readonly schema: {
|
|
2589
|
+
readonly type: "string";
|
|
2590
|
+
readonly enum: readonly ["hourly", "daily"];
|
|
2591
|
+
};
|
|
1429
2592
|
}, {
|
|
1430
2593
|
readonly name: "provider_id";
|
|
1431
2594
|
readonly required: false;
|
|
2595
|
+
readonly schema: {
|
|
2596
|
+
readonly type: "string";
|
|
2597
|
+
};
|
|
1432
2598
|
}];
|
|
2599
|
+
readonly responseKind: "json";
|
|
1433
2600
|
readonly requestBodyRequired: false;
|
|
1434
2601
|
readonly requiredKeyKind: "root";
|
|
1435
2602
|
readonly surface: "management";
|
|
1436
2603
|
};
|
|
1437
2604
|
readonly managementGetInboxLog: {
|
|
2605
|
+
readonly bodyKind: "none";
|
|
1438
2606
|
readonly command: "management:get-inbox-log";
|
|
1439
2607
|
readonly description: "Get incoming log";
|
|
1440
2608
|
readonly headerParams: readonly [];
|
|
@@ -1444,18 +2612,26 @@ export declare const operations: {
|
|
|
1444
2612
|
readonly pathParams: readonly [{
|
|
1445
2613
|
readonly name: "public_id";
|
|
1446
2614
|
readonly required: true;
|
|
2615
|
+
readonly schema: {
|
|
2616
|
+
readonly type: "string";
|
|
2617
|
+
};
|
|
1447
2618
|
}];
|
|
1448
2619
|
readonly queryParams: readonly [];
|
|
2620
|
+
readonly responseKind: "json";
|
|
1449
2621
|
readonly requestBodyRequired: false;
|
|
1450
2622
|
readonly requiredKeyKind: "root";
|
|
1451
2623
|
readonly surface: "management";
|
|
1452
2624
|
};
|
|
1453
2625
|
readonly managementGetMailbox: {
|
|
2626
|
+
readonly bodyKind: "none";
|
|
1454
2627
|
readonly command: "management:get-mailbox";
|
|
1455
2628
|
readonly description: "Get a mailbox";
|
|
1456
2629
|
readonly headerParams: readonly [{
|
|
1457
2630
|
readonly name: "If-None-Match";
|
|
1458
2631
|
readonly required: false;
|
|
2632
|
+
readonly schema: {
|
|
2633
|
+
readonly type: "string";
|
|
2634
|
+
};
|
|
1459
2635
|
}];
|
|
1460
2636
|
readonly method: "get";
|
|
1461
2637
|
readonly operationId: "managementGetMailbox";
|
|
@@ -1463,18 +2639,26 @@ export declare const operations: {
|
|
|
1463
2639
|
readonly pathParams: readonly [{
|
|
1464
2640
|
readonly name: "public_id";
|
|
1465
2641
|
readonly required: true;
|
|
2642
|
+
readonly schema: {
|
|
2643
|
+
readonly type: "string";
|
|
2644
|
+
};
|
|
1466
2645
|
}];
|
|
1467
2646
|
readonly queryParams: readonly [];
|
|
2647
|
+
readonly responseKind: "json";
|
|
1468
2648
|
readonly requestBodyRequired: false;
|
|
1469
2649
|
readonly requiredKeyKind: "root";
|
|
1470
2650
|
readonly surface: "management";
|
|
1471
2651
|
};
|
|
1472
2652
|
readonly managementGetMailboxFilters: {
|
|
2653
|
+
readonly bodyKind: "none";
|
|
1473
2654
|
readonly command: "management:get-mailbox-filters";
|
|
1474
2655
|
readonly description: "Get mailbox sender filters";
|
|
1475
2656
|
readonly headerParams: readonly [{
|
|
1476
2657
|
readonly name: "If-None-Match";
|
|
1477
2658
|
readonly required: false;
|
|
2659
|
+
readonly schema: {
|
|
2660
|
+
readonly type: "string";
|
|
2661
|
+
};
|
|
1478
2662
|
}];
|
|
1479
2663
|
readonly method: "get";
|
|
1480
2664
|
readonly operationId: "managementGetMailboxFilters";
|
|
@@ -1482,18 +2666,26 @@ export declare const operations: {
|
|
|
1482
2666
|
readonly pathParams: readonly [{
|
|
1483
2667
|
readonly name: "public_id";
|
|
1484
2668
|
readonly required: true;
|
|
2669
|
+
readonly schema: {
|
|
2670
|
+
readonly type: "string";
|
|
2671
|
+
};
|
|
1485
2672
|
}];
|
|
1486
2673
|
readonly queryParams: readonly [];
|
|
2674
|
+
readonly responseKind: "json";
|
|
1487
2675
|
readonly requestBodyRequired: false;
|
|
1488
2676
|
readonly requiredKeyKind: "root";
|
|
1489
2677
|
readonly surface: "management";
|
|
1490
2678
|
};
|
|
1491
2679
|
readonly managementGetProvider: {
|
|
2680
|
+
readonly bodyKind: "none";
|
|
1492
2681
|
readonly command: "management:get-provider";
|
|
1493
2682
|
readonly description: "Get a sending account";
|
|
1494
2683
|
readonly headerParams: readonly [{
|
|
1495
2684
|
readonly name: "If-None-Match";
|
|
1496
2685
|
readonly required: false;
|
|
2686
|
+
readonly schema: {
|
|
2687
|
+
readonly type: "string";
|
|
2688
|
+
};
|
|
1497
2689
|
}];
|
|
1498
2690
|
readonly method: "get";
|
|
1499
2691
|
readonly operationId: "managementGetProvider";
|
|
@@ -1501,13 +2693,18 @@ export declare const operations: {
|
|
|
1501
2693
|
readonly pathParams: readonly [{
|
|
1502
2694
|
readonly name: "public_id";
|
|
1503
2695
|
readonly required: true;
|
|
2696
|
+
readonly schema: {
|
|
2697
|
+
readonly type: "string";
|
|
2698
|
+
};
|
|
1504
2699
|
}];
|
|
1505
2700
|
readonly queryParams: readonly [];
|
|
2701
|
+
readonly responseKind: "json";
|
|
1506
2702
|
readonly requestBodyRequired: false;
|
|
1507
2703
|
readonly requiredKeyKind: "root";
|
|
1508
2704
|
readonly surface: "management";
|
|
1509
2705
|
};
|
|
1510
2706
|
readonly managementGetProviderLimits: {
|
|
2707
|
+
readonly bodyKind: "none";
|
|
1511
2708
|
readonly command: "management:get-provider-limits";
|
|
1512
2709
|
readonly description: "Get sending account limits";
|
|
1513
2710
|
readonly headerParams: readonly [];
|
|
@@ -1516,11 +2713,13 @@ export declare const operations: {
|
|
|
1516
2713
|
readonly path: "/providers/limits";
|
|
1517
2714
|
readonly pathParams: readonly [];
|
|
1518
2715
|
readonly queryParams: readonly [];
|
|
2716
|
+
readonly responseKind: "json";
|
|
1519
2717
|
readonly requestBodyRequired: false;
|
|
1520
2718
|
readonly requiredKeyKind: "root";
|
|
1521
2719
|
readonly surface: "management";
|
|
1522
2720
|
};
|
|
1523
2721
|
readonly managementGetProviderStats: {
|
|
2722
|
+
readonly bodyKind: "none";
|
|
1524
2723
|
readonly command: "management:get-provider-stats";
|
|
1525
2724
|
readonly description: "Get sending account statistics";
|
|
1526
2725
|
readonly headerParams: readonly [];
|
|
@@ -1529,11 +2728,13 @@ export declare const operations: {
|
|
|
1529
2728
|
readonly path: "/providers/stats";
|
|
1530
2729
|
readonly pathParams: readonly [];
|
|
1531
2730
|
readonly queryParams: readonly [];
|
|
2731
|
+
readonly responseKind: "json";
|
|
1532
2732
|
readonly requestBodyRequired: false;
|
|
1533
2733
|
readonly requiredKeyKind: "root";
|
|
1534
2734
|
readonly surface: "management";
|
|
1535
2735
|
};
|
|
1536
2736
|
readonly managementGetProviderUsage: {
|
|
2737
|
+
readonly bodyKind: "none";
|
|
1537
2738
|
readonly command: "management:get-provider-usage";
|
|
1538
2739
|
readonly description: "Get sending account usage";
|
|
1539
2740
|
readonly headerParams: readonly [];
|
|
@@ -1542,11 +2743,13 @@ export declare const operations: {
|
|
|
1542
2743
|
readonly path: "/providers/usage";
|
|
1543
2744
|
readonly pathParams: readonly [];
|
|
1544
2745
|
readonly queryParams: readonly [];
|
|
2746
|
+
readonly responseKind: "json";
|
|
1545
2747
|
readonly requestBodyRequired: false;
|
|
1546
2748
|
readonly requiredKeyKind: "root";
|
|
1547
2749
|
readonly surface: "management";
|
|
1548
2750
|
};
|
|
1549
2751
|
readonly managementGetSharedAmazonSesLimitRequest: {
|
|
2752
|
+
readonly bodyKind: "none";
|
|
1550
2753
|
readonly command: "management:get-shared-amazon-ses-limit-request";
|
|
1551
2754
|
readonly description: "Get shared Amazon SES limit request state";
|
|
1552
2755
|
readonly headerParams: readonly [];
|
|
@@ -1555,11 +2758,13 @@ export declare const operations: {
|
|
|
1555
2758
|
readonly path: "/providers/shared-amazon-ses-limit-request";
|
|
1556
2759
|
readonly pathParams: readonly [];
|
|
1557
2760
|
readonly queryParams: readonly [];
|
|
2761
|
+
readonly responseKind: "json";
|
|
1558
2762
|
readonly requestBodyRequired: false;
|
|
1559
2763
|
readonly requiredKeyKind: "root";
|
|
1560
2764
|
readonly surface: "management";
|
|
1561
2765
|
};
|
|
1562
2766
|
readonly managementGetSpendSummary: {
|
|
2767
|
+
readonly bodyKind: "none";
|
|
1563
2768
|
readonly command: "management:get-spend-summary";
|
|
1564
2769
|
readonly description: "Get spend summary";
|
|
1565
2770
|
readonly headerParams: readonly [];
|
|
@@ -1570,17 +2775,26 @@ export declare const operations: {
|
|
|
1570
2775
|
readonly queryParams: readonly [{
|
|
1571
2776
|
readonly name: "days";
|
|
1572
2777
|
readonly required: false;
|
|
2778
|
+
readonly schema: {
|
|
2779
|
+
readonly type: "string";
|
|
2780
|
+
readonly enum: readonly ["7", "30", "90"];
|
|
2781
|
+
};
|
|
1573
2782
|
}];
|
|
2783
|
+
readonly responseKind: "json";
|
|
1574
2784
|
readonly requestBodyRequired: false;
|
|
1575
2785
|
readonly requiredKeyKind: "root";
|
|
1576
2786
|
readonly surface: "management";
|
|
1577
2787
|
};
|
|
1578
2788
|
readonly managementGetWebhook: {
|
|
2789
|
+
readonly bodyKind: "none";
|
|
1579
2790
|
readonly command: "management:get-webhook";
|
|
1580
2791
|
readonly description: "Get a webhook subscription";
|
|
1581
2792
|
readonly headerParams: readonly [{
|
|
1582
2793
|
readonly name: "If-None-Match";
|
|
1583
2794
|
readonly required: false;
|
|
2795
|
+
readonly schema: {
|
|
2796
|
+
readonly type: "string";
|
|
2797
|
+
};
|
|
1584
2798
|
}];
|
|
1585
2799
|
readonly method: "get";
|
|
1586
2800
|
readonly operationId: "managementGetWebhook";
|
|
@@ -1588,13 +2802,18 @@ export declare const operations: {
|
|
|
1588
2802
|
readonly pathParams: readonly [{
|
|
1589
2803
|
readonly name: "public_id";
|
|
1590
2804
|
readonly required: true;
|
|
2805
|
+
readonly schema: {
|
|
2806
|
+
readonly type: "string";
|
|
2807
|
+
};
|
|
1591
2808
|
}];
|
|
1592
2809
|
readonly queryParams: readonly [];
|
|
2810
|
+
readonly responseKind: "json";
|
|
1593
2811
|
readonly requestBodyRequired: false;
|
|
1594
2812
|
readonly requiredKeyKind: "root";
|
|
1595
2813
|
readonly surface: "management";
|
|
1596
2814
|
};
|
|
1597
2815
|
readonly managementListBalance: {
|
|
2816
|
+
readonly bodyKind: "none";
|
|
1598
2817
|
readonly command: "management:list-balance";
|
|
1599
2818
|
readonly description: "Get current balance";
|
|
1600
2819
|
readonly headerParams: readonly [];
|
|
@@ -1603,11 +2822,13 @@ export declare const operations: {
|
|
|
1603
2822
|
readonly path: "/billing/balance";
|
|
1604
2823
|
readonly pathParams: readonly [];
|
|
1605
2824
|
readonly queryParams: readonly [];
|
|
2825
|
+
readonly responseKind: "json";
|
|
1606
2826
|
readonly requestBodyRequired: false;
|
|
1607
2827
|
readonly requiredKeyKind: "root";
|
|
1608
2828
|
readonly surface: "management";
|
|
1609
2829
|
};
|
|
1610
2830
|
readonly managementListDelivery: {
|
|
2831
|
+
readonly bodyKind: "none";
|
|
1611
2832
|
readonly command: "management:list-delivery";
|
|
1612
2833
|
readonly description: "List webhook delivery attempts";
|
|
1613
2834
|
readonly headerParams: readonly [];
|
|
@@ -1617,25 +2838,46 @@ export declare const operations: {
|
|
|
1617
2838
|
readonly pathParams: readonly [{
|
|
1618
2839
|
readonly name: "public_id";
|
|
1619
2840
|
readonly required: true;
|
|
2841
|
+
readonly schema: {
|
|
2842
|
+
readonly type: "string";
|
|
2843
|
+
};
|
|
1620
2844
|
}];
|
|
1621
2845
|
readonly queryParams: readonly [{
|
|
1622
2846
|
readonly name: "cursor";
|
|
1623
2847
|
readonly required: false;
|
|
2848
|
+
readonly schema: {
|
|
2849
|
+
readonly type: "string";
|
|
2850
|
+
};
|
|
1624
2851
|
}, {
|
|
1625
2852
|
readonly name: "limit";
|
|
1626
2853
|
readonly required: false;
|
|
2854
|
+
readonly schema: {
|
|
2855
|
+
readonly type: "integer";
|
|
2856
|
+
readonly minimum: 1;
|
|
2857
|
+
readonly maximum: 100;
|
|
2858
|
+
};
|
|
1627
2859
|
}, {
|
|
1628
2860
|
readonly name: "event_type";
|
|
1629
2861
|
readonly required: false;
|
|
2862
|
+
readonly schema: {
|
|
2863
|
+
readonly type: "string";
|
|
2864
|
+
readonly enum: readonly ["message.delivered", "message.bounced", "message.complained", "message.rejected", "message.delivery_delayed", "message.received", "message.received.spam", "sendmux.test"];
|
|
2865
|
+
};
|
|
1630
2866
|
}, {
|
|
1631
2867
|
readonly name: "result";
|
|
1632
2868
|
readonly required: false;
|
|
2869
|
+
readonly schema: {
|
|
2870
|
+
readonly type: "string";
|
|
2871
|
+
readonly enum: readonly ["success", "retrying", "failed", "permanent_failure"];
|
|
2872
|
+
};
|
|
1633
2873
|
}];
|
|
2874
|
+
readonly responseKind: "json";
|
|
1634
2875
|
readonly requestBodyRequired: false;
|
|
1635
2876
|
readonly requiredKeyKind: "root";
|
|
1636
2877
|
readonly surface: "management";
|
|
1637
2878
|
};
|
|
1638
2879
|
readonly managementListDomains: {
|
|
2880
|
+
readonly bodyKind: "none";
|
|
1639
2881
|
readonly command: "management:domains:list";
|
|
1640
2882
|
readonly description: "List mailbox domains";
|
|
1641
2883
|
readonly headerParams: readonly [];
|
|
@@ -1646,15 +2888,25 @@ export declare const operations: {
|
|
|
1646
2888
|
readonly queryParams: readonly [{
|
|
1647
2889
|
readonly name: "cursor";
|
|
1648
2890
|
readonly required: false;
|
|
2891
|
+
readonly schema: {
|
|
2892
|
+
readonly type: "string";
|
|
2893
|
+
};
|
|
1649
2894
|
}, {
|
|
1650
2895
|
readonly name: "limit";
|
|
1651
2896
|
readonly required: false;
|
|
2897
|
+
readonly schema: {
|
|
2898
|
+
readonly type: "integer";
|
|
2899
|
+
readonly minimum: 1;
|
|
2900
|
+
readonly maximum: 100;
|
|
2901
|
+
};
|
|
1652
2902
|
}];
|
|
2903
|
+
readonly responseKind: "json";
|
|
1653
2904
|
readonly requestBodyRequired: false;
|
|
1654
2905
|
readonly requiredKeyKind: "root";
|
|
1655
2906
|
readonly surface: "management";
|
|
1656
2907
|
};
|
|
1657
2908
|
readonly managementListEmailLogs: {
|
|
2909
|
+
readonly bodyKind: "none";
|
|
1658
2910
|
readonly command: "management:list-email-logs";
|
|
1659
2911
|
readonly description: "List delivery logs";
|
|
1660
2912
|
readonly headerParams: readonly [];
|
|
@@ -1665,30 +2917,56 @@ export declare const operations: {
|
|
|
1665
2917
|
readonly queryParams: readonly [{
|
|
1666
2918
|
readonly name: "limit";
|
|
1667
2919
|
readonly required: false;
|
|
2920
|
+
readonly schema: {
|
|
2921
|
+
readonly type: "integer";
|
|
2922
|
+
readonly minimum: 1;
|
|
2923
|
+
readonly maximum: 100;
|
|
2924
|
+
};
|
|
1668
2925
|
}, {
|
|
1669
2926
|
readonly name: "cursor";
|
|
1670
2927
|
readonly required: false;
|
|
2928
|
+
readonly schema: {
|
|
2929
|
+
readonly type: "string";
|
|
2930
|
+
};
|
|
1671
2931
|
}, {
|
|
1672
2932
|
readonly name: "status";
|
|
1673
2933
|
readonly required: false;
|
|
2934
|
+
readonly schema: {
|
|
2935
|
+
readonly type: "string";
|
|
2936
|
+
readonly enum: readonly ["pending", "sent", "failed", "rejected"];
|
|
2937
|
+
};
|
|
1674
2938
|
}, {
|
|
1675
2939
|
readonly name: "from_date";
|
|
1676
2940
|
readonly required: false;
|
|
2941
|
+
readonly schema: {
|
|
2942
|
+
readonly type: "string";
|
|
2943
|
+
};
|
|
1677
2944
|
}, {
|
|
1678
2945
|
readonly name: "to_date";
|
|
1679
2946
|
readonly required: false;
|
|
2947
|
+
readonly schema: {
|
|
2948
|
+
readonly type: "string";
|
|
2949
|
+
};
|
|
1680
2950
|
}, {
|
|
1681
2951
|
readonly name: "provider_id";
|
|
1682
2952
|
readonly required: false;
|
|
2953
|
+
readonly schema: {
|
|
2954
|
+
readonly type: "string";
|
|
2955
|
+
};
|
|
1683
2956
|
}, {
|
|
1684
2957
|
readonly name: "search";
|
|
1685
2958
|
readonly required: false;
|
|
2959
|
+
readonly schema: {
|
|
2960
|
+
readonly type: "string";
|
|
2961
|
+
};
|
|
1686
2962
|
}];
|
|
2963
|
+
readonly responseKind: "json";
|
|
1687
2964
|
readonly requestBodyRequired: false;
|
|
1688
2965
|
readonly requiredKeyKind: "root";
|
|
1689
2966
|
readonly surface: "management";
|
|
1690
2967
|
};
|
|
1691
2968
|
readonly managementListInboxLogs: {
|
|
2969
|
+
readonly bodyKind: "none";
|
|
1692
2970
|
readonly command: "management:list-inbox-logs";
|
|
1693
2971
|
readonly description: "List incoming logs";
|
|
1694
2972
|
readonly headerParams: readonly [];
|
|
@@ -1699,30 +2977,56 @@ export declare const operations: {
|
|
|
1699
2977
|
readonly queryParams: readonly [{
|
|
1700
2978
|
readonly name: "limit";
|
|
1701
2979
|
readonly required: false;
|
|
2980
|
+
readonly schema: {
|
|
2981
|
+
readonly type: "integer";
|
|
2982
|
+
readonly minimum: 1;
|
|
2983
|
+
readonly maximum: 100;
|
|
2984
|
+
};
|
|
1702
2985
|
}, {
|
|
1703
2986
|
readonly name: "cursor";
|
|
1704
2987
|
readonly required: false;
|
|
2988
|
+
readonly schema: {
|
|
2989
|
+
readonly type: "string";
|
|
2990
|
+
};
|
|
1705
2991
|
}, {
|
|
1706
2992
|
readonly name: "mailbox_id";
|
|
1707
2993
|
readonly required: false;
|
|
2994
|
+
readonly schema: {
|
|
2995
|
+
readonly type: "string";
|
|
2996
|
+
};
|
|
1708
2997
|
}, {
|
|
1709
2998
|
readonly name: "event_type";
|
|
1710
2999
|
readonly required: false;
|
|
3000
|
+
readonly schema: {
|
|
3001
|
+
readonly type: "string";
|
|
3002
|
+
readonly enum: readonly ["message.received", "message.received.spam"];
|
|
3003
|
+
};
|
|
1711
3004
|
}, {
|
|
1712
3005
|
readonly name: "from_date";
|
|
1713
3006
|
readonly required: false;
|
|
3007
|
+
readonly schema: {
|
|
3008
|
+
readonly type: "string";
|
|
3009
|
+
};
|
|
1714
3010
|
}, {
|
|
1715
3011
|
readonly name: "to_date";
|
|
1716
3012
|
readonly required: false;
|
|
3013
|
+
readonly schema: {
|
|
3014
|
+
readonly type: "string";
|
|
3015
|
+
};
|
|
1717
3016
|
}, {
|
|
1718
3017
|
readonly name: "search";
|
|
1719
3018
|
readonly required: false;
|
|
3019
|
+
readonly schema: {
|
|
3020
|
+
readonly type: "string";
|
|
3021
|
+
};
|
|
1720
3022
|
}];
|
|
3023
|
+
readonly responseKind: "json";
|
|
1721
3024
|
readonly requestBodyRequired: false;
|
|
1722
3025
|
readonly requiredKeyKind: "root";
|
|
1723
3026
|
readonly surface: "management";
|
|
1724
3027
|
};
|
|
1725
3028
|
readonly managementListMailboxes: {
|
|
3029
|
+
readonly bodyKind: "none";
|
|
1726
3030
|
readonly command: "management:mailboxes:list";
|
|
1727
3031
|
readonly description: "List mailboxes";
|
|
1728
3032
|
readonly headerParams: readonly [];
|
|
@@ -1733,18 +3037,32 @@ export declare const operations: {
|
|
|
1733
3037
|
readonly queryParams: readonly [{
|
|
1734
3038
|
readonly name: "cursor";
|
|
1735
3039
|
readonly required: false;
|
|
3040
|
+
readonly schema: {
|
|
3041
|
+
readonly type: "string";
|
|
3042
|
+
};
|
|
1736
3043
|
}, {
|
|
1737
3044
|
readonly name: "limit";
|
|
1738
3045
|
readonly required: false;
|
|
3046
|
+
readonly schema: {
|
|
3047
|
+
readonly type: "integer";
|
|
3048
|
+
readonly minimum: 1;
|
|
3049
|
+
readonly maximum: 100;
|
|
3050
|
+
};
|
|
1739
3051
|
}, {
|
|
1740
3052
|
readonly name: "include_deleted";
|
|
1741
3053
|
readonly required: false;
|
|
3054
|
+
readonly schema: {
|
|
3055
|
+
readonly type: "string";
|
|
3056
|
+
readonly enum: readonly ["true"];
|
|
3057
|
+
};
|
|
1742
3058
|
}];
|
|
3059
|
+
readonly responseKind: "json";
|
|
1743
3060
|
readonly requestBodyRequired: false;
|
|
1744
3061
|
readonly requiredKeyKind: "root";
|
|
1745
3062
|
readonly surface: "management";
|
|
1746
3063
|
};
|
|
1747
3064
|
readonly managementListProviders: {
|
|
3065
|
+
readonly bodyKind: "none";
|
|
1748
3066
|
readonly command: "management:providers:list";
|
|
1749
3067
|
readonly description: "List sending accounts";
|
|
1750
3068
|
readonly headerParams: readonly [];
|
|
@@ -1755,21 +3073,39 @@ export declare const operations: {
|
|
|
1755
3073
|
readonly queryParams: readonly [{
|
|
1756
3074
|
readonly name: "cursor";
|
|
1757
3075
|
readonly required: false;
|
|
3076
|
+
readonly schema: {
|
|
3077
|
+
readonly type: "string";
|
|
3078
|
+
};
|
|
1758
3079
|
}, {
|
|
1759
3080
|
readonly name: "status";
|
|
1760
3081
|
readonly required: false;
|
|
3082
|
+
readonly schema: {
|
|
3083
|
+
readonly type: "string";
|
|
3084
|
+
readonly enum: readonly ["active", "inactive", "error", "pending"];
|
|
3085
|
+
};
|
|
1761
3086
|
}, {
|
|
1762
3087
|
readonly name: "type";
|
|
1763
3088
|
readonly required: false;
|
|
3089
|
+
readonly schema: {
|
|
3090
|
+
readonly type: "string";
|
|
3091
|
+
readonly enum: readonly ["smtp", "gmail_api", "outlook_api", "amazon_ses"];
|
|
3092
|
+
};
|
|
1764
3093
|
}, {
|
|
1765
3094
|
readonly name: "limit";
|
|
1766
3095
|
readonly required: false;
|
|
3096
|
+
readonly schema: {
|
|
3097
|
+
readonly type: "integer";
|
|
3098
|
+
readonly minimum: 1;
|
|
3099
|
+
readonly maximum: 100;
|
|
3100
|
+
};
|
|
1767
3101
|
}];
|
|
3102
|
+
readonly responseKind: "json";
|
|
1768
3103
|
readonly requestBodyRequired: false;
|
|
1769
3104
|
readonly requiredKeyKind: "root";
|
|
1770
3105
|
readonly surface: "management";
|
|
1771
3106
|
};
|
|
1772
3107
|
readonly managementListTransactions: {
|
|
3108
|
+
readonly bodyKind: "none";
|
|
1773
3109
|
readonly command: "management:list-transactions";
|
|
1774
3110
|
readonly description: "List transactions";
|
|
1775
3111
|
readonly headerParams: readonly [];
|
|
@@ -1780,18 +3116,32 @@ export declare const operations: {
|
|
|
1780
3116
|
readonly queryParams: readonly [{
|
|
1781
3117
|
readonly name: "cursor";
|
|
1782
3118
|
readonly required: false;
|
|
3119
|
+
readonly schema: {
|
|
3120
|
+
readonly type: "string";
|
|
3121
|
+
};
|
|
1783
3122
|
}, {
|
|
1784
3123
|
readonly name: "limit";
|
|
1785
3124
|
readonly required: false;
|
|
3125
|
+
readonly schema: {
|
|
3126
|
+
readonly type: "integer";
|
|
3127
|
+
readonly minimum: 1;
|
|
3128
|
+
readonly maximum: 100;
|
|
3129
|
+
};
|
|
1786
3130
|
}, {
|
|
1787
3131
|
readonly name: "type";
|
|
1788
3132
|
readonly required: false;
|
|
3133
|
+
readonly schema: {
|
|
3134
|
+
readonly type: "string";
|
|
3135
|
+
readonly enum: readonly ["PURCHASE", "USAGE", "AUTO_TOPUP", "REFUND", "ADJUSTMENT"];
|
|
3136
|
+
};
|
|
1789
3137
|
}];
|
|
3138
|
+
readonly responseKind: "json";
|
|
1790
3139
|
readonly requestBodyRequired: false;
|
|
1791
3140
|
readonly requiredKeyKind: "root";
|
|
1792
3141
|
readonly surface: "management";
|
|
1793
3142
|
};
|
|
1794
3143
|
readonly managementListWebhooks: {
|
|
3144
|
+
readonly bodyKind: "none";
|
|
1795
3145
|
readonly command: "management:list-webhooks";
|
|
1796
3146
|
readonly description: "List webhook subscriptions";
|
|
1797
3147
|
readonly headerParams: readonly [];
|
|
@@ -1802,36 +3152,56 @@ export declare const operations: {
|
|
|
1802
3152
|
readonly queryParams: readonly [{
|
|
1803
3153
|
readonly name: "cursor";
|
|
1804
3154
|
readonly required: false;
|
|
3155
|
+
readonly schema: {
|
|
3156
|
+
readonly type: "string";
|
|
3157
|
+
};
|
|
1805
3158
|
}, {
|
|
1806
3159
|
readonly name: "limit";
|
|
1807
3160
|
readonly required: false;
|
|
3161
|
+
readonly schema: {
|
|
3162
|
+
readonly type: "integer";
|
|
3163
|
+
readonly minimum: 1;
|
|
3164
|
+
readonly maximum: 100;
|
|
3165
|
+
};
|
|
1808
3166
|
}];
|
|
3167
|
+
readonly responseKind: "json";
|
|
1809
3168
|
readonly requestBodyRequired: false;
|
|
1810
3169
|
readonly requiredKeyKind: "root";
|
|
1811
3170
|
readonly surface: "management";
|
|
1812
3171
|
};
|
|
1813
3172
|
readonly managementRequestSendingAccountLimitIncrease: {
|
|
3173
|
+
readonly bodyKind: "none";
|
|
1814
3174
|
readonly command: "management:request-sending-account-limit-increase";
|
|
1815
3175
|
readonly description: "Request a sending account limit increase";
|
|
1816
3176
|
readonly headerParams: readonly [{
|
|
1817
3177
|
readonly name: "Idempotency-Key";
|
|
1818
3178
|
readonly required: false;
|
|
3179
|
+
readonly schema: {
|
|
3180
|
+
readonly type: "string";
|
|
3181
|
+
readonly maxLength: 255;
|
|
3182
|
+
};
|
|
1819
3183
|
}];
|
|
1820
3184
|
readonly method: "post";
|
|
1821
3185
|
readonly operationId: "managementRequestSendingAccountLimitIncrease";
|
|
1822
3186
|
readonly path: "/providers/limits/sending-accounts/request-increase";
|
|
1823
3187
|
readonly pathParams: readonly [];
|
|
1824
3188
|
readonly queryParams: readonly [];
|
|
3189
|
+
readonly responseKind: "json";
|
|
1825
3190
|
readonly requestBodyRequired: false;
|
|
1826
3191
|
readonly requiredKeyKind: "root";
|
|
1827
3192
|
readonly surface: "management";
|
|
1828
3193
|
};
|
|
1829
3194
|
readonly managementResumeMailbox: {
|
|
3195
|
+
readonly bodyKind: "none";
|
|
1830
3196
|
readonly command: "management:resume-mailbox";
|
|
1831
3197
|
readonly description: "Resume a mailbox";
|
|
1832
3198
|
readonly headerParams: readonly [{
|
|
1833
3199
|
readonly name: "Idempotency-Key";
|
|
1834
3200
|
readonly required: false;
|
|
3201
|
+
readonly schema: {
|
|
3202
|
+
readonly type: "string";
|
|
3203
|
+
readonly maxLength: 255;
|
|
3204
|
+
};
|
|
1835
3205
|
}];
|
|
1836
3206
|
readonly method: "post";
|
|
1837
3207
|
readonly operationId: "managementResumeMailbox";
|
|
@@ -1839,18 +3209,27 @@ export declare const operations: {
|
|
|
1839
3209
|
readonly pathParams: readonly [{
|
|
1840
3210
|
readonly name: "public_id";
|
|
1841
3211
|
readonly required: true;
|
|
3212
|
+
readonly schema: {
|
|
3213
|
+
readonly type: "string";
|
|
3214
|
+
};
|
|
1842
3215
|
}];
|
|
1843
3216
|
readonly queryParams: readonly [];
|
|
3217
|
+
readonly responseKind: "json";
|
|
1844
3218
|
readonly requestBodyRequired: false;
|
|
1845
3219
|
readonly requiredKeyKind: "root";
|
|
1846
3220
|
readonly surface: "management";
|
|
1847
3221
|
};
|
|
1848
3222
|
readonly managementRotateWebhookSecret: {
|
|
3223
|
+
readonly bodyKind: "none";
|
|
1849
3224
|
readonly command: "management:rotate-webhook-secret";
|
|
1850
3225
|
readonly description: "Rotate the signing secret";
|
|
1851
3226
|
readonly headerParams: readonly [{
|
|
1852
3227
|
readonly name: "Idempotency-Key";
|
|
1853
3228
|
readonly required: false;
|
|
3229
|
+
readonly schema: {
|
|
3230
|
+
readonly type: "string";
|
|
3231
|
+
readonly maxLength: 255;
|
|
3232
|
+
};
|
|
1854
3233
|
}];
|
|
1855
3234
|
readonly method: "post";
|
|
1856
3235
|
readonly operationId: "managementRotateWebhookSecret";
|
|
@@ -1858,18 +3237,26 @@ export declare const operations: {
|
|
|
1858
3237
|
readonly pathParams: readonly [{
|
|
1859
3238
|
readonly name: "public_id";
|
|
1860
3239
|
readonly required: true;
|
|
3240
|
+
readonly schema: {
|
|
3241
|
+
readonly type: "string";
|
|
3242
|
+
};
|
|
1861
3243
|
}];
|
|
1862
3244
|
readonly queryParams: readonly [];
|
|
3245
|
+
readonly responseKind: "json";
|
|
1863
3246
|
readonly requestBodyRequired: false;
|
|
1864
3247
|
readonly requiredKeyKind: "root";
|
|
1865
3248
|
readonly surface: "management";
|
|
1866
3249
|
};
|
|
1867
3250
|
readonly managementSetDomainFilters: {
|
|
3251
|
+
readonly bodyKind: "json";
|
|
1868
3252
|
readonly command: "management:set-domain-filters";
|
|
1869
3253
|
readonly description: "Replace domain-wide sender filters";
|
|
1870
3254
|
readonly headerParams: readonly [{
|
|
1871
3255
|
readonly name: "If-Match";
|
|
1872
3256
|
readonly required: false;
|
|
3257
|
+
readonly schema: {
|
|
3258
|
+
readonly type: "string";
|
|
3259
|
+
};
|
|
1873
3260
|
}];
|
|
1874
3261
|
readonly method: "put";
|
|
1875
3262
|
readonly operationId: "managementSetDomainFilters";
|
|
@@ -1877,18 +3264,26 @@ export declare const operations: {
|
|
|
1877
3264
|
readonly pathParams: readonly [{
|
|
1878
3265
|
readonly name: "public_id";
|
|
1879
3266
|
readonly required: true;
|
|
3267
|
+
readonly schema: {
|
|
3268
|
+
readonly type: "string";
|
|
3269
|
+
};
|
|
1880
3270
|
}];
|
|
1881
3271
|
readonly queryParams: readonly [];
|
|
3272
|
+
readonly responseKind: "json";
|
|
1882
3273
|
readonly requestBodyRequired: false;
|
|
1883
3274
|
readonly requiredKeyKind: "root";
|
|
1884
3275
|
readonly surface: "management";
|
|
1885
3276
|
};
|
|
1886
3277
|
readonly managementSetMailboxFilters: {
|
|
3278
|
+
readonly bodyKind: "json";
|
|
1887
3279
|
readonly command: "management:set-mailbox-filters";
|
|
1888
3280
|
readonly description: "Replace mailbox sender filters";
|
|
1889
3281
|
readonly headerParams: readonly [{
|
|
1890
3282
|
readonly name: "If-Match";
|
|
1891
3283
|
readonly required: false;
|
|
3284
|
+
readonly schema: {
|
|
3285
|
+
readonly type: "string";
|
|
3286
|
+
};
|
|
1892
3287
|
}];
|
|
1893
3288
|
readonly method: "put";
|
|
1894
3289
|
readonly operationId: "managementSetMailboxFilters";
|
|
@@ -1896,18 +3291,27 @@ export declare const operations: {
|
|
|
1896
3291
|
readonly pathParams: readonly [{
|
|
1897
3292
|
readonly name: "public_id";
|
|
1898
3293
|
readonly required: true;
|
|
3294
|
+
readonly schema: {
|
|
3295
|
+
readonly type: "string";
|
|
3296
|
+
};
|
|
1899
3297
|
}];
|
|
1900
3298
|
readonly queryParams: readonly [];
|
|
3299
|
+
readonly responseKind: "json";
|
|
1901
3300
|
readonly requestBodyRequired: false;
|
|
1902
3301
|
readonly requiredKeyKind: "root";
|
|
1903
3302
|
readonly surface: "management";
|
|
1904
3303
|
};
|
|
1905
3304
|
readonly managementSuspendMailbox: {
|
|
3305
|
+
readonly bodyKind: "none";
|
|
1906
3306
|
readonly command: "management:suspend-mailbox";
|
|
1907
3307
|
readonly description: "Suspend a mailbox";
|
|
1908
3308
|
readonly headerParams: readonly [{
|
|
1909
3309
|
readonly name: "Idempotency-Key";
|
|
1910
3310
|
readonly required: false;
|
|
3311
|
+
readonly schema: {
|
|
3312
|
+
readonly type: "string";
|
|
3313
|
+
readonly maxLength: 255;
|
|
3314
|
+
};
|
|
1911
3315
|
}];
|
|
1912
3316
|
readonly method: "post";
|
|
1913
3317
|
readonly operationId: "managementSuspendMailbox";
|
|
@@ -1915,18 +3319,27 @@ export declare const operations: {
|
|
|
1915
3319
|
readonly pathParams: readonly [{
|
|
1916
3320
|
readonly name: "public_id";
|
|
1917
3321
|
readonly required: true;
|
|
3322
|
+
readonly schema: {
|
|
3323
|
+
readonly type: "string";
|
|
3324
|
+
};
|
|
1918
3325
|
}];
|
|
1919
3326
|
readonly queryParams: readonly [];
|
|
3327
|
+
readonly responseKind: "json";
|
|
1920
3328
|
readonly requestBodyRequired: false;
|
|
1921
3329
|
readonly requiredKeyKind: "root";
|
|
1922
3330
|
readonly surface: "management";
|
|
1923
3331
|
};
|
|
1924
3332
|
readonly managementTestProvider: {
|
|
3333
|
+
readonly bodyKind: "none";
|
|
1925
3334
|
readonly command: "management:test-provider";
|
|
1926
3335
|
readonly description: "Test an SMTP sending account";
|
|
1927
3336
|
readonly headerParams: readonly [{
|
|
1928
3337
|
readonly name: "Idempotency-Key";
|
|
1929
3338
|
readonly required: false;
|
|
3339
|
+
readonly schema: {
|
|
3340
|
+
readonly type: "string";
|
|
3341
|
+
readonly maxLength: 255;
|
|
3342
|
+
};
|
|
1930
3343
|
}];
|
|
1931
3344
|
readonly method: "post";
|
|
1932
3345
|
readonly operationId: "managementTestProvider";
|
|
@@ -1934,18 +3347,27 @@ export declare const operations: {
|
|
|
1934
3347
|
readonly pathParams: readonly [{
|
|
1935
3348
|
readonly name: "public_id";
|
|
1936
3349
|
readonly required: true;
|
|
3350
|
+
readonly schema: {
|
|
3351
|
+
readonly type: "string";
|
|
3352
|
+
};
|
|
1937
3353
|
}];
|
|
1938
3354
|
readonly queryParams: readonly [];
|
|
3355
|
+
readonly responseKind: "json";
|
|
1939
3356
|
readonly requestBodyRequired: false;
|
|
1940
3357
|
readonly requiredKeyKind: "root";
|
|
1941
3358
|
readonly surface: "management";
|
|
1942
3359
|
};
|
|
1943
3360
|
readonly managementTestWebhook: {
|
|
3361
|
+
readonly bodyKind: "none";
|
|
1944
3362
|
readonly command: "management:test-webhook";
|
|
1945
3363
|
readonly description: "Send a synthetic test event";
|
|
1946
3364
|
readonly headerParams: readonly [{
|
|
1947
3365
|
readonly name: "Idempotency-Key";
|
|
1948
3366
|
readonly required: false;
|
|
3367
|
+
readonly schema: {
|
|
3368
|
+
readonly type: "string";
|
|
3369
|
+
readonly maxLength: 255;
|
|
3370
|
+
};
|
|
1949
3371
|
}];
|
|
1950
3372
|
readonly method: "post";
|
|
1951
3373
|
readonly operationId: "managementTestWebhook";
|
|
@@ -1953,18 +3375,53 @@ export declare const operations: {
|
|
|
1953
3375
|
readonly pathParams: readonly [{
|
|
1954
3376
|
readonly name: "public_id";
|
|
1955
3377
|
readonly required: true;
|
|
3378
|
+
readonly schema: {
|
|
3379
|
+
readonly type: "string";
|
|
3380
|
+
};
|
|
1956
3381
|
}];
|
|
1957
3382
|
readonly queryParams: readonly [];
|
|
3383
|
+
readonly responseKind: "json";
|
|
3384
|
+
readonly requestBodyRequired: false;
|
|
3385
|
+
readonly requiredKeyKind: "root";
|
|
3386
|
+
readonly surface: "management";
|
|
3387
|
+
};
|
|
3388
|
+
readonly managementUpdateDomain: {
|
|
3389
|
+
readonly bodyKind: "json";
|
|
3390
|
+
readonly command: "management:update-domain";
|
|
3391
|
+
readonly description: "Update a mailbox domain";
|
|
3392
|
+
readonly headerParams: readonly [{
|
|
3393
|
+
readonly name: "If-Match";
|
|
3394
|
+
readonly required: false;
|
|
3395
|
+
readonly schema: {
|
|
3396
|
+
readonly type: "string";
|
|
3397
|
+
};
|
|
3398
|
+
}];
|
|
3399
|
+
readonly method: "patch";
|
|
3400
|
+
readonly operationId: "managementUpdateDomain";
|
|
3401
|
+
readonly path: "/domains/{public_id}";
|
|
3402
|
+
readonly pathParams: readonly [{
|
|
3403
|
+
readonly name: "public_id";
|
|
3404
|
+
readonly required: true;
|
|
3405
|
+
readonly schema: {
|
|
3406
|
+
readonly type: "string";
|
|
3407
|
+
};
|
|
3408
|
+
}];
|
|
3409
|
+
readonly queryParams: readonly [];
|
|
3410
|
+
readonly responseKind: "json";
|
|
1958
3411
|
readonly requestBodyRequired: false;
|
|
1959
3412
|
readonly requiredKeyKind: "root";
|
|
1960
3413
|
readonly surface: "management";
|
|
1961
3414
|
};
|
|
1962
3415
|
readonly managementUpdateMailbox: {
|
|
3416
|
+
readonly bodyKind: "json";
|
|
1963
3417
|
readonly command: "management:update-mailbox";
|
|
1964
3418
|
readonly description: "Update a mailbox";
|
|
1965
3419
|
readonly headerParams: readonly [{
|
|
1966
3420
|
readonly name: "If-Match";
|
|
1967
3421
|
readonly required: false;
|
|
3422
|
+
readonly schema: {
|
|
3423
|
+
readonly type: "string";
|
|
3424
|
+
};
|
|
1968
3425
|
}];
|
|
1969
3426
|
readonly method: "patch";
|
|
1970
3427
|
readonly operationId: "managementUpdateMailbox";
|
|
@@ -1972,18 +3429,26 @@ export declare const operations: {
|
|
|
1972
3429
|
readonly pathParams: readonly [{
|
|
1973
3430
|
readonly name: "public_id";
|
|
1974
3431
|
readonly required: true;
|
|
3432
|
+
readonly schema: {
|
|
3433
|
+
readonly type: "string";
|
|
3434
|
+
};
|
|
1975
3435
|
}];
|
|
1976
3436
|
readonly queryParams: readonly [];
|
|
3437
|
+
readonly responseKind: "json";
|
|
1977
3438
|
readonly requestBodyRequired: false;
|
|
1978
3439
|
readonly requiredKeyKind: "root";
|
|
1979
3440
|
readonly surface: "management";
|
|
1980
3441
|
};
|
|
1981
3442
|
readonly managementUpdateProvider: {
|
|
3443
|
+
readonly bodyKind: "json";
|
|
1982
3444
|
readonly command: "management:update-provider";
|
|
1983
3445
|
readonly description: "Update a sending account";
|
|
1984
3446
|
readonly headerParams: readonly [{
|
|
1985
3447
|
readonly name: "If-Match";
|
|
1986
3448
|
readonly required: false;
|
|
3449
|
+
readonly schema: {
|
|
3450
|
+
readonly type: "string";
|
|
3451
|
+
};
|
|
1987
3452
|
}];
|
|
1988
3453
|
readonly method: "patch";
|
|
1989
3454
|
readonly operationId: "managementUpdateProvider";
|
|
@@ -1991,18 +3456,26 @@ export declare const operations: {
|
|
|
1991
3456
|
readonly pathParams: readonly [{
|
|
1992
3457
|
readonly name: "public_id";
|
|
1993
3458
|
readonly required: true;
|
|
3459
|
+
readonly schema: {
|
|
3460
|
+
readonly type: "string";
|
|
3461
|
+
};
|
|
1994
3462
|
}];
|
|
1995
3463
|
readonly queryParams: readonly [];
|
|
3464
|
+
readonly responseKind: "json";
|
|
1996
3465
|
readonly requestBodyRequired: false;
|
|
1997
3466
|
readonly requiredKeyKind: "root";
|
|
1998
3467
|
readonly surface: "management";
|
|
1999
3468
|
};
|
|
2000
3469
|
readonly managementUpdateWebhook: {
|
|
3470
|
+
readonly bodyKind: "json";
|
|
2001
3471
|
readonly command: "management:update-webhook";
|
|
2002
3472
|
readonly description: "Update a webhook subscription";
|
|
2003
3473
|
readonly headerParams: readonly [{
|
|
2004
3474
|
readonly name: "If-Match";
|
|
2005
3475
|
readonly required: false;
|
|
3476
|
+
readonly schema: {
|
|
3477
|
+
readonly type: "string";
|
|
3478
|
+
};
|
|
2006
3479
|
}];
|
|
2007
3480
|
readonly method: "patch";
|
|
2008
3481
|
readonly operationId: "managementUpdateWebhook";
|
|
@@ -2010,13 +3483,18 @@ export declare const operations: {
|
|
|
2010
3483
|
readonly pathParams: readonly [{
|
|
2011
3484
|
readonly name: "public_id";
|
|
2012
3485
|
readonly required: true;
|
|
3486
|
+
readonly schema: {
|
|
3487
|
+
readonly type: "string";
|
|
3488
|
+
};
|
|
2013
3489
|
}];
|
|
2014
3490
|
readonly queryParams: readonly [];
|
|
3491
|
+
readonly responseKind: "json";
|
|
2015
3492
|
readonly requestBodyRequired: false;
|
|
2016
3493
|
readonly requiredKeyKind: "root";
|
|
2017
3494
|
readonly surface: "management";
|
|
2018
3495
|
};
|
|
2019
3496
|
readonly managementVerifyDomain: {
|
|
3497
|
+
readonly bodyKind: "none";
|
|
2020
3498
|
readonly command: "management:verify-domain";
|
|
2021
3499
|
readonly description: "Verify a mailbox domain";
|
|
2022
3500
|
readonly headerParams: readonly [];
|
|
@@ -2026,84 +3504,120 @@ export declare const operations: {
|
|
|
2026
3504
|
readonly pathParams: readonly [{
|
|
2027
3505
|
readonly name: "public_id";
|
|
2028
3506
|
readonly required: true;
|
|
3507
|
+
readonly schema: {
|
|
3508
|
+
readonly type: "string";
|
|
3509
|
+
};
|
|
2029
3510
|
}];
|
|
2030
3511
|
readonly queryParams: readonly [];
|
|
3512
|
+
readonly responseKind: "json";
|
|
2031
3513
|
readonly requestBodyRequired: false;
|
|
2032
3514
|
readonly requiredKeyKind: "root";
|
|
2033
3515
|
readonly surface: "management";
|
|
2034
3516
|
};
|
|
2035
3517
|
readonly sendingGetOpenApiSpec: {
|
|
3518
|
+
readonly bodyKind: "none";
|
|
2036
3519
|
readonly command: "sending:get-open-api-spec";
|
|
2037
3520
|
readonly description: "OpenAPI 3.1 specification";
|
|
2038
3521
|
readonly headerParams: readonly [{
|
|
2039
3522
|
readonly name: "If-None-Match";
|
|
2040
3523
|
readonly required: false;
|
|
3524
|
+
readonly schema: {
|
|
3525
|
+
readonly type: "string";
|
|
3526
|
+
};
|
|
2041
3527
|
}];
|
|
2042
3528
|
readonly method: "get";
|
|
2043
3529
|
readonly operationId: "sendingGetOpenApiSpec";
|
|
2044
3530
|
readonly path: "/openapi.json";
|
|
2045
3531
|
readonly pathParams: readonly [];
|
|
2046
3532
|
readonly queryParams: readonly [];
|
|
3533
|
+
readonly responseKind: "json";
|
|
2047
3534
|
readonly requestBodyRequired: false;
|
|
2048
|
-
readonly requiredKeyKind: "
|
|
3535
|
+
readonly requiredKeyKind: "mailbox";
|
|
2049
3536
|
readonly surface: "sending";
|
|
2050
3537
|
};
|
|
2051
3538
|
readonly sendingSendEmail: {
|
|
3539
|
+
readonly bodyKind: "json";
|
|
2052
3540
|
readonly command: "sending:send";
|
|
2053
3541
|
readonly description: "Send a single email";
|
|
2054
3542
|
readonly headerParams: readonly [{
|
|
2055
3543
|
readonly name: "Idempotency-Key";
|
|
2056
3544
|
readonly required: false;
|
|
3545
|
+
readonly schema: {
|
|
3546
|
+
readonly type: "string";
|
|
3547
|
+
readonly maxLength: 255;
|
|
3548
|
+
};
|
|
2057
3549
|
}];
|
|
2058
3550
|
readonly method: "post";
|
|
2059
3551
|
readonly operationId: "sendingSendEmail";
|
|
2060
3552
|
readonly path: "/emails/send";
|
|
2061
3553
|
readonly pathParams: readonly [];
|
|
2062
3554
|
readonly queryParams: readonly [];
|
|
3555
|
+
readonly responseKind: "json";
|
|
2063
3556
|
readonly requestBodyRequired: true;
|
|
2064
|
-
readonly requiredKeyKind: "
|
|
3557
|
+
readonly requiredKeyKind: "mailbox";
|
|
2065
3558
|
readonly surface: "sending";
|
|
2066
3559
|
};
|
|
2067
3560
|
readonly sendingSendEmailBatch: {
|
|
3561
|
+
readonly bodyKind: "json";
|
|
2068
3562
|
readonly command: "sending:send:batch";
|
|
2069
3563
|
readonly description: "Send a batch of emails";
|
|
2070
3564
|
readonly headerParams: readonly [{
|
|
2071
3565
|
readonly name: "Idempotency-Key";
|
|
2072
3566
|
readonly required: false;
|
|
3567
|
+
readonly schema: {
|
|
3568
|
+
readonly type: "string";
|
|
3569
|
+
readonly maxLength: 255;
|
|
3570
|
+
};
|
|
2073
3571
|
}];
|
|
2074
3572
|
readonly method: "post";
|
|
2075
3573
|
readonly operationId: "sendingSendEmailBatch";
|
|
2076
3574
|
readonly path: "/emails/send/batch";
|
|
2077
3575
|
readonly pathParams: readonly [];
|
|
2078
3576
|
readonly queryParams: readonly [];
|
|
3577
|
+
readonly responseKind: "json";
|
|
2079
3578
|
readonly requestBodyRequired: true;
|
|
2080
|
-
readonly requiredKeyKind: "
|
|
3579
|
+
readonly requiredKeyKind: "mailbox";
|
|
2081
3580
|
readonly surface: "sending";
|
|
2082
3581
|
};
|
|
2083
3582
|
};
|
|
2084
3583
|
export declare const curatedOperations: {
|
|
2085
3584
|
readonly mailboxGetMe: {
|
|
3585
|
+
readonly bodyKind: "none";
|
|
2086
3586
|
readonly command: "mailbox:me:get";
|
|
2087
3587
|
readonly description: "Self-introspect the calling mailbox";
|
|
2088
3588
|
readonly headerParams: readonly [{
|
|
2089
3589
|
readonly name: "If-None-Match";
|
|
2090
3590
|
readonly required: false;
|
|
3591
|
+
readonly schema: {
|
|
3592
|
+
readonly type: "string";
|
|
3593
|
+
};
|
|
2091
3594
|
}];
|
|
2092
3595
|
readonly method: "get";
|
|
2093
3596
|
readonly operationId: "mailboxGetMe";
|
|
2094
3597
|
readonly path: "/mailbox/me";
|
|
2095
3598
|
readonly pathParams: readonly [];
|
|
2096
|
-
readonly queryParams: readonly [
|
|
3599
|
+
readonly queryParams: readonly [{
|
|
3600
|
+
readonly name: "mailbox_id";
|
|
3601
|
+
readonly required: false;
|
|
3602
|
+
readonly schema: {
|
|
3603
|
+
readonly type: "string";
|
|
3604
|
+
};
|
|
3605
|
+
}];
|
|
3606
|
+
readonly responseKind: "json";
|
|
2097
3607
|
readonly requestBodyRequired: false;
|
|
2098
3608
|
readonly requiredKeyKind: "mailbox";
|
|
2099
3609
|
readonly surface: "mailbox";
|
|
2100
3610
|
};
|
|
2101
3611
|
readonly mailboxGetMessage: {
|
|
3612
|
+
readonly bodyKind: "none";
|
|
2102
3613
|
readonly command: "mailbox:messages:get";
|
|
2103
3614
|
readonly description: "Get a mailbox message";
|
|
2104
3615
|
readonly headerParams: readonly [{
|
|
2105
3616
|
readonly name: "If-None-Match";
|
|
2106
3617
|
readonly required: false;
|
|
3618
|
+
readonly schema: {
|
|
3619
|
+
readonly type: "string";
|
|
3620
|
+
};
|
|
2107
3621
|
}];
|
|
2108
3622
|
readonly method: "get";
|
|
2109
3623
|
readonly operationId: "mailboxGetMessage";
|
|
@@ -2111,13 +3625,24 @@ export declare const curatedOperations: {
|
|
|
2111
3625
|
readonly pathParams: readonly [{
|
|
2112
3626
|
readonly name: "message_id";
|
|
2113
3627
|
readonly required: true;
|
|
3628
|
+
readonly schema: {
|
|
3629
|
+
readonly type: "string";
|
|
3630
|
+
};
|
|
2114
3631
|
}];
|
|
2115
|
-
readonly queryParams: readonly [
|
|
3632
|
+
readonly queryParams: readonly [{
|
|
3633
|
+
readonly name: "mailbox_id";
|
|
3634
|
+
readonly required: false;
|
|
3635
|
+
readonly schema: {
|
|
3636
|
+
readonly type: "string";
|
|
3637
|
+
};
|
|
3638
|
+
}];
|
|
3639
|
+
readonly responseKind: "json";
|
|
2116
3640
|
readonly requestBodyRequired: false;
|
|
2117
3641
|
readonly requiredKeyKind: "mailbox";
|
|
2118
3642
|
readonly surface: "mailbox";
|
|
2119
3643
|
};
|
|
2120
3644
|
readonly mailboxListFolders: {
|
|
3645
|
+
readonly bodyKind: "none";
|
|
2121
3646
|
readonly command: "mailbox:folders:list";
|
|
2122
3647
|
readonly description: "List mailbox folders";
|
|
2123
3648
|
readonly headerParams: readonly [];
|
|
@@ -2128,15 +3653,31 @@ export declare const curatedOperations: {
|
|
|
2128
3653
|
readonly queryParams: readonly [{
|
|
2129
3654
|
readonly name: "cursor";
|
|
2130
3655
|
readonly required: false;
|
|
3656
|
+
readonly schema: {
|
|
3657
|
+
readonly type: "string";
|
|
3658
|
+
};
|
|
2131
3659
|
}, {
|
|
2132
3660
|
readonly name: "limit";
|
|
2133
3661
|
readonly required: false;
|
|
3662
|
+
readonly schema: {
|
|
3663
|
+
readonly type: "integer";
|
|
3664
|
+
readonly minimum: 1;
|
|
3665
|
+
readonly maximum: 100;
|
|
3666
|
+
};
|
|
3667
|
+
}, {
|
|
3668
|
+
readonly name: "mailbox_id";
|
|
3669
|
+
readonly required: false;
|
|
3670
|
+
readonly schema: {
|
|
3671
|
+
readonly type: "string";
|
|
3672
|
+
};
|
|
2134
3673
|
}];
|
|
3674
|
+
readonly responseKind: "json";
|
|
2135
3675
|
readonly requestBodyRequired: false;
|
|
2136
3676
|
readonly requiredKeyKind: "mailbox";
|
|
2137
3677
|
readonly surface: "mailbox";
|
|
2138
3678
|
};
|
|
2139
3679
|
readonly mailboxListMessages: {
|
|
3680
|
+
readonly bodyKind: "none";
|
|
2140
3681
|
readonly command: "mailbox:messages:list";
|
|
2141
3682
|
readonly description: "List mailbox messages";
|
|
2142
3683
|
readonly headerParams: readonly [];
|
|
@@ -2147,83 +3688,169 @@ export declare const curatedOperations: {
|
|
|
2147
3688
|
readonly queryParams: readonly [{
|
|
2148
3689
|
readonly name: "cursor";
|
|
2149
3690
|
readonly required: false;
|
|
3691
|
+
readonly schema: {
|
|
3692
|
+
readonly type: "string";
|
|
3693
|
+
};
|
|
2150
3694
|
}, {
|
|
2151
3695
|
readonly name: "limit";
|
|
2152
3696
|
readonly required: false;
|
|
3697
|
+
readonly schema: {
|
|
3698
|
+
readonly type: "integer";
|
|
3699
|
+
readonly minimum: 1;
|
|
3700
|
+
readonly maximum: 100;
|
|
3701
|
+
};
|
|
2153
3702
|
}, {
|
|
2154
3703
|
readonly name: "folder_id";
|
|
2155
3704
|
readonly required: false;
|
|
3705
|
+
readonly schema: {
|
|
3706
|
+
readonly type: "string";
|
|
3707
|
+
};
|
|
2156
3708
|
}, {
|
|
2157
3709
|
readonly name: "thread_id";
|
|
2158
3710
|
readonly required: false;
|
|
3711
|
+
readonly schema: {
|
|
3712
|
+
readonly type: "string";
|
|
3713
|
+
};
|
|
2159
3714
|
}, {
|
|
2160
3715
|
readonly name: "q";
|
|
2161
3716
|
readonly required: false;
|
|
3717
|
+
readonly schema: {
|
|
3718
|
+
readonly type: "string";
|
|
3719
|
+
};
|
|
2162
3720
|
}, {
|
|
2163
3721
|
readonly name: "from";
|
|
2164
3722
|
readonly required: false;
|
|
3723
|
+
readonly schema: {
|
|
3724
|
+
readonly type: "string";
|
|
3725
|
+
};
|
|
2165
3726
|
}, {
|
|
2166
3727
|
readonly name: "to";
|
|
2167
3728
|
readonly required: false;
|
|
3729
|
+
readonly schema: {
|
|
3730
|
+
readonly type: "string";
|
|
3731
|
+
};
|
|
2168
3732
|
}, {
|
|
2169
3733
|
readonly name: "cc";
|
|
2170
3734
|
readonly required: false;
|
|
3735
|
+
readonly schema: {
|
|
3736
|
+
readonly type: "string";
|
|
3737
|
+
};
|
|
2171
3738
|
}, {
|
|
2172
3739
|
readonly name: "bcc";
|
|
2173
3740
|
readonly required: false;
|
|
3741
|
+
readonly schema: {
|
|
3742
|
+
readonly type: "string";
|
|
3743
|
+
};
|
|
2174
3744
|
}, {
|
|
2175
3745
|
readonly name: "subject";
|
|
2176
3746
|
readonly required: false;
|
|
3747
|
+
readonly schema: {
|
|
3748
|
+
readonly type: "string";
|
|
3749
|
+
};
|
|
2177
3750
|
}, {
|
|
2178
3751
|
readonly name: "body";
|
|
2179
3752
|
readonly required: false;
|
|
3753
|
+
readonly schema: {
|
|
3754
|
+
readonly type: "string";
|
|
3755
|
+
};
|
|
2180
3756
|
}, {
|
|
2181
3757
|
readonly name: "header_name";
|
|
2182
3758
|
readonly required: false;
|
|
3759
|
+
readonly schema: {
|
|
3760
|
+
readonly type: "string";
|
|
3761
|
+
};
|
|
2183
3762
|
}, {
|
|
2184
3763
|
readonly name: "header_value";
|
|
2185
3764
|
readonly required: false;
|
|
3765
|
+
readonly schema: {
|
|
3766
|
+
readonly type: "string";
|
|
3767
|
+
};
|
|
2186
3768
|
}, {
|
|
2187
3769
|
readonly name: "min_size_bytes";
|
|
2188
3770
|
readonly required: false;
|
|
3771
|
+
readonly schema: {
|
|
3772
|
+
readonly type: "integer";
|
|
3773
|
+
readonly minimum: 0;
|
|
3774
|
+
};
|
|
2189
3775
|
}, {
|
|
2190
3776
|
readonly name: "max_size_bytes";
|
|
2191
3777
|
readonly required: false;
|
|
3778
|
+
readonly schema: {
|
|
3779
|
+
readonly type: "integer";
|
|
3780
|
+
readonly minimum: 0;
|
|
3781
|
+
};
|
|
2192
3782
|
}, {
|
|
2193
3783
|
readonly name: "keyword";
|
|
2194
3784
|
readonly required: false;
|
|
3785
|
+
readonly schema: {
|
|
3786
|
+
readonly type: "string";
|
|
3787
|
+
};
|
|
2195
3788
|
}, {
|
|
2196
3789
|
readonly name: "not_keyword";
|
|
2197
3790
|
readonly required: false;
|
|
3791
|
+
readonly schema: {
|
|
3792
|
+
readonly type: "string";
|
|
3793
|
+
};
|
|
2198
3794
|
}, {
|
|
2199
3795
|
readonly name: "after";
|
|
2200
3796
|
readonly required: false;
|
|
3797
|
+
readonly schema: {
|
|
3798
|
+
readonly type: "string";
|
|
3799
|
+
};
|
|
2201
3800
|
}, {
|
|
2202
3801
|
readonly name: "before";
|
|
2203
3802
|
readonly required: false;
|
|
3803
|
+
readonly schema: {
|
|
3804
|
+
readonly type: "string";
|
|
3805
|
+
};
|
|
2204
3806
|
}, {
|
|
2205
3807
|
readonly name: "has_attachment";
|
|
2206
3808
|
readonly required: false;
|
|
3809
|
+
readonly schema: {
|
|
3810
|
+
readonly type: "boolean";
|
|
3811
|
+
};
|
|
2207
3812
|
}, {
|
|
2208
3813
|
readonly name: "is_unread";
|
|
2209
3814
|
readonly required: false;
|
|
3815
|
+
readonly schema: {
|
|
3816
|
+
readonly type: "boolean";
|
|
3817
|
+
};
|
|
2210
3818
|
}, {
|
|
2211
3819
|
readonly name: "sort_by";
|
|
2212
3820
|
readonly required: false;
|
|
3821
|
+
readonly schema: {
|
|
3822
|
+
readonly type: "string";
|
|
3823
|
+
readonly enum: readonly ["received_at", "sent_at", "subject", "from", "to", "size_bytes"];
|
|
3824
|
+
};
|
|
2213
3825
|
}, {
|
|
2214
3826
|
readonly name: "sort_direction";
|
|
2215
3827
|
readonly required: false;
|
|
3828
|
+
readonly schema: {
|
|
3829
|
+
readonly type: "string";
|
|
3830
|
+
readonly enum: readonly ["asc", "desc"];
|
|
3831
|
+
};
|
|
3832
|
+
}, {
|
|
3833
|
+
readonly name: "mailbox_id";
|
|
3834
|
+
readonly required: false;
|
|
3835
|
+
readonly schema: {
|
|
3836
|
+
readonly type: "string";
|
|
3837
|
+
};
|
|
2216
3838
|
}];
|
|
3839
|
+
readonly responseKind: "json";
|
|
2217
3840
|
readonly requestBodyRequired: false;
|
|
2218
3841
|
readonly requiredKeyKind: "mailbox";
|
|
2219
3842
|
readonly surface: "mailbox";
|
|
2220
3843
|
};
|
|
2221
3844
|
readonly managementGetDomain: {
|
|
3845
|
+
readonly bodyKind: "none";
|
|
2222
3846
|
readonly command: "management:domains:get";
|
|
2223
3847
|
readonly description: "Get a mailbox domain";
|
|
2224
3848
|
readonly headerParams: readonly [{
|
|
2225
3849
|
readonly name: "If-None-Match";
|
|
2226
3850
|
readonly required: false;
|
|
3851
|
+
readonly schema: {
|
|
3852
|
+
readonly type: "string";
|
|
3853
|
+
};
|
|
2227
3854
|
}];
|
|
2228
3855
|
readonly method: "get";
|
|
2229
3856
|
readonly operationId: "managementGetDomain";
|
|
@@ -2231,13 +3858,18 @@ export declare const curatedOperations: {
|
|
|
2231
3858
|
readonly pathParams: readonly [{
|
|
2232
3859
|
readonly name: "public_id";
|
|
2233
3860
|
readonly required: true;
|
|
3861
|
+
readonly schema: {
|
|
3862
|
+
readonly type: "string";
|
|
3863
|
+
};
|
|
2234
3864
|
}];
|
|
2235
3865
|
readonly queryParams: readonly [];
|
|
3866
|
+
readonly responseKind: "json";
|
|
2236
3867
|
readonly requestBodyRequired: false;
|
|
2237
3868
|
readonly requiredKeyKind: "root";
|
|
2238
3869
|
readonly surface: "management";
|
|
2239
3870
|
};
|
|
2240
3871
|
readonly managementListDomains: {
|
|
3872
|
+
readonly bodyKind: "none";
|
|
2241
3873
|
readonly command: "management:domains:list";
|
|
2242
3874
|
readonly description: "List mailbox domains";
|
|
2243
3875
|
readonly headerParams: readonly [];
|
|
@@ -2248,15 +3880,25 @@ export declare const curatedOperations: {
|
|
|
2248
3880
|
readonly queryParams: readonly [{
|
|
2249
3881
|
readonly name: "cursor";
|
|
2250
3882
|
readonly required: false;
|
|
3883
|
+
readonly schema: {
|
|
3884
|
+
readonly type: "string";
|
|
3885
|
+
};
|
|
2251
3886
|
}, {
|
|
2252
3887
|
readonly name: "limit";
|
|
2253
3888
|
readonly required: false;
|
|
3889
|
+
readonly schema: {
|
|
3890
|
+
readonly type: "integer";
|
|
3891
|
+
readonly minimum: 1;
|
|
3892
|
+
readonly maximum: 100;
|
|
3893
|
+
};
|
|
2254
3894
|
}];
|
|
3895
|
+
readonly responseKind: "json";
|
|
2255
3896
|
readonly requestBodyRequired: false;
|
|
2256
3897
|
readonly requiredKeyKind: "root";
|
|
2257
3898
|
readonly surface: "management";
|
|
2258
3899
|
};
|
|
2259
3900
|
readonly managementListMailboxes: {
|
|
3901
|
+
readonly bodyKind: "none";
|
|
2260
3902
|
readonly command: "management:mailboxes:list";
|
|
2261
3903
|
readonly description: "List mailboxes";
|
|
2262
3904
|
readonly headerParams: readonly [];
|
|
@@ -2267,18 +3909,32 @@ export declare const curatedOperations: {
|
|
|
2267
3909
|
readonly queryParams: readonly [{
|
|
2268
3910
|
readonly name: "cursor";
|
|
2269
3911
|
readonly required: false;
|
|
3912
|
+
readonly schema: {
|
|
3913
|
+
readonly type: "string";
|
|
3914
|
+
};
|
|
2270
3915
|
}, {
|
|
2271
3916
|
readonly name: "limit";
|
|
2272
3917
|
readonly required: false;
|
|
3918
|
+
readonly schema: {
|
|
3919
|
+
readonly type: "integer";
|
|
3920
|
+
readonly minimum: 1;
|
|
3921
|
+
readonly maximum: 100;
|
|
3922
|
+
};
|
|
2273
3923
|
}, {
|
|
2274
3924
|
readonly name: "include_deleted";
|
|
2275
3925
|
readonly required: false;
|
|
3926
|
+
readonly schema: {
|
|
3927
|
+
readonly type: "string";
|
|
3928
|
+
readonly enum: readonly ["true"];
|
|
3929
|
+
};
|
|
2276
3930
|
}];
|
|
3931
|
+
readonly responseKind: "json";
|
|
2277
3932
|
readonly requestBodyRequired: false;
|
|
2278
3933
|
readonly requiredKeyKind: "root";
|
|
2279
3934
|
readonly surface: "management";
|
|
2280
3935
|
};
|
|
2281
3936
|
readonly managementListProviders: {
|
|
3937
|
+
readonly bodyKind: "none";
|
|
2282
3938
|
readonly command: "management:providers:list";
|
|
2283
3939
|
readonly description: "List sending accounts";
|
|
2284
3940
|
readonly headerParams: readonly [];
|
|
@@ -2289,50 +3945,79 @@ export declare const curatedOperations: {
|
|
|
2289
3945
|
readonly queryParams: readonly [{
|
|
2290
3946
|
readonly name: "cursor";
|
|
2291
3947
|
readonly required: false;
|
|
3948
|
+
readonly schema: {
|
|
3949
|
+
readonly type: "string";
|
|
3950
|
+
};
|
|
2292
3951
|
}, {
|
|
2293
3952
|
readonly name: "status";
|
|
2294
3953
|
readonly required: false;
|
|
3954
|
+
readonly schema: {
|
|
3955
|
+
readonly type: "string";
|
|
3956
|
+
readonly enum: readonly ["active", "inactive", "error", "pending"];
|
|
3957
|
+
};
|
|
2295
3958
|
}, {
|
|
2296
3959
|
readonly name: "type";
|
|
2297
3960
|
readonly required: false;
|
|
3961
|
+
readonly schema: {
|
|
3962
|
+
readonly type: "string";
|
|
3963
|
+
readonly enum: readonly ["smtp", "gmail_api", "outlook_api", "amazon_ses"];
|
|
3964
|
+
};
|
|
2298
3965
|
}, {
|
|
2299
3966
|
readonly name: "limit";
|
|
2300
3967
|
readonly required: false;
|
|
3968
|
+
readonly schema: {
|
|
3969
|
+
readonly type: "integer";
|
|
3970
|
+
readonly minimum: 1;
|
|
3971
|
+
readonly maximum: 100;
|
|
3972
|
+
};
|
|
2301
3973
|
}];
|
|
3974
|
+
readonly responseKind: "json";
|
|
2302
3975
|
readonly requestBodyRequired: false;
|
|
2303
3976
|
readonly requiredKeyKind: "root";
|
|
2304
3977
|
readonly surface: "management";
|
|
2305
3978
|
};
|
|
2306
3979
|
readonly sendingSendEmail: {
|
|
3980
|
+
readonly bodyKind: "json";
|
|
2307
3981
|
readonly command: "sending:send";
|
|
2308
3982
|
readonly description: "Send a single email";
|
|
2309
3983
|
readonly headerParams: readonly [{
|
|
2310
3984
|
readonly name: "Idempotency-Key";
|
|
2311
3985
|
readonly required: false;
|
|
3986
|
+
readonly schema: {
|
|
3987
|
+
readonly type: "string";
|
|
3988
|
+
readonly maxLength: 255;
|
|
3989
|
+
};
|
|
2312
3990
|
}];
|
|
2313
3991
|
readonly method: "post";
|
|
2314
3992
|
readonly operationId: "sendingSendEmail";
|
|
2315
3993
|
readonly path: "/emails/send";
|
|
2316
3994
|
readonly pathParams: readonly [];
|
|
2317
3995
|
readonly queryParams: readonly [];
|
|
3996
|
+
readonly responseKind: "json";
|
|
2318
3997
|
readonly requestBodyRequired: true;
|
|
2319
|
-
readonly requiredKeyKind: "
|
|
3998
|
+
readonly requiredKeyKind: "mailbox";
|
|
2320
3999
|
readonly surface: "sending";
|
|
2321
4000
|
};
|
|
2322
4001
|
readonly sendingSendEmailBatch: {
|
|
4002
|
+
readonly bodyKind: "json";
|
|
2323
4003
|
readonly command: "sending:send:batch";
|
|
2324
4004
|
readonly description: "Send a batch of emails";
|
|
2325
4005
|
readonly headerParams: readonly [{
|
|
2326
4006
|
readonly name: "Idempotency-Key";
|
|
2327
4007
|
readonly required: false;
|
|
4008
|
+
readonly schema: {
|
|
4009
|
+
readonly type: "string";
|
|
4010
|
+
readonly maxLength: 255;
|
|
4011
|
+
};
|
|
2328
4012
|
}];
|
|
2329
4013
|
readonly method: "post";
|
|
2330
4014
|
readonly operationId: "sendingSendEmailBatch";
|
|
2331
4015
|
readonly path: "/emails/send/batch";
|
|
2332
4016
|
readonly pathParams: readonly [];
|
|
2333
4017
|
readonly queryParams: readonly [];
|
|
4018
|
+
readonly responseKind: "json";
|
|
2334
4019
|
readonly requestBodyRequired: true;
|
|
2335
|
-
readonly requiredKeyKind: "
|
|
4020
|
+
readonly requiredKeyKind: "mailbox";
|
|
2336
4021
|
readonly surface: "sending";
|
|
2337
4022
|
};
|
|
2338
4023
|
};
|