@effect-aws/client-ses 1.0.0 → 1.9.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/Errors/package.json +6 -0
- package/SESClientInstance/package.json +6 -0
- package/SESService/package.json +6 -0
- package/SESServiceConfig/package.json +6 -0
- package/{lib → dist/cjs}/Errors.d.ts +6 -11
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +42 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/SESClientInstance.d.ts +24 -0
- package/dist/cjs/SESClientInstance.d.ts.map +1 -0
- package/dist/cjs/SESClientInstance.js +50 -0
- package/dist/cjs/SESClientInstance.js.map +1 -0
- package/{lib → dist/cjs}/SESService.d.ts +16 -38
- package/dist/cjs/SESService.d.ts.map +1 -0
- package/dist/cjs/SESService.js +127 -0
- package/dist/cjs/SESService.js.map +1 -0
- package/dist/cjs/SESServiceConfig.d.ts +25 -0
- package/dist/cjs/SESServiceConfig.d.ts.map +1 -0
- package/dist/cjs/SESServiceConfig.js +35 -0
- package/dist/cjs/SESServiceConfig.js.map +1 -0
- package/dist/cjs/index.d.ts +39 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/Errors.d.ts +41 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/SESClientInstance.d.ts +24 -0
- package/dist/dts/SESClientInstance.d.ts.map +1 -0
- package/dist/dts/SESService.d.ts +398 -0
- package/dist/dts/SESService.d.ts.map +1 -0
- package/dist/dts/SESServiceConfig.d.ts +25 -0
- package/dist/dts/SESServiceConfig.d.ts.map +1 -0
- package/dist/dts/index.d.ts +39 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/Errors.js +39 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/SESClientInstance.js +23 -0
- package/dist/esm/SESClientInstance.js.map +1 -0
- package/dist/esm/SESService.js +100 -0
- package/dist/esm/SESService.js.map +1 -0
- package/dist/esm/SESServiceConfig.js +31 -0
- package/dist/esm/SESServiceConfig.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +60 -43
- package/src/Errors.ts +119 -0
- package/src/SESClientInstance.ts +33 -0
- package/src/SESService.ts +1228 -0
- package/src/SESServiceConfig.ts +51 -0
- package/src/index.ts +44 -0
- package/CHANGELOG.md +0 -7
- package/docgen.json +0 -8
- package/lib/Errors.js +0 -42
- package/lib/SESClientInstance.d.ts +0 -31
- package/lib/SESClientInstance.js +0 -57
- package/lib/SESClientInstanceConfig.d.ts +0 -23
- package/lib/SESClientInstanceConfig.js +0 -44
- package/lib/SESService.js +0 -159
- package/lib/esm/Errors.js +0 -39
- package/lib/esm/SESClientInstance.js +0 -30
- package/lib/esm/SESClientInstanceConfig.js +0 -40
- package/lib/esm/SESService.js +0 -155
- package/lib/esm/index.js +0 -5
- package/lib/index.d.ts +0 -4
- package/lib/index.js +0 -21
- package/project.json +0 -77
- package/vitest.config.ts +0 -3
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
19
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
20
|
+
};
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.SES = exports.SESServiceConfig = exports.SESClientInstance = void 0;
|
|
30
|
+
/**
|
|
31
|
+
* @since 1.0.0
|
|
32
|
+
*/
|
|
33
|
+
const SESService_js_1 = require("./SESService.js");
|
|
34
|
+
/**
|
|
35
|
+
* @since 1.0.0
|
|
36
|
+
*/
|
|
37
|
+
__exportStar(require("./Errors.js"), exports);
|
|
38
|
+
/**
|
|
39
|
+
* @since 1.0.0
|
|
40
|
+
*/
|
|
41
|
+
exports.SESClientInstance = __importStar(require("./SESClientInstance.js"));
|
|
42
|
+
/**
|
|
43
|
+
* @since 1.0.0
|
|
44
|
+
*/
|
|
45
|
+
exports.SESServiceConfig = __importStar(require("./SESServiceConfig.js"));
|
|
46
|
+
/**
|
|
47
|
+
* @since 1.0.0
|
|
48
|
+
*/
|
|
49
|
+
__exportStar(require("./SESService.js"), exports);
|
|
50
|
+
/**
|
|
51
|
+
* @since 1.0.0
|
|
52
|
+
* @category exports
|
|
53
|
+
* @alias SESService
|
|
54
|
+
*/
|
|
55
|
+
exports.SES = SESService_js_1.SESService;
|
|
56
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,mDAA6C;AAE7C;;GAEG;AACH,8CAA4B;AAE5B;;GAEG;AACH,4EAA4D;AAE5D;;GAEG;AACH,0EAA0D;AAE1D;;GAEG;AACH,kDAAgC;AAehC;;;;GAIG;AACU,QAAA,GAAG,GAAG,0BAAU,CAAC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { AccountSendingPausedException, AlreadyExistsException, CannotDeleteException, ConfigurationSetAlreadyExistsException, ConfigurationSetDoesNotExistException, ConfigurationSetSendingPausedException, CustomVerificationEmailInvalidContentException, CustomVerificationEmailTemplateAlreadyExistsException, CustomVerificationEmailTemplateDoesNotExistException, EventDestinationAlreadyExistsException, EventDestinationDoesNotExistException, FromEmailAddressNotVerifiedException, InvalidCloudWatchDestinationException, InvalidConfigurationSetException, InvalidDeliveryOptionsException, InvalidFirehoseDestinationException, InvalidLambdaFunctionException, InvalidPolicyException, InvalidRenderingParameterException, InvalidS3ConfigurationException, InvalidSNSDestinationException, InvalidSnsTopicException, InvalidTemplateException, InvalidTrackingOptionsException, LimitExceededException, MailFromDomainNotVerifiedException, MessageRejected, MissingRenderingAttributeException, ProductionAccessNotGrantedException, RuleDoesNotExistException, RuleSetDoesNotExistException, TemplateDoesNotExistException, TrackingOptionsAlreadyExistsException, TrackingOptionsDoesNotExistException } from "@aws-sdk/client-ses";
|
|
2
|
+
import type { TaggedException } from "@effect-aws/commons";
|
|
3
|
+
import { SdkError as CommonSdkError } from "@effect-aws/commons";
|
|
4
|
+
export declare const AllServiceErrors: readonly ["AccountSendingPausedException", "AlreadyExistsException", "CannotDeleteException", "ConfigurationSetAlreadyExistsException", "ConfigurationSetDoesNotExistException", "ConfigurationSetSendingPausedException", "CustomVerificationEmailInvalidContentException", "CustomVerificationEmailTemplateAlreadyExistsException", "CustomVerificationEmailTemplateDoesNotExistException", "EventDestinationAlreadyExistsException", "EventDestinationDoesNotExistException", "FromEmailAddressNotVerifiedException", "InvalidCloudWatchDestinationException", "InvalidConfigurationSetException", "InvalidDeliveryOptionsException", "InvalidFirehoseDestinationException", "InvalidLambdaFunctionException", "InvalidPolicyException", "InvalidRenderingParameterException", "InvalidS3ConfigurationException", "InvalidSNSDestinationException", "InvalidSnsTopicException", "InvalidTemplateException", "InvalidTrackingOptionsException", "LimitExceededException", "MailFromDomainNotVerifiedException", "MessageRejected", "MissingRenderingAttributeException", "ProductionAccessNotGrantedException", "RuleDoesNotExistException", "RuleSetDoesNotExistException", "TemplateDoesNotExistException", "TrackingOptionsAlreadyExistsException", "TrackingOptionsDoesNotExistException"];
|
|
5
|
+
export type AccountSendingPausedError = TaggedException<AccountSendingPausedException>;
|
|
6
|
+
export type AlreadyExistsError = TaggedException<AlreadyExistsException>;
|
|
7
|
+
export type CannotDeleteError = TaggedException<CannotDeleteException>;
|
|
8
|
+
export type ConfigurationSetAlreadyExistsError = TaggedException<ConfigurationSetAlreadyExistsException>;
|
|
9
|
+
export type ConfigurationSetDoesNotExistError = TaggedException<ConfigurationSetDoesNotExistException>;
|
|
10
|
+
export type ConfigurationSetSendingPausedError = TaggedException<ConfigurationSetSendingPausedException>;
|
|
11
|
+
export type CustomVerificationEmailInvalidContentError = TaggedException<CustomVerificationEmailInvalidContentException>;
|
|
12
|
+
export type CustomVerificationEmailTemplateAlreadyExistsError = TaggedException<CustomVerificationEmailTemplateAlreadyExistsException>;
|
|
13
|
+
export type CustomVerificationEmailTemplateDoesNotExistError = TaggedException<CustomVerificationEmailTemplateDoesNotExistException>;
|
|
14
|
+
export type EventDestinationAlreadyExistsError = TaggedException<EventDestinationAlreadyExistsException>;
|
|
15
|
+
export type EventDestinationDoesNotExistError = TaggedException<EventDestinationDoesNotExistException>;
|
|
16
|
+
export type FromEmailAddressNotVerifiedError = TaggedException<FromEmailAddressNotVerifiedException>;
|
|
17
|
+
export type InvalidCloudWatchDestinationError = TaggedException<InvalidCloudWatchDestinationException>;
|
|
18
|
+
export type InvalidConfigurationSetError = TaggedException<InvalidConfigurationSetException>;
|
|
19
|
+
export type InvalidDeliveryOptionsError = TaggedException<InvalidDeliveryOptionsException>;
|
|
20
|
+
export type InvalidFirehoseDestinationError = TaggedException<InvalidFirehoseDestinationException>;
|
|
21
|
+
export type InvalidLambdaFunctionError = TaggedException<InvalidLambdaFunctionException>;
|
|
22
|
+
export type InvalidPolicyError = TaggedException<InvalidPolicyException>;
|
|
23
|
+
export type InvalidRenderingParameterError = TaggedException<InvalidRenderingParameterException>;
|
|
24
|
+
export type InvalidS3ConfigurationError = TaggedException<InvalidS3ConfigurationException>;
|
|
25
|
+
export type InvalidSNSDestinationError = TaggedException<InvalidSNSDestinationException>;
|
|
26
|
+
export type InvalidSnsTopicError = TaggedException<InvalidSnsTopicException>;
|
|
27
|
+
export type InvalidTemplateError = TaggedException<InvalidTemplateException>;
|
|
28
|
+
export type InvalidTrackingOptionsError = TaggedException<InvalidTrackingOptionsException>;
|
|
29
|
+
export type LimitExceededError = TaggedException<LimitExceededException>;
|
|
30
|
+
export type MailFromDomainNotVerifiedError = TaggedException<MailFromDomainNotVerifiedException>;
|
|
31
|
+
export type MessageRejectedError = TaggedException<MessageRejected>;
|
|
32
|
+
export type MissingRenderingAttributeError = TaggedException<MissingRenderingAttributeException>;
|
|
33
|
+
export type ProductionAccessNotGrantedError = TaggedException<ProductionAccessNotGrantedException>;
|
|
34
|
+
export type RuleDoesNotExistError = TaggedException<RuleDoesNotExistException>;
|
|
35
|
+
export type RuleSetDoesNotExistError = TaggedException<RuleSetDoesNotExistException>;
|
|
36
|
+
export type TemplateDoesNotExistError = TaggedException<TemplateDoesNotExistException>;
|
|
37
|
+
export type TrackingOptionsAlreadyExistsError = TaggedException<TrackingOptionsAlreadyExistsException>;
|
|
38
|
+
export type TrackingOptionsDoesNotExistError = TaggedException<TrackingOptionsDoesNotExistException>;
|
|
39
|
+
export type SdkError = CommonSdkError;
|
|
40
|
+
export declare const SdkError: import("effect/Data").Case.Constructor<CommonSdkError, "_tag">;
|
|
41
|
+
//# sourceMappingURL=Errors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { SESClient } from "@aws-sdk/client-ses";
|
|
5
|
+
import { Context, Effect, Layer } from "effect";
|
|
6
|
+
declare const SESClientInstance_base: Context.TagClass<SESClientInstance, "@effect-aws/client-ses/SESClientInstance", SESClient>;
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category tags
|
|
10
|
+
*/
|
|
11
|
+
export declare class SESClientInstance extends SESClientInstance_base {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category constructors
|
|
16
|
+
*/
|
|
17
|
+
export declare const make: Effect.Effect<SESClient, never, import("effect/Scope").Scope>;
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category layers
|
|
21
|
+
*/
|
|
22
|
+
export declare const layer: Layer.Layer<SESClientInstance, never, never>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=SESClientInstance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SESClientInstance.d.ts","sourceRoot":"","sources":["../../src/SESClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,iBAAkB,SAAQ,sBAEN;CAAG;AAEpC;;;GAGG;AACH,eAAO,MAAM,IAAI,+DAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,8CAAwC,CAAC"}
|
|
@@ -0,0 +1,398 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { type CloneReceiptRuleSetCommandInput, type CloneReceiptRuleSetCommandOutput, type CreateConfigurationSetCommandInput, type CreateConfigurationSetCommandOutput, type CreateConfigurationSetEventDestinationCommandInput, type CreateConfigurationSetEventDestinationCommandOutput, type CreateConfigurationSetTrackingOptionsCommandInput, type CreateConfigurationSetTrackingOptionsCommandOutput, type CreateCustomVerificationEmailTemplateCommandInput, type CreateCustomVerificationEmailTemplateCommandOutput, type CreateReceiptFilterCommandInput, type CreateReceiptFilterCommandOutput, type CreateReceiptRuleCommandInput, type CreateReceiptRuleCommandOutput, type CreateReceiptRuleSetCommandInput, type CreateReceiptRuleSetCommandOutput, type CreateTemplateCommandInput, type CreateTemplateCommandOutput, type DeleteConfigurationSetCommandInput, type DeleteConfigurationSetCommandOutput, type DeleteConfigurationSetEventDestinationCommandInput, type DeleteConfigurationSetEventDestinationCommandOutput, type DeleteConfigurationSetTrackingOptionsCommandInput, type DeleteConfigurationSetTrackingOptionsCommandOutput, type DeleteCustomVerificationEmailTemplateCommandInput, type DeleteCustomVerificationEmailTemplateCommandOutput, type DeleteIdentityCommandInput, type DeleteIdentityCommandOutput, type DeleteIdentityPolicyCommandInput, type DeleteIdentityPolicyCommandOutput, type DeleteReceiptFilterCommandInput, type DeleteReceiptFilterCommandOutput, type DeleteReceiptRuleCommandInput, type DeleteReceiptRuleCommandOutput, type DeleteReceiptRuleSetCommandInput, type DeleteReceiptRuleSetCommandOutput, type DeleteTemplateCommandInput, type DeleteTemplateCommandOutput, type DeleteVerifiedEmailAddressCommandInput, type DeleteVerifiedEmailAddressCommandOutput, type DescribeActiveReceiptRuleSetCommandInput, type DescribeActiveReceiptRuleSetCommandOutput, type DescribeConfigurationSetCommandInput, type DescribeConfigurationSetCommandOutput, type DescribeReceiptRuleCommandInput, type DescribeReceiptRuleCommandOutput, type DescribeReceiptRuleSetCommandInput, type DescribeReceiptRuleSetCommandOutput, type GetAccountSendingEnabledCommandInput, type GetAccountSendingEnabledCommandOutput, type GetCustomVerificationEmailTemplateCommandInput, type GetCustomVerificationEmailTemplateCommandOutput, type GetIdentityDkimAttributesCommandInput, type GetIdentityDkimAttributesCommandOutput, type GetIdentityMailFromDomainAttributesCommandInput, type GetIdentityMailFromDomainAttributesCommandOutput, type GetIdentityNotificationAttributesCommandInput, type GetIdentityNotificationAttributesCommandOutput, type GetIdentityPoliciesCommandInput, type GetIdentityPoliciesCommandOutput, type GetIdentityVerificationAttributesCommandInput, type GetIdentityVerificationAttributesCommandOutput, type GetSendQuotaCommandInput, type GetSendQuotaCommandOutput, type GetSendStatisticsCommandInput, type GetSendStatisticsCommandOutput, type GetTemplateCommandInput, type GetTemplateCommandOutput, type ListConfigurationSetsCommandInput, type ListConfigurationSetsCommandOutput, type ListCustomVerificationEmailTemplatesCommandInput, type ListCustomVerificationEmailTemplatesCommandOutput, type ListIdentitiesCommandInput, type ListIdentitiesCommandOutput, type ListIdentityPoliciesCommandInput, type ListIdentityPoliciesCommandOutput, type ListReceiptFiltersCommandInput, type ListReceiptFiltersCommandOutput, type ListReceiptRuleSetsCommandInput, type ListReceiptRuleSetsCommandOutput, type ListTemplatesCommandInput, type ListTemplatesCommandOutput, type ListVerifiedEmailAddressesCommandInput, type ListVerifiedEmailAddressesCommandOutput, type PutConfigurationSetDeliveryOptionsCommandInput, type PutConfigurationSetDeliveryOptionsCommandOutput, type PutIdentityPolicyCommandInput, type PutIdentityPolicyCommandOutput, type ReorderReceiptRuleSetCommandInput, type ReorderReceiptRuleSetCommandOutput, type SendBounceCommandInput, type SendBounceCommandOutput, type SendBulkTemplatedEmailCommandInput, type SendBulkTemplatedEmailCommandOutput, type SendCustomVerificationEmailCommandInput, type SendCustomVerificationEmailCommandOutput, type SendEmailCommandInput, type SendEmailCommandOutput, type SendRawEmailCommandInput, type SendRawEmailCommandOutput, type SendTemplatedEmailCommandInput, type SendTemplatedEmailCommandOutput, type SESClient, type SESClientConfig, type SetActiveReceiptRuleSetCommandInput, type SetActiveReceiptRuleSetCommandOutput, type SetIdentityDkimEnabledCommandInput, type SetIdentityDkimEnabledCommandOutput, type SetIdentityFeedbackForwardingEnabledCommandInput, type SetIdentityFeedbackForwardingEnabledCommandOutput, type SetIdentityHeadersInNotificationsEnabledCommandInput, type SetIdentityHeadersInNotificationsEnabledCommandOutput, type SetIdentityMailFromDomainCommandInput, type SetIdentityMailFromDomainCommandOutput, type SetIdentityNotificationTopicCommandInput, type SetIdentityNotificationTopicCommandOutput, type SetReceiptRulePositionCommandInput, type SetReceiptRulePositionCommandOutput, type TestRenderTemplateCommandInput, type TestRenderTemplateCommandOutput, type UpdateAccountSendingEnabledCommandInput, type UpdateAccountSendingEnabledCommandOutput, type UpdateConfigurationSetEventDestinationCommandInput, type UpdateConfigurationSetEventDestinationCommandOutput, type UpdateConfigurationSetReputationMetricsEnabledCommandInput, type UpdateConfigurationSetReputationMetricsEnabledCommandOutput, type UpdateConfigurationSetSendingEnabledCommandInput, type UpdateConfigurationSetSendingEnabledCommandOutput, type UpdateConfigurationSetTrackingOptionsCommandInput, type UpdateConfigurationSetTrackingOptionsCommandOutput, type UpdateCustomVerificationEmailTemplateCommandInput, type UpdateCustomVerificationEmailTemplateCommandOutput, type UpdateReceiptRuleCommandInput, type UpdateReceiptRuleCommandOutput, type UpdateTemplateCommandInput, type UpdateTemplateCommandOutput, type VerifyDomainDkimCommandInput, type VerifyDomainDkimCommandOutput, type VerifyDomainIdentityCommandInput, type VerifyDomainIdentityCommandOutput, type VerifyEmailAddressCommandInput, type VerifyEmailAddressCommandOutput, type VerifyEmailIdentityCommandInput, type VerifyEmailIdentityCommandOutput } from "@aws-sdk/client-ses";
|
|
5
|
+
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import { Effect, Layer } from "effect";
|
|
7
|
+
import type { AccountSendingPausedError, AlreadyExistsError, CannotDeleteError, ConfigurationSetAlreadyExistsError, ConfigurationSetDoesNotExistError, ConfigurationSetSendingPausedError, CustomVerificationEmailInvalidContentError, CustomVerificationEmailTemplateAlreadyExistsError, CustomVerificationEmailTemplateDoesNotExistError, EventDestinationAlreadyExistsError, EventDestinationDoesNotExistError, FromEmailAddressNotVerifiedError, InvalidCloudWatchDestinationError, InvalidConfigurationSetError, InvalidDeliveryOptionsError, InvalidFirehoseDestinationError, InvalidLambdaFunctionError, InvalidPolicyError, InvalidRenderingParameterError, InvalidS3ConfigurationError, InvalidSNSDestinationError, InvalidSnsTopicError, InvalidTemplateError, InvalidTrackingOptionsError, LimitExceededError, MailFromDomainNotVerifiedError, MessageRejectedError, MissingRenderingAttributeError, ProductionAccessNotGrantedError, RuleDoesNotExistError, RuleSetDoesNotExistError, TemplateDoesNotExistError, TrackingOptionsAlreadyExistsError, TrackingOptionsDoesNotExistError } from "./Errors.js";
|
|
8
|
+
import * as Instance from "./SESClientInstance.js";
|
|
9
|
+
interface SESService$ {
|
|
10
|
+
readonly _: unique symbol;
|
|
11
|
+
/**
|
|
12
|
+
* @see {@link CloneReceiptRuleSetCommand}
|
|
13
|
+
*/
|
|
14
|
+
cloneReceiptRuleSet(args: CloneReceiptRuleSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CloneReceiptRuleSetCommandOutput, SdkError | AlreadyExistsError | LimitExceededError | RuleSetDoesNotExistError>;
|
|
15
|
+
/**
|
|
16
|
+
* @see {@link CreateConfigurationSetCommand}
|
|
17
|
+
*/
|
|
18
|
+
createConfigurationSet(args: CreateConfigurationSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationSetCommandOutput, SdkError | ConfigurationSetAlreadyExistsError | InvalidConfigurationSetError | LimitExceededError>;
|
|
19
|
+
/**
|
|
20
|
+
* @see {@link CreateConfigurationSetEventDestinationCommand}
|
|
21
|
+
*/
|
|
22
|
+
createConfigurationSetEventDestination(args: CreateConfigurationSetEventDestinationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationSetEventDestinationCommandOutput, SdkError | ConfigurationSetDoesNotExistError | EventDestinationAlreadyExistsError | InvalidCloudWatchDestinationError | InvalidFirehoseDestinationError | InvalidSNSDestinationError | LimitExceededError>;
|
|
23
|
+
/**
|
|
24
|
+
* @see {@link CreateConfigurationSetTrackingOptionsCommand}
|
|
25
|
+
*/
|
|
26
|
+
createConfigurationSetTrackingOptions(args: CreateConfigurationSetTrackingOptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationSetTrackingOptionsCommandOutput, SdkError | ConfigurationSetDoesNotExistError | InvalidTrackingOptionsError | TrackingOptionsAlreadyExistsError>;
|
|
27
|
+
/**
|
|
28
|
+
* @see {@link CreateCustomVerificationEmailTemplateCommand}
|
|
29
|
+
*/
|
|
30
|
+
createCustomVerificationEmailTemplate(args: CreateCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCustomVerificationEmailTemplateCommandOutput, SdkError | CustomVerificationEmailInvalidContentError | CustomVerificationEmailTemplateAlreadyExistsError | FromEmailAddressNotVerifiedError | LimitExceededError>;
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link CreateReceiptFilterCommand}
|
|
33
|
+
*/
|
|
34
|
+
createReceiptFilter(args: CreateReceiptFilterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateReceiptFilterCommandOutput, SdkError | AlreadyExistsError | LimitExceededError>;
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link CreateReceiptRuleCommand}
|
|
37
|
+
*/
|
|
38
|
+
createReceiptRule(args: CreateReceiptRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateReceiptRuleCommandOutput, SdkError | AlreadyExistsError | InvalidLambdaFunctionError | InvalidS3ConfigurationError | InvalidSnsTopicError | LimitExceededError | RuleDoesNotExistError | RuleSetDoesNotExistError>;
|
|
39
|
+
/**
|
|
40
|
+
* @see {@link CreateReceiptRuleSetCommand}
|
|
41
|
+
*/
|
|
42
|
+
createReceiptRuleSet(args: CreateReceiptRuleSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateReceiptRuleSetCommandOutput, SdkError | AlreadyExistsError | LimitExceededError>;
|
|
43
|
+
/**
|
|
44
|
+
* @see {@link CreateTemplateCommand}
|
|
45
|
+
*/
|
|
46
|
+
createTemplate(args: CreateTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateTemplateCommandOutput, SdkError | AlreadyExistsError | InvalidTemplateError | LimitExceededError>;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link DeleteConfigurationSetCommand}
|
|
49
|
+
*/
|
|
50
|
+
deleteConfigurationSet(args: DeleteConfigurationSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationSetCommandOutput, SdkError | ConfigurationSetDoesNotExistError>;
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link DeleteConfigurationSetEventDestinationCommand}
|
|
53
|
+
*/
|
|
54
|
+
deleteConfigurationSetEventDestination(args: DeleteConfigurationSetEventDestinationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationSetEventDestinationCommandOutput, SdkError | ConfigurationSetDoesNotExistError | EventDestinationDoesNotExistError>;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link DeleteConfigurationSetTrackingOptionsCommand}
|
|
57
|
+
*/
|
|
58
|
+
deleteConfigurationSetTrackingOptions(args: DeleteConfigurationSetTrackingOptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationSetTrackingOptionsCommandOutput, SdkError | ConfigurationSetDoesNotExistError | TrackingOptionsDoesNotExistError>;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link DeleteCustomVerificationEmailTemplateCommand}
|
|
61
|
+
*/
|
|
62
|
+
deleteCustomVerificationEmailTemplate(args: DeleteCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCustomVerificationEmailTemplateCommandOutput, SdkError>;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link DeleteIdentityCommand}
|
|
65
|
+
*/
|
|
66
|
+
deleteIdentity(args: DeleteIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteIdentityCommandOutput, SdkError>;
|
|
67
|
+
/**
|
|
68
|
+
* @see {@link DeleteIdentityPolicyCommand}
|
|
69
|
+
*/
|
|
70
|
+
deleteIdentityPolicy(args: DeleteIdentityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteIdentityPolicyCommandOutput, SdkError>;
|
|
71
|
+
/**
|
|
72
|
+
* @see {@link DeleteReceiptFilterCommand}
|
|
73
|
+
*/
|
|
74
|
+
deleteReceiptFilter(args: DeleteReceiptFilterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteReceiptFilterCommandOutput, SdkError>;
|
|
75
|
+
/**
|
|
76
|
+
* @see {@link DeleteReceiptRuleCommand}
|
|
77
|
+
*/
|
|
78
|
+
deleteReceiptRule(args: DeleteReceiptRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteReceiptRuleCommandOutput, SdkError | RuleSetDoesNotExistError>;
|
|
79
|
+
/**
|
|
80
|
+
* @see {@link DeleteReceiptRuleSetCommand}
|
|
81
|
+
*/
|
|
82
|
+
deleteReceiptRuleSet(args: DeleteReceiptRuleSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteReceiptRuleSetCommandOutput, SdkError | CannotDeleteError>;
|
|
83
|
+
/**
|
|
84
|
+
* @see {@link DeleteTemplateCommand}
|
|
85
|
+
*/
|
|
86
|
+
deleteTemplate(args: DeleteTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteTemplateCommandOutput, SdkError>;
|
|
87
|
+
/**
|
|
88
|
+
* @see {@link DeleteVerifiedEmailAddressCommand}
|
|
89
|
+
*/
|
|
90
|
+
deleteVerifiedEmailAddress(args: DeleteVerifiedEmailAddressCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVerifiedEmailAddressCommandOutput, SdkError>;
|
|
91
|
+
/**
|
|
92
|
+
* @see {@link DescribeActiveReceiptRuleSetCommand}
|
|
93
|
+
*/
|
|
94
|
+
describeActiveReceiptRuleSet(args: DescribeActiveReceiptRuleSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeActiveReceiptRuleSetCommandOutput, SdkError>;
|
|
95
|
+
/**
|
|
96
|
+
* @see {@link DescribeConfigurationSetCommand}
|
|
97
|
+
*/
|
|
98
|
+
describeConfigurationSet(args: DescribeConfigurationSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeConfigurationSetCommandOutput, SdkError | ConfigurationSetDoesNotExistError>;
|
|
99
|
+
/**
|
|
100
|
+
* @see {@link DescribeReceiptRuleCommand}
|
|
101
|
+
*/
|
|
102
|
+
describeReceiptRule(args: DescribeReceiptRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeReceiptRuleCommandOutput, SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError>;
|
|
103
|
+
/**
|
|
104
|
+
* @see {@link DescribeReceiptRuleSetCommand}
|
|
105
|
+
*/
|
|
106
|
+
describeReceiptRuleSet(args: DescribeReceiptRuleSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeReceiptRuleSetCommandOutput, SdkError | RuleSetDoesNotExistError>;
|
|
107
|
+
/**
|
|
108
|
+
* @see {@link GetAccountSendingEnabledCommand}
|
|
109
|
+
*/
|
|
110
|
+
getAccountSendingEnabled(args: GetAccountSendingEnabledCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccountSendingEnabledCommandOutput, SdkError>;
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link GetCustomVerificationEmailTemplateCommand}
|
|
113
|
+
*/
|
|
114
|
+
getCustomVerificationEmailTemplate(args: GetCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCustomVerificationEmailTemplateCommandOutput, SdkError | CustomVerificationEmailTemplateDoesNotExistError>;
|
|
115
|
+
/**
|
|
116
|
+
* @see {@link GetIdentityDkimAttributesCommand}
|
|
117
|
+
*/
|
|
118
|
+
getIdentityDkimAttributes(args: GetIdentityDkimAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIdentityDkimAttributesCommandOutput, SdkError>;
|
|
119
|
+
/**
|
|
120
|
+
* @see {@link GetIdentityMailFromDomainAttributesCommand}
|
|
121
|
+
*/
|
|
122
|
+
getIdentityMailFromDomainAttributes(args: GetIdentityMailFromDomainAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIdentityMailFromDomainAttributesCommandOutput, SdkError>;
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link GetIdentityNotificationAttributesCommand}
|
|
125
|
+
*/
|
|
126
|
+
getIdentityNotificationAttributes(args: GetIdentityNotificationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIdentityNotificationAttributesCommandOutput, SdkError>;
|
|
127
|
+
/**
|
|
128
|
+
* @see {@link GetIdentityPoliciesCommand}
|
|
129
|
+
*/
|
|
130
|
+
getIdentityPolicies(args: GetIdentityPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIdentityPoliciesCommandOutput, SdkError>;
|
|
131
|
+
/**
|
|
132
|
+
* @see {@link GetIdentityVerificationAttributesCommand}
|
|
133
|
+
*/
|
|
134
|
+
getIdentityVerificationAttributes(args: GetIdentityVerificationAttributesCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetIdentityVerificationAttributesCommandOutput, SdkError>;
|
|
135
|
+
/**
|
|
136
|
+
* @see {@link GetSendQuotaCommand}
|
|
137
|
+
*/
|
|
138
|
+
getSendQuota(args: GetSendQuotaCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSendQuotaCommandOutput, SdkError>;
|
|
139
|
+
/**
|
|
140
|
+
* @see {@link GetSendStatisticsCommand}
|
|
141
|
+
*/
|
|
142
|
+
getSendStatistics(args: GetSendStatisticsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSendStatisticsCommandOutput, SdkError>;
|
|
143
|
+
/**
|
|
144
|
+
* @see {@link GetTemplateCommand}
|
|
145
|
+
*/
|
|
146
|
+
getTemplate(args: GetTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTemplateCommandOutput, SdkError | TemplateDoesNotExistError>;
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link ListConfigurationSetsCommand}
|
|
149
|
+
*/
|
|
150
|
+
listConfigurationSets(args: ListConfigurationSetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationSetsCommandOutput, SdkError>;
|
|
151
|
+
/**
|
|
152
|
+
* @see {@link ListCustomVerificationEmailTemplatesCommand}
|
|
153
|
+
*/
|
|
154
|
+
listCustomVerificationEmailTemplates(args: ListCustomVerificationEmailTemplatesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCustomVerificationEmailTemplatesCommandOutput, SdkError>;
|
|
155
|
+
/**
|
|
156
|
+
* @see {@link ListIdentitiesCommand}
|
|
157
|
+
*/
|
|
158
|
+
listIdentities(args: ListIdentitiesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListIdentitiesCommandOutput, SdkError>;
|
|
159
|
+
/**
|
|
160
|
+
* @see {@link ListIdentityPoliciesCommand}
|
|
161
|
+
*/
|
|
162
|
+
listIdentityPolicies(args: ListIdentityPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListIdentityPoliciesCommandOutput, SdkError>;
|
|
163
|
+
/**
|
|
164
|
+
* @see {@link ListReceiptFiltersCommand}
|
|
165
|
+
*/
|
|
166
|
+
listReceiptFilters(args: ListReceiptFiltersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListReceiptFiltersCommandOutput, SdkError>;
|
|
167
|
+
/**
|
|
168
|
+
* @see {@link ListReceiptRuleSetsCommand}
|
|
169
|
+
*/
|
|
170
|
+
listReceiptRuleSets(args: ListReceiptRuleSetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListReceiptRuleSetsCommandOutput, SdkError>;
|
|
171
|
+
/**
|
|
172
|
+
* @see {@link ListTemplatesCommand}
|
|
173
|
+
*/
|
|
174
|
+
listTemplates(args: ListTemplatesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTemplatesCommandOutput, SdkError>;
|
|
175
|
+
/**
|
|
176
|
+
* @see {@link ListVerifiedEmailAddressesCommand}
|
|
177
|
+
*/
|
|
178
|
+
listVerifiedEmailAddresses(args: ListVerifiedEmailAddressesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVerifiedEmailAddressesCommandOutput, SdkError>;
|
|
179
|
+
/**
|
|
180
|
+
* @see {@link PutConfigurationSetDeliveryOptionsCommand}
|
|
181
|
+
*/
|
|
182
|
+
putConfigurationSetDeliveryOptions(args: PutConfigurationSetDeliveryOptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutConfigurationSetDeliveryOptionsCommandOutput, SdkError | ConfigurationSetDoesNotExistError | InvalidDeliveryOptionsError>;
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link PutIdentityPolicyCommand}
|
|
185
|
+
*/
|
|
186
|
+
putIdentityPolicy(args: PutIdentityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutIdentityPolicyCommandOutput, SdkError | InvalidPolicyError>;
|
|
187
|
+
/**
|
|
188
|
+
* @see {@link ReorderReceiptRuleSetCommand}
|
|
189
|
+
*/
|
|
190
|
+
reorderReceiptRuleSet(args: ReorderReceiptRuleSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<ReorderReceiptRuleSetCommandOutput, SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError>;
|
|
191
|
+
/**
|
|
192
|
+
* @see {@link SendBounceCommand}
|
|
193
|
+
*/
|
|
194
|
+
sendBounce(args: SendBounceCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendBounceCommandOutput, SdkError | MessageRejectedError>;
|
|
195
|
+
/**
|
|
196
|
+
* @see {@link SendBulkTemplatedEmailCommand}
|
|
197
|
+
*/
|
|
198
|
+
sendBulkTemplatedEmail(args: SendBulkTemplatedEmailCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendBulkTemplatedEmailCommandOutput, SdkError | AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError | TemplateDoesNotExistError>;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link SendCustomVerificationEmailCommand}
|
|
201
|
+
*/
|
|
202
|
+
sendCustomVerificationEmail(args: SendCustomVerificationEmailCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendCustomVerificationEmailCommandOutput, SdkError | ConfigurationSetDoesNotExistError | CustomVerificationEmailTemplateDoesNotExistError | FromEmailAddressNotVerifiedError | MessageRejectedError | ProductionAccessNotGrantedError>;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link SendEmailCommand}
|
|
205
|
+
*/
|
|
206
|
+
sendEmail(args: SendEmailCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendEmailCommandOutput, SdkError | AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError>;
|
|
207
|
+
/**
|
|
208
|
+
* @see {@link SendRawEmailCommand}
|
|
209
|
+
*/
|
|
210
|
+
sendRawEmail(args: SendRawEmailCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendRawEmailCommandOutput, SdkError | AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError>;
|
|
211
|
+
/**
|
|
212
|
+
* @see {@link SendTemplatedEmailCommand}
|
|
213
|
+
*/
|
|
214
|
+
sendTemplatedEmail(args: SendTemplatedEmailCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTemplatedEmailCommandOutput, SdkError | AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError | TemplateDoesNotExistError>;
|
|
215
|
+
/**
|
|
216
|
+
* @see {@link SetActiveReceiptRuleSetCommand}
|
|
217
|
+
*/
|
|
218
|
+
setActiveReceiptRuleSet(args: SetActiveReceiptRuleSetCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetActiveReceiptRuleSetCommandOutput, SdkError | RuleSetDoesNotExistError>;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link SetIdentityDkimEnabledCommand}
|
|
221
|
+
*/
|
|
222
|
+
setIdentityDkimEnabled(args: SetIdentityDkimEnabledCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetIdentityDkimEnabledCommandOutput, SdkError>;
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link SetIdentityFeedbackForwardingEnabledCommand}
|
|
225
|
+
*/
|
|
226
|
+
setIdentityFeedbackForwardingEnabled(args: SetIdentityFeedbackForwardingEnabledCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetIdentityFeedbackForwardingEnabledCommandOutput, SdkError>;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link SetIdentityHeadersInNotificationsEnabledCommand}
|
|
229
|
+
*/
|
|
230
|
+
setIdentityHeadersInNotificationsEnabled(args: SetIdentityHeadersInNotificationsEnabledCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetIdentityHeadersInNotificationsEnabledCommandOutput, SdkError>;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link SetIdentityMailFromDomainCommand}
|
|
233
|
+
*/
|
|
234
|
+
setIdentityMailFromDomain(args: SetIdentityMailFromDomainCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetIdentityMailFromDomainCommandOutput, SdkError>;
|
|
235
|
+
/**
|
|
236
|
+
* @see {@link SetIdentityNotificationTopicCommand}
|
|
237
|
+
*/
|
|
238
|
+
setIdentityNotificationTopic(args: SetIdentityNotificationTopicCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetIdentityNotificationTopicCommandOutput, SdkError>;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link SetReceiptRulePositionCommand}
|
|
241
|
+
*/
|
|
242
|
+
setReceiptRulePosition(args: SetReceiptRulePositionCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetReceiptRulePositionCommandOutput, SdkError | RuleDoesNotExistError | RuleSetDoesNotExistError>;
|
|
243
|
+
/**
|
|
244
|
+
* @see {@link TestRenderTemplateCommand}
|
|
245
|
+
*/
|
|
246
|
+
testRenderTemplate(args: TestRenderTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<TestRenderTemplateCommandOutput, SdkError | InvalidRenderingParameterError | MissingRenderingAttributeError | TemplateDoesNotExistError>;
|
|
247
|
+
/**
|
|
248
|
+
* @see {@link UpdateAccountSendingEnabledCommand}
|
|
249
|
+
*/
|
|
250
|
+
updateAccountSendingEnabled(args: UpdateAccountSendingEnabledCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccountSendingEnabledCommandOutput, SdkError>;
|
|
251
|
+
/**
|
|
252
|
+
* @see {@link UpdateConfigurationSetEventDestinationCommand}
|
|
253
|
+
*/
|
|
254
|
+
updateConfigurationSetEventDestination(args: UpdateConfigurationSetEventDestinationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationSetEventDestinationCommandOutput, SdkError | ConfigurationSetDoesNotExistError | EventDestinationDoesNotExistError | InvalidCloudWatchDestinationError | InvalidFirehoseDestinationError | InvalidSNSDestinationError>;
|
|
255
|
+
/**
|
|
256
|
+
* @see {@link UpdateConfigurationSetReputationMetricsEnabledCommand}
|
|
257
|
+
*/
|
|
258
|
+
updateConfigurationSetReputationMetricsEnabled(args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationSetReputationMetricsEnabledCommandOutput, SdkError | ConfigurationSetDoesNotExistError>;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link UpdateConfigurationSetSendingEnabledCommand}
|
|
261
|
+
*/
|
|
262
|
+
updateConfigurationSetSendingEnabled(args: UpdateConfigurationSetSendingEnabledCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationSetSendingEnabledCommandOutput, SdkError | ConfigurationSetDoesNotExistError>;
|
|
263
|
+
/**
|
|
264
|
+
* @see {@link UpdateConfigurationSetTrackingOptionsCommand}
|
|
265
|
+
*/
|
|
266
|
+
updateConfigurationSetTrackingOptions(args: UpdateConfigurationSetTrackingOptionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationSetTrackingOptionsCommandOutput, SdkError | ConfigurationSetDoesNotExistError | InvalidTrackingOptionsError | TrackingOptionsDoesNotExistError>;
|
|
267
|
+
/**
|
|
268
|
+
* @see {@link UpdateCustomVerificationEmailTemplateCommand}
|
|
269
|
+
*/
|
|
270
|
+
updateCustomVerificationEmailTemplate(args: UpdateCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCustomVerificationEmailTemplateCommandOutput, SdkError | CustomVerificationEmailInvalidContentError | CustomVerificationEmailTemplateDoesNotExistError | FromEmailAddressNotVerifiedError>;
|
|
271
|
+
/**
|
|
272
|
+
* @see {@link UpdateReceiptRuleCommand}
|
|
273
|
+
*/
|
|
274
|
+
updateReceiptRule(args: UpdateReceiptRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateReceiptRuleCommandOutput, SdkError | InvalidLambdaFunctionError | InvalidS3ConfigurationError | InvalidSnsTopicError | LimitExceededError | RuleDoesNotExistError | RuleSetDoesNotExistError>;
|
|
275
|
+
/**
|
|
276
|
+
* @see {@link UpdateTemplateCommand}
|
|
277
|
+
*/
|
|
278
|
+
updateTemplate(args: UpdateTemplateCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateTemplateCommandOutput, SdkError | InvalidTemplateError | TemplateDoesNotExistError>;
|
|
279
|
+
/**
|
|
280
|
+
* @see {@link VerifyDomainDkimCommand}
|
|
281
|
+
*/
|
|
282
|
+
verifyDomainDkim(args: VerifyDomainDkimCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyDomainDkimCommandOutput, SdkError>;
|
|
283
|
+
/**
|
|
284
|
+
* @see {@link VerifyDomainIdentityCommand}
|
|
285
|
+
*/
|
|
286
|
+
verifyDomainIdentity(args: VerifyDomainIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyDomainIdentityCommandOutput, SdkError>;
|
|
287
|
+
/**
|
|
288
|
+
* @see {@link VerifyEmailAddressCommand}
|
|
289
|
+
*/
|
|
290
|
+
verifyEmailAddress(args: VerifyEmailAddressCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyEmailAddressCommandOutput, SdkError>;
|
|
291
|
+
/**
|
|
292
|
+
* @see {@link VerifyEmailIdentityCommand}
|
|
293
|
+
*/
|
|
294
|
+
verifyEmailIdentity(args: VerifyEmailIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<VerifyEmailIdentityCommandOutput, SdkError>;
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* @since 1.0.0
|
|
298
|
+
* @category constructors
|
|
299
|
+
*/
|
|
300
|
+
export declare const makeSESService: Effect.Effect<SESService$, never, Instance.SESClientInstance>;
|
|
301
|
+
declare const SESService_base: import("effect/Context").TagClass<SESService, "@effect-aws/client-ses/SESService", SESService$> & {
|
|
302
|
+
readonly _: Effect.Effect<SESService$["_"], never, SESService>;
|
|
303
|
+
cloneReceiptRuleSet: (args: CloneReceiptRuleSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CloneReceiptRuleSetCommandOutput, AlreadyExistsError | LimitExceededError | RuleSetDoesNotExistError | SdkError, SESService>;
|
|
304
|
+
createConfigurationSet: (args: CreateConfigurationSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateConfigurationSetCommandOutput, ConfigurationSetAlreadyExistsError | InvalidConfigurationSetError | LimitExceededError | SdkError, SESService>;
|
|
305
|
+
createConfigurationSetEventDestination: (args: CreateConfigurationSetEventDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateConfigurationSetEventDestinationCommandOutput, ConfigurationSetDoesNotExistError | EventDestinationAlreadyExistsError | InvalidCloudWatchDestinationError | InvalidFirehoseDestinationError | InvalidSNSDestinationError | LimitExceededError | SdkError, SESService>;
|
|
306
|
+
createConfigurationSetTrackingOptions: (args: CreateConfigurationSetTrackingOptionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateConfigurationSetTrackingOptionsCommandOutput, ConfigurationSetDoesNotExistError | InvalidTrackingOptionsError | TrackingOptionsAlreadyExistsError | SdkError, SESService>;
|
|
307
|
+
createCustomVerificationEmailTemplate: (args: CreateCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateCustomVerificationEmailTemplateCommandOutput, CustomVerificationEmailInvalidContentError | CustomVerificationEmailTemplateAlreadyExistsError | FromEmailAddressNotVerifiedError | LimitExceededError | SdkError, SESService>;
|
|
308
|
+
createReceiptFilter: (args: CreateReceiptFilterCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateReceiptFilterCommandOutput, AlreadyExistsError | LimitExceededError | SdkError, SESService>;
|
|
309
|
+
createReceiptRule: (args: CreateReceiptRuleCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateReceiptRuleCommandOutput, AlreadyExistsError | InvalidLambdaFunctionError | InvalidS3ConfigurationError | InvalidSnsTopicError | LimitExceededError | RuleDoesNotExistError | RuleSetDoesNotExistError | SdkError, SESService>;
|
|
310
|
+
createReceiptRuleSet: (args: CreateReceiptRuleSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateReceiptRuleSetCommandOutput, AlreadyExistsError | LimitExceededError | SdkError, SESService>;
|
|
311
|
+
createTemplate: (args: CreateTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateTemplateCommandOutput, AlreadyExistsError | InvalidTemplateError | LimitExceededError | SdkError, SESService>;
|
|
312
|
+
deleteConfigurationSet: (args: DeleteConfigurationSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteConfigurationSetCommandOutput, ConfigurationSetDoesNotExistError | SdkError, SESService>;
|
|
313
|
+
deleteConfigurationSetEventDestination: (args: DeleteConfigurationSetEventDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteConfigurationSetEventDestinationCommandOutput, ConfigurationSetDoesNotExistError | EventDestinationDoesNotExistError | SdkError, SESService>;
|
|
314
|
+
deleteConfigurationSetTrackingOptions: (args: DeleteConfigurationSetTrackingOptionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteConfigurationSetTrackingOptionsCommandOutput, ConfigurationSetDoesNotExistError | TrackingOptionsDoesNotExistError | SdkError, SESService>;
|
|
315
|
+
deleteCustomVerificationEmailTemplate: (args: DeleteCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteCustomVerificationEmailTemplateCommandOutput, SdkError, SESService>;
|
|
316
|
+
deleteIdentity: (args: DeleteIdentityCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteIdentityCommandOutput, SdkError, SESService>;
|
|
317
|
+
deleteIdentityPolicy: (args: DeleteIdentityPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteIdentityPolicyCommandOutput, SdkError, SESService>;
|
|
318
|
+
deleteReceiptFilter: (args: DeleteReceiptFilterCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteReceiptFilterCommandOutput, SdkError, SESService>;
|
|
319
|
+
deleteReceiptRule: (args: DeleteReceiptRuleCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteReceiptRuleCommandOutput, RuleSetDoesNotExistError | SdkError, SESService>;
|
|
320
|
+
deleteReceiptRuleSet: (args: DeleteReceiptRuleSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteReceiptRuleSetCommandOutput, CannotDeleteError | SdkError, SESService>;
|
|
321
|
+
deleteTemplate: (args: DeleteTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteTemplateCommandOutput, SdkError, SESService>;
|
|
322
|
+
deleteVerifiedEmailAddress: (args: DeleteVerifiedEmailAddressCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteVerifiedEmailAddressCommandOutput, SdkError, SESService>;
|
|
323
|
+
describeActiveReceiptRuleSet: (args: DescribeActiveReceiptRuleSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeActiveReceiptRuleSetCommandOutput, SdkError, SESService>;
|
|
324
|
+
describeConfigurationSet: (args: DescribeConfigurationSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeConfigurationSetCommandOutput, ConfigurationSetDoesNotExistError | SdkError, SESService>;
|
|
325
|
+
describeReceiptRule: (args: DescribeReceiptRuleCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeReceiptRuleCommandOutput, RuleDoesNotExistError | RuleSetDoesNotExistError | SdkError, SESService>;
|
|
326
|
+
describeReceiptRuleSet: (args: DescribeReceiptRuleSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DescribeReceiptRuleSetCommandOutput, RuleSetDoesNotExistError | SdkError, SESService>;
|
|
327
|
+
getAccountSendingEnabled: (args: GetAccountSendingEnabledCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetAccountSendingEnabledCommandOutput, SdkError, SESService>;
|
|
328
|
+
getCustomVerificationEmailTemplate: (args: GetCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetCustomVerificationEmailTemplateCommandOutput, CustomVerificationEmailTemplateDoesNotExistError | SdkError, SESService>;
|
|
329
|
+
getIdentityDkimAttributes: (args: GetIdentityDkimAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetIdentityDkimAttributesCommandOutput, SdkError, SESService>;
|
|
330
|
+
getIdentityMailFromDomainAttributes: (args: GetIdentityMailFromDomainAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetIdentityMailFromDomainAttributesCommandOutput, SdkError, SESService>;
|
|
331
|
+
getIdentityNotificationAttributes: (args: GetIdentityNotificationAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetIdentityNotificationAttributesCommandOutput, SdkError, SESService>;
|
|
332
|
+
getIdentityPolicies: (args: GetIdentityPoliciesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetIdentityPoliciesCommandOutput, SdkError, SESService>;
|
|
333
|
+
getIdentityVerificationAttributes: (args: GetIdentityVerificationAttributesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetIdentityVerificationAttributesCommandOutput, SdkError, SESService>;
|
|
334
|
+
getSendQuota: (args: GetSendQuotaCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetSendQuotaCommandOutput, SdkError, SESService>;
|
|
335
|
+
getSendStatistics: (args: GetSendStatisticsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetSendStatisticsCommandOutput, SdkError, SESService>;
|
|
336
|
+
getTemplate: (args: GetTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetTemplateCommandOutput, TemplateDoesNotExistError | SdkError, SESService>;
|
|
337
|
+
listConfigurationSets: (args: ListConfigurationSetsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListConfigurationSetsCommandOutput, SdkError, SESService>;
|
|
338
|
+
listCustomVerificationEmailTemplates: (args: ListCustomVerificationEmailTemplatesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListCustomVerificationEmailTemplatesCommandOutput, SdkError, SESService>;
|
|
339
|
+
listIdentities: (args: ListIdentitiesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListIdentitiesCommandOutput, SdkError, SESService>;
|
|
340
|
+
listIdentityPolicies: (args: ListIdentityPoliciesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListIdentityPoliciesCommandOutput, SdkError, SESService>;
|
|
341
|
+
listReceiptFilters: (args: ListReceiptFiltersCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListReceiptFiltersCommandOutput, SdkError, SESService>;
|
|
342
|
+
listReceiptRuleSets: (args: ListReceiptRuleSetsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListReceiptRuleSetsCommandOutput, SdkError, SESService>;
|
|
343
|
+
listTemplates: (args: ListTemplatesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListTemplatesCommandOutput, SdkError, SESService>;
|
|
344
|
+
listVerifiedEmailAddresses: (args: ListVerifiedEmailAddressesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListVerifiedEmailAddressesCommandOutput, SdkError, SESService>;
|
|
345
|
+
putConfigurationSetDeliveryOptions: (args: PutConfigurationSetDeliveryOptionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutConfigurationSetDeliveryOptionsCommandOutput, ConfigurationSetDoesNotExistError | InvalidDeliveryOptionsError | SdkError, SESService>;
|
|
346
|
+
putIdentityPolicy: (args: PutIdentityPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutIdentityPolicyCommandOutput, InvalidPolicyError | SdkError, SESService>;
|
|
347
|
+
reorderReceiptRuleSet: (args: ReorderReceiptRuleSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ReorderReceiptRuleSetCommandOutput, RuleDoesNotExistError | RuleSetDoesNotExistError | SdkError, SESService>;
|
|
348
|
+
sendBounce: (args: SendBounceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SendBounceCommandOutput, MessageRejectedError | SdkError, SESService>;
|
|
349
|
+
sendBulkTemplatedEmail: (args: SendBulkTemplatedEmailCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SendBulkTemplatedEmailCommandOutput, AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError | TemplateDoesNotExistError | SdkError, SESService>;
|
|
350
|
+
sendCustomVerificationEmail: (args: SendCustomVerificationEmailCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SendCustomVerificationEmailCommandOutput, ConfigurationSetDoesNotExistError | CustomVerificationEmailTemplateDoesNotExistError | FromEmailAddressNotVerifiedError | MessageRejectedError | ProductionAccessNotGrantedError | SdkError, SESService>;
|
|
351
|
+
sendEmail: (args: SendEmailCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SendEmailCommandOutput, AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError | SdkError, SESService>;
|
|
352
|
+
sendRawEmail: (args: SendRawEmailCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SendRawEmailCommandOutput, AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError | SdkError, SESService>;
|
|
353
|
+
sendTemplatedEmail: (args: SendTemplatedEmailCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SendTemplatedEmailCommandOutput, AccountSendingPausedError | ConfigurationSetDoesNotExistError | ConfigurationSetSendingPausedError | MailFromDomainNotVerifiedError | MessageRejectedError | TemplateDoesNotExistError | SdkError, SESService>;
|
|
354
|
+
setActiveReceiptRuleSet: (args: SetActiveReceiptRuleSetCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetActiveReceiptRuleSetCommandOutput, RuleSetDoesNotExistError | SdkError, SESService>;
|
|
355
|
+
setIdentityDkimEnabled: (args: SetIdentityDkimEnabledCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetIdentityDkimEnabledCommandOutput, SdkError, SESService>;
|
|
356
|
+
setIdentityFeedbackForwardingEnabled: (args: SetIdentityFeedbackForwardingEnabledCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetIdentityFeedbackForwardingEnabledCommandOutput, SdkError, SESService>;
|
|
357
|
+
setIdentityHeadersInNotificationsEnabled: (args: SetIdentityHeadersInNotificationsEnabledCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetIdentityHeadersInNotificationsEnabledCommandOutput, SdkError, SESService>;
|
|
358
|
+
setIdentityMailFromDomain: (args: SetIdentityMailFromDomainCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetIdentityMailFromDomainCommandOutput, SdkError, SESService>;
|
|
359
|
+
setIdentityNotificationTopic: (args: SetIdentityNotificationTopicCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetIdentityNotificationTopicCommandOutput, SdkError, SESService>;
|
|
360
|
+
setReceiptRulePosition: (args: SetReceiptRulePositionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<SetReceiptRulePositionCommandOutput, RuleDoesNotExistError | RuleSetDoesNotExistError | SdkError, SESService>;
|
|
361
|
+
testRenderTemplate: (args: TestRenderTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<TestRenderTemplateCommandOutput, InvalidRenderingParameterError | MissingRenderingAttributeError | TemplateDoesNotExistError | SdkError, SESService>;
|
|
362
|
+
updateAccountSendingEnabled: (args: UpdateAccountSendingEnabledCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateAccountSendingEnabledCommandOutput, SdkError, SESService>;
|
|
363
|
+
updateConfigurationSetEventDestination: (args: UpdateConfigurationSetEventDestinationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateConfigurationSetEventDestinationCommandOutput, ConfigurationSetDoesNotExistError | EventDestinationDoesNotExistError | InvalidCloudWatchDestinationError | InvalidFirehoseDestinationError | InvalidSNSDestinationError | SdkError, SESService>;
|
|
364
|
+
updateConfigurationSetReputationMetricsEnabled: (args: UpdateConfigurationSetReputationMetricsEnabledCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateConfigurationSetReputationMetricsEnabledCommandOutput, ConfigurationSetDoesNotExistError | SdkError, SESService>;
|
|
365
|
+
updateConfigurationSetSendingEnabled: (args: UpdateConfigurationSetSendingEnabledCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateConfigurationSetSendingEnabledCommandOutput, ConfigurationSetDoesNotExistError | SdkError, SESService>;
|
|
366
|
+
updateConfigurationSetTrackingOptions: (args: UpdateConfigurationSetTrackingOptionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateConfigurationSetTrackingOptionsCommandOutput, ConfigurationSetDoesNotExistError | InvalidTrackingOptionsError | TrackingOptionsDoesNotExistError | SdkError, SESService>;
|
|
367
|
+
updateCustomVerificationEmailTemplate: (args: UpdateCustomVerificationEmailTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateCustomVerificationEmailTemplateCommandOutput, CustomVerificationEmailInvalidContentError | CustomVerificationEmailTemplateDoesNotExistError | FromEmailAddressNotVerifiedError | SdkError, SESService>;
|
|
368
|
+
updateReceiptRule: (args: UpdateReceiptRuleCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateReceiptRuleCommandOutput, InvalidLambdaFunctionError | InvalidS3ConfigurationError | InvalidSnsTopicError | LimitExceededError | RuleDoesNotExistError | RuleSetDoesNotExistError | SdkError, SESService>;
|
|
369
|
+
updateTemplate: (args: UpdateTemplateCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateTemplateCommandOutput, InvalidTemplateError | TemplateDoesNotExistError | SdkError, SESService>;
|
|
370
|
+
verifyDomainDkim: (args: VerifyDomainDkimCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<VerifyDomainDkimCommandOutput, SdkError, SESService>;
|
|
371
|
+
verifyDomainIdentity: (args: VerifyDomainIdentityCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<VerifyDomainIdentityCommandOutput, SdkError, SESService>;
|
|
372
|
+
verifyEmailAddress: (args: VerifyEmailAddressCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<VerifyEmailAddressCommandOutput, SdkError, SESService>;
|
|
373
|
+
verifyEmailIdentity: (args: VerifyEmailIdentityCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<VerifyEmailIdentityCommandOutput, SdkError, SESService>;
|
|
374
|
+
} & {
|
|
375
|
+
use: <X>(body: (_: SESService$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E, SESService | R> : Effect.Effect<X, never, SESService>;
|
|
376
|
+
};
|
|
377
|
+
/**
|
|
378
|
+
* @since 1.0.0
|
|
379
|
+
* @category models
|
|
380
|
+
*/
|
|
381
|
+
export declare class SESService extends SESService_base {
|
|
382
|
+
static readonly defaultLayer: Layer.Layer<SESService, never, never>;
|
|
383
|
+
static readonly layer: (config: SESService.Config) => Layer.Layer<SESService, never, never>;
|
|
384
|
+
static readonly baseLayer: (evaluate: (defaultConfig: SESClientConfig) => SESClient) => Layer.Layer<SESService, never, never>;
|
|
385
|
+
}
|
|
386
|
+
/**
|
|
387
|
+
* @since 1.0.0
|
|
388
|
+
*/
|
|
389
|
+
export declare namespace SESService {
|
|
390
|
+
/**
|
|
391
|
+
* @since 1.0.0
|
|
392
|
+
*/
|
|
393
|
+
interface Config extends Omit<SESClientConfig, "logger"> {
|
|
394
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
export {};
|
|
398
|
+
//# sourceMappingURL=SESService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SESService.d.ts","sourceRoot":"","sources":["../../src/SESService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,kDAAkD,EACvD,KAAK,mDAAmD,EAExD,KAAK,iDAAiD,EACtD,KAAK,kDAAkD,EAEvD,KAAK,iDAAiD,EACtD,KAAK,kDAAkD,EAEvD,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,kDAAkD,EACvD,KAAK,mDAAmD,EAExD,KAAK,iDAAiD,EACtD,KAAK,kDAAkD,EAEvD,KAAK,iDAAiD,EACtD,KAAK,kDAAkD,EAEvD,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,sCAAsC,EAC3C,KAAK,uCAAuC,EAE5C,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAE9C,KAAK,oCAAoC,EACzC,KAAK,qCAAqC,EAE1C,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,oCAAoC,EACzC,KAAK,qCAAqC,EAE1C,KAAK,8CAA8C,EACnD,KAAK,+CAA+C,EAEpD,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,+CAA+C,EACpD,KAAK,gDAAgD,EAErD,KAAK,6CAA6C,EAClD,KAAK,8CAA8C,EAEnD,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,6CAA6C,EAClD,KAAK,8CAA8C,EAEnD,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,gDAAgD,EACrD,KAAK,iDAAiD,EAEtD,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAE/B,KAAK,sCAAsC,EAC3C,KAAK,uCAAuC,EAE5C,KAAK,8CAA8C,EACnD,KAAK,+CAA+C,EAEpD,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,sBAAsB,EAC3B,KAAK,uBAAuB,EAE5B,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,uCAAuC,EAC5C,KAAK,wCAAwC,EAE7C,KAAK,qBAAqB,EAC1B,KAAK,sBAAsB,EAE3B,KAAK,wBAAwB,EAC7B,KAAK,yBAAyB,EAE9B,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EACpC,KAAK,SAAS,EACd,KAAK,eAAe,EAEpB,KAAK,mCAAmC,EACxC,KAAK,oCAAoC,EAEzC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,gDAAgD,EACrD,KAAK,iDAAiD,EAEtD,KAAK,oDAAoD,EACzD,KAAK,qDAAqD,EAE1D,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAE3C,KAAK,wCAAwC,EAC7C,KAAK,yCAAyC,EAE9C,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EAExC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,uCAAuC,EAC5C,KAAK,wCAAwC,EAE7C,KAAK,kDAAkD,EACvD,KAAK,mDAAmD,EAExD,KAAK,0DAA0D,EAC/D,KAAK,2DAA2D,EAEhE,KAAK,gDAAgD,EACrD,KAAK,iDAAiD,EAEtD,KAAK,iDAAiD,EACtD,KAAK,kDAAkD,EAEvD,KAAK,iDAAiD,EACtD,KAAK,kDAAkD,EAEvD,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,0BAA0B,EAC/B,KAAK,2BAA2B,EAEhC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EACtC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,kBAAkB,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEvF,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,KAAK,EACV,yBAAyB,EACzB,kBAAkB,EAClB,iBAAiB,EACjB,kCAAkC,EAClC,iCAAiC,EACjC,kCAAkC,EAClC,0CAA0C,EAC1C,iDAAiD,EACjD,gDAAgD,EAChD,kCAAkC,EAClC,iCAAiC,EACjC,gCAAgC,EAChC,iCAAiC,EACjC,4BAA4B,EAC5B,2BAA2B,EAC3B,+BAA+B,EAC/B,0BAA0B,EAC1B,kBAAkB,EAClB,8BAA8B,EAC9B,2BAA2B,EAC3B,0BAA0B,EAC1B,oBAAoB,EACpB,oBAAoB,EACpB,2BAA2B,EAC3B,kBAAkB,EAClB,8BAA8B,EAC9B,oBAAoB,EACpB,8BAA8B,EAC9B,+BAA+B,EAC/B,qBAAqB,EACrB,wBAAwB,EACxB,yBAAyB,EACzB,iCAAiC,EACjC,gCAAgC,EACjC,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AA6EnD,UAAU,WAAW;IACnB,QAAQ,CAAC,CAAC,EAAE,OAAO,MAAM,CAAC;IAE1B;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAChC,QAAQ,GAAG,kBAAkB,GAAG,kBAAkB,GAAG,wBAAwB,CAC9E,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACnC,QAAQ,GAAG,kCAAkC,GAAG,4BAA4B,GAAG,kBAAkB,CAClG,CAAC;IAEF;;OAEG;IACH,sCAAsC,CACpC,IAAI,EAAE,kDAAkD,EACxD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mDAAmD,EACjD,QAAQ,GACR,iCAAiC,GACjC,kCAAkC,GAClC,iCAAiC,GACjC,+BAA+B,GAC/B,0BAA0B,GAC1B,kBAAkB,CACrB,CAAC;IAEF;;OAEG;IACH,qCAAqC,CACnC,IAAI,EAAE,iDAAiD,EACvD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kDAAkD,EAClD,QAAQ,GAAG,iCAAiC,GAAG,2BAA2B,GAAG,iCAAiC,CAC/G,CAAC;IAEF;;OAEG;IACH,qCAAqC,CACnC,IAAI,EAAE,iDAAiD,EACvD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kDAAkD,EAChD,QAAQ,GACR,0CAA0C,GAC1C,iDAAiD,GACjD,gCAAgC,GAChC,kBAAkB,CACrB,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAChC,QAAQ,GAAG,kBAAkB,GAAG,kBAAkB,CACnD,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC5B,QAAQ,GACR,kBAAkB,GAClB,0BAA0B,GAC1B,2BAA2B,GAC3B,oBAAoB,GACpB,kBAAkB,GAClB,qBAAqB,GACrB,wBAAwB,CAC3B,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EACjC,QAAQ,GAAG,kBAAkB,GAAG,kBAAkB,CACnD,CAAC;IAEF;;OAEG;IACH,cAAc,CACZ,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2BAA2B,EAC3B,QAAQ,GAAG,kBAAkB,GAAG,oBAAoB,GAAG,kBAAkB,CAC1E,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACnC,QAAQ,GAAG,iCAAiC,CAC7C,CAAC;IAEF;;OAEG;IACH,sCAAsC,CACpC,IAAI,EAAE,kDAAkD,EACxD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mDAAmD,EACnD,QAAQ,GAAG,iCAAiC,GAAG,iCAAiC,CACjF,CAAC;IAEF;;OAEG;IACH,qCAAqC,CACnC,IAAI,EAAE,iDAAiD,EACvD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kDAAkD,EAClD,QAAQ,GAAG,iCAAiC,GAAG,gCAAgC,CAChF,CAAC;IAEF;;OAEG;IACH,qCAAqC,CACnC,IAAI,EAAE,iDAAiD,EACvD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kDAAkD,EAClD,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,cAAc,CACZ,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2BAA2B,EAC3B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EACjC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAChC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC9B,QAAQ,GAAG,wBAAwB,CACpC,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EACjC,QAAQ,GAAG,iBAAiB,CAC7B,CAAC;IAEF;;OAEG;IACH,cAAc,CACZ,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2BAA2B,EAC3B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,0BAA0B,CACxB,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uCAAuC,EACvC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,4BAA4B,CAC1B,IAAI,EAAE,wCAAwC,EAC9C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yCAAyC,EACzC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,wBAAwB,CACtB,IAAI,EAAE,oCAAoC,EAC1C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qCAAqC,EACrC,QAAQ,GAAG,iCAAiC,CAC7C,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAChC,QAAQ,GAAG,qBAAqB,GAAG,wBAAwB,CAC5D,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACnC,QAAQ,GAAG,wBAAwB,CACpC,CAAC;IAEF;;OAEG;IACH,wBAAwB,CACtB,IAAI,EAAE,oCAAoC,EAC1C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qCAAqC,EACrC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,kCAAkC,CAChC,IAAI,EAAE,8CAA8C,EACpD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+CAA+C,EAC/C,QAAQ,GAAG,gDAAgD,CAC5D,CAAC;IAEF;;OAEG;IACH,yBAAyB,CACvB,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sCAAsC,EACtC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,mCAAmC,CACjC,IAAI,EAAE,+CAA+C,EACrD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gDAAgD,EAChD,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,iCAAiC,CAC/B,IAAI,EAAE,6CAA6C,EACnD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8CAA8C,EAC9C,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAChC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,iCAAiC,CAC/B,IAAI,EAAE,6CAA6C,EACnD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8CAA8C,EAC9C,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,YAAY,CACV,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yBAAyB,EACzB,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC9B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,WAAW,CACT,IAAI,EAAE,uBAAuB,EAC7B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wBAAwB,EACxB,QAAQ,GAAG,yBAAyB,CACrC,CAAC;IAEF;;OAEG;IACH,qBAAqB,CACnB,IAAI,EAAE,iCAAiC,EACvC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kCAAkC,EAClC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,oCAAoC,CAClC,IAAI,EAAE,gDAAgD,EACtD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iDAAiD,EACjD,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,cAAc,CACZ,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2BAA2B,EAC3B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EACjC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC/B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAChC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,aAAa,CACX,IAAI,EAAE,yBAAyB,EAC/B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,0BAA0B,EAC1B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,0BAA0B,CACxB,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uCAAuC,EACvC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,kCAAkC,CAChC,IAAI,EAAE,8CAA8C,EACpD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+CAA+C,EAC/C,QAAQ,GAAG,iCAAiC,GAAG,2BAA2B,CAC3E,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC9B,QAAQ,GAAG,kBAAkB,CAC9B,CAAC;IAEF;;OAEG;IACH,qBAAqB,CACnB,IAAI,EAAE,iCAAiC,EACvC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kCAAkC,EAClC,QAAQ,GAAG,qBAAqB,GAAG,wBAAwB,CAC5D,CAAC;IAEF;;OAEG;IACH,UAAU,CACR,IAAI,EAAE,sBAAsB,EAC5B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,uBAAuB,EACvB,QAAQ,GAAG,oBAAoB,CAChC,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACjC,QAAQ,GACR,yBAAyB,GACzB,iCAAiC,GACjC,kCAAkC,GAClC,8BAA8B,GAC9B,oBAAoB,GACpB,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,2BAA2B,CACzB,IAAI,EAAE,uCAAuC,EAC7C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wCAAwC,EACtC,QAAQ,GACR,iCAAiC,GACjC,gDAAgD,GAChD,gCAAgC,GAChC,oBAAoB,GACpB,+BAA+B,CAClC,CAAC;IAEF;;OAEG;IACH,SAAS,CACP,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sBAAsB,EACpB,QAAQ,GACR,yBAAyB,GACzB,iCAAiC,GACjC,kCAAkC,GAClC,8BAA8B,GAC9B,oBAAoB,CACvB,CAAC;IAEF;;OAEG;IACH,YAAY,CACV,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yBAAyB,EACvB,QAAQ,GACR,yBAAyB,GACzB,iCAAiC,GACjC,kCAAkC,GAClC,8BAA8B,GAC9B,oBAAoB,CACvB,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC7B,QAAQ,GACR,yBAAyB,GACzB,iCAAiC,GACjC,kCAAkC,GAClC,8BAA8B,GAC9B,oBAAoB,GACpB,yBAAyB,CAC5B,CAAC;IAEF;;OAEG;IACH,uBAAuB,CACrB,IAAI,EAAE,mCAAmC,EACzC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,oCAAoC,EACpC,QAAQ,GAAG,wBAAwB,CACpC,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACnC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,oCAAoC,CAClC,IAAI,EAAE,gDAAgD,EACtD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iDAAiD,EACjD,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,wCAAwC,CACtC,IAAI,EAAE,oDAAoD,EAC1D,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,qDAAqD,EACrD,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,yBAAyB,CACvB,IAAI,EAAE,qCAAqC,EAC3C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,sCAAsC,EACtC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,4BAA4B,CAC1B,IAAI,EAAE,wCAAwC,EAC9C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,yCAAyC,EACzC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,sBAAsB,CACpB,IAAI,EAAE,kCAAkC,EACxC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mCAAmC,EACnC,QAAQ,GAAG,qBAAqB,GAAG,wBAAwB,CAC5D,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC/B,QAAQ,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,yBAAyB,CACvG,CAAC;IAEF;;OAEG;IACH,2BAA2B,CACzB,IAAI,EAAE,uCAAuC,EAC7C,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,wCAAwC,EACxC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,sCAAsC,CACpC,IAAI,EAAE,kDAAkD,EACxD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,mDAAmD,EACjD,QAAQ,GACR,iCAAiC,GACjC,iCAAiC,GACjC,iCAAiC,GACjC,+BAA+B,GAC/B,0BAA0B,CAC7B,CAAC;IAEF;;OAEG;IACH,8CAA8C,CAC5C,IAAI,EAAE,0DAA0D,EAChE,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2DAA2D,EAC3D,QAAQ,GAAG,iCAAiC,CAC7C,CAAC;IAEF;;OAEG;IACH,oCAAoC,CAClC,IAAI,EAAE,gDAAgD,EACtD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iDAAiD,EACjD,QAAQ,GAAG,iCAAiC,CAC7C,CAAC;IAEF;;OAEG;IACH,qCAAqC,CACnC,IAAI,EAAE,iDAAiD,EACvD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kDAAkD,EAClD,QAAQ,GAAG,iCAAiC,GAAG,2BAA2B,GAAG,gCAAgC,CAC9G,CAAC;IAEF;;OAEG;IACH,qCAAqC,CACnC,IAAI,EAAE,iDAAiD,EACvD,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,kDAAkD,EAChD,QAAQ,GACR,0CAA0C,GAC1C,gDAAgD,GAChD,gCAAgC,CACnC,CAAC;IAEF;;OAEG;IACH,iBAAiB,CACf,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,8BAA8B,EAC5B,QAAQ,GACR,0BAA0B,GAC1B,2BAA2B,GAC3B,oBAAoB,GACpB,kBAAkB,GAClB,qBAAqB,GACrB,wBAAwB,CAC3B,CAAC;IAEF;;OAEG;IACH,cAAc,CACZ,IAAI,EAAE,0BAA0B,EAChC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,2BAA2B,EAC3B,QAAQ,GAAG,oBAAoB,GAAG,yBAAyB,CAC5D,CAAC;IAEF;;OAEG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,6BAA6B,EAC7B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,oBAAoB,CAClB,IAAI,EAAE,gCAAgC,EACtC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,iCAAiC,EACjC,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC/B,QAAQ,CACT,CAAC;IAEF;;OAEG;IACH,mBAAmB,CACjB,IAAI,EAAE,+BAA+B,EACrC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,gCAAgC,EAChC,QAAQ,CACT,CAAC;CACH;AAED;;;GAGG;AACH,eAAO,MAAM,cAAc,+DAIzB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH;;;GAGG;AACH,qBAAa,UAAW,SAAQ,eAG7B;IACD,MAAM,CAAC,QAAQ,CAAC,YAAY,wCAA0E;IACtG,MAAM,CAAC,QAAQ,CAAC,KAAK,WAAY,WAAW,MAAM,2CAI9C;IACJ,MAAM,CAAC,QAAQ,CAAC,SAAS,aACb,CAAC,aAAa,EAAE,eAAe,KAAK,SAAS,2CASrD;CACL;AAED;;GAEG;AACH,MAAM,CAAC,OAAO,WAAW,UAAU,CAAC;IAClC;;OAEG;IACH,UAAiB,MAAO,SAAQ,IAAI,CAAC,eAAe,EAAE,QAAQ,CAAC;QAC7D,QAAQ,CAAC,MAAM,CAAC,EAAE,aAAa,CAAC,6BAA6B,GAAG,IAAI,CAAC;KACtE;CACF"}
|