@aws-sdk/client-marketplace-commerce-analytics 3.687.0 → 3.691.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.
|
@@ -176,7 +176,7 @@ export interface GenerateDataSetRequest {
|
|
|
176
176
|
* If no prefix is provided, the data set will be published to the S3 bucket root.
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
destinationS3Prefix?: string;
|
|
179
|
+
destinationS3Prefix?: string | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an
|
|
182
182
|
* error has occurred.
|
|
@@ -190,7 +190,7 @@ export interface GenerateDataSetRequest {
|
|
|
190
190
|
* information from other systems.
|
|
191
191
|
* @public
|
|
192
192
|
*/
|
|
193
|
-
customerDefinedValues?: Record<string, string
|
|
193
|
+
customerDefinedValues?: Record<string, string> | undefined;
|
|
194
194
|
}
|
|
195
195
|
/**
|
|
196
196
|
* Container for the result of the GenerateDataSet operation.
|
|
@@ -202,7 +202,7 @@ export interface GenerateDataSetResult {
|
|
|
202
202
|
* used to correlate a request with notifications from the SNS topic.
|
|
203
203
|
* @public
|
|
204
204
|
*/
|
|
205
|
-
dataSetRequestId?: string;
|
|
205
|
+
dataSetRequestId?: string | undefined;
|
|
206
206
|
}
|
|
207
207
|
/**
|
|
208
208
|
* This exception is thrown when an internal service error occurs.
|
|
@@ -275,7 +275,7 @@ export interface StartSupportDataExportRequest {
|
|
|
275
275
|
* If no prefix is provided, the data set will be published to the S3 bucket root.
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
destinationS3Prefix?: string;
|
|
278
|
+
destinationS3Prefix?: string | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <i>This target has been deprecated.</i> Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an
|
|
281
281
|
* error has occurred.
|
|
@@ -287,7 +287,7 @@ export interface StartSupportDataExportRequest {
|
|
|
287
287
|
* Amazon SNS notification message and the data set metadata file.
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
customerDefinedValues?: Record<string, string
|
|
290
|
+
customerDefinedValues?: Record<string, string> | undefined;
|
|
291
291
|
}
|
|
292
292
|
/**
|
|
293
293
|
* <i>This target has been deprecated.</i> Container for the result of the StartSupportDataExport operation.
|
|
@@ -301,5 +301,5 @@ export interface StartSupportDataExportResult {
|
|
|
301
301
|
* used to correlate a request with notifications from the SNS topic.
|
|
302
302
|
* @public
|
|
303
303
|
*/
|
|
304
|
-
dataSetRequestId?: string;
|
|
304
|
+
dataSetRequestId?: string | undefined;
|
|
305
305
|
}
|
|
@@ -33,12 +33,12 @@ export interface GenerateDataSetRequest {
|
|
|
33
33
|
dataSetPublicationDate: Date | undefined;
|
|
34
34
|
roleNameArn: string | undefined;
|
|
35
35
|
destinationS3BucketName: string | undefined;
|
|
36
|
-
destinationS3Prefix?: string;
|
|
36
|
+
destinationS3Prefix?: string | undefined;
|
|
37
37
|
snsTopicArn: string | undefined;
|
|
38
|
-
customerDefinedValues?: Record<string, string
|
|
38
|
+
customerDefinedValues?: Record<string, string> | undefined;
|
|
39
39
|
}
|
|
40
40
|
export interface GenerateDataSetResult {
|
|
41
|
-
dataSetRequestId?: string;
|
|
41
|
+
dataSetRequestId?: string | undefined;
|
|
42
42
|
}
|
|
43
43
|
export declare class MarketplaceCommerceAnalyticsException extends __BaseException {
|
|
44
44
|
readonly name: "MarketplaceCommerceAnalyticsException";
|
|
@@ -61,10 +61,10 @@ export interface StartSupportDataExportRequest {
|
|
|
61
61
|
fromDate: Date | undefined;
|
|
62
62
|
roleNameArn: string | undefined;
|
|
63
63
|
destinationS3BucketName: string | undefined;
|
|
64
|
-
destinationS3Prefix?: string;
|
|
64
|
+
destinationS3Prefix?: string | undefined;
|
|
65
65
|
snsTopicArn: string | undefined;
|
|
66
|
-
customerDefinedValues?: Record<string, string
|
|
66
|
+
customerDefinedValues?: Record<string, string> | undefined;
|
|
67
67
|
}
|
|
68
68
|
export interface StartSupportDataExportResult {
|
|
69
|
-
dataSetRequestId?: string;
|
|
69
|
+
dataSetRequestId?: string | undefined;
|
|
70
70
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-commerce-analytics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Commerce Analytics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-marketplace-commerce-analytics",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|