@aws-sdk/client-pinpoint-email 3.296.0 → 3.297.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/dist-types/PinpointEmail.d.ts +43 -0
- package/dist-types/PinpointEmailClient.d.ts +24 -4
- package/dist-types/commands/CreateConfigurationSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +16 -0
- package/dist-types/commands/CreateDedicatedIpPoolCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeliverabilityTestReportCommand.d.ts +16 -0
- package/dist-types/commands/CreateEmailIdentityCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDedicatedIpPoolCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEmailIdentityCommand.d.ts +16 -0
- package/dist-types/commands/GetAccountCommand.d.ts +16 -0
- package/dist-types/commands/GetBlacklistReportsCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationSetCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationSetEventDestinationsCommand.d.ts +16 -0
- package/dist-types/commands/GetDedicatedIpCommand.d.ts +16 -0
- package/dist-types/commands/GetDedicatedIpsCommand.d.ts +16 -0
- package/dist-types/commands/GetDeliverabilityDashboardOptionsCommand.d.ts +16 -0
- package/dist-types/commands/GetDeliverabilityTestReportCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainDeliverabilityCampaignCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainStatisticsReportCommand.d.ts +16 -0
- package/dist-types/commands/GetEmailIdentityCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListDedicatedIpPoolsCommand.d.ts +16 -0
- package/dist-types/commands/ListDeliverabilityTestReportsCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainDeliverabilityCampaignsCommand.d.ts +16 -0
- package/dist-types/commands/ListEmailIdentitiesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountDedicatedIpWarmupAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountSendingAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetReputationOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetSendingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutConfigurationSetTrackingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/PutDedicatedIpInPoolCommand.d.ts +16 -0
- package/dist-types/commands/PutDedicatedIpWarmupAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutDeliverabilityDashboardOptionCommand.d.ts +16 -0
- package/dist-types/commands/PutEmailIdentityDkimAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutEmailIdentityFeedbackAttributesCommand.d.ts +16 -0
- package/dist-types/commands/PutEmailIdentityMailFromAttributesCommand.d.ts +16 -0
- package/dist-types/commands/SendEmailCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +16 -0
- package/dist-types/models/PinpointEmailServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +174 -0
- package/dist-types/pagination/GetDedicatedIpsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConfigurationSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDedicatedIpPoolsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeliverabilityTestReportsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDomainDeliverabilityCampaignsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEmailIdentitiesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { GetDedicatedIpsCommandInput, GetDedicatedIpsCommandOutput } from "../commands/GetDedicatedIpsCommand";
|
|
3
3
|
import { PinpointEmailPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateGetDedicatedIps(config: PinpointEmailPaginationConfiguration, input: GetDedicatedIpsCommandInput, ...additionalArguments: any): Paginator<GetDedicatedIpsCommandOutput>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { PinpointEmailClient } from "../PinpointEmailClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface PinpointEmailPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: PinpointEmailClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListConfigurationSetsCommandInput, ListConfigurationSetsCommandOutput } from "../commands/ListConfigurationSetsCommand";
|
|
3
3
|
import { PinpointEmailPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListConfigurationSets(config: PinpointEmailPaginationConfiguration, input: ListConfigurationSetsCommandInput, ...additionalArguments: any): Paginator<ListConfigurationSetsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDedicatedIpPoolsCommandInput, ListDedicatedIpPoolsCommandOutput } from "../commands/ListDedicatedIpPoolsCommand";
|
|
3
3
|
import { PinpointEmailPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDedicatedIpPools(config: PinpointEmailPaginationConfiguration, input: ListDedicatedIpPoolsCommandInput, ...additionalArguments: any): Paginator<ListDedicatedIpPoolsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDeliverabilityTestReportsCommandInput, ListDeliverabilityTestReportsCommandOutput } from "../commands/ListDeliverabilityTestReportsCommand";
|
|
3
3
|
import { PinpointEmailPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDeliverabilityTestReports(config: PinpointEmailPaginationConfiguration, input: ListDeliverabilityTestReportsCommandInput, ...additionalArguments: any): Paginator<ListDeliverabilityTestReportsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDomainDeliverabilityCampaignsCommandInput, ListDomainDeliverabilityCampaignsCommandOutput } from "../commands/ListDomainDeliverabilityCampaignsCommand";
|
|
3
3
|
import { PinpointEmailPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDomainDeliverabilityCampaigns(config: PinpointEmailPaginationConfiguration, input: ListDomainDeliverabilityCampaignsCommandInput, ...additionalArguments: any): Paginator<ListDomainDeliverabilityCampaignsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListEmailIdentitiesCommandInput, ListEmailIdentitiesCommandOutput } from "../commands/ListEmailIdentitiesCommand";
|
|
3
3
|
import { PinpointEmailPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListEmailIdentities(config: PinpointEmailPaginationConfiguration, input: ListEmailIdentitiesCommandInput, ...additionalArguments: any): Paginator<ListEmailIdentitiesCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pinpoint-email",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pinpoint Email Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|