@aws-sdk/client-supplychain 3.806.0 → 3.808.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 +72 -0
- package/dist-cjs/index.js +585 -4
- package/dist-es/SupplyChain.js +18 -0
- package/dist-es/commands/CreateDataIntegrationFlowCommand.js +2 -1
- package/dist-es/commands/CreateDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/DeleteDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/GetDataIntegrationEventCommand.js +22 -0
- package/dist-es/commands/GetDataIntegrationFlowCommand.js +2 -1
- package/dist-es/commands/GetDataIntegrationFlowExecutionCommand.js +22 -0
- package/dist-es/commands/GetDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/ListDataIntegrationEventsCommand.js +22 -0
- package/dist-es/commands/ListDataIntegrationFlowExecutionsCommand.js +22 -0
- package/dist-es/commands/ListDataIntegrationFlowsCommand.js +2 -1
- package/dist-es/commands/ListDataLakeNamespacesCommand.js +22 -0
- package/dist-es/commands/UpdateDataIntegrationFlowCommand.js +2 -1
- package/dist-es/commands/UpdateDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +71 -0
- package/dist-es/pagination/ListDataIntegrationEventsPaginator.js +4 -0
- package/dist-es/pagination/ListDataIntegrationFlowExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListDataLakeNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +304 -0
- package/dist-types/SupplyChain.d.ts +63 -0
- package/dist-types/SupplyChainClient.d.ts +11 -2
- package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +38 -1
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +89 -7
- package/dist-types/commands/CreateDataLakeNamespaceCommand.d.ts +133 -0
- package/dist-types/commands/DeleteDataLakeNamespaceCommand.d.ts +112 -0
- package/dist-types/commands/GetDataIntegrationEventCommand.d.ts +137 -0
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +22 -0
- package/dist-types/commands/GetDataIntegrationFlowExecutionCommand.d.ts +177 -0
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +43 -2
- package/dist-types/commands/GetDataLakeNamespaceCommand.d.ts +146 -0
- package/dist-types/commands/ListDataIntegrationEventsCommand.d.ts +143 -0
- package/dist-types/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +152 -0
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +38 -1
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +43 -2
- package/dist-types/commands/ListDataLakeNamespacesCommand.d.ts +161 -0
- package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +29 -2
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +76 -2
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +43 -2
- package/dist-types/commands/UpdateDataLakeNamespaceCommand.d.ts +126 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +938 -34
- package/dist-types/pagination/ListDataIntegrationEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataLakeNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/SupplyChain.d.ts +159 -0
- package/dist-types/ts3.4/SupplyChainClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationEventCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationFlowExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationEventsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataLakeNamespacesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +237 -6
- package/dist-types/ts3.4/pagination/ListDataIntegrationEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataLakeNamespacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-supplychain",
|
|
3
3
|
"description": "AWS SDK for JavaScript Supplychain Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.808.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-supplychain",
|
|
@@ -20,39 +20,39 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.808.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.808.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.804.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.804.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.804.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.808.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.808.0",
|
|
30
30
|
"@aws-sdk/types": "3.804.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.808.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.804.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.1.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.808.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.2",
|
|
35
35
|
"@smithy/core": "^3.3.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|
|
37
37
|
"@smithy/hash-node": "^4.0.2",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.2",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.2",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.4",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.5",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.3",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.2",
|
|
44
|
-
"@smithy/node-config-provider": "^4.1.
|
|
44
|
+
"@smithy/node-config-provider": "^4.1.1",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.4",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.0",
|
|
47
|
-
"@smithy/smithy-client": "^4.2.
|
|
47
|
+
"@smithy/smithy-client": "^4.2.4",
|
|
48
48
|
"@smithy/types": "^4.2.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.2",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.12",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.12",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.4",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.2",
|
|
57
57
|
"@smithy/util-retry": "^4.0.3",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|