@aws-sdk/client-resource-explorer-2 3.890.0 → 3.891.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/dist-types/commands/AssociateDefaultViewCommand.d.ts +2 -0
- package/dist-types/commands/BatchGetViewCommand.d.ts +2 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +2 -0
- package/dist-types/commands/CreateViewCommand.d.ts +2 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +2 -0
- package/dist-types/commands/DeleteViewCommand.d.ts +2 -0
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +2 -0
- package/dist-types/commands/GetAccountLevelServiceConfigurationCommand.d.ts +2 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +2 -0
- package/dist-types/commands/GetIndexCommand.d.ts +2 -0
- package/dist-types/commands/GetManagedViewCommand.d.ts +2 -0
- package/dist-types/commands/GetViewCommand.d.ts +2 -0
- package/dist-types/commands/ListIndexesCommand.d.ts +2 -0
- package/dist-types/commands/ListIndexesForMembersCommand.d.ts +2 -0
- package/dist-types/commands/ListManagedViewsCommand.d.ts +2 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +2 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/ListViewsCommand.d.ts +2 -0
- package/dist-types/commands/SearchCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +2 -0
- package/dist-types/commands/UpdateViewCommand.d.ts +2 -0
- package/package.json +10 -10
|
@@ -39,6 +39,8 @@ declare const AssociateDefaultViewCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { ResourceExplorer2Client, AssociateDefaultViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
41
41
|
* // const { ResourceExplorer2Client, AssociateDefaultViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
42
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
43
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
42
44
|
* const client = new ResourceExplorer2Client(config);
|
|
43
45
|
* const input = { // AssociateDefaultViewInput
|
|
44
46
|
* ViewArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const BatchGetViewCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceExplorer2Client, BatchGetViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
35
35
|
* // const { ResourceExplorer2Client, BatchGetViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
36
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
37
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
36
38
|
* const client = new ResourceExplorer2Client(config);
|
|
37
39
|
* const input = { // BatchGetViewInput
|
|
38
40
|
* ViewArns: [ // ViewArnList
|
|
@@ -83,6 +83,8 @@ declare const CreateIndexCommand_base: {
|
|
|
83
83
|
* ```javascript
|
|
84
84
|
* import { ResourceExplorer2Client, CreateIndexCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
85
85
|
* // const { ResourceExplorer2Client, CreateIndexCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
86
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
87
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
86
88
|
* const client = new ResourceExplorer2Client(config);
|
|
87
89
|
* const input = { // CreateIndexInput
|
|
88
90
|
* ClientToken: "STRING_VALUE",
|
|
@@ -40,6 +40,8 @@ declare const CreateViewCommand_base: {
|
|
|
40
40
|
* ```javascript
|
|
41
41
|
* import { ResourceExplorer2Client, CreateViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
42
42
|
* // const { ResourceExplorer2Client, CreateViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
43
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
44
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
43
45
|
* const client = new ResourceExplorer2Client(config);
|
|
44
46
|
* const input = { // CreateViewInput
|
|
45
47
|
* ClientToken: "STRING_VALUE",
|
|
@@ -44,6 +44,8 @@ declare const DeleteIndexCommand_base: {
|
|
|
44
44
|
* ```javascript
|
|
45
45
|
* import { ResourceExplorer2Client, DeleteIndexCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
46
46
|
* // const { ResourceExplorer2Client, DeleteIndexCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
47
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
48
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
47
49
|
* const client = new ResourceExplorer2Client(config);
|
|
48
50
|
* const input = { // DeleteIndexInput
|
|
49
51
|
* Arn: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const DeleteViewCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ResourceExplorer2Client, DeleteViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
38
38
|
* // const { ResourceExplorer2Client, DeleteViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
39
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
40
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
39
41
|
* const client = new ResourceExplorer2Client(config);
|
|
40
42
|
* const input = { // DeleteViewInput
|
|
41
43
|
* ViewArn: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const DisassociateDefaultViewCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ResourceExplorer2Client, DisassociateDefaultViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
39
39
|
* // const { ResourceExplorer2Client, DisassociateDefaultViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
40
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
41
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
40
42
|
* const client = new ResourceExplorer2Client(config);
|
|
41
43
|
* const input = {};
|
|
42
44
|
* const command = new DisassociateDefaultViewCommand(input);
|
|
@@ -35,6 +35,8 @@ declare const GetAccountLevelServiceConfigurationCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ResourceExplorer2Client, GetAccountLevelServiceConfigurationCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
37
37
|
* // const { ResourceExplorer2Client, GetAccountLevelServiceConfigurationCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
38
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
39
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
38
40
|
* const client = new ResourceExplorer2Client(config);
|
|
39
41
|
* const input = {};
|
|
40
42
|
* const command = new GetAccountLevelServiceConfigurationCommand(input);
|
|
@@ -34,6 +34,8 @@ declare const GetDefaultViewCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ResourceExplorer2Client, GetDefaultViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
36
36
|
* // const { ResourceExplorer2Client, GetDefaultViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
37
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
38
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
37
39
|
* const client = new ResourceExplorer2Client(config);
|
|
38
40
|
* const input = {};
|
|
39
41
|
* const command = new GetDefaultViewCommand(input);
|
|
@@ -34,6 +34,8 @@ declare const GetIndexCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ResourceExplorer2Client, GetIndexCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
36
36
|
* // const { ResourceExplorer2Client, GetIndexCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
37
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
38
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
37
39
|
* const client = new ResourceExplorer2Client(config);
|
|
38
40
|
* const input = {};
|
|
39
41
|
* const command = new GetIndexCommand(input);
|
|
@@ -33,6 +33,8 @@ declare const GetManagedViewCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceExplorer2Client, GetManagedViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
35
35
|
* // const { ResourceExplorer2Client, GetManagedViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
36
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
37
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
36
38
|
* const client = new ResourceExplorer2Client(config);
|
|
37
39
|
* const input = { // GetManagedViewInput
|
|
38
40
|
* ManagedViewArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetViewCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceExplorer2Client, GetViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
35
35
|
* // const { ResourceExplorer2Client, GetViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
36
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
37
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
36
38
|
* const client = new ResourceExplorer2Client(config);
|
|
37
39
|
* const input = { // GetViewInput
|
|
38
40
|
* ViewArn: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const ListIndexesCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ResourceExplorer2Client, ListIndexesCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
36
36
|
* // const { ResourceExplorer2Client, ListIndexesCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
37
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
38
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
37
39
|
* const client = new ResourceExplorer2Client(config);
|
|
38
40
|
* const input = { // ListIndexesInput
|
|
39
41
|
* Type: "STRING_VALUE",
|
|
@@ -36,6 +36,8 @@ declare const ListIndexesForMembersCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ResourceExplorer2Client, ListIndexesForMembersCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
38
38
|
* // const { ResourceExplorer2Client, ListIndexesForMembersCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
39
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
40
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
39
41
|
* const client = new ResourceExplorer2Client(config);
|
|
40
42
|
* const input = { // ListIndexesForMembersInput
|
|
41
43
|
* AccountIdList: [ // AccountIdList // required
|
|
@@ -35,6 +35,8 @@ declare const ListManagedViewsCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ResourceExplorer2Client, ListManagedViewsCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
37
37
|
* // const { ResourceExplorer2Client, ListManagedViewsCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
38
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
39
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
38
40
|
* const client = new ResourceExplorer2Client(config);
|
|
39
41
|
* const input = { // ListManagedViewsInput
|
|
40
42
|
* MaxResults: Number("int"),
|
|
@@ -35,6 +35,8 @@ declare const ListResourcesCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ResourceExplorer2Client, ListResourcesCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
37
37
|
* // const { ResourceExplorer2Client, ListResourcesCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
38
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
39
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
38
40
|
* const client = new ResourceExplorer2Client(config);
|
|
39
41
|
* const input = { // ListResourcesInput
|
|
40
42
|
* Filters: { // SearchFilter
|
|
@@ -33,6 +33,8 @@ declare const ListSupportedResourceTypesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceExplorer2Client, ListSupportedResourceTypesCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
35
35
|
* // const { ResourceExplorer2Client, ListSupportedResourceTypesCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
36
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
37
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
36
38
|
* const client = new ResourceExplorer2Client(config);
|
|
37
39
|
* const input = { // ListSupportedResourceTypesInput
|
|
38
40
|
* NextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceExplorer2Client, ListTagsForResourceCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
35
35
|
* // const { ResourceExplorer2Client, ListTagsForResourceCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
36
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
37
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
36
38
|
* const client = new ResourceExplorer2Client(config);
|
|
37
39
|
* const input = { // ListTagsForResourceInput
|
|
38
40
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -42,6 +42,8 @@ declare const ListViewsCommand_base: {
|
|
|
42
42
|
* ```javascript
|
|
43
43
|
* import { ResourceExplorer2Client, ListViewsCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
44
44
|
* // const { ResourceExplorer2Client, ListViewsCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
45
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
46
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
45
47
|
* const client = new ResourceExplorer2Client(config);
|
|
46
48
|
* const input = { // ListViewsInput
|
|
47
49
|
* NextToken: "STRING_VALUE",
|
|
@@ -45,6 +45,8 @@ declare const SearchCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { ResourceExplorer2Client, SearchCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
47
47
|
* // const { ResourceExplorer2Client, SearchCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
48
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
49
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
48
50
|
* const client = new ResourceExplorer2Client(config);
|
|
49
51
|
* const input = { // SearchInput
|
|
50
52
|
* QueryString: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceExplorer2Client, TagResourceCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
35
35
|
* // const { ResourceExplorer2Client, TagResourceCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
36
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
37
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
36
38
|
* const client = new ResourceExplorer2Client(config);
|
|
37
39
|
* const input = { // TagResourceInput
|
|
38
40
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ResourceExplorer2Client, UntagResourceCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
35
35
|
* // const { ResourceExplorer2Client, UntagResourceCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
36
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
37
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
36
38
|
* const client = new ResourceExplorer2Client(config);
|
|
37
39
|
* const input = { // UntagResourceInput
|
|
38
40
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -89,6 +89,8 @@ declare const UpdateIndexTypeCommand_base: {
|
|
|
89
89
|
* ```javascript
|
|
90
90
|
* import { ResourceExplorer2Client, UpdateIndexTypeCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
91
91
|
* // const { ResourceExplorer2Client, UpdateIndexTypeCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
92
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
93
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
92
94
|
* const client = new ResourceExplorer2Client(config);
|
|
93
95
|
* const input = { // UpdateIndexTypeInput
|
|
94
96
|
* Arn: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const UpdateViewCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ResourceExplorer2Client, UpdateViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
36
36
|
* // const { ResourceExplorer2Client, UpdateViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
37
|
+
* // import type { ResourceExplorer2ClientConfig } from "@aws-sdk/client-resource-explorer-2";
|
|
38
|
+
* const config = {}; // type is ResourceExplorer2ClientConfig
|
|
37
39
|
* const client = new ResourceExplorer2Client(config);
|
|
38
40
|
* const input = { // UpdateViewInput
|
|
39
41
|
* ViewArn: "STRING_VALUE", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-explorer-2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Explorer 2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.891.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-resource-explorer-2",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.890.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.891.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.891.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.891.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.891.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.891.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.891.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.891.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
40
|
"@smithy/middleware-endpoint": "^4.2.2",
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.3",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^4.1.2",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|