@aws-sdk/client-dataexchange 3.445.0 → 3.450.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/README.md +1 -1
- package/dist-types/commands/CreateDataSetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataSetCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataSetCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -177,7 +177,7 @@ try {
|
|
|
177
177
|
const data = await client.send(command);
|
|
178
178
|
// process data.
|
|
179
179
|
} catch (error) {
|
|
180
|
-
const { requestId, cfId, extendedRequestId } = error
|
|
180
|
+
const { requestId, cfId, extendedRequestId } = error.$metadata;
|
|
181
181
|
console.log({ requestId, cfId, extendedRequestId });
|
|
182
182
|
/**
|
|
183
183
|
* The keys within exceptions are also parsed.
|
|
@@ -49,7 +49,7 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met
|
|
|
49
49
|
* // Name: "STRING_VALUE",
|
|
50
50
|
* // Origin: "STRING_VALUE",
|
|
51
51
|
* // OriginDetails: { // OriginDetails
|
|
52
|
-
* // ProductId: "STRING_VALUE",
|
|
52
|
+
* // ProductId: "STRING_VALUE",
|
|
53
53
|
* // },
|
|
54
54
|
* // SourceId: "STRING_VALUE",
|
|
55
55
|
* // Tags: { // MapOf__string
|
|
@@ -44,7 +44,7 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB
|
|
|
44
44
|
* // Name: "STRING_VALUE",
|
|
45
45
|
* // Origin: "STRING_VALUE",
|
|
46
46
|
* // OriginDetails: { // OriginDetails
|
|
47
|
-
* // ProductId: "STRING_VALUE",
|
|
47
|
+
* // ProductId: "STRING_VALUE",
|
|
48
48
|
* // },
|
|
49
49
|
* // SourceId: "STRING_VALUE",
|
|
50
50
|
* // Tags: { // MapOf__string
|
|
@@ -48,7 +48,7 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
|
|
|
48
48
|
* // Name: "STRING_VALUE", // required
|
|
49
49
|
* // Origin: "STRING_VALUE", // required
|
|
50
50
|
* // OriginDetails: { // OriginDetails
|
|
51
|
-
* // ProductId: "STRING_VALUE",
|
|
51
|
+
* // ProductId: "STRING_VALUE",
|
|
52
52
|
* // },
|
|
53
53
|
* // SourceId: "STRING_VALUE",
|
|
54
54
|
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
@@ -46,7 +46,7 @@ export interface UpdateDataSetCommandOutput extends UpdateDataSetResponse, __Met
|
|
|
46
46
|
* // Name: "STRING_VALUE",
|
|
47
47
|
* // Origin: "STRING_VALUE",
|
|
48
48
|
* // OriginDetails: { // OriginDetails
|
|
49
|
-
* // ProductId: "STRING_VALUE",
|
|
49
|
+
* // ProductId: "STRING_VALUE",
|
|
50
50
|
* // },
|
|
51
51
|
* // SourceId: "STRING_VALUE",
|
|
52
52
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
@@ -225,7 +225,7 @@ export declare const Origin: {
|
|
|
225
225
|
};
|
|
226
226
|
export type Origin = (typeof Origin)[keyof typeof Origin];
|
|
227
227
|
export interface OriginDetails {
|
|
228
|
-
ProductId
|
|
228
|
+
ProductId?: string;
|
|
229
229
|
}
|
|
230
230
|
export interface CreateDataSetResponse {
|
|
231
231
|
Arn?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dataexchange",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dataexchange Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.450.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,19 +21,19 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.450.0",
|
|
25
25
|
"@aws-sdk/core": "3.445.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.450.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.449.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.449.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.449.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.449.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.449.0",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "3.433.0",
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/types": "3.449.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.449.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.449.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.449.0",
|
|
37
37
|
"@smithy/config-resolver": "^2.0.16",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.2.4",
|
|
39
39
|
"@smithy/hash-node": "^2.0.12",
|