@sendmux/cli 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +73 -5
- package/dist/base-command.d.ts +4 -2
- package/dist/base-command.d.ts.map +1 -1
- package/dist/base-command.js +31 -4
- package/dist/commands/mailbox/batch-delete-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-delete-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-delete-messages.js +7 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-get-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-get-messages.js +7 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts +26 -0
- package/dist/commands/mailbox/batch-update-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/batch-update-messages.js +7 -0
- package/dist/commands/mailbox/count-messages.d.ts +142 -0
- package/dist/commands/mailbox/count-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/count-messages.js +7 -0
- package/dist/commands/mailbox/create-folder.d.ts +26 -0
- package/dist/commands/mailbox/create-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/create-folder.js +7 -0
- package/dist/commands/mailbox/delete-folder.d.ts +38 -0
- package/dist/commands/mailbox/delete-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-folder.js +7 -0
- package/dist/commands/mailbox/delete-message.d.ts +44 -0
- package/dist/commands/mailbox/delete-message.d.ts.map +1 -0
- package/dist/commands/mailbox/delete-message.js +7 -0
- package/dist/commands/mailbox/folders/list.d.ts +17 -1
- package/dist/commands/mailbox/folders/list.d.ts.map +1 -1
- package/dist/commands/mailbox/folders/list.js +5 -4
- package/dist/commands/mailbox/get-changes.d.ts +82 -0
- package/dist/commands/mailbox/get-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-changes.js +7 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder-changes.js +7 -0
- package/dist/commands/mailbox/get-folder.d.ts +38 -0
- package/dist/commands/mailbox/get-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/get-folder.js +7 -0
- package/dist/commands/mailbox/get-identity.d.ts +26 -0
- package/dist/commands/mailbox/get-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/get-identity.js +7 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts +44 -0
- package/dist/commands/mailbox/get-message-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/get-message-attachment.js +7 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-quota-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-quota-changes.js +7 -0
- package/dist/commands/mailbox/get-session.d.ts +32 -0
- package/dist/commands/mailbox/get-session.d.ts.map +1 -0
- package/dist/commands/mailbox/get-session.js +7 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts +40 -0
- package/dist/commands/mailbox/get-submission-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission-changes.js +7 -0
- package/dist/commands/mailbox/get-submission.d.ts +38 -0
- package/dist/commands/mailbox/get-submission.d.ts.map +1 -0
- package/dist/commands/mailbox/get-submission.js +7 -0
- package/dist/commands/mailbox/get-thread-content.d.ts +112 -0
- package/dist/commands/mailbox/get-thread-content.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread-content.js +7 -0
- package/dist/commands/mailbox/get-thread.d.ts +38 -0
- package/dist/commands/mailbox/get-thread.d.ts.map +1 -0
- package/dist/commands/mailbox/get-thread.js +7 -0
- package/dist/commands/mailbox/list-body.d.ts +53 -0
- package/dist/commands/mailbox/list-body.d.ts.map +1 -0
- package/dist/commands/mailbox/list-body.js +7 -0
- package/dist/commands/mailbox/list-content.d.ts +91 -0
- package/dist/commands/mailbox/list-content.d.ts.map +1 -0
- package/dist/commands/mailbox/list-content.js +7 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts +40 -0
- package/dist/commands/mailbox/list-granted-mailboxes.d.ts.map +1 -0
- package/dist/commands/mailbox/list-granted-mailboxes.js +7 -0
- package/dist/commands/mailbox/list-identities.d.ts +40 -0
- package/dist/commands/mailbox/list-identities.d.ts.map +1 -0
- package/dist/commands/mailbox/list-identities.js +7 -0
- package/dist/commands/mailbox/list-quotas.d.ts +80 -0
- package/dist/commands/mailbox/list-quotas.d.ts.map +1 -0
- package/dist/commands/mailbox/list-quotas.js +7 -0
- package/dist/commands/mailbox/list-submissions.d.ts +91 -0
- package/dist/commands/mailbox/list-submissions.d.ts.map +1 -0
- package/dist/commands/mailbox/list-submissions.js +7 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts +53 -0
- package/dist/commands/mailbox/list-thread-messages.d.ts.map +1 -0
- package/dist/commands/mailbox/list-thread-messages.js +7 -0
- package/dist/commands/mailbox/list-threads.d.ts +89 -0
- package/dist/commands/mailbox/list-threads.d.ts.map +1 -0
- package/dist/commands/mailbox/list-threads.js +7 -0
- package/dist/commands/mailbox/list-usage.d.ts +32 -0
- package/dist/commands/mailbox/list-usage.d.ts.map +1 -0
- package/dist/commands/mailbox/list-usage.js +7 -0
- package/dist/commands/mailbox/me/get.d.ts +13 -2
- package/dist/commands/mailbox/me/get.d.ts.map +1 -1
- package/dist/commands/mailbox/me/get.js +5 -4
- package/dist/commands/mailbox/messages/get.d.ts +16 -2
- package/dist/commands/mailbox/messages/get.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/get.js +5 -4
- package/dist/commands/mailbox/messages/list.d.ts +84 -1
- package/dist/commands/mailbox/messages/list.d.ts.map +1 -1
- package/dist/commands/mailbox/messages/list.js +5 -4
- package/dist/commands/mailbox/query-folder-changes.d.ts +40 -0
- package/dist/commands/mailbox/query-folder-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-folder-changes.js +7 -0
- package/dist/commands/mailbox/query-message-changes.d.ts +176 -0
- package/dist/commands/mailbox/query-message-changes.d.ts.map +1 -0
- package/dist/commands/mailbox/query-message-changes.js +7 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts +150 -0
- package/dist/commands/mailbox/search-message-snippets.d.ts.map +1 -0
- package/dist/commands/mailbox/search-message-snippets.js +7 -0
- package/dist/commands/mailbox/send-message.d.ts +33 -0
- package/dist/commands/mailbox/send-message.d.ts.map +1 -0
- package/dist/commands/mailbox/send-message.js +7 -0
- package/dist/commands/mailbox/stream-events.d.ts +60 -0
- package/dist/commands/mailbox/stream-events.d.ts.map +1 -0
- package/dist/commands/mailbox/stream-events.js +7 -0
- package/dist/commands/mailbox/update-folder.d.ts +38 -0
- package/dist/commands/mailbox/update-folder.d.ts.map +1 -0
- package/dist/commands/mailbox/update-folder.js +7 -0
- package/dist/commands/mailbox/update-identity.d.ts +26 -0
- package/dist/commands/mailbox/update-identity.d.ts.map +1 -0
- package/dist/commands/mailbox/update-identity.js +7 -0
- package/dist/commands/mailbox/update-message.d.ts +38 -0
- package/dist/commands/mailbox/update-message.d.ts.map +1 -0
- package/dist/commands/mailbox/update-message.js +7 -0
- package/dist/commands/mailbox/upload-attachment.d.ts +32 -0
- package/dist/commands/mailbox/upload-attachment.d.ts.map +1 -0
- package/dist/commands/mailbox/upload-attachment.js +7 -0
- package/dist/commands/management/activate-provider.d.ts +33 -0
- package/dist/commands/management/activate-provider.d.ts.map +1 -0
- package/dist/commands/management/activate-provider.js +7 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts +26 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/cancel-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/check-mailbox-availability.d.ts +26 -0
- package/dist/commands/management/check-mailbox-availability.d.ts.map +1 -0
- package/dist/commands/management/check-mailbox-availability.js +7 -0
- package/dist/commands/management/create-domain.d.ts +27 -0
- package/dist/commands/management/create-domain.d.ts.map +1 -0
- package/dist/commands/management/create-domain.js +7 -0
- package/dist/commands/management/create-mailbox-key.d.ts +33 -0
- package/dist/commands/management/create-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox-key.js +7 -0
- package/dist/commands/management/create-mailbox.d.ts +27 -0
- package/dist/commands/management/create-mailbox.d.ts.map +1 -0
- package/dist/commands/management/create-mailbox.js +7 -0
- package/dist/commands/management/create-provider.d.ts +27 -0
- package/dist/commands/management/create-provider.d.ts.map +1 -0
- package/dist/commands/management/create-provider.js +7 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts +27 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/create-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/create-webhook.d.ts +27 -0
- package/dist/commands/management/create-webhook.d.ts.map +1 -0
- package/dist/commands/management/create-webhook.js +7 -0
- package/dist/commands/management/deactivate-provider.d.ts +33 -0
- package/dist/commands/management/deactivate-provider.d.ts.map +1 -0
- package/dist/commands/management/deactivate-provider.js +7 -0
- package/dist/commands/management/delete-domain.d.ts +26 -0
- package/dist/commands/management/delete-domain.d.ts.map +1 -0
- package/dist/commands/management/delete-domain.js +7 -0
- package/dist/commands/management/delete-mailbox-key.d.ts +32 -0
- package/dist/commands/management/delete-mailbox-key.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox-key.js +7 -0
- package/dist/commands/management/delete-mailbox.d.ts +26 -0
- package/dist/commands/management/delete-mailbox.d.ts.map +1 -0
- package/dist/commands/management/delete-mailbox.js +7 -0
- package/dist/commands/management/delete-provider.d.ts +26 -0
- package/dist/commands/management/delete-provider.d.ts.map +1 -0
- package/dist/commands/management/delete-provider.js +7 -0
- package/dist/commands/management/delete-webhook.d.ts +26 -0
- package/dist/commands/management/delete-webhook.d.ts.map +1 -0
- package/dist/commands/management/delete-webhook.js +7 -0
- package/dist/commands/management/domains/get.d.ts +9 -1
- package/dist/commands/management/domains/get.d.ts.map +1 -1
- package/dist/commands/management/domains/get.js +5 -4
- package/dist/commands/management/domains/list.d.ts +11 -1
- package/dist/commands/management/domains/list.d.ts.map +1 -1
- package/dist/commands/management/domains/list.js +5 -4
- package/dist/commands/management/get-delivery-payload.d.ts +32 -0
- package/dist/commands/management/get-delivery-payload.d.ts.map +1 -0
- package/dist/commands/management/get-delivery-payload.js +7 -0
- package/dist/commands/management/get-domain-filters.d.ts +32 -0
- package/dist/commands/management/get-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/get-domain-filters.js +7 -0
- package/dist/commands/management/get-domain-zone-file.d.ts +26 -0
- package/dist/commands/management/get-domain-zone-file.d.ts.map +1 -0
- package/dist/commands/management/get-domain-zone-file.js +7 -0
- package/dist/commands/management/get-email-log.d.ts +32 -0
- package/dist/commands/management/get-email-log.d.ts.map +1 -0
- package/dist/commands/management/get-email-log.js +7 -0
- package/dist/commands/management/get-email-metrics.d.ts +52 -0
- package/dist/commands/management/get-email-metrics.d.ts.map +1 -0
- package/dist/commands/management/get-email-metrics.js +7 -0
- package/dist/commands/management/get-inbox-log.d.ts +26 -0
- package/dist/commands/management/get-inbox-log.d.ts.map +1 -0
- package/dist/commands/management/get-inbox-log.js +7 -0
- package/dist/commands/management/get-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/get-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox-filters.js +7 -0
- package/dist/commands/management/get-mailbox.d.ts +32 -0
- package/dist/commands/management/get-mailbox.d.ts.map +1 -0
- package/dist/commands/management/get-mailbox.js +7 -0
- package/dist/commands/management/get-provider-limits.d.ts +20 -0
- package/dist/commands/management/get-provider-limits.d.ts.map +1 -0
- package/dist/commands/management/get-provider-limits.js +7 -0
- package/dist/commands/management/get-provider-stats.d.ts +20 -0
- package/dist/commands/management/get-provider-stats.d.ts.map +1 -0
- package/dist/commands/management/get-provider-stats.js +7 -0
- package/dist/commands/management/get-provider-usage.d.ts +20 -0
- package/dist/commands/management/get-provider-usage.d.ts.map +1 -0
- package/dist/commands/management/get-provider-usage.js +7 -0
- package/dist/commands/management/get-provider.d.ts +32 -0
- package/dist/commands/management/get-provider.d.ts.map +1 -0
- package/dist/commands/management/get-provider.js +7 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts +20 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.d.ts.map +1 -0
- package/dist/commands/management/get-shared-amazon-ses-limit-request.js +7 -0
- package/dist/commands/management/get-spend-summary.d.ts +27 -0
- package/dist/commands/management/get-spend-summary.d.ts.map +1 -0
- package/dist/commands/management/get-spend-summary.js +7 -0
- package/dist/commands/management/get-webhook.d.ts +32 -0
- package/dist/commands/management/get-webhook.d.ts.map +1 -0
- package/dist/commands/management/get-webhook.js +7 -0
- package/dist/commands/management/list-balance.d.ts +20 -0
- package/dist/commands/management/list-balance.d.ts.map +1 -0
- package/dist/commands/management/list-balance.js +7 -0
- package/dist/commands/management/list-delivery.d.ts +54 -0
- package/dist/commands/management/list-delivery.d.ts.map +1 -0
- package/dist/commands/management/list-delivery.js +7 -0
- package/dist/commands/management/list-email-logs.d.ts +65 -0
- package/dist/commands/management/list-email-logs.d.ts.map +1 -0
- package/dist/commands/management/list-email-logs.js +7 -0
- package/dist/commands/management/list-inbox-logs.d.ts +65 -0
- package/dist/commands/management/list-inbox-logs.d.ts.map +1 -0
- package/dist/commands/management/list-inbox-logs.js +7 -0
- package/dist/commands/management/list-transactions.d.ts +41 -0
- package/dist/commands/management/list-transactions.d.ts.map +1 -0
- package/dist/commands/management/list-transactions.js +7 -0
- package/dist/commands/management/list-webhooks.d.ts +34 -0
- package/dist/commands/management/list-webhooks.d.ts.map +1 -0
- package/dist/commands/management/list-webhooks.js +7 -0
- package/dist/commands/management/mailboxes/list.d.ts +15 -1
- package/dist/commands/management/mailboxes/list.d.ts.map +1 -1
- package/dist/commands/management/mailboxes/list.js +5 -4
- package/dist/commands/management/providers/list.d.ts +19 -1
- package/dist/commands/management/providers/list.d.ts.map +1 -1
- package/dist/commands/management/providers/list.js +5 -4
- package/dist/commands/management/request-sending-account-limit-increase.d.ts +27 -0
- package/dist/commands/management/request-sending-account-limit-increase.d.ts.map +1 -0
- package/dist/commands/management/request-sending-account-limit-increase.js +7 -0
- package/dist/commands/management/resume-mailbox.d.ts +33 -0
- package/dist/commands/management/resume-mailbox.d.ts.map +1 -0
- package/dist/commands/management/resume-mailbox.js +7 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts +33 -0
- package/dist/commands/management/rotate-webhook-secret.d.ts.map +1 -0
- package/dist/commands/management/rotate-webhook-secret.js +7 -0
- package/dist/commands/management/set-domain-filters.d.ts +32 -0
- package/dist/commands/management/set-domain-filters.d.ts.map +1 -0
- package/dist/commands/management/set-domain-filters.js +7 -0
- package/dist/commands/management/set-mailbox-filters.d.ts +32 -0
- package/dist/commands/management/set-mailbox-filters.d.ts.map +1 -0
- package/dist/commands/management/set-mailbox-filters.js +7 -0
- package/dist/commands/management/suspend-mailbox.d.ts +33 -0
- package/dist/commands/management/suspend-mailbox.d.ts.map +1 -0
- package/dist/commands/management/suspend-mailbox.js +7 -0
- package/dist/commands/management/test-provider.d.ts +33 -0
- package/dist/commands/management/test-provider.d.ts.map +1 -0
- package/dist/commands/management/test-provider.js +7 -0
- package/dist/commands/management/test-webhook.d.ts +33 -0
- package/dist/commands/management/test-webhook.d.ts.map +1 -0
- package/dist/commands/management/test-webhook.js +7 -0
- package/dist/commands/management/update-domain.d.ts +32 -0
- package/dist/commands/management/update-domain.d.ts.map +1 -0
- package/dist/commands/management/update-domain.js +7 -0
- package/dist/commands/management/update-mailbox.d.ts +32 -0
- package/dist/commands/management/update-mailbox.d.ts.map +1 -0
- package/dist/commands/management/update-mailbox.js +7 -0
- package/dist/commands/management/update-provider.d.ts +32 -0
- package/dist/commands/management/update-provider.d.ts.map +1 -0
- package/dist/commands/management/update-provider.js +7 -0
- package/dist/commands/management/update-webhook.d.ts +32 -0
- package/dist/commands/management/update-webhook.d.ts.map +1 -0
- package/dist/commands/management/update-webhook.js +7 -0
- package/dist/commands/management/verify-domain.d.ts +26 -0
- package/dist/commands/management/verify-domain.d.ts.map +1 -0
- package/dist/commands/management/verify-domain.js +7 -0
- package/dist/commands/sending/get-open-api-spec.d.ts +26 -0
- package/dist/commands/sending/get-open-api-spec.d.ts.map +1 -0
- package/dist/commands/sending/get-open-api-spec.js +7 -0
- package/dist/commands/sending/send/batch.d.ts +8 -2
- package/dist/commands/sending/send/batch.d.ts.map +1 -1
- package/dist/commands/sending/send/batch.js +5 -4
- package/dist/commands/sending/send.d.ts +8 -2
- package/dist/commands/sending/send.d.ts.map +1 -1
- package/dist/commands/sending/send.js +5 -4
- package/dist/generated/operations.d.ts +1731 -25
- package/dist/generated/operations.d.ts.map +1 -1
- package/dist/generated/operations.js +2035 -316
- package/dist/key-kind.d.ts +3 -0
- package/dist/key-kind.d.ts.map +1 -1
- package/dist/key-kind.js +13 -1
- package/dist/operation-flags.d.ts +3 -3
- package/dist/operation-flags.d.ts.map +1 -1
- package/dist/operation-flags.js +132 -21
- package/dist/operation-runner.d.ts.map +1 -1
- package/dist/operation-runner.js +65 -7
- package/dist/operation-types.d.ts +21 -2
- package/dist/operation-types.d.ts.map +1 -1
- package/oclif.manifest.json +13569 -200
- package/package.json +3 -2
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementActivateProviderCommand extends OperationCommand {
|
|
3
|
+
static description: "Activate a sending account";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:activate-provider";
|
|
7
|
+
readonly description: "Activate a sending account";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementActivateProvider";
|
|
18
|
+
readonly path: "/providers/{public_id}/activate";
|
|
19
|
+
readonly pathParams: readonly [{
|
|
20
|
+
readonly name: "public_id";
|
|
21
|
+
readonly required: true;
|
|
22
|
+
readonly schema: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
};
|
|
25
|
+
}];
|
|
26
|
+
readonly queryParams: readonly [];
|
|
27
|
+
readonly responseKind: "json";
|
|
28
|
+
readonly requestBodyRequired: false;
|
|
29
|
+
readonly requiredKeyKind: "root";
|
|
30
|
+
readonly surface: "management";
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=activate-provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"activate-provider.d.ts","sourceRoot":"","sources":["../../../src/commands/management/activate-provider.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,iCAAkC,SAAQ,gBAAgB;IAC7E,MAAM,CAAC,WAAW,+BAAqD;IACvE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAyC;CAC1D"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementActivateProviderCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementActivateProvider.description;
|
|
6
|
+
static operation = operations.managementActivateProvider;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCancelSharedAmazonSesLimitRequestCommand extends OperationCommand {
|
|
3
|
+
static description: "Cancel a shared Amazon SES daily limit request";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:cancel-shared-amazon-ses-limit-request";
|
|
7
|
+
readonly description: "Cancel a shared Amazon SES daily limit request";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "delete";
|
|
10
|
+
readonly operationId: "managementCancelSharedAmazonSesLimitRequest";
|
|
11
|
+
readonly path: "/providers/shared-amazon-ses-limit-request/{request_id}";
|
|
12
|
+
readonly pathParams: readonly [{
|
|
13
|
+
readonly name: "request_id";
|
|
14
|
+
readonly required: true;
|
|
15
|
+
readonly schema: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
};
|
|
18
|
+
}];
|
|
19
|
+
readonly queryParams: readonly [];
|
|
20
|
+
readonly responseKind: "json";
|
|
21
|
+
readonly requestBodyRequired: false;
|
|
22
|
+
readonly requiredKeyKind: "root";
|
|
23
|
+
readonly surface: "management";
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=cancel-shared-amazon-ses-limit-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel-shared-amazon-ses-limit-request.d.ts","sourceRoot":"","sources":["../../../src/commands/management/cancel-shared-amazon-ses-limit-request.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,kDAAmD,SAAQ,gBAAgB;IAC9F,MAAM,CAAC,WAAW,mDAAsE;IACxF,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;MAA0D;CAC3E"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCancelSharedAmazonSesLimitRequestCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCancelSharedAmazonSesLimitRequest.description;
|
|
6
|
+
static operation = operations.managementCancelSharedAmazonSesLimitRequest;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCheckMailboxAvailabilityCommand extends OperationCommand {
|
|
3
|
+
static description: "Check mailbox address availability";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:check-mailbox-availability";
|
|
7
|
+
readonly description: "Check mailbox address availability";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "get";
|
|
10
|
+
readonly operationId: "managementCheckMailboxAvailability";
|
|
11
|
+
readonly path: "/mailboxes/availability";
|
|
12
|
+
readonly pathParams: readonly [];
|
|
13
|
+
readonly queryParams: readonly [{
|
|
14
|
+
readonly name: "email";
|
|
15
|
+
readonly required: true;
|
|
16
|
+
readonly schema: {
|
|
17
|
+
readonly type: "string";
|
|
18
|
+
};
|
|
19
|
+
}];
|
|
20
|
+
readonly responseKind: "json";
|
|
21
|
+
readonly requestBodyRequired: false;
|
|
22
|
+
readonly requiredKeyKind: "root";
|
|
23
|
+
readonly surface: "management";
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=check-mailbox-availability.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"check-mailbox-availability.d.ts","sourceRoot":"","sources":["../../../src/commands/management/check-mailbox-availability.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,yCAA0C,SAAQ,gBAAgB;IACrF,MAAM,CAAC,WAAW,uCAA6D;IAC/E,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;MAAiD;CAClE"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCheckMailboxAvailabilityCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCheckMailboxAvailability.description;
|
|
6
|
+
static operation = operations.managementCheckMailboxAvailability;
|
|
7
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCreateDomainCommand extends OperationCommand {
|
|
3
|
+
static description: "Add a mailbox domain";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "management:create-domain";
|
|
7
|
+
readonly description: "Add a mailbox domain";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementCreateDomain";
|
|
18
|
+
readonly path: "/domains";
|
|
19
|
+
readonly pathParams: readonly [];
|
|
20
|
+
readonly queryParams: readonly [];
|
|
21
|
+
readonly responseKind: "json";
|
|
22
|
+
readonly requestBodyRequired: false;
|
|
23
|
+
readonly requiredKeyKind: "root";
|
|
24
|
+
readonly surface: "management";
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=create-domain.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-domain.d.ts","sourceRoot":"","sources":["../../../src/commands/management/create-domain.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,6BAA8B,SAAQ,gBAAgB;IACzE,MAAM,CAAC,WAAW,yBAAiD;IACnE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;MAAqC;CACtD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCreateDomainCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCreateDomain.description;
|
|
6
|
+
static operation = operations.managementCreateDomain;
|
|
7
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCreateMailboxKeyCommand extends OperationCommand {
|
|
3
|
+
static description: "Create a mailbox API key";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "management:create-mailbox-key";
|
|
7
|
+
readonly description: "Create a mailbox API key";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementCreateMailboxKey";
|
|
18
|
+
readonly path: "/mailboxes/{public_id}/keys";
|
|
19
|
+
readonly pathParams: readonly [{
|
|
20
|
+
readonly name: "public_id";
|
|
21
|
+
readonly required: true;
|
|
22
|
+
readonly schema: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
};
|
|
25
|
+
}];
|
|
26
|
+
readonly queryParams: readonly [];
|
|
27
|
+
readonly responseKind: "json";
|
|
28
|
+
readonly requestBodyRequired: false;
|
|
29
|
+
readonly requiredKeyKind: "root";
|
|
30
|
+
readonly surface: "management";
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=create-mailbox-key.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-mailbox-key.d.ts","sourceRoot":"","sources":["../../../src/commands/management/create-mailbox-key.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,iCAAkC,SAAQ,gBAAgB;IAC7E,MAAM,CAAC,WAAW,6BAAqD;IACvE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAyC;CAC1D"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCreateMailboxKeyCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCreateMailboxKey.description;
|
|
6
|
+
static operation = operations.managementCreateMailboxKey;
|
|
7
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCreateMailboxCommand extends OperationCommand {
|
|
3
|
+
static description: "Create a mailbox";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "management:create-mailbox";
|
|
7
|
+
readonly description: "Create a mailbox";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementCreateMailbox";
|
|
18
|
+
readonly path: "/mailboxes";
|
|
19
|
+
readonly pathParams: readonly [];
|
|
20
|
+
readonly queryParams: readonly [];
|
|
21
|
+
readonly responseKind: "json";
|
|
22
|
+
readonly requestBodyRequired: false;
|
|
23
|
+
readonly requiredKeyKind: "root";
|
|
24
|
+
readonly surface: "management";
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=create-mailbox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-mailbox.d.ts","sourceRoot":"","sources":["../../../src/commands/management/create-mailbox.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,8BAA+B,SAAQ,gBAAgB;IAC1E,MAAM,CAAC,WAAW,qBAAkD;IACpE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;MAAsC;CACvD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCreateMailboxCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCreateMailbox.description;
|
|
6
|
+
static operation = operations.managementCreateMailbox;
|
|
7
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCreateProviderCommand extends OperationCommand {
|
|
3
|
+
static description: "Create an SMTP sending account";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "management:create-provider";
|
|
7
|
+
readonly description: "Create an SMTP sending account";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementCreateProvider";
|
|
18
|
+
readonly path: "/providers";
|
|
19
|
+
readonly pathParams: readonly [];
|
|
20
|
+
readonly queryParams: readonly [];
|
|
21
|
+
readonly responseKind: "json";
|
|
22
|
+
readonly requestBodyRequired: false;
|
|
23
|
+
readonly requiredKeyKind: "root";
|
|
24
|
+
readonly surface: "management";
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=create-provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-provider.d.ts","sourceRoot":"","sources":["../../../src/commands/management/create-provider.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,+BAAgC,SAAQ,gBAAgB;IAC3E,MAAM,CAAC,WAAW,mCAAmD;IACrE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;MAAuC;CACxD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCreateProviderCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCreateProvider.description;
|
|
6
|
+
static operation = operations.managementCreateProvider;
|
|
7
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCreateSharedAmazonSesLimitRequestCommand extends OperationCommand {
|
|
3
|
+
static description: "Request a shared Amazon SES daily limit increase";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:create-shared-amazon-ses-limit-request";
|
|
7
|
+
readonly description: "Request a shared Amazon SES daily limit increase";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementCreateSharedAmazonSesLimitRequest";
|
|
18
|
+
readonly path: "/providers/shared-amazon-ses-limit-request";
|
|
19
|
+
readonly pathParams: readonly [];
|
|
20
|
+
readonly queryParams: readonly [];
|
|
21
|
+
readonly responseKind: "json";
|
|
22
|
+
readonly requestBodyRequired: false;
|
|
23
|
+
readonly requiredKeyKind: "root";
|
|
24
|
+
readonly surface: "management";
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=create-shared-amazon-ses-limit-request.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-shared-amazon-ses-limit-request.d.ts","sourceRoot":"","sources":["../../../src/commands/management/create-shared-amazon-ses-limit-request.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,kDAAmD,SAAQ,gBAAgB;IAC9F,MAAM,CAAC,WAAW,qDAAsE;IACxF,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;MAA0D;CAC3E"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCreateSharedAmazonSesLimitRequestCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCreateSharedAmazonSesLimitRequest.description;
|
|
6
|
+
static operation = operations.managementCreateSharedAmazonSesLimitRequest;
|
|
7
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementCreateWebhookCommand extends OperationCommand {
|
|
3
|
+
static description: "Create a webhook subscription";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "json";
|
|
6
|
+
readonly command: "management:create-webhook";
|
|
7
|
+
readonly description: "Create a webhook subscription";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementCreateWebhook";
|
|
18
|
+
readonly path: "/webhooks";
|
|
19
|
+
readonly pathParams: readonly [];
|
|
20
|
+
readonly queryParams: readonly [];
|
|
21
|
+
readonly responseKind: "json";
|
|
22
|
+
readonly requestBodyRequired: false;
|
|
23
|
+
readonly requiredKeyKind: "root";
|
|
24
|
+
readonly surface: "management";
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=create-webhook.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-webhook.d.ts","sourceRoot":"","sources":["../../../src/commands/management/create-webhook.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,8BAA+B,SAAQ,gBAAgB;IAC1E,MAAM,CAAC,WAAW,kCAAkD;IACpE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;MAAsC;CACvD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementCreateWebhookCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementCreateWebhook.description;
|
|
6
|
+
static operation = operations.managementCreateWebhook;
|
|
7
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementDeactivateProviderCommand extends OperationCommand {
|
|
3
|
+
static description: "Deactivate a sending account";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:deactivate-provider";
|
|
7
|
+
readonly description: "Deactivate a sending account";
|
|
8
|
+
readonly headerParams: readonly [{
|
|
9
|
+
readonly name: "Idempotency-Key";
|
|
10
|
+
readonly required: false;
|
|
11
|
+
readonly schema: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
readonly maxLength: 255;
|
|
14
|
+
};
|
|
15
|
+
}];
|
|
16
|
+
readonly method: "post";
|
|
17
|
+
readonly operationId: "managementDeactivateProvider";
|
|
18
|
+
readonly path: "/providers/{public_id}/deactivate";
|
|
19
|
+
readonly pathParams: readonly [{
|
|
20
|
+
readonly name: "public_id";
|
|
21
|
+
readonly required: true;
|
|
22
|
+
readonly schema: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
};
|
|
25
|
+
}];
|
|
26
|
+
readonly queryParams: readonly [];
|
|
27
|
+
readonly responseKind: "json";
|
|
28
|
+
readonly requestBodyRequired: false;
|
|
29
|
+
readonly requiredKeyKind: "root";
|
|
30
|
+
readonly surface: "management";
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=deactivate-provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deactivate-provider.d.ts","sourceRoot":"","sources":["../../../src/commands/management/deactivate-provider.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,mCAAoC,SAAQ,gBAAgB;IAC/E,MAAM,CAAC,WAAW,iCAAuD;IACzE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;MAA2C;CAC5D"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementDeactivateProviderCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementDeactivateProvider.description;
|
|
6
|
+
static operation = operations.managementDeactivateProvider;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementDeleteDomainCommand extends OperationCommand {
|
|
3
|
+
static description: "Delete a mailbox domain";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:delete-domain";
|
|
7
|
+
readonly description: "Delete a mailbox domain";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "delete";
|
|
10
|
+
readonly operationId: "managementDeleteDomain";
|
|
11
|
+
readonly path: "/domains/{public_id}";
|
|
12
|
+
readonly pathParams: readonly [{
|
|
13
|
+
readonly name: "public_id";
|
|
14
|
+
readonly required: true;
|
|
15
|
+
readonly schema: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
};
|
|
18
|
+
}];
|
|
19
|
+
readonly queryParams: readonly [];
|
|
20
|
+
readonly responseKind: "json";
|
|
21
|
+
readonly requestBodyRequired: false;
|
|
22
|
+
readonly requiredKeyKind: "root";
|
|
23
|
+
readonly surface: "management";
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=delete-domain.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-domain.d.ts","sourceRoot":"","sources":["../../../src/commands/management/delete-domain.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,6BAA8B,SAAQ,gBAAgB;IACzE,MAAM,CAAC,WAAW,4BAAiD;IACnE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;MAAqC;CACtD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementDeleteDomainCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementDeleteDomain.description;
|
|
6
|
+
static operation = operations.managementDeleteDomain;
|
|
7
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementDeleteMailboxKeyCommand extends OperationCommand {
|
|
3
|
+
static description: "Revoke a mailbox API key";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:delete-mailbox-key";
|
|
7
|
+
readonly description: "Revoke a mailbox API key";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "delete";
|
|
10
|
+
readonly operationId: "managementDeleteMailboxKey";
|
|
11
|
+
readonly path: "/mailboxes/{public_id}/keys/{key_id}";
|
|
12
|
+
readonly pathParams: readonly [{
|
|
13
|
+
readonly name: "public_id";
|
|
14
|
+
readonly required: true;
|
|
15
|
+
readonly schema: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
readonly name: "key_id";
|
|
20
|
+
readonly required: true;
|
|
21
|
+
readonly schema: {
|
|
22
|
+
readonly type: "string";
|
|
23
|
+
};
|
|
24
|
+
}];
|
|
25
|
+
readonly queryParams: readonly [];
|
|
26
|
+
readonly responseKind: "json";
|
|
27
|
+
readonly requestBodyRequired: false;
|
|
28
|
+
readonly requiredKeyKind: "root";
|
|
29
|
+
readonly surface: "management";
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=delete-mailbox-key.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-mailbox-key.d.ts","sourceRoot":"","sources":["../../../src/commands/management/delete-mailbox-key.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,iCAAkC,SAAQ,gBAAgB;IAC7E,MAAM,CAAC,WAAW,6BAAqD;IACvE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;MAAyC;CAC1D"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementDeleteMailboxKeyCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementDeleteMailboxKey.description;
|
|
6
|
+
static operation = operations.managementDeleteMailboxKey;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementDeleteMailboxCommand extends OperationCommand {
|
|
3
|
+
static description: "Delete a mailbox";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:delete-mailbox";
|
|
7
|
+
readonly description: "Delete a mailbox";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "delete";
|
|
10
|
+
readonly operationId: "managementDeleteMailbox";
|
|
11
|
+
readonly path: "/mailboxes/{public_id}";
|
|
12
|
+
readonly pathParams: readonly [{
|
|
13
|
+
readonly name: "public_id";
|
|
14
|
+
readonly required: true;
|
|
15
|
+
readonly schema: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
};
|
|
18
|
+
}];
|
|
19
|
+
readonly queryParams: readonly [];
|
|
20
|
+
readonly responseKind: "json";
|
|
21
|
+
readonly requestBodyRequired: false;
|
|
22
|
+
readonly requiredKeyKind: "root";
|
|
23
|
+
readonly surface: "management";
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=delete-mailbox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-mailbox.d.ts","sourceRoot":"","sources":["../../../src/commands/management/delete-mailbox.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,8BAA+B,SAAQ,gBAAgB;IAC1E,MAAM,CAAC,WAAW,qBAAkD;IACpE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;MAAsC;CACvD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementDeleteMailboxCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementDeleteMailbox.description;
|
|
6
|
+
static operation = operations.managementDeleteMailbox;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementDeleteProviderCommand extends OperationCommand {
|
|
3
|
+
static description: "Delete a sending account";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:delete-provider";
|
|
7
|
+
readonly description: "Delete a sending account";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "delete";
|
|
10
|
+
readonly operationId: "managementDeleteProvider";
|
|
11
|
+
readonly path: "/providers/{public_id}";
|
|
12
|
+
readonly pathParams: readonly [{
|
|
13
|
+
readonly name: "public_id";
|
|
14
|
+
readonly required: true;
|
|
15
|
+
readonly schema: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
};
|
|
18
|
+
}];
|
|
19
|
+
readonly queryParams: readonly [];
|
|
20
|
+
readonly responseKind: "json";
|
|
21
|
+
readonly requestBodyRequired: false;
|
|
22
|
+
readonly requiredKeyKind: "root";
|
|
23
|
+
readonly surface: "management";
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=delete-provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-provider.d.ts","sourceRoot":"","sources":["../../../src/commands/management/delete-provider.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,+BAAgC,SAAQ,gBAAgB;IAC3E,MAAM,CAAC,WAAW,6BAAmD;IACrE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;MAAuC;CACxD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// This file is generated by scripts/generate-cli.mjs
|
|
2
|
+
import { operations } from "../../generated/operations.js";
|
|
3
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
4
|
+
export default class ManagementDeleteProviderCommand extends OperationCommand {
|
|
5
|
+
static description = operations.managementDeleteProvider.description;
|
|
6
|
+
static operation = operations.managementDeleteProvider;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OperationCommand } from "../../operation-command.js";
|
|
2
|
+
export default class ManagementDeleteWebhookCommand extends OperationCommand {
|
|
3
|
+
static description: "Delete a webhook subscription";
|
|
4
|
+
static operation: {
|
|
5
|
+
readonly bodyKind: "none";
|
|
6
|
+
readonly command: "management:delete-webhook";
|
|
7
|
+
readonly description: "Delete a webhook subscription";
|
|
8
|
+
readonly headerParams: readonly [];
|
|
9
|
+
readonly method: "delete";
|
|
10
|
+
readonly operationId: "managementDeleteWebhook";
|
|
11
|
+
readonly path: "/webhooks/{public_id}";
|
|
12
|
+
readonly pathParams: readonly [{
|
|
13
|
+
readonly name: "public_id";
|
|
14
|
+
readonly required: true;
|
|
15
|
+
readonly schema: {
|
|
16
|
+
readonly type: "string";
|
|
17
|
+
};
|
|
18
|
+
}];
|
|
19
|
+
readonly queryParams: readonly [];
|
|
20
|
+
readonly responseKind: "json";
|
|
21
|
+
readonly requestBodyRequired: false;
|
|
22
|
+
readonly requiredKeyKind: "root";
|
|
23
|
+
readonly surface: "management";
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=delete-webhook.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-webhook.d.ts","sourceRoot":"","sources":["../../../src/commands/management/delete-webhook.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE9D,MAAM,CAAC,OAAO,OAAO,8BAA+B,SAAQ,gBAAgB;IAC1E,MAAM,CAAC,WAAW,kCAAkD;IACpE,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;MAAsC;CACvD"}
|