@aws-sdk/client-marketplace-commerce-analytics 3.378.0 → 3.382.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.
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
2
5
|
export interface ClientInputEndpointParameters {
|
|
3
6
|
region?: string | Provider<string>;
|
|
4
7
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export * from "./MarketplaceCommerceAnalyticsClient";
|
|
7
7
|
export * from "./MarketplaceCommerceAnalytics";
|
|
8
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
8
9
|
export * from "./commands";
|
|
9
10
|
export * from "./models";
|
|
10
11
|
export { MarketplaceCommerceAnalyticsServiceException } from "./models/MarketplaceCommerceAnalyticsServiceException";
|
|
@@ -41,6 +41,7 @@ export type DataSetType = (typeof DataSetType)[keyof typeof DataSetType];
|
|
|
41
41
|
*/
|
|
42
42
|
export interface GenerateDataSetRequest {
|
|
43
43
|
/**
|
|
44
|
+
* @public
|
|
44
45
|
* <p>The desired data set type.</p>
|
|
45
46
|
* <p>
|
|
46
47
|
* <ul>
|
|
@@ -149,6 +150,7 @@ export interface GenerateDataSetRequest {
|
|
|
149
150
|
*/
|
|
150
151
|
dataSetType: DataSetType | string | undefined;
|
|
151
152
|
/**
|
|
153
|
+
* @public
|
|
152
154
|
* The date a data set was published.
|
|
153
155
|
* For daily data sets, provide a date with day-level granularity for the desired day.
|
|
154
156
|
* For monthly data sets except those with prefix disbursed_amount, provide a date with month-level granularity for the desired month (the day value will be ignored).
|
|
@@ -156,15 +158,18 @@ export interface GenerateDataSetRequest {
|
|
|
156
158
|
*/
|
|
157
159
|
dataSetPublicationDate: Date | undefined;
|
|
158
160
|
/**
|
|
161
|
+
* @public
|
|
159
162
|
* The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided
|
|
160
163
|
* AWS services.
|
|
161
164
|
*/
|
|
162
165
|
roleNameArn: string | undefined;
|
|
163
166
|
/**
|
|
167
|
+
* @public
|
|
164
168
|
* The name (friendly name, not ARN) of the destination S3 bucket.
|
|
165
169
|
*/
|
|
166
170
|
destinationS3BucketName: string | undefined;
|
|
167
171
|
/**
|
|
172
|
+
* @public
|
|
168
173
|
* (Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems.
|
|
169
174
|
* For example, if given the bucket name "mybucket" and the prefix "myprefix/mydatasets", the output file
|
|
170
175
|
* "outputfile" would be published to "s3://mybucket/myprefix/mydatasets/outputfile".
|
|
@@ -173,11 +178,13 @@ export interface GenerateDataSetRequest {
|
|
|
173
178
|
*/
|
|
174
179
|
destinationS3Prefix?: string;
|
|
175
180
|
/**
|
|
181
|
+
* @public
|
|
176
182
|
* Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an
|
|
177
183
|
* error has occurred.
|
|
178
184
|
*/
|
|
179
185
|
snsTopicArn: string | undefined;
|
|
180
186
|
/**
|
|
187
|
+
* @public
|
|
181
188
|
* (Optional) Key-value pairs which will be returned, unmodified, in the
|
|
182
189
|
* Amazon SNS notification message and the data set metadata file. These
|
|
183
190
|
* key-value pairs can be used to correlated responses with tracking
|
|
@@ -191,6 +198,7 @@ export interface GenerateDataSetRequest {
|
|
|
191
198
|
*/
|
|
192
199
|
export interface GenerateDataSetResult {
|
|
193
200
|
/**
|
|
201
|
+
* @public
|
|
194
202
|
* A unique identifier representing a specific request to the GenerateDataSet operation. This identifier can be
|
|
195
203
|
* used to correlate a request with notifications from the SNS topic.
|
|
196
204
|
*/
|
|
@@ -218,6 +226,7 @@ export type SupportDataSetType = "customer_support_contacts_data" | "test_custom
|
|
|
218
226
|
*/
|
|
219
227
|
export interface StartSupportDataExportRequest {
|
|
220
228
|
/**
|
|
229
|
+
* @public
|
|
221
230
|
* <p>
|
|
222
231
|
* Specifies the data set type to be written to the output csv file. The data set types customer_support_contacts_data and
|
|
223
232
|
* test_customer_support_contacts_data both result in a csv file containing the following fields: Product Id, Product Code, Customer Guid,
|
|
@@ -233,19 +242,23 @@ export interface StartSupportDataExportRequest {
|
|
|
233
242
|
*/
|
|
234
243
|
dataSetType: SupportDataSetType | string | undefined;
|
|
235
244
|
/**
|
|
245
|
+
* @public
|
|
236
246
|
* The start date from which to retrieve the data set in UTC. This parameter only affects the customer_support_contacts_data data set type.
|
|
237
247
|
*/
|
|
238
248
|
fromDate: Date | undefined;
|
|
239
249
|
/**
|
|
250
|
+
* @public
|
|
240
251
|
* The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided
|
|
241
252
|
* AWS services.
|
|
242
253
|
*/
|
|
243
254
|
roleNameArn: string | undefined;
|
|
244
255
|
/**
|
|
256
|
+
* @public
|
|
245
257
|
* The name (friendly name, not ARN) of the destination S3 bucket.
|
|
246
258
|
*/
|
|
247
259
|
destinationS3BucketName: string | undefined;
|
|
248
260
|
/**
|
|
261
|
+
* @public
|
|
249
262
|
* (Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems.
|
|
250
263
|
* For example, if given the bucket name "mybucket" and the prefix "myprefix/mydatasets", the output file
|
|
251
264
|
* "outputfile" would be published to "s3://mybucket/myprefix/mydatasets/outputfile".
|
|
@@ -254,11 +267,13 @@ export interface StartSupportDataExportRequest {
|
|
|
254
267
|
*/
|
|
255
268
|
destinationS3Prefix?: string;
|
|
256
269
|
/**
|
|
270
|
+
* @public
|
|
257
271
|
* Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an
|
|
258
272
|
* error has occurred.
|
|
259
273
|
*/
|
|
260
274
|
snsTopicArn: string | undefined;
|
|
261
275
|
/**
|
|
276
|
+
* @public
|
|
262
277
|
* (Optional) Key-value pairs which will be returned, unmodified, in the
|
|
263
278
|
* Amazon SNS notification message and the data set metadata file.
|
|
264
279
|
*/
|
|
@@ -270,6 +285,7 @@ export interface StartSupportDataExportRequest {
|
|
|
270
285
|
*/
|
|
271
286
|
export interface StartSupportDataExportResult {
|
|
272
287
|
/**
|
|
288
|
+
* @public
|
|
273
289
|
* A unique identifier representing a specific request to the StartSupportDataExport operation. This identifier can be
|
|
274
290
|
* used to correlate a request with notifications from the SNS topic.
|
|
275
291
|
*/
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./MarketplaceCommerceAnalyticsClient";
|
|
2
2
|
export * from "./MarketplaceCommerceAnalytics";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
3
4
|
export * from "./commands";
|
|
4
5
|
export * from "./models";
|
|
5
6
|
export { MarketplaceCommerceAnalyticsServiceException } from "./models/MarketplaceCommerceAnalyticsServiceException";
|
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.382.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,15 +21,15 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|