@sendmux/cli 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +73 -5
- package/dist/base-command.d.ts +4 -2
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +31 -4
- package/dist/commands/mailbox/batch-delete-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-delete-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-delete-messages.js +7 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-get-messages.js +7 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-update-messages.js +7 -0
- package/dist/commands/mailbox/count-messages.d.ts +142 -0
- package/dist/commands/mailbox/count-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/count-messages.js +7 -0
- package/dist/commands/mailbox/create-folder.d.ts +26 -0
- package/dist/commands/mailbox/create-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/create-folder.js +7 -0
- package/dist/commands/mailbox/delete-folder.d.ts +38 -0
- package/dist/commands/mailbox/delete-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-folder.js +7 -0
- package/dist/commands/mailbox/delete-message.d.ts +44 -0
- package/dist/commands/mailbox/delete-message.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-message.js +7 -0
- package/dist/commands/mailbox/folders/list.d.ts +17 -1
- package/dist/commands/mailbox/folders/list.d.ts.map +1 -1
- package/dist/commands/mailbox/folders/list.js +5 -4
- package/dist/commands/mailbox/get-changes.d.ts +82 -0
- package/dist/commands/mailbox/get-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-changes.js +7 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder-changes.js +7 -0
- package/dist/commands/mailbox/get-folder.d.ts +38 -0
- package/dist/commands/mailbox/get-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder.js +7 -0
- package/dist/commands/mailbox/get-identity.d.ts +26 -0
- package/dist/commands/mailbox/get-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/get-identity.js +7 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts +44 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/get-message-attachment.js +7 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-quota-changes.js +7 -0
- package/dist/commands/mailbox/get-session.d.ts +32 -0
- package/dist/commands/mailbox/get-session.d.ts.map +1 -0
- package/dist/commands/mailbox/get-session.js +7 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission-changes.js +7 -0
- package/dist/commands/mailbox/get-submission.d.ts +38 -0
- package/dist/commands/mailbox/get-submission.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission.js +7 -0
- package/dist/commands/mailbox/get-thread-content.d.ts +112 -0
- package/dist/commands/mailbox/get-thread-content.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread-content.js +7 -0
- package/dist/commands/mailbox/get-thread.d.ts +38 -0
- package/dist/commands/mailbox/get-thread.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread.js +7 -0
- package/dist/commands/mailbox/list-body.d.ts +53 -0
- package/dist/commands/mailbox/list-body.d.ts.map +1 -0
- package/dist/commands/mailbox/list-body.js +7 -0
- package/dist/commands/mailbox/list-content.d.ts +91 -0
- package/dist/commands/mailbox/list-content.d.ts.map +1 -0
- package/dist/commands/mailbox/list-content.js +7 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts +40 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts.map +1 -0
- package/dist/commands/mailbox/list-granted-mailboxes.js +7 -0
- package/dist/commands/mailbox/list-identities.d.ts +40 -0
- package/dist/commands/mailbox/list-identities.d.ts.map +1 -0
- package/dist/commands/mailbox/list-identities.js +7 -0
- package/dist/commands/mailbox/list-quotas.d.ts +80 -0
- package/dist/commands/mailbox/list-quotas.d.ts.map +1 -0
- package/dist/commands/mailbox/list-quotas.js +7 -0
- package/dist/commands/mailbox/list-submissions.d.ts +91 -0
- package/dist/commands/mailbox/list-submissions.d.ts.map +1 -0
- package/dist/commands/mailbox/list-submissions.js +7 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts +53 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/list-thread-messages.js +7 -0
- package/dist/commands/mailbox/list-threads.d.ts +89 -0
- package/dist/commands/mailbox/list-threads.d.ts.map +1 -0
- package/dist/commands/mailbox/list-threads.js +7 -0
- package/dist/commands/mailbox/list-usage.d.ts +32 -0
- package/dist/commands/mailbox/list-usage.d.ts.map +1 -0
- package/dist/commands/mailbox/list-usage.js +7 -0
- package/dist/commands/mailbox/me/get.d.ts +13 -2
- package/dist/commands/mailbox/me/get.d.ts.map +1 -1
- package/dist/commands/mailbox/me/get.js +5 -4
- package/dist/commands/mailbox/messages/get.d.ts +16 -2
- package/dist/commands/mailbox/messages/get.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/get.js +5 -4
- package/dist/commands/mailbox/messages/list.d.ts +84 -1
- package/dist/commands/mailbox/messages/list.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/list.js +5 -4
- package/dist/commands/mailbox/query-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/query-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-folder-changes.js +7 -0
- package/dist/commands/mailbox/query-message-changes.d.ts +176 -0
- package/dist/commands/mailbox/query-message-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-message-changes.js +7 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts +150 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts.map +1 -0
- package/dist/commands/mailbox/search-message-snippets.js +7 -0
- package/dist/commands/mailbox/send-message.d.ts +33 -0
- package/dist/commands/mailbox/send-message.d.ts.map +1 -0
- package/dist/commands/mailbox/send-message.js +7 -0
- package/dist/commands/mailbox/stream-events.d.ts +60 -0
- package/dist/commands/mailbox/stream-events.d.ts.map +1 -0
- package/dist/commands/mailbox/stream-events.js +7 -0
- package/dist/commands/mailbox/update-folder.d.ts +38 -0
- package/dist/commands/mailbox/update-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/update-folder.js +7 -0
- package/dist/commands/mailbox/update-identity.d.ts +26 -0
- package/dist/commands/mailbox/update-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/update-identity.js +7 -0
- package/dist/commands/mailbox/update-message.d.ts +38 -0
- package/dist/commands/mailbox/update-message.d.ts.map +1 -0
- package/dist/commands/mailbox/update-message.js +7 -0
- package/dist/commands/mailbox/upload-attachment.d.ts +32 -0
- package/dist/commands/mailbox/upload-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/upload-attachment.js +7 -0
- package/dist/commands/management/activate-provider.d.ts +33 -0
- package/dist/commands/management/activate-provider.d.ts.map +1 -0
- package/dist/commands/management/activate-provider.js +7 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts +26 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/check-mailbox-availability.d.ts +26 -0
- package/dist/commands/management/check-mailbox-availability.d.ts.map +1 -0
- package/dist/commands/management/check-mailbox-availability.js +7 -0
- package/dist/commands/management/create-domain.d.ts +27 -0
- package/dist/commands/management/create-domain.d.ts.map +1 -0
- package/dist/commands/management/create-domain.js +7 -0
- package/dist/commands/management/create-mailbox-key.d.ts +33 -0
- package/dist/commands/management/create-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox-key.js +7 -0
- package/dist/commands/management/create-mailbox.d.ts +27 -0
- package/dist/commands/management/create-mailbox.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox.js +7 -0
- package/dist/commands/management/create-provider.d.ts +27 -0
- package/dist/commands/management/create-provider.d.ts.map +1 -0
- package/dist/commands/management/create-provider.js +7 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts +27 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/create-webhook.d.ts +27 -0
- package/dist/commands/management/create-webhook.d.ts.map +1 -0
- package/dist/commands/management/create-webhook.js +7 -0
- package/dist/commands/management/deactivate-provider.d.ts +33 -0
- package/dist/commands/management/deactivate-provider.d.ts.map +1 -0
- package/dist/commands/management/deactivate-provider.js +7 -0
- package/dist/commands/management/delete-domain.d.ts +26 -0
- package/dist/commands/management/delete-domain.d.ts.map +1 -0
- package/dist/commands/management/delete-domain.js +7 -0
- package/dist/commands/management/delete-mailbox-key.d.ts +32 -0
- package/dist/commands/management/delete-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox-key.js +7 -0
- package/dist/commands/management/delete-mailbox.d.ts +26 -0
- package/dist/commands/management/delete-mailbox.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox.js +7 -0
- package/dist/commands/management/delete-provider.d.ts +26 -0
- package/dist/commands/management/delete-provider.d.ts.map +1 -0
- package/dist/commands/management/delete-provider.js +7 -0
- package/dist/commands/management/delete-webhook.d.ts +26 -0
- package/dist/commands/management/delete-webhook.d.ts.map +1 -0
- package/dist/commands/management/delete-webhook.js +7 -0
- package/dist/commands/management/domains/get.d.ts +9 -1
- package/dist/commands/management/domains/get.d.ts.map +1 -1
- package/dist/commands/management/domains/get.js +5 -4
- package/dist/commands/management/domains/list.d.ts +11 -1
- package/dist/commands/management/domains/list.d.ts.map +1 -1
- package/dist/commands/management/domains/list.js +5 -4
- package/dist/commands/management/get-delivery-payload.d.ts +32 -0
- package/dist/commands/management/get-delivery-payload.d.ts.map +1 -0
- package/dist/commands/management/get-delivery-payload.js +7 -0
- package/dist/commands/management/get-domain-filters.d.ts +32 -0
- package/dist/commands/management/get-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/get-domain-filters.js +7 -0
- package/dist/commands/management/get-domain-zone-file.d.ts +26 -0
- package/dist/commands/management/get-domain-zone-file.d.ts.map +1 -0
- package/dist/commands/management/get-domain-zone-file.js +7 -0
- package/dist/commands/management/get-email-log.d.ts +32 -0
- package/dist/commands/management/get-email-log.d.ts.map +1 -0
- package/dist/commands/management/get-email-log.js +7 -0
- package/dist/commands/management/get-email-metrics.d.ts +52 -0
- package/dist/commands/management/get-email-metrics.d.ts.map +1 -0
- package/dist/commands/management/get-email-metrics.js +7 -0
- package/dist/commands/management/get-inbox-log.d.ts +26 -0
- package/dist/commands/management/get-inbox-log.d.ts.map +1 -0
- package/dist/commands/management/get-inbox-log.js +7 -0
- package/dist/commands/management/get-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/get-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox-filters.js +7 -0
- package/dist/commands/management/get-mailbox.d.ts +32 -0
- package/dist/commands/management/get-mailbox.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox.js +7 -0
- package/dist/commands/management/get-provider-limits.d.ts +20 -0
- package/dist/commands/management/get-provider-limits.d.ts.map +1 -0
- package/dist/commands/management/get-provider-limits.js +7 -0
- package/dist/commands/management/get-provider-stats.d.ts +20 -0
- package/dist/commands/management/get-provider-stats.d.ts.map +1 -0
- package/dist/commands/management/get-provider-stats.js +7 -0
- package/dist/commands/management/get-provider-usage.d.ts +20 -0
- package/dist/commands/management/get-provider-usage.d.ts.map +1 -0
- package/dist/commands/management/get-provider-usage.js +7 -0
- package/dist/commands/management/get-provider.d.ts +32 -0
- package/dist/commands/management/get-provider.d.ts.map +1 -0
- package/dist/commands/management/get-provider.js +7 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts +20 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/get-spend-summary.d.ts +27 -0
- package/dist/commands/management/get-spend-summary.d.ts.map +1 -0
- package/dist/commands/management/get-spend-summary.js +7 -0
- package/dist/commands/management/get-webhook.d.ts +32 -0
- package/dist/commands/management/get-webhook.d.ts.map +1 -0
- package/dist/commands/management/get-webhook.js +7 -0
- package/dist/commands/management/list-balance.d.ts +20 -0
- package/dist/commands/management/list-balance.d.ts.map +1 -0
- package/dist/commands/management/list-balance.js +7 -0
- package/dist/commands/management/list-delivery.d.ts +54 -0
- package/dist/commands/management/list-delivery.d.ts.map +1 -0
- package/dist/commands/management/list-delivery.js +7 -0
- package/dist/commands/management/list-email-logs.d.ts +65 -0
- package/dist/commands/management/list-email-logs.d.ts.map +1 -0
- package/dist/commands/management/list-email-logs.js +7 -0
- package/dist/commands/management/list-inbox-logs.d.ts +65 -0
- package/dist/commands/management/list-inbox-logs.d.ts.map +1 -0
- package/dist/commands/management/list-inbox-logs.js +7 -0
- package/dist/commands/management/list-transactions.d.ts +41 -0
- package/dist/commands/management/list-transactions.d.ts.map +1 -0
- package/dist/commands/management/list-transactions.js +7 -0
- package/dist/commands/management/list-webhooks.d.ts +34 -0
- package/dist/commands/management/list-webhooks.d.ts.map +1 -0
- package/dist/commands/management/list-webhooks.js +7 -0
- package/dist/commands/management/mailboxes/list.d.ts +15 -1
- package/dist/commands/management/mailboxes/list.d.ts.map +1 -1
- package/dist/commands/management/mailboxes/list.js +5 -4
- package/dist/commands/management/providers/list.d.ts +19 -1
- package/dist/commands/management/providers/list.d.ts.map +1 -1
- package/dist/commands/management/providers/list.js +5 -4
- package/dist/commands/management/request-sending-account-limit-increase.d.ts +27 -0
- package/dist/commands/management/request-sending-account-limit-increase.d.ts.map +1 -0
- package/dist/commands/management/request-sending-account-limit-increase.js +7 -0
- package/dist/commands/management/resume-mailbox.d.ts +33 -0
- package/dist/commands/management/resume-mailbox.d.ts.map +1 -0
- package/dist/commands/management/resume-mailbox.js +7 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts +33 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts.map +1 -0
- package/dist/commands/management/rotate-webhook-secret.js +7 -0
- package/dist/commands/management/set-domain-filters.d.ts +32 -0
- package/dist/commands/management/set-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/set-domain-filters.js +7 -0
- package/dist/commands/management/set-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/set-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/set-mailbox-filters.js +7 -0
- package/dist/commands/management/suspend-mailbox.d.ts +33 -0
- package/dist/commands/management/suspend-mailbox.d.ts.map +1 -0
- package/dist/commands/management/suspend-mailbox.js +7 -0
- package/dist/commands/management/test-provider.d.ts +33 -0
- package/dist/commands/management/test-provider.d.ts.map +1 -0
- package/dist/commands/management/test-provider.js +7 -0
- package/dist/commands/management/test-webhook.d.ts +33 -0
- package/dist/commands/management/test-webhook.d.ts.map +1 -0
- package/dist/commands/management/test-webhook.js +7 -0
- package/dist/commands/management/update-domain.d.ts +32 -0
- package/dist/commands/management/update-domain.d.ts.map +1 -0
- package/dist/commands/management/update-domain.js +7 -0
- package/dist/commands/management/update-mailbox.d.ts +32 -0
- package/dist/commands/management/update-mailbox.d.ts.map +1 -0
- package/dist/commands/management/update-mailbox.js +7 -0
- package/dist/commands/management/update-provider.d.ts +32 -0
- package/dist/commands/management/update-provider.d.ts.map +1 -0
- package/dist/commands/management/update-provider.js +7 -0
- package/dist/commands/management/update-webhook.d.ts +32 -0
- package/dist/commands/management/update-webhook.d.ts.map +1 -0
- package/dist/commands/management/update-webhook.js +7 -0
- package/dist/commands/management/verify-domain.d.ts +26 -0
- package/dist/commands/management/verify-domain.d.ts.map +1 -0
- package/dist/commands/management/verify-domain.js +7 -0
- package/dist/commands/sending/get-open-api-spec.d.ts +26 -0
- package/dist/commands/sending/get-open-api-spec.d.ts.map +1 -0
- package/dist/commands/sending/get-open-api-spec.js +7 -0
- package/dist/commands/sending/send/batch.d.ts +8 -2
- package/dist/commands/sending/send/batch.d.ts.map +1 -1
- package/dist/commands/sending/send/batch.js +5 -4
- package/dist/commands/sending/send.d.ts +8 -2
- package/dist/commands/sending/send.d.ts.map +1 -1
- package/dist/commands/sending/send.js +5 -4
- package/dist/generated/operations.d.ts +1731 -25
- package/dist/generated/operations.d.ts.map +1 -1
- package/dist/generated/operations.js +2035 -316
- package/dist/key-kind.d.ts +3 -0
- package/dist/key-kind.d.ts.map +1 -1
- package/dist/key-kind.js +13 -1
- package/dist/operation-flags.d.ts +3 -3
- package/dist/operation-flags.d.ts.map +1 -1
- package/dist/operation-flags.js +132 -21
- package/dist/operation-runner.d.ts.map +1 -1
- package/dist/operation-runner.js +65 -7
- package/dist/operation-types.d.ts +21 -2
- package/dist/operation-types.d.ts.map +1 -1
- package/oclif.manifest.json +13569 -200
- package/package.json +3 -2
|
@@ -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
|
+
};
|
|
979
|
+
}, {
|
|
980
|
+
readonly name: "limit";
|
|
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
|
+
};
|
|
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
|
+
};
|
|
536
1014
|
}, {
|
|
537
1015
|
readonly name: "limit";
|
|
538
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
|
+
};
|
|
539
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,113 @@ 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
|
+
};
|
|
1110
2123
|
}];
|
|
1111
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
|
+
};
|
|
2144
|
+
}];
|
|
2145
|
+
readonly queryParams: readonly [];
|
|
2146
|
+
readonly responseKind: "json";
|
|
2147
|
+
readonly requestBodyRequired: false;
|
|
2148
|
+
readonly requiredKeyKind: "root";
|
|
2149
|
+
readonly surface: "management";
|
|
2150
|
+
};
|
|
2151
|
+
readonly managementCheckMailboxAvailability: {
|
|
2152
|
+
readonly bodyKind: "none";
|
|
2153
|
+
readonly command: "management:check-mailbox-availability";
|
|
2154
|
+
readonly description: "Check mailbox address availability";
|
|
2155
|
+
readonly headerParams: readonly [];
|
|
2156
|
+
readonly method: "get";
|
|
2157
|
+
readonly operationId: "managementCheckMailboxAvailability";
|
|
2158
|
+
readonly path: "/mailboxes/availability";
|
|
2159
|
+
readonly pathParams: readonly [];
|
|
2160
|
+
readonly queryParams: readonly [{
|
|
2161
|
+
readonly name: "email";
|
|
2162
|
+
readonly required: true;
|
|
2163
|
+
readonly schema: {
|
|
2164
|
+
readonly type: "string";
|
|
2165
|
+
};
|
|
2166
|
+
}];
|
|
2167
|
+
readonly responseKind: "json";
|
|
1112
2168
|
readonly requestBodyRequired: false;
|
|
1113
2169
|
readonly requiredKeyKind: "root";
|
|
1114
2170
|
readonly surface: "management";
|
|
1115
2171
|
};
|
|
1116
2172
|
readonly managementCreateDomain: {
|
|
2173
|
+
readonly bodyKind: "json";
|
|
1117
2174
|
readonly command: "management:create-domain";
|
|
1118
2175
|
readonly description: "Add a mailbox domain";
|
|
1119
2176
|
readonly headerParams: readonly [{
|
|
1120
2177
|
readonly name: "Idempotency-Key";
|
|
1121
2178
|
readonly required: false;
|
|
2179
|
+
readonly schema: {
|
|
2180
|
+
readonly type: "string";
|
|
2181
|
+
readonly maxLength: 255;
|
|
2182
|
+
};
|
|
1122
2183
|
}];
|
|
1123
2184
|
readonly method: "post";
|
|
1124
2185
|
readonly operationId: "managementCreateDomain";
|
|
1125
2186
|
readonly path: "/domains";
|
|
1126
2187
|
readonly pathParams: readonly [];
|
|
1127
2188
|
readonly queryParams: readonly [];
|
|
2189
|
+
readonly responseKind: "json";
|
|
1128
2190
|
readonly requestBodyRequired: false;
|
|
1129
2191
|
readonly requiredKeyKind: "root";
|
|
1130
2192
|
readonly surface: "management";
|
|
1131
2193
|
};
|
|
1132
2194
|
readonly managementCreateMailbox: {
|
|
2195
|
+
readonly bodyKind: "json";
|
|
1133
2196
|
readonly command: "management:create-mailbox";
|
|
1134
2197
|
readonly description: "Create a mailbox";
|
|
1135
2198
|
readonly headerParams: readonly [{
|
|
1136
2199
|
readonly name: "Idempotency-Key";
|
|
1137
2200
|
readonly required: false;
|
|
2201
|
+
readonly schema: {
|
|
2202
|
+
readonly type: "string";
|
|
2203
|
+
readonly maxLength: 255;
|
|
2204
|
+
};
|
|
1138
2205
|
}];
|
|
1139
2206
|
readonly method: "post";
|
|
1140
2207
|
readonly operationId: "managementCreateMailbox";
|
|
1141
2208
|
readonly path: "/mailboxes";
|
|
1142
2209
|
readonly pathParams: readonly [];
|
|
1143
2210
|
readonly queryParams: readonly [];
|
|
2211
|
+
readonly responseKind: "json";
|
|
1144
2212
|
readonly requestBodyRequired: false;
|
|
1145
2213
|
readonly requiredKeyKind: "root";
|
|
1146
2214
|
readonly surface: "management";
|
|
1147
2215
|
};
|
|
1148
2216
|
readonly managementCreateMailboxKey: {
|
|
2217
|
+
readonly bodyKind: "json";
|
|
1149
2218
|
readonly command: "management:create-mailbox-key";
|
|
1150
2219
|
readonly description: "Create a mailbox API key";
|
|
1151
2220
|
readonly headerParams: readonly [{
|
|
1152
2221
|
readonly name: "Idempotency-Key";
|
|
1153
2222
|
readonly required: false;
|
|
2223
|
+
readonly schema: {
|
|
2224
|
+
readonly type: "string";
|
|
2225
|
+
readonly maxLength: 255;
|
|
2226
|
+
};
|
|
1154
2227
|
}];
|
|
1155
2228
|
readonly method: "post";
|
|
1156
2229
|
readonly operationId: "managementCreateMailboxKey";
|
|
@@ -1158,66 +2231,93 @@ export declare const operations: {
|
|
|
1158
2231
|
readonly pathParams: readonly [{
|
|
1159
2232
|
readonly name: "public_id";
|
|
1160
2233
|
readonly required: true;
|
|
2234
|
+
readonly schema: {
|
|
2235
|
+
readonly type: "string";
|
|
2236
|
+
};
|
|
1161
2237
|
}];
|
|
1162
2238
|
readonly queryParams: readonly [];
|
|
2239
|
+
readonly responseKind: "json";
|
|
1163
2240
|
readonly requestBodyRequired: false;
|
|
1164
2241
|
readonly requiredKeyKind: "root";
|
|
1165
2242
|
readonly surface: "management";
|
|
1166
2243
|
};
|
|
1167
2244
|
readonly managementCreateProvider: {
|
|
2245
|
+
readonly bodyKind: "json";
|
|
1168
2246
|
readonly command: "management:create-provider";
|
|
1169
2247
|
readonly description: "Create an SMTP sending account";
|
|
1170
2248
|
readonly headerParams: readonly [{
|
|
1171
2249
|
readonly name: "Idempotency-Key";
|
|
1172
2250
|
readonly required: false;
|
|
2251
|
+
readonly schema: {
|
|
2252
|
+
readonly type: "string";
|
|
2253
|
+
readonly maxLength: 255;
|
|
2254
|
+
};
|
|
1173
2255
|
}];
|
|
1174
2256
|
readonly method: "post";
|
|
1175
2257
|
readonly operationId: "managementCreateProvider";
|
|
1176
2258
|
readonly path: "/providers";
|
|
1177
2259
|
readonly pathParams: readonly [];
|
|
1178
2260
|
readonly queryParams: readonly [];
|
|
2261
|
+
readonly responseKind: "json";
|
|
1179
2262
|
readonly requestBodyRequired: false;
|
|
1180
2263
|
readonly requiredKeyKind: "root";
|
|
1181
2264
|
readonly surface: "management";
|
|
1182
2265
|
};
|
|
1183
2266
|
readonly managementCreateSharedAmazonSesLimitRequest: {
|
|
2267
|
+
readonly bodyKind: "none";
|
|
1184
2268
|
readonly command: "management:create-shared-amazon-ses-limit-request";
|
|
1185
2269
|
readonly description: "Request a shared Amazon SES daily limit increase";
|
|
1186
2270
|
readonly headerParams: readonly [{
|
|
1187
2271
|
readonly name: "Idempotency-Key";
|
|
1188
2272
|
readonly required: false;
|
|
2273
|
+
readonly schema: {
|
|
2274
|
+
readonly type: "string";
|
|
2275
|
+
readonly maxLength: 255;
|
|
2276
|
+
};
|
|
1189
2277
|
}];
|
|
1190
2278
|
readonly method: "post";
|
|
1191
2279
|
readonly operationId: "managementCreateSharedAmazonSesLimitRequest";
|
|
1192
2280
|
readonly path: "/providers/shared-amazon-ses-limit-request";
|
|
1193
2281
|
readonly pathParams: readonly [];
|
|
1194
2282
|
readonly queryParams: readonly [];
|
|
2283
|
+
readonly responseKind: "json";
|
|
1195
2284
|
readonly requestBodyRequired: false;
|
|
1196
2285
|
readonly requiredKeyKind: "root";
|
|
1197
2286
|
readonly surface: "management";
|
|
1198
2287
|
};
|
|
1199
2288
|
readonly managementCreateWebhook: {
|
|
2289
|
+
readonly bodyKind: "json";
|
|
1200
2290
|
readonly command: "management:create-webhook";
|
|
1201
2291
|
readonly description: "Create a webhook subscription";
|
|
1202
2292
|
readonly headerParams: readonly [{
|
|
1203
2293
|
readonly name: "Idempotency-Key";
|
|
1204
2294
|
readonly required: false;
|
|
2295
|
+
readonly schema: {
|
|
2296
|
+
readonly type: "string";
|
|
2297
|
+
readonly maxLength: 255;
|
|
2298
|
+
};
|
|
1205
2299
|
}];
|
|
1206
2300
|
readonly method: "post";
|
|
1207
2301
|
readonly operationId: "managementCreateWebhook";
|
|
1208
2302
|
readonly path: "/webhooks";
|
|
1209
2303
|
readonly pathParams: readonly [];
|
|
1210
2304
|
readonly queryParams: readonly [];
|
|
2305
|
+
readonly responseKind: "json";
|
|
1211
2306
|
readonly requestBodyRequired: false;
|
|
1212
2307
|
readonly requiredKeyKind: "root";
|
|
1213
2308
|
readonly surface: "management";
|
|
1214
2309
|
};
|
|
1215
2310
|
readonly managementDeactivateProvider: {
|
|
2311
|
+
readonly bodyKind: "none";
|
|
1216
2312
|
readonly command: "management:deactivate-provider";
|
|
1217
2313
|
readonly description: "Deactivate a sending account";
|
|
1218
2314
|
readonly headerParams: readonly [{
|
|
1219
2315
|
readonly name: "Idempotency-Key";
|
|
1220
2316
|
readonly required: false;
|
|
2317
|
+
readonly schema: {
|
|
2318
|
+
readonly type: "string";
|
|
2319
|
+
readonly maxLength: 255;
|
|
2320
|
+
};
|
|
1221
2321
|
}];
|
|
1222
2322
|
readonly method: "post";
|
|
1223
2323
|
readonly operationId: "managementDeactivateProvider";
|
|
@@ -1225,13 +2325,18 @@ export declare const operations: {
|
|
|
1225
2325
|
readonly pathParams: readonly [{
|
|
1226
2326
|
readonly name: "public_id";
|
|
1227
2327
|
readonly required: true;
|
|
2328
|
+
readonly schema: {
|
|
2329
|
+
readonly type: "string";
|
|
2330
|
+
};
|
|
1228
2331
|
}];
|
|
1229
2332
|
readonly queryParams: readonly [];
|
|
2333
|
+
readonly responseKind: "json";
|
|
1230
2334
|
readonly requestBodyRequired: false;
|
|
1231
2335
|
readonly requiredKeyKind: "root";
|
|
1232
2336
|
readonly surface: "management";
|
|
1233
2337
|
};
|
|
1234
2338
|
readonly managementDeleteDomain: {
|
|
2339
|
+
readonly bodyKind: "none";
|
|
1235
2340
|
readonly command: "management:delete-domain";
|
|
1236
2341
|
readonly description: "Delete a mailbox domain";
|
|
1237
2342
|
readonly headerParams: readonly [];
|
|
@@ -1241,13 +2346,18 @@ export declare const operations: {
|
|
|
1241
2346
|
readonly pathParams: readonly [{
|
|
1242
2347
|
readonly name: "public_id";
|
|
1243
2348
|
readonly required: true;
|
|
2349
|
+
readonly schema: {
|
|
2350
|
+
readonly type: "string";
|
|
2351
|
+
};
|
|
1244
2352
|
}];
|
|
1245
2353
|
readonly queryParams: readonly [];
|
|
2354
|
+
readonly responseKind: "json";
|
|
1246
2355
|
readonly requestBodyRequired: false;
|
|
1247
2356
|
readonly requiredKeyKind: "root";
|
|
1248
2357
|
readonly surface: "management";
|
|
1249
2358
|
};
|
|
1250
2359
|
readonly managementDeleteMailbox: {
|
|
2360
|
+
readonly bodyKind: "none";
|
|
1251
2361
|
readonly command: "management:delete-mailbox";
|
|
1252
2362
|
readonly description: "Delete a mailbox";
|
|
1253
2363
|
readonly headerParams: readonly [];
|
|
@@ -1257,13 +2367,18 @@ export declare const operations: {
|
|
|
1257
2367
|
readonly pathParams: readonly [{
|
|
1258
2368
|
readonly name: "public_id";
|
|
1259
2369
|
readonly required: true;
|
|
2370
|
+
readonly schema: {
|
|
2371
|
+
readonly type: "string";
|
|
2372
|
+
};
|
|
1260
2373
|
}];
|
|
1261
2374
|
readonly queryParams: readonly [];
|
|
2375
|
+
readonly responseKind: "json";
|
|
1262
2376
|
readonly requestBodyRequired: false;
|
|
1263
2377
|
readonly requiredKeyKind: "root";
|
|
1264
2378
|
readonly surface: "management";
|
|
1265
2379
|
};
|
|
1266
2380
|
readonly managementDeleteMailboxKey: {
|
|
2381
|
+
readonly bodyKind: "none";
|
|
1267
2382
|
readonly command: "management:delete-mailbox-key";
|
|
1268
2383
|
readonly description: "Revoke a mailbox API key";
|
|
1269
2384
|
readonly headerParams: readonly [];
|
|
@@ -1273,16 +2388,24 @@ export declare const operations: {
|
|
|
1273
2388
|
readonly pathParams: readonly [{
|
|
1274
2389
|
readonly name: "public_id";
|
|
1275
2390
|
readonly required: true;
|
|
2391
|
+
readonly schema: {
|
|
2392
|
+
readonly type: "string";
|
|
2393
|
+
};
|
|
1276
2394
|
}, {
|
|
1277
2395
|
readonly name: "key_id";
|
|
1278
2396
|
readonly required: true;
|
|
2397
|
+
readonly schema: {
|
|
2398
|
+
readonly type: "string";
|
|
2399
|
+
};
|
|
1279
2400
|
}];
|
|
1280
2401
|
readonly queryParams: readonly [];
|
|
2402
|
+
readonly responseKind: "json";
|
|
1281
2403
|
readonly requestBodyRequired: false;
|
|
1282
2404
|
readonly requiredKeyKind: "root";
|
|
1283
2405
|
readonly surface: "management";
|
|
1284
2406
|
};
|
|
1285
2407
|
readonly managementDeleteProvider: {
|
|
2408
|
+
readonly bodyKind: "none";
|
|
1286
2409
|
readonly command: "management:delete-provider";
|
|
1287
2410
|
readonly description: "Delete a sending account";
|
|
1288
2411
|
readonly headerParams: readonly [];
|
|
@@ -1292,13 +2415,18 @@ export declare const operations: {
|
|
|
1292
2415
|
readonly pathParams: readonly [{
|
|
1293
2416
|
readonly name: "public_id";
|
|
1294
2417
|
readonly required: true;
|
|
2418
|
+
readonly schema: {
|
|
2419
|
+
readonly type: "string";
|
|
2420
|
+
};
|
|
1295
2421
|
}];
|
|
1296
2422
|
readonly queryParams: readonly [];
|
|
2423
|
+
readonly responseKind: "json";
|
|
1297
2424
|
readonly requestBodyRequired: false;
|
|
1298
2425
|
readonly requiredKeyKind: "root";
|
|
1299
2426
|
readonly surface: "management";
|
|
1300
2427
|
};
|
|
1301
2428
|
readonly managementDeleteWebhook: {
|
|
2429
|
+
readonly bodyKind: "none";
|
|
1302
2430
|
readonly command: "management:delete-webhook";
|
|
1303
2431
|
readonly description: "Delete a webhook subscription";
|
|
1304
2432
|
readonly headerParams: readonly [];
|
|
@@ -1308,13 +2436,18 @@ export declare const operations: {
|
|
|
1308
2436
|
readonly pathParams: readonly [{
|
|
1309
2437
|
readonly name: "public_id";
|
|
1310
2438
|
readonly required: true;
|
|
2439
|
+
readonly schema: {
|
|
2440
|
+
readonly type: "string";
|
|
2441
|
+
};
|
|
1311
2442
|
}];
|
|
1312
2443
|
readonly queryParams: readonly [];
|
|
2444
|
+
readonly responseKind: "json";
|
|
1313
2445
|
readonly requestBodyRequired: false;
|
|
1314
2446
|
readonly requiredKeyKind: "root";
|
|
1315
2447
|
readonly surface: "management";
|
|
1316
2448
|
};
|
|
1317
2449
|
readonly managementGetDeliveryPayload: {
|
|
2450
|
+
readonly bodyKind: "none";
|
|
1318
2451
|
readonly command: "management:get-delivery-payload";
|
|
1319
2452
|
readonly description: "Get a webhook delivery payload";
|
|
1320
2453
|
readonly headerParams: readonly [];
|
|
@@ -1324,21 +2457,32 @@ export declare const operations: {
|
|
|
1324
2457
|
readonly pathParams: readonly [{
|
|
1325
2458
|
readonly name: "public_id";
|
|
1326
2459
|
readonly required: true;
|
|
2460
|
+
readonly schema: {
|
|
2461
|
+
readonly type: "string";
|
|
2462
|
+
};
|
|
1327
2463
|
}, {
|
|
1328
2464
|
readonly name: "delivery_id";
|
|
1329
2465
|
readonly required: true;
|
|
2466
|
+
readonly schema: {
|
|
2467
|
+
readonly type: "string";
|
|
2468
|
+
};
|
|
1330
2469
|
}];
|
|
1331
2470
|
readonly queryParams: readonly [];
|
|
2471
|
+
readonly responseKind: "json";
|
|
1332
2472
|
readonly requestBodyRequired: false;
|
|
1333
2473
|
readonly requiredKeyKind: "root";
|
|
1334
2474
|
readonly surface: "management";
|
|
1335
2475
|
};
|
|
1336
2476
|
readonly managementGetDomain: {
|
|
2477
|
+
readonly bodyKind: "none";
|
|
1337
2478
|
readonly command: "management:domains:get";
|
|
1338
2479
|
readonly description: "Get a mailbox domain";
|
|
1339
2480
|
readonly headerParams: readonly [{
|
|
1340
2481
|
readonly name: "If-None-Match";
|
|
1341
2482
|
readonly required: false;
|
|
2483
|
+
readonly schema: {
|
|
2484
|
+
readonly type: "string";
|
|
2485
|
+
};
|
|
1342
2486
|
}];
|
|
1343
2487
|
readonly method: "get";
|
|
1344
2488
|
readonly operationId: "managementGetDomain";
|
|
@@ -1346,18 +2490,26 @@ export declare const operations: {
|
|
|
1346
2490
|
readonly pathParams: readonly [{
|
|
1347
2491
|
readonly name: "public_id";
|
|
1348
2492
|
readonly required: true;
|
|
2493
|
+
readonly schema: {
|
|
2494
|
+
readonly type: "string";
|
|
2495
|
+
};
|
|
1349
2496
|
}];
|
|
1350
2497
|
readonly queryParams: readonly [];
|
|
2498
|
+
readonly responseKind: "json";
|
|
1351
2499
|
readonly requestBodyRequired: false;
|
|
1352
2500
|
readonly requiredKeyKind: "root";
|
|
1353
2501
|
readonly surface: "management";
|
|
1354
2502
|
};
|
|
1355
2503
|
readonly managementGetDomainFilters: {
|
|
2504
|
+
readonly bodyKind: "none";
|
|
1356
2505
|
readonly command: "management:get-domain-filters";
|
|
1357
2506
|
readonly description: "Get domain-wide sender filters";
|
|
1358
2507
|
readonly headerParams: readonly [{
|
|
1359
2508
|
readonly name: "If-None-Match";
|
|
1360
2509
|
readonly required: false;
|
|
2510
|
+
readonly schema: {
|
|
2511
|
+
readonly type: "string";
|
|
2512
|
+
};
|
|
1361
2513
|
}];
|
|
1362
2514
|
readonly method: "get";
|
|
1363
2515
|
readonly operationId: "managementGetDomainFilters";
|
|
@@ -1365,13 +2517,18 @@ export declare const operations: {
|
|
|
1365
2517
|
readonly pathParams: readonly [{
|
|
1366
2518
|
readonly name: "public_id";
|
|
1367
2519
|
readonly required: true;
|
|
2520
|
+
readonly schema: {
|
|
2521
|
+
readonly type: "string";
|
|
2522
|
+
};
|
|
1368
2523
|
}];
|
|
1369
2524
|
readonly queryParams: readonly [];
|
|
2525
|
+
readonly responseKind: "json";
|
|
1370
2526
|
readonly requestBodyRequired: false;
|
|
1371
2527
|
readonly requiredKeyKind: "root";
|
|
1372
2528
|
readonly surface: "management";
|
|
1373
2529
|
};
|
|
1374
2530
|
readonly managementGetDomainZoneFile: {
|
|
2531
|
+
readonly bodyKind: "none";
|
|
1375
2532
|
readonly command: "management:get-domain-zone-file";
|
|
1376
2533
|
readonly description: "Download a domain as a zone file";
|
|
1377
2534
|
readonly headerParams: readonly [];
|
|
@@ -1381,18 +2538,26 @@ export declare const operations: {
|
|
|
1381
2538
|
readonly pathParams: readonly [{
|
|
1382
2539
|
readonly name: "public_id";
|
|
1383
2540
|
readonly required: true;
|
|
2541
|
+
readonly schema: {
|
|
2542
|
+
readonly type: "string";
|
|
2543
|
+
};
|
|
1384
2544
|
}];
|
|
1385
2545
|
readonly queryParams: readonly [];
|
|
2546
|
+
readonly responseKind: "text";
|
|
1386
2547
|
readonly requestBodyRequired: false;
|
|
1387
2548
|
readonly requiredKeyKind: "root";
|
|
1388
2549
|
readonly surface: "management";
|
|
1389
2550
|
};
|
|
1390
2551
|
readonly managementGetEmailLog: {
|
|
2552
|
+
readonly bodyKind: "none";
|
|
1391
2553
|
readonly command: "management:get-email-log";
|
|
1392
2554
|
readonly description: "Get delivery log";
|
|
1393
2555
|
readonly headerParams: readonly [{
|
|
1394
2556
|
readonly name: "If-None-Match";
|
|
1395
2557
|
readonly required: false;
|
|
2558
|
+
readonly schema: {
|
|
2559
|
+
readonly type: "string";
|
|
2560
|
+
};
|
|
1396
2561
|
}];
|
|
1397
2562
|
readonly method: "get";
|
|
1398
2563
|
readonly operationId: "managementGetEmailLog";
|
|
@@ -1400,13 +2565,18 @@ export declare const operations: {
|
|
|
1400
2565
|
readonly pathParams: readonly [{
|
|
1401
2566
|
readonly name: "public_id";
|
|
1402
2567
|
readonly required: true;
|
|
2568
|
+
readonly schema: {
|
|
2569
|
+
readonly type: "string";
|
|
2570
|
+
};
|
|
1403
2571
|
}];
|
|
1404
2572
|
readonly queryParams: readonly [];
|
|
2573
|
+
readonly responseKind: "json";
|
|
1405
2574
|
readonly requestBodyRequired: false;
|
|
1406
2575
|
readonly requiredKeyKind: "root";
|
|
1407
2576
|
readonly surface: "management";
|
|
1408
2577
|
};
|
|
1409
2578
|
readonly managementGetEmailMetrics: {
|
|
2579
|
+
readonly bodyKind: "none";
|
|
1410
2580
|
readonly command: "management:get-email-metrics";
|
|
1411
2581
|
readonly description: "Get email metrics";
|
|
1412
2582
|
readonly headerParams: readonly [];
|
|
@@ -1417,24 +2587,43 @@ export declare const operations: {
|
|
|
1417
2587
|
readonly queryParams: readonly [{
|
|
1418
2588
|
readonly name: "window";
|
|
1419
2589
|
readonly required: false;
|
|
2590
|
+
readonly schema: {
|
|
2591
|
+
readonly type: "string";
|
|
2592
|
+
readonly enum: readonly ["24h", "7d", "30d"];
|
|
2593
|
+
};
|
|
1420
2594
|
}, {
|
|
1421
2595
|
readonly name: "from_date";
|
|
1422
2596
|
readonly required: false;
|
|
2597
|
+
readonly schema: {
|
|
2598
|
+
readonly type: "string";
|
|
2599
|
+
};
|
|
1423
2600
|
}, {
|
|
1424
2601
|
readonly name: "to_date";
|
|
1425
2602
|
readonly required: false;
|
|
2603
|
+
readonly schema: {
|
|
2604
|
+
readonly type: "string";
|
|
2605
|
+
};
|
|
1426
2606
|
}, {
|
|
1427
2607
|
readonly name: "granularity";
|
|
1428
2608
|
readonly required: false;
|
|
2609
|
+
readonly schema: {
|
|
2610
|
+
readonly type: "string";
|
|
2611
|
+
readonly enum: readonly ["hourly", "daily"];
|
|
2612
|
+
};
|
|
1429
2613
|
}, {
|
|
1430
2614
|
readonly name: "provider_id";
|
|
1431
2615
|
readonly required: false;
|
|
2616
|
+
readonly schema: {
|
|
2617
|
+
readonly type: "string";
|
|
2618
|
+
};
|
|
1432
2619
|
}];
|
|
2620
|
+
readonly responseKind: "json";
|
|
1433
2621
|
readonly requestBodyRequired: false;
|
|
1434
2622
|
readonly requiredKeyKind: "root";
|
|
1435
2623
|
readonly surface: "management";
|
|
1436
2624
|
};
|
|
1437
2625
|
readonly managementGetInboxLog: {
|
|
2626
|
+
readonly bodyKind: "none";
|
|
1438
2627
|
readonly command: "management:get-inbox-log";
|
|
1439
2628
|
readonly description: "Get incoming log";
|
|
1440
2629
|
readonly headerParams: readonly [];
|
|
@@ -1444,18 +2633,26 @@ export declare const operations: {
|
|
|
1444
2633
|
readonly pathParams: readonly [{
|
|
1445
2634
|
readonly name: "public_id";
|
|
1446
2635
|
readonly required: true;
|
|
2636
|
+
readonly schema: {
|
|
2637
|
+
readonly type: "string";
|
|
2638
|
+
};
|
|
1447
2639
|
}];
|
|
1448
2640
|
readonly queryParams: readonly [];
|
|
2641
|
+
readonly responseKind: "json";
|
|
1449
2642
|
readonly requestBodyRequired: false;
|
|
1450
2643
|
readonly requiredKeyKind: "root";
|
|
1451
2644
|
readonly surface: "management";
|
|
1452
2645
|
};
|
|
1453
2646
|
readonly managementGetMailbox: {
|
|
2647
|
+
readonly bodyKind: "none";
|
|
1454
2648
|
readonly command: "management:get-mailbox";
|
|
1455
2649
|
readonly description: "Get a mailbox";
|
|
1456
2650
|
readonly headerParams: readonly [{
|
|
1457
2651
|
readonly name: "If-None-Match";
|
|
1458
2652
|
readonly required: false;
|
|
2653
|
+
readonly schema: {
|
|
2654
|
+
readonly type: "string";
|
|
2655
|
+
};
|
|
1459
2656
|
}];
|
|
1460
2657
|
readonly method: "get";
|
|
1461
2658
|
readonly operationId: "managementGetMailbox";
|
|
@@ -1463,18 +2660,26 @@ export declare const operations: {
|
|
|
1463
2660
|
readonly pathParams: readonly [{
|
|
1464
2661
|
readonly name: "public_id";
|
|
1465
2662
|
readonly required: true;
|
|
2663
|
+
readonly schema: {
|
|
2664
|
+
readonly type: "string";
|
|
2665
|
+
};
|
|
1466
2666
|
}];
|
|
1467
2667
|
readonly queryParams: readonly [];
|
|
2668
|
+
readonly responseKind: "json";
|
|
1468
2669
|
readonly requestBodyRequired: false;
|
|
1469
2670
|
readonly requiredKeyKind: "root";
|
|
1470
2671
|
readonly surface: "management";
|
|
1471
2672
|
};
|
|
1472
2673
|
readonly managementGetMailboxFilters: {
|
|
2674
|
+
readonly bodyKind: "none";
|
|
1473
2675
|
readonly command: "management:get-mailbox-filters";
|
|
1474
2676
|
readonly description: "Get mailbox sender filters";
|
|
1475
2677
|
readonly headerParams: readonly [{
|
|
1476
2678
|
readonly name: "If-None-Match";
|
|
1477
2679
|
readonly required: false;
|
|
2680
|
+
readonly schema: {
|
|
2681
|
+
readonly type: "string";
|
|
2682
|
+
};
|
|
1478
2683
|
}];
|
|
1479
2684
|
readonly method: "get";
|
|
1480
2685
|
readonly operationId: "managementGetMailboxFilters";
|
|
@@ -1482,18 +2687,26 @@ export declare const operations: {
|
|
|
1482
2687
|
readonly pathParams: readonly [{
|
|
1483
2688
|
readonly name: "public_id";
|
|
1484
2689
|
readonly required: true;
|
|
2690
|
+
readonly schema: {
|
|
2691
|
+
readonly type: "string";
|
|
2692
|
+
};
|
|
1485
2693
|
}];
|
|
1486
2694
|
readonly queryParams: readonly [];
|
|
2695
|
+
readonly responseKind: "json";
|
|
1487
2696
|
readonly requestBodyRequired: false;
|
|
1488
2697
|
readonly requiredKeyKind: "root";
|
|
1489
2698
|
readonly surface: "management";
|
|
1490
2699
|
};
|
|
1491
2700
|
readonly managementGetProvider: {
|
|
2701
|
+
readonly bodyKind: "none";
|
|
1492
2702
|
readonly command: "management:get-provider";
|
|
1493
2703
|
readonly description: "Get a sending account";
|
|
1494
2704
|
readonly headerParams: readonly [{
|
|
1495
2705
|
readonly name: "If-None-Match";
|
|
1496
2706
|
readonly required: false;
|
|
2707
|
+
readonly schema: {
|
|
2708
|
+
readonly type: "string";
|
|
2709
|
+
};
|
|
1497
2710
|
}];
|
|
1498
2711
|
readonly method: "get";
|
|
1499
2712
|
readonly operationId: "managementGetProvider";
|
|
@@ -1501,13 +2714,18 @@ export declare const operations: {
|
|
|
1501
2714
|
readonly pathParams: readonly [{
|
|
1502
2715
|
readonly name: "public_id";
|
|
1503
2716
|
readonly required: true;
|
|
2717
|
+
readonly schema: {
|
|
2718
|
+
readonly type: "string";
|
|
2719
|
+
};
|
|
1504
2720
|
}];
|
|
1505
2721
|
readonly queryParams: readonly [];
|
|
2722
|
+
readonly responseKind: "json";
|
|
1506
2723
|
readonly requestBodyRequired: false;
|
|
1507
2724
|
readonly requiredKeyKind: "root";
|
|
1508
2725
|
readonly surface: "management";
|
|
1509
2726
|
};
|
|
1510
2727
|
readonly managementGetProviderLimits: {
|
|
2728
|
+
readonly bodyKind: "none";
|
|
1511
2729
|
readonly command: "management:get-provider-limits";
|
|
1512
2730
|
readonly description: "Get sending account limits";
|
|
1513
2731
|
readonly headerParams: readonly [];
|
|
@@ -1516,11 +2734,13 @@ export declare const operations: {
|
|
|
1516
2734
|
readonly path: "/providers/limits";
|
|
1517
2735
|
readonly pathParams: readonly [];
|
|
1518
2736
|
readonly queryParams: readonly [];
|
|
2737
|
+
readonly responseKind: "json";
|
|
1519
2738
|
readonly requestBodyRequired: false;
|
|
1520
2739
|
readonly requiredKeyKind: "root";
|
|
1521
2740
|
readonly surface: "management";
|
|
1522
2741
|
};
|
|
1523
2742
|
readonly managementGetProviderStats: {
|
|
2743
|
+
readonly bodyKind: "none";
|
|
1524
2744
|
readonly command: "management:get-provider-stats";
|
|
1525
2745
|
readonly description: "Get sending account statistics";
|
|
1526
2746
|
readonly headerParams: readonly [];
|
|
@@ -1529,11 +2749,13 @@ export declare const operations: {
|
|
|
1529
2749
|
readonly path: "/providers/stats";
|
|
1530
2750
|
readonly pathParams: readonly [];
|
|
1531
2751
|
readonly queryParams: readonly [];
|
|
2752
|
+
readonly responseKind: "json";
|
|
1532
2753
|
readonly requestBodyRequired: false;
|
|
1533
2754
|
readonly requiredKeyKind: "root";
|
|
1534
2755
|
readonly surface: "management";
|
|
1535
2756
|
};
|
|
1536
2757
|
readonly managementGetProviderUsage: {
|
|
2758
|
+
readonly bodyKind: "none";
|
|
1537
2759
|
readonly command: "management:get-provider-usage";
|
|
1538
2760
|
readonly description: "Get sending account usage";
|
|
1539
2761
|
readonly headerParams: readonly [];
|
|
@@ -1542,11 +2764,13 @@ export declare const operations: {
|
|
|
1542
2764
|
readonly path: "/providers/usage";
|
|
1543
2765
|
readonly pathParams: readonly [];
|
|
1544
2766
|
readonly queryParams: readonly [];
|
|
2767
|
+
readonly responseKind: "json";
|
|
1545
2768
|
readonly requestBodyRequired: false;
|
|
1546
2769
|
readonly requiredKeyKind: "root";
|
|
1547
2770
|
readonly surface: "management";
|
|
1548
2771
|
};
|
|
1549
2772
|
readonly managementGetSharedAmazonSesLimitRequest: {
|
|
2773
|
+
readonly bodyKind: "none";
|
|
1550
2774
|
readonly command: "management:get-shared-amazon-ses-limit-request";
|
|
1551
2775
|
readonly description: "Get shared Amazon SES limit request state";
|
|
1552
2776
|
readonly headerParams: readonly [];
|
|
@@ -1555,11 +2779,13 @@ export declare const operations: {
|
|
|
1555
2779
|
readonly path: "/providers/shared-amazon-ses-limit-request";
|
|
1556
2780
|
readonly pathParams: readonly [];
|
|
1557
2781
|
readonly queryParams: readonly [];
|
|
2782
|
+
readonly responseKind: "json";
|
|
1558
2783
|
readonly requestBodyRequired: false;
|
|
1559
2784
|
readonly requiredKeyKind: "root";
|
|
1560
2785
|
readonly surface: "management";
|
|
1561
2786
|
};
|
|
1562
2787
|
readonly managementGetSpendSummary: {
|
|
2788
|
+
readonly bodyKind: "none";
|
|
1563
2789
|
readonly command: "management:get-spend-summary";
|
|
1564
2790
|
readonly description: "Get spend summary";
|
|
1565
2791
|
readonly headerParams: readonly [];
|
|
@@ -1570,17 +2796,26 @@ export declare const operations: {
|
|
|
1570
2796
|
readonly queryParams: readonly [{
|
|
1571
2797
|
readonly name: "days";
|
|
1572
2798
|
readonly required: false;
|
|
2799
|
+
readonly schema: {
|
|
2800
|
+
readonly type: "string";
|
|
2801
|
+
readonly enum: readonly ["7", "30", "90"];
|
|
2802
|
+
};
|
|
1573
2803
|
}];
|
|
2804
|
+
readonly responseKind: "json";
|
|
1574
2805
|
readonly requestBodyRequired: false;
|
|
1575
2806
|
readonly requiredKeyKind: "root";
|
|
1576
2807
|
readonly surface: "management";
|
|
1577
2808
|
};
|
|
1578
2809
|
readonly managementGetWebhook: {
|
|
2810
|
+
readonly bodyKind: "none";
|
|
1579
2811
|
readonly command: "management:get-webhook";
|
|
1580
2812
|
readonly description: "Get a webhook subscription";
|
|
1581
2813
|
readonly headerParams: readonly [{
|
|
1582
2814
|
readonly name: "If-None-Match";
|
|
1583
2815
|
readonly required: false;
|
|
2816
|
+
readonly schema: {
|
|
2817
|
+
readonly type: "string";
|
|
2818
|
+
};
|
|
1584
2819
|
}];
|
|
1585
2820
|
readonly method: "get";
|
|
1586
2821
|
readonly operationId: "managementGetWebhook";
|
|
@@ -1588,13 +2823,18 @@ export declare const operations: {
|
|
|
1588
2823
|
readonly pathParams: readonly [{
|
|
1589
2824
|
readonly name: "public_id";
|
|
1590
2825
|
readonly required: true;
|
|
2826
|
+
readonly schema: {
|
|
2827
|
+
readonly type: "string";
|
|
2828
|
+
};
|
|
1591
2829
|
}];
|
|
1592
2830
|
readonly queryParams: readonly [];
|
|
2831
|
+
readonly responseKind: "json";
|
|
1593
2832
|
readonly requestBodyRequired: false;
|
|
1594
2833
|
readonly requiredKeyKind: "root";
|
|
1595
2834
|
readonly surface: "management";
|
|
1596
2835
|
};
|
|
1597
2836
|
readonly managementListBalance: {
|
|
2837
|
+
readonly bodyKind: "none";
|
|
1598
2838
|
readonly command: "management:list-balance";
|
|
1599
2839
|
readonly description: "Get current balance";
|
|
1600
2840
|
readonly headerParams: readonly [];
|
|
@@ -1603,11 +2843,13 @@ export declare const operations: {
|
|
|
1603
2843
|
readonly path: "/billing/balance";
|
|
1604
2844
|
readonly pathParams: readonly [];
|
|
1605
2845
|
readonly queryParams: readonly [];
|
|
2846
|
+
readonly responseKind: "json";
|
|
1606
2847
|
readonly requestBodyRequired: false;
|
|
1607
2848
|
readonly requiredKeyKind: "root";
|
|
1608
2849
|
readonly surface: "management";
|
|
1609
2850
|
};
|
|
1610
2851
|
readonly managementListDelivery: {
|
|
2852
|
+
readonly bodyKind: "none";
|
|
1611
2853
|
readonly command: "management:list-delivery";
|
|
1612
2854
|
readonly description: "List webhook delivery attempts";
|
|
1613
2855
|
readonly headerParams: readonly [];
|
|
@@ -1617,25 +2859,46 @@ export declare const operations: {
|
|
|
1617
2859
|
readonly pathParams: readonly [{
|
|
1618
2860
|
readonly name: "public_id";
|
|
1619
2861
|
readonly required: true;
|
|
2862
|
+
readonly schema: {
|
|
2863
|
+
readonly type: "string";
|
|
2864
|
+
};
|
|
1620
2865
|
}];
|
|
1621
2866
|
readonly queryParams: readonly [{
|
|
1622
2867
|
readonly name: "cursor";
|
|
1623
2868
|
readonly required: false;
|
|
2869
|
+
readonly schema: {
|
|
2870
|
+
readonly type: "string";
|
|
2871
|
+
};
|
|
1624
2872
|
}, {
|
|
1625
2873
|
readonly name: "limit";
|
|
1626
2874
|
readonly required: false;
|
|
2875
|
+
readonly schema: {
|
|
2876
|
+
readonly type: "integer";
|
|
2877
|
+
readonly minimum: 1;
|
|
2878
|
+
readonly maximum: 100;
|
|
2879
|
+
};
|
|
1627
2880
|
}, {
|
|
1628
2881
|
readonly name: "event_type";
|
|
1629
2882
|
readonly required: false;
|
|
2883
|
+
readonly schema: {
|
|
2884
|
+
readonly type: "string";
|
|
2885
|
+
readonly enum: readonly ["message.delivered", "message.bounced", "message.complained", "message.rejected", "message.delivery_delayed", "message.received", "message.received.spam", "sendmux.test"];
|
|
2886
|
+
};
|
|
1630
2887
|
}, {
|
|
1631
2888
|
readonly name: "result";
|
|
1632
2889
|
readonly required: false;
|
|
2890
|
+
readonly schema: {
|
|
2891
|
+
readonly type: "string";
|
|
2892
|
+
readonly enum: readonly ["success", "retrying", "failed", "permanent_failure"];
|
|
2893
|
+
};
|
|
1633
2894
|
}];
|
|
2895
|
+
readonly responseKind: "json";
|
|
1634
2896
|
readonly requestBodyRequired: false;
|
|
1635
2897
|
readonly requiredKeyKind: "root";
|
|
1636
2898
|
readonly surface: "management";
|
|
1637
2899
|
};
|
|
1638
2900
|
readonly managementListDomains: {
|
|
2901
|
+
readonly bodyKind: "none";
|
|
1639
2902
|
readonly command: "management:domains:list";
|
|
1640
2903
|
readonly description: "List mailbox domains";
|
|
1641
2904
|
readonly headerParams: readonly [];
|
|
@@ -1646,15 +2909,25 @@ export declare const operations: {
|
|
|
1646
2909
|
readonly queryParams: readonly [{
|
|
1647
2910
|
readonly name: "cursor";
|
|
1648
2911
|
readonly required: false;
|
|
2912
|
+
readonly schema: {
|
|
2913
|
+
readonly type: "string";
|
|
2914
|
+
};
|
|
1649
2915
|
}, {
|
|
1650
2916
|
readonly name: "limit";
|
|
1651
2917
|
readonly required: false;
|
|
2918
|
+
readonly schema: {
|
|
2919
|
+
readonly type: "integer";
|
|
2920
|
+
readonly minimum: 1;
|
|
2921
|
+
readonly maximum: 100;
|
|
2922
|
+
};
|
|
1652
2923
|
}];
|
|
2924
|
+
readonly responseKind: "json";
|
|
1653
2925
|
readonly requestBodyRequired: false;
|
|
1654
2926
|
readonly requiredKeyKind: "root";
|
|
1655
2927
|
readonly surface: "management";
|
|
1656
2928
|
};
|
|
1657
2929
|
readonly managementListEmailLogs: {
|
|
2930
|
+
readonly bodyKind: "none";
|
|
1658
2931
|
readonly command: "management:list-email-logs";
|
|
1659
2932
|
readonly description: "List delivery logs";
|
|
1660
2933
|
readonly headerParams: readonly [];
|
|
@@ -1665,30 +2938,56 @@ export declare const operations: {
|
|
|
1665
2938
|
readonly queryParams: readonly [{
|
|
1666
2939
|
readonly name: "limit";
|
|
1667
2940
|
readonly required: false;
|
|
2941
|
+
readonly schema: {
|
|
2942
|
+
readonly type: "integer";
|
|
2943
|
+
readonly minimum: 1;
|
|
2944
|
+
readonly maximum: 100;
|
|
2945
|
+
};
|
|
1668
2946
|
}, {
|
|
1669
2947
|
readonly name: "cursor";
|
|
1670
2948
|
readonly required: false;
|
|
2949
|
+
readonly schema: {
|
|
2950
|
+
readonly type: "string";
|
|
2951
|
+
};
|
|
1671
2952
|
}, {
|
|
1672
2953
|
readonly name: "status";
|
|
1673
2954
|
readonly required: false;
|
|
2955
|
+
readonly schema: {
|
|
2956
|
+
readonly type: "string";
|
|
2957
|
+
readonly enum: readonly ["pending", "sent", "failed", "rejected"];
|
|
2958
|
+
};
|
|
1674
2959
|
}, {
|
|
1675
2960
|
readonly name: "from_date";
|
|
1676
2961
|
readonly required: false;
|
|
2962
|
+
readonly schema: {
|
|
2963
|
+
readonly type: "string";
|
|
2964
|
+
};
|
|
1677
2965
|
}, {
|
|
1678
2966
|
readonly name: "to_date";
|
|
1679
2967
|
readonly required: false;
|
|
2968
|
+
readonly schema: {
|
|
2969
|
+
readonly type: "string";
|
|
2970
|
+
};
|
|
1680
2971
|
}, {
|
|
1681
2972
|
readonly name: "provider_id";
|
|
1682
2973
|
readonly required: false;
|
|
2974
|
+
readonly schema: {
|
|
2975
|
+
readonly type: "string";
|
|
2976
|
+
};
|
|
1683
2977
|
}, {
|
|
1684
2978
|
readonly name: "search";
|
|
1685
2979
|
readonly required: false;
|
|
2980
|
+
readonly schema: {
|
|
2981
|
+
readonly type: "string";
|
|
2982
|
+
};
|
|
1686
2983
|
}];
|
|
2984
|
+
readonly responseKind: "json";
|
|
1687
2985
|
readonly requestBodyRequired: false;
|
|
1688
2986
|
readonly requiredKeyKind: "root";
|
|
1689
2987
|
readonly surface: "management";
|
|
1690
2988
|
};
|
|
1691
2989
|
readonly managementListInboxLogs: {
|
|
2990
|
+
readonly bodyKind: "none";
|
|
1692
2991
|
readonly command: "management:list-inbox-logs";
|
|
1693
2992
|
readonly description: "List incoming logs";
|
|
1694
2993
|
readonly headerParams: readonly [];
|
|
@@ -1699,30 +2998,56 @@ export declare const operations: {
|
|
|
1699
2998
|
readonly queryParams: readonly [{
|
|
1700
2999
|
readonly name: "limit";
|
|
1701
3000
|
readonly required: false;
|
|
3001
|
+
readonly schema: {
|
|
3002
|
+
readonly type: "integer";
|
|
3003
|
+
readonly minimum: 1;
|
|
3004
|
+
readonly maximum: 100;
|
|
3005
|
+
};
|
|
1702
3006
|
}, {
|
|
1703
3007
|
readonly name: "cursor";
|
|
1704
3008
|
readonly required: false;
|
|
3009
|
+
readonly schema: {
|
|
3010
|
+
readonly type: "string";
|
|
3011
|
+
};
|
|
1705
3012
|
}, {
|
|
1706
3013
|
readonly name: "mailbox_id";
|
|
1707
3014
|
readonly required: false;
|
|
3015
|
+
readonly schema: {
|
|
3016
|
+
readonly type: "string";
|
|
3017
|
+
};
|
|
1708
3018
|
}, {
|
|
1709
3019
|
readonly name: "event_type";
|
|
1710
3020
|
readonly required: false;
|
|
3021
|
+
readonly schema: {
|
|
3022
|
+
readonly type: "string";
|
|
3023
|
+
readonly enum: readonly ["message.received", "message.received.spam"];
|
|
3024
|
+
};
|
|
1711
3025
|
}, {
|
|
1712
3026
|
readonly name: "from_date";
|
|
1713
3027
|
readonly required: false;
|
|
3028
|
+
readonly schema: {
|
|
3029
|
+
readonly type: "string";
|
|
3030
|
+
};
|
|
1714
3031
|
}, {
|
|
1715
3032
|
readonly name: "to_date";
|
|
1716
3033
|
readonly required: false;
|
|
3034
|
+
readonly schema: {
|
|
3035
|
+
readonly type: "string";
|
|
3036
|
+
};
|
|
1717
3037
|
}, {
|
|
1718
3038
|
readonly name: "search";
|
|
1719
3039
|
readonly required: false;
|
|
3040
|
+
readonly schema: {
|
|
3041
|
+
readonly type: "string";
|
|
3042
|
+
};
|
|
1720
3043
|
}];
|
|
3044
|
+
readonly responseKind: "json";
|
|
1721
3045
|
readonly requestBodyRequired: false;
|
|
1722
3046
|
readonly requiredKeyKind: "root";
|
|
1723
3047
|
readonly surface: "management";
|
|
1724
3048
|
};
|
|
1725
3049
|
readonly managementListMailboxes: {
|
|
3050
|
+
readonly bodyKind: "none";
|
|
1726
3051
|
readonly command: "management:mailboxes:list";
|
|
1727
3052
|
readonly description: "List mailboxes";
|
|
1728
3053
|
readonly headerParams: readonly [];
|
|
@@ -1733,18 +3058,32 @@ export declare const operations: {
|
|
|
1733
3058
|
readonly queryParams: readonly [{
|
|
1734
3059
|
readonly name: "cursor";
|
|
1735
3060
|
readonly required: false;
|
|
3061
|
+
readonly schema: {
|
|
3062
|
+
readonly type: "string";
|
|
3063
|
+
};
|
|
1736
3064
|
}, {
|
|
1737
3065
|
readonly name: "limit";
|
|
1738
3066
|
readonly required: false;
|
|
3067
|
+
readonly schema: {
|
|
3068
|
+
readonly type: "integer";
|
|
3069
|
+
readonly minimum: 1;
|
|
3070
|
+
readonly maximum: 100;
|
|
3071
|
+
};
|
|
1739
3072
|
}, {
|
|
1740
3073
|
readonly name: "include_deleted";
|
|
1741
3074
|
readonly required: false;
|
|
3075
|
+
readonly schema: {
|
|
3076
|
+
readonly type: "string";
|
|
3077
|
+
readonly enum: readonly ["true"];
|
|
3078
|
+
};
|
|
1742
3079
|
}];
|
|
3080
|
+
readonly responseKind: "json";
|
|
1743
3081
|
readonly requestBodyRequired: false;
|
|
1744
3082
|
readonly requiredKeyKind: "root";
|
|
1745
3083
|
readonly surface: "management";
|
|
1746
3084
|
};
|
|
1747
3085
|
readonly managementListProviders: {
|
|
3086
|
+
readonly bodyKind: "none";
|
|
1748
3087
|
readonly command: "management:providers:list";
|
|
1749
3088
|
readonly description: "List sending accounts";
|
|
1750
3089
|
readonly headerParams: readonly [];
|
|
@@ -1755,21 +3094,39 @@ export declare const operations: {
|
|
|
1755
3094
|
readonly queryParams: readonly [{
|
|
1756
3095
|
readonly name: "cursor";
|
|
1757
3096
|
readonly required: false;
|
|
3097
|
+
readonly schema: {
|
|
3098
|
+
readonly type: "string";
|
|
3099
|
+
};
|
|
1758
3100
|
}, {
|
|
1759
3101
|
readonly name: "status";
|
|
1760
3102
|
readonly required: false;
|
|
3103
|
+
readonly schema: {
|
|
3104
|
+
readonly type: "string";
|
|
3105
|
+
readonly enum: readonly ["active", "inactive", "error", "pending"];
|
|
3106
|
+
};
|
|
1761
3107
|
}, {
|
|
1762
3108
|
readonly name: "type";
|
|
1763
3109
|
readonly required: false;
|
|
3110
|
+
readonly schema: {
|
|
3111
|
+
readonly type: "string";
|
|
3112
|
+
readonly enum: readonly ["smtp", "gmail_api", "outlook_api", "amazon_ses"];
|
|
3113
|
+
};
|
|
1764
3114
|
}, {
|
|
1765
3115
|
readonly name: "limit";
|
|
1766
3116
|
readonly required: false;
|
|
3117
|
+
readonly schema: {
|
|
3118
|
+
readonly type: "integer";
|
|
3119
|
+
readonly minimum: 1;
|
|
3120
|
+
readonly maximum: 100;
|
|
3121
|
+
};
|
|
1767
3122
|
}];
|
|
3123
|
+
readonly responseKind: "json";
|
|
1768
3124
|
readonly requestBodyRequired: false;
|
|
1769
3125
|
readonly requiredKeyKind: "root";
|
|
1770
3126
|
readonly surface: "management";
|
|
1771
3127
|
};
|
|
1772
3128
|
readonly managementListTransactions: {
|
|
3129
|
+
readonly bodyKind: "none";
|
|
1773
3130
|
readonly command: "management:list-transactions";
|
|
1774
3131
|
readonly description: "List transactions";
|
|
1775
3132
|
readonly headerParams: readonly [];
|
|
@@ -1780,18 +3137,32 @@ export declare const operations: {
|
|
|
1780
3137
|
readonly queryParams: readonly [{
|
|
1781
3138
|
readonly name: "cursor";
|
|
1782
3139
|
readonly required: false;
|
|
3140
|
+
readonly schema: {
|
|
3141
|
+
readonly type: "string";
|
|
3142
|
+
};
|
|
1783
3143
|
}, {
|
|
1784
3144
|
readonly name: "limit";
|
|
1785
3145
|
readonly required: false;
|
|
3146
|
+
readonly schema: {
|
|
3147
|
+
readonly type: "integer";
|
|
3148
|
+
readonly minimum: 1;
|
|
3149
|
+
readonly maximum: 100;
|
|
3150
|
+
};
|
|
1786
3151
|
}, {
|
|
1787
3152
|
readonly name: "type";
|
|
1788
3153
|
readonly required: false;
|
|
3154
|
+
readonly schema: {
|
|
3155
|
+
readonly type: "string";
|
|
3156
|
+
readonly enum: readonly ["PURCHASE", "USAGE", "AUTO_TOPUP", "REFUND", "ADJUSTMENT"];
|
|
3157
|
+
};
|
|
1789
3158
|
}];
|
|
3159
|
+
readonly responseKind: "json";
|
|
1790
3160
|
readonly requestBodyRequired: false;
|
|
1791
3161
|
readonly requiredKeyKind: "root";
|
|
1792
3162
|
readonly surface: "management";
|
|
1793
3163
|
};
|
|
1794
3164
|
readonly managementListWebhooks: {
|
|
3165
|
+
readonly bodyKind: "none";
|
|
1795
3166
|
readonly command: "management:list-webhooks";
|
|
1796
3167
|
readonly description: "List webhook subscriptions";
|
|
1797
3168
|
readonly headerParams: readonly [];
|
|
@@ -1802,36 +3173,56 @@ export declare const operations: {
|
|
|
1802
3173
|
readonly queryParams: readonly [{
|
|
1803
3174
|
readonly name: "cursor";
|
|
1804
3175
|
readonly required: false;
|
|
3176
|
+
readonly schema: {
|
|
3177
|
+
readonly type: "string";
|
|
3178
|
+
};
|
|
1805
3179
|
}, {
|
|
1806
3180
|
readonly name: "limit";
|
|
1807
3181
|
readonly required: false;
|
|
3182
|
+
readonly schema: {
|
|
3183
|
+
readonly type: "integer";
|
|
3184
|
+
readonly minimum: 1;
|
|
3185
|
+
readonly maximum: 100;
|
|
3186
|
+
};
|
|
1808
3187
|
}];
|
|
3188
|
+
readonly responseKind: "json";
|
|
1809
3189
|
readonly requestBodyRequired: false;
|
|
1810
3190
|
readonly requiredKeyKind: "root";
|
|
1811
3191
|
readonly surface: "management";
|
|
1812
3192
|
};
|
|
1813
3193
|
readonly managementRequestSendingAccountLimitIncrease: {
|
|
3194
|
+
readonly bodyKind: "none";
|
|
1814
3195
|
readonly command: "management:request-sending-account-limit-increase";
|
|
1815
3196
|
readonly description: "Request a sending account limit increase";
|
|
1816
3197
|
readonly headerParams: readonly [{
|
|
1817
3198
|
readonly name: "Idempotency-Key";
|
|
1818
3199
|
readonly required: false;
|
|
3200
|
+
readonly schema: {
|
|
3201
|
+
readonly type: "string";
|
|
3202
|
+
readonly maxLength: 255;
|
|
3203
|
+
};
|
|
1819
3204
|
}];
|
|
1820
3205
|
readonly method: "post";
|
|
1821
3206
|
readonly operationId: "managementRequestSendingAccountLimitIncrease";
|
|
1822
3207
|
readonly path: "/providers/limits/sending-accounts/request-increase";
|
|
1823
3208
|
readonly pathParams: readonly [];
|
|
1824
3209
|
readonly queryParams: readonly [];
|
|
3210
|
+
readonly responseKind: "json";
|
|
1825
3211
|
readonly requestBodyRequired: false;
|
|
1826
3212
|
readonly requiredKeyKind: "root";
|
|
1827
3213
|
readonly surface: "management";
|
|
1828
3214
|
};
|
|
1829
3215
|
readonly managementResumeMailbox: {
|
|
3216
|
+
readonly bodyKind: "none";
|
|
1830
3217
|
readonly command: "management:resume-mailbox";
|
|
1831
3218
|
readonly description: "Resume a mailbox";
|
|
1832
3219
|
readonly headerParams: readonly [{
|
|
1833
3220
|
readonly name: "Idempotency-Key";
|
|
1834
3221
|
readonly required: false;
|
|
3222
|
+
readonly schema: {
|
|
3223
|
+
readonly type: "string";
|
|
3224
|
+
readonly maxLength: 255;
|
|
3225
|
+
};
|
|
1835
3226
|
}];
|
|
1836
3227
|
readonly method: "post";
|
|
1837
3228
|
readonly operationId: "managementResumeMailbox";
|
|
@@ -1839,18 +3230,27 @@ export declare const operations: {
|
|
|
1839
3230
|
readonly pathParams: readonly [{
|
|
1840
3231
|
readonly name: "public_id";
|
|
1841
3232
|
readonly required: true;
|
|
3233
|
+
readonly schema: {
|
|
3234
|
+
readonly type: "string";
|
|
3235
|
+
};
|
|
1842
3236
|
}];
|
|
1843
3237
|
readonly queryParams: readonly [];
|
|
3238
|
+
readonly responseKind: "json";
|
|
1844
3239
|
readonly requestBodyRequired: false;
|
|
1845
3240
|
readonly requiredKeyKind: "root";
|
|
1846
3241
|
readonly surface: "management";
|
|
1847
3242
|
};
|
|
1848
3243
|
readonly managementRotateWebhookSecret: {
|
|
3244
|
+
readonly bodyKind: "none";
|
|
1849
3245
|
readonly command: "management:rotate-webhook-secret";
|
|
1850
3246
|
readonly description: "Rotate the signing secret";
|
|
1851
3247
|
readonly headerParams: readonly [{
|
|
1852
3248
|
readonly name: "Idempotency-Key";
|
|
1853
3249
|
readonly required: false;
|
|
3250
|
+
readonly schema: {
|
|
3251
|
+
readonly type: "string";
|
|
3252
|
+
readonly maxLength: 255;
|
|
3253
|
+
};
|
|
1854
3254
|
}];
|
|
1855
3255
|
readonly method: "post";
|
|
1856
3256
|
readonly operationId: "managementRotateWebhookSecret";
|
|
@@ -1858,18 +3258,26 @@ export declare const operations: {
|
|
|
1858
3258
|
readonly pathParams: readonly [{
|
|
1859
3259
|
readonly name: "public_id";
|
|
1860
3260
|
readonly required: true;
|
|
3261
|
+
readonly schema: {
|
|
3262
|
+
readonly type: "string";
|
|
3263
|
+
};
|
|
1861
3264
|
}];
|
|
1862
3265
|
readonly queryParams: readonly [];
|
|
3266
|
+
readonly responseKind: "json";
|
|
1863
3267
|
readonly requestBodyRequired: false;
|
|
1864
3268
|
readonly requiredKeyKind: "root";
|
|
1865
3269
|
readonly surface: "management";
|
|
1866
3270
|
};
|
|
1867
3271
|
readonly managementSetDomainFilters: {
|
|
3272
|
+
readonly bodyKind: "json";
|
|
1868
3273
|
readonly command: "management:set-domain-filters";
|
|
1869
3274
|
readonly description: "Replace domain-wide sender filters";
|
|
1870
3275
|
readonly headerParams: readonly [{
|
|
1871
3276
|
readonly name: "If-Match";
|
|
1872
3277
|
readonly required: false;
|
|
3278
|
+
readonly schema: {
|
|
3279
|
+
readonly type: "string";
|
|
3280
|
+
};
|
|
1873
3281
|
}];
|
|
1874
3282
|
readonly method: "put";
|
|
1875
3283
|
readonly operationId: "managementSetDomainFilters";
|
|
@@ -1877,18 +3285,26 @@ export declare const operations: {
|
|
|
1877
3285
|
readonly pathParams: readonly [{
|
|
1878
3286
|
readonly name: "public_id";
|
|
1879
3287
|
readonly required: true;
|
|
3288
|
+
readonly schema: {
|
|
3289
|
+
readonly type: "string";
|
|
3290
|
+
};
|
|
1880
3291
|
}];
|
|
1881
3292
|
readonly queryParams: readonly [];
|
|
3293
|
+
readonly responseKind: "json";
|
|
1882
3294
|
readonly requestBodyRequired: false;
|
|
1883
3295
|
readonly requiredKeyKind: "root";
|
|
1884
3296
|
readonly surface: "management";
|
|
1885
3297
|
};
|
|
1886
3298
|
readonly managementSetMailboxFilters: {
|
|
3299
|
+
readonly bodyKind: "json";
|
|
1887
3300
|
readonly command: "management:set-mailbox-filters";
|
|
1888
3301
|
readonly description: "Replace mailbox sender filters";
|
|
1889
3302
|
readonly headerParams: readonly [{
|
|
1890
3303
|
readonly name: "If-Match";
|
|
1891
3304
|
readonly required: false;
|
|
3305
|
+
readonly schema: {
|
|
3306
|
+
readonly type: "string";
|
|
3307
|
+
};
|
|
1892
3308
|
}];
|
|
1893
3309
|
readonly method: "put";
|
|
1894
3310
|
readonly operationId: "managementSetMailboxFilters";
|
|
@@ -1896,18 +3312,27 @@ export declare const operations: {
|
|
|
1896
3312
|
readonly pathParams: readonly [{
|
|
1897
3313
|
readonly name: "public_id";
|
|
1898
3314
|
readonly required: true;
|
|
3315
|
+
readonly schema: {
|
|
3316
|
+
readonly type: "string";
|
|
3317
|
+
};
|
|
1899
3318
|
}];
|
|
1900
3319
|
readonly queryParams: readonly [];
|
|
3320
|
+
readonly responseKind: "json";
|
|
1901
3321
|
readonly requestBodyRequired: false;
|
|
1902
3322
|
readonly requiredKeyKind: "root";
|
|
1903
3323
|
readonly surface: "management";
|
|
1904
3324
|
};
|
|
1905
3325
|
readonly managementSuspendMailbox: {
|
|
3326
|
+
readonly bodyKind: "none";
|
|
1906
3327
|
readonly command: "management:suspend-mailbox";
|
|
1907
3328
|
readonly description: "Suspend a mailbox";
|
|
1908
3329
|
readonly headerParams: readonly [{
|
|
1909
3330
|
readonly name: "Idempotency-Key";
|
|
1910
3331
|
readonly required: false;
|
|
3332
|
+
readonly schema: {
|
|
3333
|
+
readonly type: "string";
|
|
3334
|
+
readonly maxLength: 255;
|
|
3335
|
+
};
|
|
1911
3336
|
}];
|
|
1912
3337
|
readonly method: "post";
|
|
1913
3338
|
readonly operationId: "managementSuspendMailbox";
|
|
@@ -1915,18 +3340,27 @@ export declare const operations: {
|
|
|
1915
3340
|
readonly pathParams: readonly [{
|
|
1916
3341
|
readonly name: "public_id";
|
|
1917
3342
|
readonly required: true;
|
|
3343
|
+
readonly schema: {
|
|
3344
|
+
readonly type: "string";
|
|
3345
|
+
};
|
|
1918
3346
|
}];
|
|
1919
3347
|
readonly queryParams: readonly [];
|
|
3348
|
+
readonly responseKind: "json";
|
|
1920
3349
|
readonly requestBodyRequired: false;
|
|
1921
3350
|
readonly requiredKeyKind: "root";
|
|
1922
3351
|
readonly surface: "management";
|
|
1923
3352
|
};
|
|
1924
3353
|
readonly managementTestProvider: {
|
|
3354
|
+
readonly bodyKind: "none";
|
|
1925
3355
|
readonly command: "management:test-provider";
|
|
1926
3356
|
readonly description: "Test an SMTP sending account";
|
|
1927
3357
|
readonly headerParams: readonly [{
|
|
1928
3358
|
readonly name: "Idempotency-Key";
|
|
1929
3359
|
readonly required: false;
|
|
3360
|
+
readonly schema: {
|
|
3361
|
+
readonly type: "string";
|
|
3362
|
+
readonly maxLength: 255;
|
|
3363
|
+
};
|
|
1930
3364
|
}];
|
|
1931
3365
|
readonly method: "post";
|
|
1932
3366
|
readonly operationId: "managementTestProvider";
|
|
@@ -1934,18 +3368,27 @@ export declare const operations: {
|
|
|
1934
3368
|
readonly pathParams: readonly [{
|
|
1935
3369
|
readonly name: "public_id";
|
|
1936
3370
|
readonly required: true;
|
|
3371
|
+
readonly schema: {
|
|
3372
|
+
readonly type: "string";
|
|
3373
|
+
};
|
|
1937
3374
|
}];
|
|
1938
3375
|
readonly queryParams: readonly [];
|
|
3376
|
+
readonly responseKind: "json";
|
|
1939
3377
|
readonly requestBodyRequired: false;
|
|
1940
3378
|
readonly requiredKeyKind: "root";
|
|
1941
3379
|
readonly surface: "management";
|
|
1942
3380
|
};
|
|
1943
3381
|
readonly managementTestWebhook: {
|
|
3382
|
+
readonly bodyKind: "none";
|
|
1944
3383
|
readonly command: "management:test-webhook";
|
|
1945
3384
|
readonly description: "Send a synthetic test event";
|
|
1946
3385
|
readonly headerParams: readonly [{
|
|
1947
3386
|
readonly name: "Idempotency-Key";
|
|
1948
3387
|
readonly required: false;
|
|
3388
|
+
readonly schema: {
|
|
3389
|
+
readonly type: "string";
|
|
3390
|
+
readonly maxLength: 255;
|
|
3391
|
+
};
|
|
1949
3392
|
}];
|
|
1950
3393
|
readonly method: "post";
|
|
1951
3394
|
readonly operationId: "managementTestWebhook";
|
|
@@ -1953,18 +3396,53 @@ export declare const operations: {
|
|
|
1953
3396
|
readonly pathParams: readonly [{
|
|
1954
3397
|
readonly name: "public_id";
|
|
1955
3398
|
readonly required: true;
|
|
3399
|
+
readonly schema: {
|
|
3400
|
+
readonly type: "string";
|
|
3401
|
+
};
|
|
3402
|
+
}];
|
|
3403
|
+
readonly queryParams: readonly [];
|
|
3404
|
+
readonly responseKind: "json";
|
|
3405
|
+
readonly requestBodyRequired: false;
|
|
3406
|
+
readonly requiredKeyKind: "root";
|
|
3407
|
+
readonly surface: "management";
|
|
3408
|
+
};
|
|
3409
|
+
readonly managementUpdateDomain: {
|
|
3410
|
+
readonly bodyKind: "json";
|
|
3411
|
+
readonly command: "management:update-domain";
|
|
3412
|
+
readonly description: "Update a mailbox domain";
|
|
3413
|
+
readonly headerParams: readonly [{
|
|
3414
|
+
readonly name: "If-Match";
|
|
3415
|
+
readonly required: false;
|
|
3416
|
+
readonly schema: {
|
|
3417
|
+
readonly type: "string";
|
|
3418
|
+
};
|
|
3419
|
+
}];
|
|
3420
|
+
readonly method: "patch";
|
|
3421
|
+
readonly operationId: "managementUpdateDomain";
|
|
3422
|
+
readonly path: "/domains/{public_id}";
|
|
3423
|
+
readonly pathParams: readonly [{
|
|
3424
|
+
readonly name: "public_id";
|
|
3425
|
+
readonly required: true;
|
|
3426
|
+
readonly schema: {
|
|
3427
|
+
readonly type: "string";
|
|
3428
|
+
};
|
|
1956
3429
|
}];
|
|
1957
3430
|
readonly queryParams: readonly [];
|
|
3431
|
+
readonly responseKind: "json";
|
|
1958
3432
|
readonly requestBodyRequired: false;
|
|
1959
3433
|
readonly requiredKeyKind: "root";
|
|
1960
3434
|
readonly surface: "management";
|
|
1961
3435
|
};
|
|
1962
3436
|
readonly managementUpdateMailbox: {
|
|
3437
|
+
readonly bodyKind: "json";
|
|
1963
3438
|
readonly command: "management:update-mailbox";
|
|
1964
3439
|
readonly description: "Update a mailbox";
|
|
1965
3440
|
readonly headerParams: readonly [{
|
|
1966
3441
|
readonly name: "If-Match";
|
|
1967
3442
|
readonly required: false;
|
|
3443
|
+
readonly schema: {
|
|
3444
|
+
readonly type: "string";
|
|
3445
|
+
};
|
|
1968
3446
|
}];
|
|
1969
3447
|
readonly method: "patch";
|
|
1970
3448
|
readonly operationId: "managementUpdateMailbox";
|
|
@@ -1972,18 +3450,26 @@ export declare const operations: {
|
|
|
1972
3450
|
readonly pathParams: readonly [{
|
|
1973
3451
|
readonly name: "public_id";
|
|
1974
3452
|
readonly required: true;
|
|
3453
|
+
readonly schema: {
|
|
3454
|
+
readonly type: "string";
|
|
3455
|
+
};
|
|
1975
3456
|
}];
|
|
1976
3457
|
readonly queryParams: readonly [];
|
|
3458
|
+
readonly responseKind: "json";
|
|
1977
3459
|
readonly requestBodyRequired: false;
|
|
1978
3460
|
readonly requiredKeyKind: "root";
|
|
1979
3461
|
readonly surface: "management";
|
|
1980
3462
|
};
|
|
1981
3463
|
readonly managementUpdateProvider: {
|
|
3464
|
+
readonly bodyKind: "json";
|
|
1982
3465
|
readonly command: "management:update-provider";
|
|
1983
3466
|
readonly description: "Update a sending account";
|
|
1984
3467
|
readonly headerParams: readonly [{
|
|
1985
3468
|
readonly name: "If-Match";
|
|
1986
3469
|
readonly required: false;
|
|
3470
|
+
readonly schema: {
|
|
3471
|
+
readonly type: "string";
|
|
3472
|
+
};
|
|
1987
3473
|
}];
|
|
1988
3474
|
readonly method: "patch";
|
|
1989
3475
|
readonly operationId: "managementUpdateProvider";
|
|
@@ -1991,18 +3477,26 @@ export declare const operations: {
|
|
|
1991
3477
|
readonly pathParams: readonly [{
|
|
1992
3478
|
readonly name: "public_id";
|
|
1993
3479
|
readonly required: true;
|
|
3480
|
+
readonly schema: {
|
|
3481
|
+
readonly type: "string";
|
|
3482
|
+
};
|
|
1994
3483
|
}];
|
|
1995
3484
|
readonly queryParams: readonly [];
|
|
3485
|
+
readonly responseKind: "json";
|
|
1996
3486
|
readonly requestBodyRequired: false;
|
|
1997
3487
|
readonly requiredKeyKind: "root";
|
|
1998
3488
|
readonly surface: "management";
|
|
1999
3489
|
};
|
|
2000
3490
|
readonly managementUpdateWebhook: {
|
|
3491
|
+
readonly bodyKind: "json";
|
|
2001
3492
|
readonly command: "management:update-webhook";
|
|
2002
3493
|
readonly description: "Update a webhook subscription";
|
|
2003
3494
|
readonly headerParams: readonly [{
|
|
2004
3495
|
readonly name: "If-Match";
|
|
2005
3496
|
readonly required: false;
|
|
3497
|
+
readonly schema: {
|
|
3498
|
+
readonly type: "string";
|
|
3499
|
+
};
|
|
2006
3500
|
}];
|
|
2007
3501
|
readonly method: "patch";
|
|
2008
3502
|
readonly operationId: "managementUpdateWebhook";
|
|
@@ -2010,13 +3504,18 @@ export declare const operations: {
|
|
|
2010
3504
|
readonly pathParams: readonly [{
|
|
2011
3505
|
readonly name: "public_id";
|
|
2012
3506
|
readonly required: true;
|
|
3507
|
+
readonly schema: {
|
|
3508
|
+
readonly type: "string";
|
|
3509
|
+
};
|
|
2013
3510
|
}];
|
|
2014
3511
|
readonly queryParams: readonly [];
|
|
3512
|
+
readonly responseKind: "json";
|
|
2015
3513
|
readonly requestBodyRequired: false;
|
|
2016
3514
|
readonly requiredKeyKind: "root";
|
|
2017
3515
|
readonly surface: "management";
|
|
2018
3516
|
};
|
|
2019
3517
|
readonly managementVerifyDomain: {
|
|
3518
|
+
readonly bodyKind: "none";
|
|
2020
3519
|
readonly command: "management:verify-domain";
|
|
2021
3520
|
readonly description: "Verify a mailbox domain";
|
|
2022
3521
|
readonly headerParams: readonly [];
|
|
@@ -2026,84 +3525,120 @@ export declare const operations: {
|
|
|
2026
3525
|
readonly pathParams: readonly [{
|
|
2027
3526
|
readonly name: "public_id";
|
|
2028
3527
|
readonly required: true;
|
|
3528
|
+
readonly schema: {
|
|
3529
|
+
readonly type: "string";
|
|
3530
|
+
};
|
|
2029
3531
|
}];
|
|
2030
3532
|
readonly queryParams: readonly [];
|
|
3533
|
+
readonly responseKind: "json";
|
|
2031
3534
|
readonly requestBodyRequired: false;
|
|
2032
3535
|
readonly requiredKeyKind: "root";
|
|
2033
3536
|
readonly surface: "management";
|
|
2034
3537
|
};
|
|
2035
3538
|
readonly sendingGetOpenApiSpec: {
|
|
3539
|
+
readonly bodyKind: "none";
|
|
2036
3540
|
readonly command: "sending:get-open-api-spec";
|
|
2037
3541
|
readonly description: "OpenAPI 3.1 specification";
|
|
2038
3542
|
readonly headerParams: readonly [{
|
|
2039
3543
|
readonly name: "If-None-Match";
|
|
2040
3544
|
readonly required: false;
|
|
3545
|
+
readonly schema: {
|
|
3546
|
+
readonly type: "string";
|
|
3547
|
+
};
|
|
2041
3548
|
}];
|
|
2042
3549
|
readonly method: "get";
|
|
2043
3550
|
readonly operationId: "sendingGetOpenApiSpec";
|
|
2044
3551
|
readonly path: "/openapi.json";
|
|
2045
3552
|
readonly pathParams: readonly [];
|
|
2046
3553
|
readonly queryParams: readonly [];
|
|
3554
|
+
readonly responseKind: "json";
|
|
2047
3555
|
readonly requestBodyRequired: false;
|
|
2048
|
-
readonly requiredKeyKind: "
|
|
3556
|
+
readonly requiredKeyKind: "sending";
|
|
2049
3557
|
readonly surface: "sending";
|
|
2050
3558
|
};
|
|
2051
3559
|
readonly sendingSendEmail: {
|
|
3560
|
+
readonly bodyKind: "json";
|
|
2052
3561
|
readonly command: "sending:send";
|
|
2053
3562
|
readonly description: "Send a single email";
|
|
2054
3563
|
readonly headerParams: readonly [{
|
|
2055
3564
|
readonly name: "Idempotency-Key";
|
|
2056
3565
|
readonly required: false;
|
|
3566
|
+
readonly schema: {
|
|
3567
|
+
readonly type: "string";
|
|
3568
|
+
readonly maxLength: 255;
|
|
3569
|
+
};
|
|
2057
3570
|
}];
|
|
2058
3571
|
readonly method: "post";
|
|
2059
3572
|
readonly operationId: "sendingSendEmail";
|
|
2060
3573
|
readonly path: "/emails/send";
|
|
2061
3574
|
readonly pathParams: readonly [];
|
|
2062
3575
|
readonly queryParams: readonly [];
|
|
3576
|
+
readonly responseKind: "json";
|
|
2063
3577
|
readonly requestBodyRequired: true;
|
|
2064
|
-
readonly requiredKeyKind: "
|
|
3578
|
+
readonly requiredKeyKind: "sending";
|
|
2065
3579
|
readonly surface: "sending";
|
|
2066
3580
|
};
|
|
2067
3581
|
readonly sendingSendEmailBatch: {
|
|
3582
|
+
readonly bodyKind: "json";
|
|
2068
3583
|
readonly command: "sending:send:batch";
|
|
2069
3584
|
readonly description: "Send a batch of emails";
|
|
2070
3585
|
readonly headerParams: readonly [{
|
|
2071
3586
|
readonly name: "Idempotency-Key";
|
|
2072
3587
|
readonly required: false;
|
|
3588
|
+
readonly schema: {
|
|
3589
|
+
readonly type: "string";
|
|
3590
|
+
readonly maxLength: 255;
|
|
3591
|
+
};
|
|
2073
3592
|
}];
|
|
2074
3593
|
readonly method: "post";
|
|
2075
3594
|
readonly operationId: "sendingSendEmailBatch";
|
|
2076
3595
|
readonly path: "/emails/send/batch";
|
|
2077
3596
|
readonly pathParams: readonly [];
|
|
2078
3597
|
readonly queryParams: readonly [];
|
|
3598
|
+
readonly responseKind: "json";
|
|
2079
3599
|
readonly requestBodyRequired: true;
|
|
2080
|
-
readonly requiredKeyKind: "
|
|
3600
|
+
readonly requiredKeyKind: "sending";
|
|
2081
3601
|
readonly surface: "sending";
|
|
2082
3602
|
};
|
|
2083
3603
|
};
|
|
2084
3604
|
export declare const curatedOperations: {
|
|
2085
3605
|
readonly mailboxGetMe: {
|
|
3606
|
+
readonly bodyKind: "none";
|
|
2086
3607
|
readonly command: "mailbox:me:get";
|
|
2087
3608
|
readonly description: "Self-introspect the calling mailbox";
|
|
2088
3609
|
readonly headerParams: readonly [{
|
|
2089
3610
|
readonly name: "If-None-Match";
|
|
2090
3611
|
readonly required: false;
|
|
3612
|
+
readonly schema: {
|
|
3613
|
+
readonly type: "string";
|
|
3614
|
+
};
|
|
2091
3615
|
}];
|
|
2092
3616
|
readonly method: "get";
|
|
2093
3617
|
readonly operationId: "mailboxGetMe";
|
|
2094
3618
|
readonly path: "/mailbox/me";
|
|
2095
3619
|
readonly pathParams: readonly [];
|
|
2096
|
-
readonly queryParams: readonly [
|
|
3620
|
+
readonly queryParams: readonly [{
|
|
3621
|
+
readonly name: "mailbox_id";
|
|
3622
|
+
readonly required: false;
|
|
3623
|
+
readonly schema: {
|
|
3624
|
+
readonly type: "string";
|
|
3625
|
+
};
|
|
3626
|
+
}];
|
|
3627
|
+
readonly responseKind: "json";
|
|
2097
3628
|
readonly requestBodyRequired: false;
|
|
2098
3629
|
readonly requiredKeyKind: "mailbox";
|
|
2099
3630
|
readonly surface: "mailbox";
|
|
2100
3631
|
};
|
|
2101
3632
|
readonly mailboxGetMessage: {
|
|
3633
|
+
readonly bodyKind: "none";
|
|
2102
3634
|
readonly command: "mailbox:messages:get";
|
|
2103
3635
|
readonly description: "Get a mailbox message";
|
|
2104
3636
|
readonly headerParams: readonly [{
|
|
2105
3637
|
readonly name: "If-None-Match";
|
|
2106
3638
|
readonly required: false;
|
|
3639
|
+
readonly schema: {
|
|
3640
|
+
readonly type: "string";
|
|
3641
|
+
};
|
|
2107
3642
|
}];
|
|
2108
3643
|
readonly method: "get";
|
|
2109
3644
|
readonly operationId: "mailboxGetMessage";
|
|
@@ -2111,13 +3646,24 @@ export declare const curatedOperations: {
|
|
|
2111
3646
|
readonly pathParams: readonly [{
|
|
2112
3647
|
readonly name: "message_id";
|
|
2113
3648
|
readonly required: true;
|
|
3649
|
+
readonly schema: {
|
|
3650
|
+
readonly type: "string";
|
|
3651
|
+
};
|
|
2114
3652
|
}];
|
|
2115
|
-
readonly queryParams: readonly [
|
|
3653
|
+
readonly queryParams: readonly [{
|
|
3654
|
+
readonly name: "mailbox_id";
|
|
3655
|
+
readonly required: false;
|
|
3656
|
+
readonly schema: {
|
|
3657
|
+
readonly type: "string";
|
|
3658
|
+
};
|
|
3659
|
+
}];
|
|
3660
|
+
readonly responseKind: "json";
|
|
2116
3661
|
readonly requestBodyRequired: false;
|
|
2117
3662
|
readonly requiredKeyKind: "mailbox";
|
|
2118
3663
|
readonly surface: "mailbox";
|
|
2119
3664
|
};
|
|
2120
3665
|
readonly mailboxListFolders: {
|
|
3666
|
+
readonly bodyKind: "none";
|
|
2121
3667
|
readonly command: "mailbox:folders:list";
|
|
2122
3668
|
readonly description: "List mailbox folders";
|
|
2123
3669
|
readonly headerParams: readonly [];
|
|
@@ -2128,15 +3674,31 @@ export declare const curatedOperations: {
|
|
|
2128
3674
|
readonly queryParams: readonly [{
|
|
2129
3675
|
readonly name: "cursor";
|
|
2130
3676
|
readonly required: false;
|
|
3677
|
+
readonly schema: {
|
|
3678
|
+
readonly type: "string";
|
|
3679
|
+
};
|
|
2131
3680
|
}, {
|
|
2132
3681
|
readonly name: "limit";
|
|
2133
3682
|
readonly required: false;
|
|
3683
|
+
readonly schema: {
|
|
3684
|
+
readonly type: "integer";
|
|
3685
|
+
readonly minimum: 1;
|
|
3686
|
+
readonly maximum: 100;
|
|
3687
|
+
};
|
|
3688
|
+
}, {
|
|
3689
|
+
readonly name: "mailbox_id";
|
|
3690
|
+
readonly required: false;
|
|
3691
|
+
readonly schema: {
|
|
3692
|
+
readonly type: "string";
|
|
3693
|
+
};
|
|
2134
3694
|
}];
|
|
3695
|
+
readonly responseKind: "json";
|
|
2135
3696
|
readonly requestBodyRequired: false;
|
|
2136
3697
|
readonly requiredKeyKind: "mailbox";
|
|
2137
3698
|
readonly surface: "mailbox";
|
|
2138
3699
|
};
|
|
2139
3700
|
readonly mailboxListMessages: {
|
|
3701
|
+
readonly bodyKind: "none";
|
|
2140
3702
|
readonly command: "mailbox:messages:list";
|
|
2141
3703
|
readonly description: "List mailbox messages";
|
|
2142
3704
|
readonly headerParams: readonly [];
|
|
@@ -2147,83 +3709,169 @@ export declare const curatedOperations: {
|
|
|
2147
3709
|
readonly queryParams: readonly [{
|
|
2148
3710
|
readonly name: "cursor";
|
|
2149
3711
|
readonly required: false;
|
|
3712
|
+
readonly schema: {
|
|
3713
|
+
readonly type: "string";
|
|
3714
|
+
};
|
|
2150
3715
|
}, {
|
|
2151
3716
|
readonly name: "limit";
|
|
2152
3717
|
readonly required: false;
|
|
3718
|
+
readonly schema: {
|
|
3719
|
+
readonly type: "integer";
|
|
3720
|
+
readonly minimum: 1;
|
|
3721
|
+
readonly maximum: 100;
|
|
3722
|
+
};
|
|
2153
3723
|
}, {
|
|
2154
3724
|
readonly name: "folder_id";
|
|
2155
3725
|
readonly required: false;
|
|
3726
|
+
readonly schema: {
|
|
3727
|
+
readonly type: "string";
|
|
3728
|
+
};
|
|
2156
3729
|
}, {
|
|
2157
3730
|
readonly name: "thread_id";
|
|
2158
3731
|
readonly required: false;
|
|
3732
|
+
readonly schema: {
|
|
3733
|
+
readonly type: "string";
|
|
3734
|
+
};
|
|
2159
3735
|
}, {
|
|
2160
3736
|
readonly name: "q";
|
|
2161
3737
|
readonly required: false;
|
|
3738
|
+
readonly schema: {
|
|
3739
|
+
readonly type: "string";
|
|
3740
|
+
};
|
|
2162
3741
|
}, {
|
|
2163
3742
|
readonly name: "from";
|
|
2164
3743
|
readonly required: false;
|
|
3744
|
+
readonly schema: {
|
|
3745
|
+
readonly type: "string";
|
|
3746
|
+
};
|
|
2165
3747
|
}, {
|
|
2166
3748
|
readonly name: "to";
|
|
2167
3749
|
readonly required: false;
|
|
3750
|
+
readonly schema: {
|
|
3751
|
+
readonly type: "string";
|
|
3752
|
+
};
|
|
2168
3753
|
}, {
|
|
2169
3754
|
readonly name: "cc";
|
|
2170
3755
|
readonly required: false;
|
|
3756
|
+
readonly schema: {
|
|
3757
|
+
readonly type: "string";
|
|
3758
|
+
};
|
|
2171
3759
|
}, {
|
|
2172
3760
|
readonly name: "bcc";
|
|
2173
3761
|
readonly required: false;
|
|
3762
|
+
readonly schema: {
|
|
3763
|
+
readonly type: "string";
|
|
3764
|
+
};
|
|
2174
3765
|
}, {
|
|
2175
3766
|
readonly name: "subject";
|
|
2176
3767
|
readonly required: false;
|
|
3768
|
+
readonly schema: {
|
|
3769
|
+
readonly type: "string";
|
|
3770
|
+
};
|
|
2177
3771
|
}, {
|
|
2178
3772
|
readonly name: "body";
|
|
2179
3773
|
readonly required: false;
|
|
3774
|
+
readonly schema: {
|
|
3775
|
+
readonly type: "string";
|
|
3776
|
+
};
|
|
2180
3777
|
}, {
|
|
2181
3778
|
readonly name: "header_name";
|
|
2182
3779
|
readonly required: false;
|
|
3780
|
+
readonly schema: {
|
|
3781
|
+
readonly type: "string";
|
|
3782
|
+
};
|
|
2183
3783
|
}, {
|
|
2184
3784
|
readonly name: "header_value";
|
|
2185
3785
|
readonly required: false;
|
|
3786
|
+
readonly schema: {
|
|
3787
|
+
readonly type: "string";
|
|
3788
|
+
};
|
|
2186
3789
|
}, {
|
|
2187
3790
|
readonly name: "min_size_bytes";
|
|
2188
3791
|
readonly required: false;
|
|
3792
|
+
readonly schema: {
|
|
3793
|
+
readonly type: "integer";
|
|
3794
|
+
readonly minimum: 0;
|
|
3795
|
+
};
|
|
2189
3796
|
}, {
|
|
2190
3797
|
readonly name: "max_size_bytes";
|
|
2191
3798
|
readonly required: false;
|
|
3799
|
+
readonly schema: {
|
|
3800
|
+
readonly type: "integer";
|
|
3801
|
+
readonly minimum: 0;
|
|
3802
|
+
};
|
|
2192
3803
|
}, {
|
|
2193
3804
|
readonly name: "keyword";
|
|
2194
3805
|
readonly required: false;
|
|
3806
|
+
readonly schema: {
|
|
3807
|
+
readonly type: "string";
|
|
3808
|
+
};
|
|
2195
3809
|
}, {
|
|
2196
3810
|
readonly name: "not_keyword";
|
|
2197
3811
|
readonly required: false;
|
|
3812
|
+
readonly schema: {
|
|
3813
|
+
readonly type: "string";
|
|
3814
|
+
};
|
|
2198
3815
|
}, {
|
|
2199
3816
|
readonly name: "after";
|
|
2200
3817
|
readonly required: false;
|
|
3818
|
+
readonly schema: {
|
|
3819
|
+
readonly type: "string";
|
|
3820
|
+
};
|
|
2201
3821
|
}, {
|
|
2202
3822
|
readonly name: "before";
|
|
2203
3823
|
readonly required: false;
|
|
3824
|
+
readonly schema: {
|
|
3825
|
+
readonly type: "string";
|
|
3826
|
+
};
|
|
2204
3827
|
}, {
|
|
2205
3828
|
readonly name: "has_attachment";
|
|
2206
3829
|
readonly required: false;
|
|
3830
|
+
readonly schema: {
|
|
3831
|
+
readonly type: "boolean";
|
|
3832
|
+
};
|
|
2207
3833
|
}, {
|
|
2208
3834
|
readonly name: "is_unread";
|
|
2209
3835
|
readonly required: false;
|
|
3836
|
+
readonly schema: {
|
|
3837
|
+
readonly type: "boolean";
|
|
3838
|
+
};
|
|
2210
3839
|
}, {
|
|
2211
3840
|
readonly name: "sort_by";
|
|
2212
3841
|
readonly required: false;
|
|
3842
|
+
readonly schema: {
|
|
3843
|
+
readonly type: "string";
|
|
3844
|
+
readonly enum: readonly ["received_at", "sent_at", "subject", "from", "to", "size_bytes"];
|
|
3845
|
+
};
|
|
2213
3846
|
}, {
|
|
2214
3847
|
readonly name: "sort_direction";
|
|
2215
3848
|
readonly required: false;
|
|
3849
|
+
readonly schema: {
|
|
3850
|
+
readonly type: "string";
|
|
3851
|
+
readonly enum: readonly ["asc", "desc"];
|
|
3852
|
+
};
|
|
3853
|
+
}, {
|
|
3854
|
+
readonly name: "mailbox_id";
|
|
3855
|
+
readonly required: false;
|
|
3856
|
+
readonly schema: {
|
|
3857
|
+
readonly type: "string";
|
|
3858
|
+
};
|
|
2216
3859
|
}];
|
|
3860
|
+
readonly responseKind: "json";
|
|
2217
3861
|
readonly requestBodyRequired: false;
|
|
2218
3862
|
readonly requiredKeyKind: "mailbox";
|
|
2219
3863
|
readonly surface: "mailbox";
|
|
2220
3864
|
};
|
|
2221
3865
|
readonly managementGetDomain: {
|
|
3866
|
+
readonly bodyKind: "none";
|
|
2222
3867
|
readonly command: "management:domains:get";
|
|
2223
3868
|
readonly description: "Get a mailbox domain";
|
|
2224
3869
|
readonly headerParams: readonly [{
|
|
2225
3870
|
readonly name: "If-None-Match";
|
|
2226
3871
|
readonly required: false;
|
|
3872
|
+
readonly schema: {
|
|
3873
|
+
readonly type: "string";
|
|
3874
|
+
};
|
|
2227
3875
|
}];
|
|
2228
3876
|
readonly method: "get";
|
|
2229
3877
|
readonly operationId: "managementGetDomain";
|
|
@@ -2231,13 +3879,18 @@ export declare const curatedOperations: {
|
|
|
2231
3879
|
readonly pathParams: readonly [{
|
|
2232
3880
|
readonly name: "public_id";
|
|
2233
3881
|
readonly required: true;
|
|
3882
|
+
readonly schema: {
|
|
3883
|
+
readonly type: "string";
|
|
3884
|
+
};
|
|
2234
3885
|
}];
|
|
2235
3886
|
readonly queryParams: readonly [];
|
|
3887
|
+
readonly responseKind: "json";
|
|
2236
3888
|
readonly requestBodyRequired: false;
|
|
2237
3889
|
readonly requiredKeyKind: "root";
|
|
2238
3890
|
readonly surface: "management";
|
|
2239
3891
|
};
|
|
2240
3892
|
readonly managementListDomains: {
|
|
3893
|
+
readonly bodyKind: "none";
|
|
2241
3894
|
readonly command: "management:domains:list";
|
|
2242
3895
|
readonly description: "List mailbox domains";
|
|
2243
3896
|
readonly headerParams: readonly [];
|
|
@@ -2248,15 +3901,25 @@ export declare const curatedOperations: {
|
|
|
2248
3901
|
readonly queryParams: readonly [{
|
|
2249
3902
|
readonly name: "cursor";
|
|
2250
3903
|
readonly required: false;
|
|
3904
|
+
readonly schema: {
|
|
3905
|
+
readonly type: "string";
|
|
3906
|
+
};
|
|
2251
3907
|
}, {
|
|
2252
3908
|
readonly name: "limit";
|
|
2253
3909
|
readonly required: false;
|
|
3910
|
+
readonly schema: {
|
|
3911
|
+
readonly type: "integer";
|
|
3912
|
+
readonly minimum: 1;
|
|
3913
|
+
readonly maximum: 100;
|
|
3914
|
+
};
|
|
2254
3915
|
}];
|
|
3916
|
+
readonly responseKind: "json";
|
|
2255
3917
|
readonly requestBodyRequired: false;
|
|
2256
3918
|
readonly requiredKeyKind: "root";
|
|
2257
3919
|
readonly surface: "management";
|
|
2258
3920
|
};
|
|
2259
3921
|
readonly managementListMailboxes: {
|
|
3922
|
+
readonly bodyKind: "none";
|
|
2260
3923
|
readonly command: "management:mailboxes:list";
|
|
2261
3924
|
readonly description: "List mailboxes";
|
|
2262
3925
|
readonly headerParams: readonly [];
|
|
@@ -2267,18 +3930,32 @@ export declare const curatedOperations: {
|
|
|
2267
3930
|
readonly queryParams: readonly [{
|
|
2268
3931
|
readonly name: "cursor";
|
|
2269
3932
|
readonly required: false;
|
|
3933
|
+
readonly schema: {
|
|
3934
|
+
readonly type: "string";
|
|
3935
|
+
};
|
|
2270
3936
|
}, {
|
|
2271
3937
|
readonly name: "limit";
|
|
2272
3938
|
readonly required: false;
|
|
3939
|
+
readonly schema: {
|
|
3940
|
+
readonly type: "integer";
|
|
3941
|
+
readonly minimum: 1;
|
|
3942
|
+
readonly maximum: 100;
|
|
3943
|
+
};
|
|
2273
3944
|
}, {
|
|
2274
3945
|
readonly name: "include_deleted";
|
|
2275
3946
|
readonly required: false;
|
|
3947
|
+
readonly schema: {
|
|
3948
|
+
readonly type: "string";
|
|
3949
|
+
readonly enum: readonly ["true"];
|
|
3950
|
+
};
|
|
2276
3951
|
}];
|
|
3952
|
+
readonly responseKind: "json";
|
|
2277
3953
|
readonly requestBodyRequired: false;
|
|
2278
3954
|
readonly requiredKeyKind: "root";
|
|
2279
3955
|
readonly surface: "management";
|
|
2280
3956
|
};
|
|
2281
3957
|
readonly managementListProviders: {
|
|
3958
|
+
readonly bodyKind: "none";
|
|
2282
3959
|
readonly command: "management:providers:list";
|
|
2283
3960
|
readonly description: "List sending accounts";
|
|
2284
3961
|
readonly headerParams: readonly [];
|
|
@@ -2289,50 +3966,79 @@ export declare const curatedOperations: {
|
|
|
2289
3966
|
readonly queryParams: readonly [{
|
|
2290
3967
|
readonly name: "cursor";
|
|
2291
3968
|
readonly required: false;
|
|
3969
|
+
readonly schema: {
|
|
3970
|
+
readonly type: "string";
|
|
3971
|
+
};
|
|
2292
3972
|
}, {
|
|
2293
3973
|
readonly name: "status";
|
|
2294
3974
|
readonly required: false;
|
|
3975
|
+
readonly schema: {
|
|
3976
|
+
readonly type: "string";
|
|
3977
|
+
readonly enum: readonly ["active", "inactive", "error", "pending"];
|
|
3978
|
+
};
|
|
2295
3979
|
}, {
|
|
2296
3980
|
readonly name: "type";
|
|
2297
3981
|
readonly required: false;
|
|
3982
|
+
readonly schema: {
|
|
3983
|
+
readonly type: "string";
|
|
3984
|
+
readonly enum: readonly ["smtp", "gmail_api", "outlook_api", "amazon_ses"];
|
|
3985
|
+
};
|
|
2298
3986
|
}, {
|
|
2299
3987
|
readonly name: "limit";
|
|
2300
3988
|
readonly required: false;
|
|
3989
|
+
readonly schema: {
|
|
3990
|
+
readonly type: "integer";
|
|
3991
|
+
readonly minimum: 1;
|
|
3992
|
+
readonly maximum: 100;
|
|
3993
|
+
};
|
|
2301
3994
|
}];
|
|
3995
|
+
readonly responseKind: "json";
|
|
2302
3996
|
readonly requestBodyRequired: false;
|
|
2303
3997
|
readonly requiredKeyKind: "root";
|
|
2304
3998
|
readonly surface: "management";
|
|
2305
3999
|
};
|
|
2306
4000
|
readonly sendingSendEmail: {
|
|
4001
|
+
readonly bodyKind: "json";
|
|
2307
4002
|
readonly command: "sending:send";
|
|
2308
4003
|
readonly description: "Send a single email";
|
|
2309
4004
|
readonly headerParams: readonly [{
|
|
2310
4005
|
readonly name: "Idempotency-Key";
|
|
2311
4006
|
readonly required: false;
|
|
4007
|
+
readonly schema: {
|
|
4008
|
+
readonly type: "string";
|
|
4009
|
+
readonly maxLength: 255;
|
|
4010
|
+
};
|
|
2312
4011
|
}];
|
|
2313
4012
|
readonly method: "post";
|
|
2314
4013
|
readonly operationId: "sendingSendEmail";
|
|
2315
4014
|
readonly path: "/emails/send";
|
|
2316
4015
|
readonly pathParams: readonly [];
|
|
2317
4016
|
readonly queryParams: readonly [];
|
|
4017
|
+
readonly responseKind: "json";
|
|
2318
4018
|
readonly requestBodyRequired: true;
|
|
2319
|
-
readonly requiredKeyKind: "
|
|
4019
|
+
readonly requiredKeyKind: "sending";
|
|
2320
4020
|
readonly surface: "sending";
|
|
2321
4021
|
};
|
|
2322
4022
|
readonly sendingSendEmailBatch: {
|
|
4023
|
+
readonly bodyKind: "json";
|
|
2323
4024
|
readonly command: "sending:send:batch";
|
|
2324
4025
|
readonly description: "Send a batch of emails";
|
|
2325
4026
|
readonly headerParams: readonly [{
|
|
2326
4027
|
readonly name: "Idempotency-Key";
|
|
2327
4028
|
readonly required: false;
|
|
4029
|
+
readonly schema: {
|
|
4030
|
+
readonly type: "string";
|
|
4031
|
+
readonly maxLength: 255;
|
|
4032
|
+
};
|
|
2328
4033
|
}];
|
|
2329
4034
|
readonly method: "post";
|
|
2330
4035
|
readonly operationId: "sendingSendEmailBatch";
|
|
2331
4036
|
readonly path: "/emails/send/batch";
|
|
2332
4037
|
readonly pathParams: readonly [];
|
|
2333
4038
|
readonly queryParams: readonly [];
|
|
4039
|
+
readonly responseKind: "json";
|
|
2334
4040
|
readonly requestBodyRequired: true;
|
|
2335
|
-
readonly requiredKeyKind: "
|
|
4041
|
+
readonly requiredKeyKind: "sending";
|
|
2336
4042
|
readonly surface: "sending";
|
|
2337
4043
|
};
|
|
2338
4044
|
};
|