@aws-sdk/client-sesv2 3.431.0 → 3.433.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.
|
@@ -299,7 +299,7 @@ export interface BatchGetMetricDataQuery {
|
|
|
299
299
|
* <p>An object that contains mapping between <code>MetricDimensionName</code>
|
|
300
300
|
* and <code>MetricDimensionValue</code> to filter metrics by.</p>
|
|
301
301
|
*/
|
|
302
|
-
Dimensions?: Record<MetricDimensionName, string
|
|
302
|
+
Dimensions?: Partial<Record<MetricDimensionName, string>>;
|
|
303
303
|
/**
|
|
304
304
|
* @public
|
|
305
305
|
* <p>Represents the start date for the query interval.</p>
|
|
@@ -2512,7 +2512,7 @@ export interface MetricsDataSource {
|
|
|
2512
2512
|
* <code>MetricDimensionValue</code> to filter metrics by. Must contain a least 1
|
|
2513
2513
|
* dimension but no more than 3 unique ones.</p>
|
|
2514
2514
|
*/
|
|
2515
|
-
Dimensions: Record<MetricDimensionName, string[]
|
|
2515
|
+
Dimensions: Partial<Record<MetricDimensionName, string[]>> | undefined;
|
|
2516
2516
|
/**
|
|
2517
2517
|
* @public
|
|
2518
2518
|
* <p>The metrics namespace - e.g., <code>VDM</code>.</p>
|
|
@@ -5759,7 +5759,7 @@ export interface ListRecommendationsRequest {
|
|
|
5759
5759
|
* <code>STATUS</code> and <code>TYPE</code>
|
|
5760
5760
|
* </p>
|
|
5761
5761
|
*/
|
|
5762
|
-
Filter?: Record<ListRecommendationsFilterKey, string
|
|
5762
|
+
Filter?: Partial<Record<ListRecommendationsFilterKey, string>>;
|
|
5763
5763
|
/**
|
|
5764
5764
|
* @public
|
|
5765
5765
|
* <p>A token returned from a previous call to <code>ListRecommendations</code> to
|
|
@@ -80,7 +80,7 @@ export interface BatchGetMetricDataQuery {
|
|
|
80
80
|
Id: string | undefined;
|
|
81
81
|
Namespace: MetricNamespace | undefined;
|
|
82
82
|
Metric: Metric | undefined;
|
|
83
|
-
Dimensions?: Record<MetricDimensionName, string
|
|
83
|
+
Dimensions?: Partial<Record<MetricDimensionName, string>>;
|
|
84
84
|
StartDate: Date | undefined;
|
|
85
85
|
EndDate: Date | undefined;
|
|
86
86
|
}
|
|
@@ -578,7 +578,7 @@ export interface ExportMetric {
|
|
|
578
578
|
Aggregation?: MetricAggregation;
|
|
579
579
|
}
|
|
580
580
|
export interface MetricsDataSource {
|
|
581
|
-
Dimensions: Record<MetricDimensionName, string[]
|
|
581
|
+
Dimensions: Partial<Record<MetricDimensionName, string[]>> | undefined;
|
|
582
582
|
Namespace: MetricNamespace | undefined;
|
|
583
583
|
Metrics: ExportMetric[] | undefined;
|
|
584
584
|
StartDate: Date | undefined;
|
|
@@ -1236,7 +1236,7 @@ export declare const ListRecommendationsFilterKey: {
|
|
|
1236
1236
|
export type ListRecommendationsFilterKey =
|
|
1237
1237
|
(typeof ListRecommendationsFilterKey)[keyof typeof ListRecommendationsFilterKey];
|
|
1238
1238
|
export interface ListRecommendationsRequest {
|
|
1239
|
-
Filter?: Record<ListRecommendationsFilterKey, string
|
|
1239
|
+
Filter?: Partial<Record<ListRecommendationsFilterKey, string>>;
|
|
1240
1240
|
NextToken?: string;
|
|
1241
1241
|
PageSize?: number;
|
|
1242
1242
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sesv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sesv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.433.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.433.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.433.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.433.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.433.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.433.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
32
|
+
"@aws-sdk/types": "3.433.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.433.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.433.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.433.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.16",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.4",
|
|
38
|
+
"@smithy/hash-node": "^2.0.12",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.12",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.14",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.18",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.12",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.6",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.3",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.8",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.8",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.12",
|
|
49
|
+
"@smithy/types": "^2.4.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.12",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.16",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.21",
|
|
56
|
+
"@smithy/util-retry": "^2.0.5",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|