@aws-sdk/client-appsync 3.37.0 → 3.38.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/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
12
+ * **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
13
+
14
+
15
+
16
+
17
+
6
18
  # [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
7
19
 
8
20
 
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./CreateApiCacheCommand"), exports);
5
+ tslib_1.__exportStar(require("./CreateApiKeyCommand"), exports);
6
+ tslib_1.__exportStar(require("./CreateDataSourceCommand"), exports);
7
+ tslib_1.__exportStar(require("./CreateFunctionCommand"), exports);
8
+ tslib_1.__exportStar(require("./CreateGraphqlApiCommand"), exports);
9
+ tslib_1.__exportStar(require("./CreateResolverCommand"), exports);
10
+ tslib_1.__exportStar(require("./CreateTypeCommand"), exports);
11
+ tslib_1.__exportStar(require("./DeleteApiCacheCommand"), exports);
12
+ tslib_1.__exportStar(require("./DeleteApiKeyCommand"), exports);
13
+ tslib_1.__exportStar(require("./DeleteDataSourceCommand"), exports);
14
+ tslib_1.__exportStar(require("./DeleteFunctionCommand"), exports);
15
+ tslib_1.__exportStar(require("./DeleteGraphqlApiCommand"), exports);
16
+ tslib_1.__exportStar(require("./DeleteResolverCommand"), exports);
17
+ tslib_1.__exportStar(require("./DeleteTypeCommand"), exports);
18
+ tslib_1.__exportStar(require("./FlushApiCacheCommand"), exports);
19
+ tslib_1.__exportStar(require("./GetApiCacheCommand"), exports);
20
+ tslib_1.__exportStar(require("./GetDataSourceCommand"), exports);
21
+ tslib_1.__exportStar(require("./GetFunctionCommand"), exports);
22
+ tslib_1.__exportStar(require("./GetGraphqlApiCommand"), exports);
23
+ tslib_1.__exportStar(require("./GetIntrospectionSchemaCommand"), exports);
24
+ tslib_1.__exportStar(require("./GetResolverCommand"), exports);
25
+ tslib_1.__exportStar(require("./GetSchemaCreationStatusCommand"), exports);
26
+ tslib_1.__exportStar(require("./GetTypeCommand"), exports);
27
+ tslib_1.__exportStar(require("./ListApiKeysCommand"), exports);
28
+ tslib_1.__exportStar(require("./ListDataSourcesCommand"), exports);
29
+ tslib_1.__exportStar(require("./ListFunctionsCommand"), exports);
30
+ tslib_1.__exportStar(require("./ListGraphqlApisCommand"), exports);
31
+ tslib_1.__exportStar(require("./ListResolversByFunctionCommand"), exports);
32
+ tslib_1.__exportStar(require("./ListResolversCommand"), exports);
33
+ tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
34
+ tslib_1.__exportStar(require("./ListTypesCommand"), exports);
35
+ tslib_1.__exportStar(require("./StartSchemaCreationCommand"), exports);
36
+ tslib_1.__exportStar(require("./TagResourceCommand"), exports);
37
+ tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
38
+ tslib_1.__exportStar(require("./UpdateApiCacheCommand"), exports);
39
+ tslib_1.__exportStar(require("./UpdateApiKeyCommand"), exports);
40
+ tslib_1.__exportStar(require("./UpdateDataSourceCommand"), exports);
41
+ tslib_1.__exportStar(require("./UpdateFunctionCommand"), exports);
42
+ tslib_1.__exportStar(require("./UpdateGraphqlApiCommand"), exports);
43
+ tslib_1.__exportStar(require("./UpdateResolverCommand"), exports);
44
+ tslib_1.__exportStar(require("./UpdateTypeCommand"), exports);
package/dist-cjs/index.js CHANGED
@@ -1,47 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./AppSyncClient"), exports);
5
4
  tslib_1.__exportStar(require("./AppSync"), exports);
6
- tslib_1.__exportStar(require("./commands/CreateApiCacheCommand"), exports);
7
- tslib_1.__exportStar(require("./commands/CreateApiKeyCommand"), exports);
8
- tslib_1.__exportStar(require("./commands/CreateDataSourceCommand"), exports);
9
- tslib_1.__exportStar(require("./commands/CreateFunctionCommand"), exports);
10
- tslib_1.__exportStar(require("./commands/CreateGraphqlApiCommand"), exports);
11
- tslib_1.__exportStar(require("./commands/CreateResolverCommand"), exports);
12
- tslib_1.__exportStar(require("./commands/CreateTypeCommand"), exports);
13
- tslib_1.__exportStar(require("./commands/DeleteApiCacheCommand"), exports);
14
- tslib_1.__exportStar(require("./commands/DeleteApiKeyCommand"), exports);
15
- tslib_1.__exportStar(require("./commands/DeleteDataSourceCommand"), exports);
16
- tslib_1.__exportStar(require("./commands/DeleteFunctionCommand"), exports);
17
- tslib_1.__exportStar(require("./commands/DeleteGraphqlApiCommand"), exports);
18
- tslib_1.__exportStar(require("./commands/DeleteResolverCommand"), exports);
19
- tslib_1.__exportStar(require("./commands/DeleteTypeCommand"), exports);
20
- tslib_1.__exportStar(require("./commands/FlushApiCacheCommand"), exports);
21
- tslib_1.__exportStar(require("./commands/GetApiCacheCommand"), exports);
22
- tslib_1.__exportStar(require("./commands/GetDataSourceCommand"), exports);
23
- tslib_1.__exportStar(require("./commands/GetFunctionCommand"), exports);
24
- tslib_1.__exportStar(require("./commands/GetGraphqlApiCommand"), exports);
25
- tslib_1.__exportStar(require("./commands/GetIntrospectionSchemaCommand"), exports);
26
- tslib_1.__exportStar(require("./commands/GetResolverCommand"), exports);
27
- tslib_1.__exportStar(require("./commands/GetSchemaCreationStatusCommand"), exports);
28
- tslib_1.__exportStar(require("./commands/GetTypeCommand"), exports);
29
- tslib_1.__exportStar(require("./commands/ListApiKeysCommand"), exports);
30
- tslib_1.__exportStar(require("./commands/ListDataSourcesCommand"), exports);
31
- tslib_1.__exportStar(require("./commands/ListFunctionsCommand"), exports);
32
- tslib_1.__exportStar(require("./commands/ListGraphqlApisCommand"), exports);
33
- tslib_1.__exportStar(require("./commands/ListResolversCommand"), exports);
34
- tslib_1.__exportStar(require("./commands/ListResolversByFunctionCommand"), exports);
35
- tslib_1.__exportStar(require("./commands/ListTagsForResourceCommand"), exports);
36
- tslib_1.__exportStar(require("./commands/ListTypesCommand"), exports);
37
- tslib_1.__exportStar(require("./commands/StartSchemaCreationCommand"), exports);
38
- tslib_1.__exportStar(require("./commands/TagResourceCommand"), exports);
39
- tslib_1.__exportStar(require("./commands/UntagResourceCommand"), exports);
40
- tslib_1.__exportStar(require("./commands/UpdateApiCacheCommand"), exports);
41
- tslib_1.__exportStar(require("./commands/UpdateApiKeyCommand"), exports);
42
- tslib_1.__exportStar(require("./commands/UpdateDataSourceCommand"), exports);
43
- tslib_1.__exportStar(require("./commands/UpdateFunctionCommand"), exports);
44
- tslib_1.__exportStar(require("./commands/UpdateGraphqlApiCommand"), exports);
45
- tslib_1.__exportStar(require("./commands/UpdateResolverCommand"), exports);
46
- tslib_1.__exportStar(require("./commands/UpdateTypeCommand"), exports);
47
- tslib_1.__exportStar(require("./models/index"), exports);
5
+ tslib_1.__exportStar(require("./AppSyncClient"), exports);
6
+ tslib_1.__exportStar(require("./commands"), exports);
7
+ tslib_1.__exportStar(require("./models"), exports);
@@ -0,0 +1,41 @@
1
+ export * from "./CreateApiCacheCommand";
2
+ export * from "./CreateApiKeyCommand";
3
+ export * from "./CreateDataSourceCommand";
4
+ export * from "./CreateFunctionCommand";
5
+ export * from "./CreateGraphqlApiCommand";
6
+ export * from "./CreateResolverCommand";
7
+ export * from "./CreateTypeCommand";
8
+ export * from "./DeleteApiCacheCommand";
9
+ export * from "./DeleteApiKeyCommand";
10
+ export * from "./DeleteDataSourceCommand";
11
+ export * from "./DeleteFunctionCommand";
12
+ export * from "./DeleteGraphqlApiCommand";
13
+ export * from "./DeleteResolverCommand";
14
+ export * from "./DeleteTypeCommand";
15
+ export * from "./FlushApiCacheCommand";
16
+ export * from "./GetApiCacheCommand";
17
+ export * from "./GetDataSourceCommand";
18
+ export * from "./GetFunctionCommand";
19
+ export * from "./GetGraphqlApiCommand";
20
+ export * from "./GetIntrospectionSchemaCommand";
21
+ export * from "./GetResolverCommand";
22
+ export * from "./GetSchemaCreationStatusCommand";
23
+ export * from "./GetTypeCommand";
24
+ export * from "./ListApiKeysCommand";
25
+ export * from "./ListDataSourcesCommand";
26
+ export * from "./ListFunctionsCommand";
27
+ export * from "./ListGraphqlApisCommand";
28
+ export * from "./ListResolversByFunctionCommand";
29
+ export * from "./ListResolversCommand";
30
+ export * from "./ListTagsForResourceCommand";
31
+ export * from "./ListTypesCommand";
32
+ export * from "./StartSchemaCreationCommand";
33
+ export * from "./TagResourceCommand";
34
+ export * from "./UntagResourceCommand";
35
+ export * from "./UpdateApiCacheCommand";
36
+ export * from "./UpdateApiKeyCommand";
37
+ export * from "./UpdateDataSourceCommand";
38
+ export * from "./UpdateFunctionCommand";
39
+ export * from "./UpdateGraphqlApiCommand";
40
+ export * from "./UpdateResolverCommand";
41
+ export * from "./UpdateTypeCommand";
package/dist-es/index.js CHANGED
@@ -1,44 +1,4 @@
1
- export * from "./AppSyncClient";
2
1
  export * from "./AppSync";
3
- export * from "./commands/CreateApiCacheCommand";
4
- export * from "./commands/CreateApiKeyCommand";
5
- export * from "./commands/CreateDataSourceCommand";
6
- export * from "./commands/CreateFunctionCommand";
7
- export * from "./commands/CreateGraphqlApiCommand";
8
- export * from "./commands/CreateResolverCommand";
9
- export * from "./commands/CreateTypeCommand";
10
- export * from "./commands/DeleteApiCacheCommand";
11
- export * from "./commands/DeleteApiKeyCommand";
12
- export * from "./commands/DeleteDataSourceCommand";
13
- export * from "./commands/DeleteFunctionCommand";
14
- export * from "./commands/DeleteGraphqlApiCommand";
15
- export * from "./commands/DeleteResolverCommand";
16
- export * from "./commands/DeleteTypeCommand";
17
- export * from "./commands/FlushApiCacheCommand";
18
- export * from "./commands/GetApiCacheCommand";
19
- export * from "./commands/GetDataSourceCommand";
20
- export * from "./commands/GetFunctionCommand";
21
- export * from "./commands/GetGraphqlApiCommand";
22
- export * from "./commands/GetIntrospectionSchemaCommand";
23
- export * from "./commands/GetResolverCommand";
24
- export * from "./commands/GetSchemaCreationStatusCommand";
25
- export * from "./commands/GetTypeCommand";
26
- export * from "./commands/ListApiKeysCommand";
27
- export * from "./commands/ListDataSourcesCommand";
28
- export * from "./commands/ListFunctionsCommand";
29
- export * from "./commands/ListGraphqlApisCommand";
30
- export * from "./commands/ListResolversCommand";
31
- export * from "./commands/ListResolversByFunctionCommand";
32
- export * from "./commands/ListTagsForResourceCommand";
33
- export * from "./commands/ListTypesCommand";
34
- export * from "./commands/StartSchemaCreationCommand";
35
- export * from "./commands/TagResourceCommand";
36
- export * from "./commands/UntagResourceCommand";
37
- export * from "./commands/UpdateApiCacheCommand";
38
- export * from "./commands/UpdateApiKeyCommand";
39
- export * from "./commands/UpdateDataSourceCommand";
40
- export * from "./commands/UpdateFunctionCommand";
41
- export * from "./commands/UpdateGraphqlApiCommand";
42
- export * from "./commands/UpdateResolverCommand";
43
- export * from "./commands/UpdateTypeCommand";
44
- export * from "./models/index";
2
+ export * from "./AppSyncClient";
3
+ export * from "./commands";
4
+ export * from "./models";
@@ -0,0 +1,41 @@
1
+ export * from "./CreateApiCacheCommand";
2
+ export * from "./CreateApiKeyCommand";
3
+ export * from "./CreateDataSourceCommand";
4
+ export * from "./CreateFunctionCommand";
5
+ export * from "./CreateGraphqlApiCommand";
6
+ export * from "./CreateResolverCommand";
7
+ export * from "./CreateTypeCommand";
8
+ export * from "./DeleteApiCacheCommand";
9
+ export * from "./DeleteApiKeyCommand";
10
+ export * from "./DeleteDataSourceCommand";
11
+ export * from "./DeleteFunctionCommand";
12
+ export * from "./DeleteGraphqlApiCommand";
13
+ export * from "./DeleteResolverCommand";
14
+ export * from "./DeleteTypeCommand";
15
+ export * from "./FlushApiCacheCommand";
16
+ export * from "./GetApiCacheCommand";
17
+ export * from "./GetDataSourceCommand";
18
+ export * from "./GetFunctionCommand";
19
+ export * from "./GetGraphqlApiCommand";
20
+ export * from "./GetIntrospectionSchemaCommand";
21
+ export * from "./GetResolverCommand";
22
+ export * from "./GetSchemaCreationStatusCommand";
23
+ export * from "./GetTypeCommand";
24
+ export * from "./ListApiKeysCommand";
25
+ export * from "./ListDataSourcesCommand";
26
+ export * from "./ListFunctionsCommand";
27
+ export * from "./ListGraphqlApisCommand";
28
+ export * from "./ListResolversByFunctionCommand";
29
+ export * from "./ListResolversCommand";
30
+ export * from "./ListTagsForResourceCommand";
31
+ export * from "./ListTypesCommand";
32
+ export * from "./StartSchemaCreationCommand";
33
+ export * from "./TagResourceCommand";
34
+ export * from "./UntagResourceCommand";
35
+ export * from "./UpdateApiCacheCommand";
36
+ export * from "./UpdateApiKeyCommand";
37
+ export * from "./UpdateDataSourceCommand";
38
+ export * from "./UpdateFunctionCommand";
39
+ export * from "./UpdateGraphqlApiCommand";
40
+ export * from "./UpdateResolverCommand";
41
+ export * from "./UpdateTypeCommand";
@@ -1,44 +1,4 @@
1
- export * from "./AppSyncClient";
2
1
  export * from "./AppSync";
3
- export * from "./commands/CreateApiCacheCommand";
4
- export * from "./commands/CreateApiKeyCommand";
5
- export * from "./commands/CreateDataSourceCommand";
6
- export * from "./commands/CreateFunctionCommand";
7
- export * from "./commands/CreateGraphqlApiCommand";
8
- export * from "./commands/CreateResolverCommand";
9
- export * from "./commands/CreateTypeCommand";
10
- export * from "./commands/DeleteApiCacheCommand";
11
- export * from "./commands/DeleteApiKeyCommand";
12
- export * from "./commands/DeleteDataSourceCommand";
13
- export * from "./commands/DeleteFunctionCommand";
14
- export * from "./commands/DeleteGraphqlApiCommand";
15
- export * from "./commands/DeleteResolverCommand";
16
- export * from "./commands/DeleteTypeCommand";
17
- export * from "./commands/FlushApiCacheCommand";
18
- export * from "./commands/GetApiCacheCommand";
19
- export * from "./commands/GetDataSourceCommand";
20
- export * from "./commands/GetFunctionCommand";
21
- export * from "./commands/GetGraphqlApiCommand";
22
- export * from "./commands/GetIntrospectionSchemaCommand";
23
- export * from "./commands/GetResolverCommand";
24
- export * from "./commands/GetSchemaCreationStatusCommand";
25
- export * from "./commands/GetTypeCommand";
26
- export * from "./commands/ListApiKeysCommand";
27
- export * from "./commands/ListDataSourcesCommand";
28
- export * from "./commands/ListFunctionsCommand";
29
- export * from "./commands/ListGraphqlApisCommand";
30
- export * from "./commands/ListResolversCommand";
31
- export * from "./commands/ListResolversByFunctionCommand";
32
- export * from "./commands/ListTagsForResourceCommand";
33
- export * from "./commands/ListTypesCommand";
34
- export * from "./commands/StartSchemaCreationCommand";
35
- export * from "./commands/TagResourceCommand";
36
- export * from "./commands/UntagResourceCommand";
37
- export * from "./commands/UpdateApiCacheCommand";
38
- export * from "./commands/UpdateApiKeyCommand";
39
- export * from "./commands/UpdateDataSourceCommand";
40
- export * from "./commands/UpdateFunctionCommand";
41
- export * from "./commands/UpdateGraphqlApiCommand";
42
- export * from "./commands/UpdateResolverCommand";
43
- export * from "./commands/UpdateTypeCommand";
44
- export * from "./models/index";
2
+ export * from "./AppSyncClient";
3
+ export * from "./commands";
4
+ export * from "./models";
@@ -0,0 +1,41 @@
1
+ export * from "./CreateApiCacheCommand";
2
+ export * from "./CreateApiKeyCommand";
3
+ export * from "./CreateDataSourceCommand";
4
+ export * from "./CreateFunctionCommand";
5
+ export * from "./CreateGraphqlApiCommand";
6
+ export * from "./CreateResolverCommand";
7
+ export * from "./CreateTypeCommand";
8
+ export * from "./DeleteApiCacheCommand";
9
+ export * from "./DeleteApiKeyCommand";
10
+ export * from "./DeleteDataSourceCommand";
11
+ export * from "./DeleteFunctionCommand";
12
+ export * from "./DeleteGraphqlApiCommand";
13
+ export * from "./DeleteResolverCommand";
14
+ export * from "./DeleteTypeCommand";
15
+ export * from "./FlushApiCacheCommand";
16
+ export * from "./GetApiCacheCommand";
17
+ export * from "./GetDataSourceCommand";
18
+ export * from "./GetFunctionCommand";
19
+ export * from "./GetGraphqlApiCommand";
20
+ export * from "./GetIntrospectionSchemaCommand";
21
+ export * from "./GetResolverCommand";
22
+ export * from "./GetSchemaCreationStatusCommand";
23
+ export * from "./GetTypeCommand";
24
+ export * from "./ListApiKeysCommand";
25
+ export * from "./ListDataSourcesCommand";
26
+ export * from "./ListFunctionsCommand";
27
+ export * from "./ListGraphqlApisCommand";
28
+ export * from "./ListResolversByFunctionCommand";
29
+ export * from "./ListResolversCommand";
30
+ export * from "./ListTagsForResourceCommand";
31
+ export * from "./ListTypesCommand";
32
+ export * from "./StartSchemaCreationCommand";
33
+ export * from "./TagResourceCommand";
34
+ export * from "./UntagResourceCommand";
35
+ export * from "./UpdateApiCacheCommand";
36
+ export * from "./UpdateApiKeyCommand";
37
+ export * from "./UpdateDataSourceCommand";
38
+ export * from "./UpdateFunctionCommand";
39
+ export * from "./UpdateGraphqlApiCommand";
40
+ export * from "./UpdateResolverCommand";
41
+ export * from "./UpdateTypeCommand";
@@ -1,44 +1,4 @@
1
- export * from "./AppSyncClient";
2
1
  export * from "./AppSync";
3
- export * from "./commands/CreateApiCacheCommand";
4
- export * from "./commands/CreateApiKeyCommand";
5
- export * from "./commands/CreateDataSourceCommand";
6
- export * from "./commands/CreateFunctionCommand";
7
- export * from "./commands/CreateGraphqlApiCommand";
8
- export * from "./commands/CreateResolverCommand";
9
- export * from "./commands/CreateTypeCommand";
10
- export * from "./commands/DeleteApiCacheCommand";
11
- export * from "./commands/DeleteApiKeyCommand";
12
- export * from "./commands/DeleteDataSourceCommand";
13
- export * from "./commands/DeleteFunctionCommand";
14
- export * from "./commands/DeleteGraphqlApiCommand";
15
- export * from "./commands/DeleteResolverCommand";
16
- export * from "./commands/DeleteTypeCommand";
17
- export * from "./commands/FlushApiCacheCommand";
18
- export * from "./commands/GetApiCacheCommand";
19
- export * from "./commands/GetDataSourceCommand";
20
- export * from "./commands/GetFunctionCommand";
21
- export * from "./commands/GetGraphqlApiCommand";
22
- export * from "./commands/GetIntrospectionSchemaCommand";
23
- export * from "./commands/GetResolverCommand";
24
- export * from "./commands/GetSchemaCreationStatusCommand";
25
- export * from "./commands/GetTypeCommand";
26
- export * from "./commands/ListApiKeysCommand";
27
- export * from "./commands/ListDataSourcesCommand";
28
- export * from "./commands/ListFunctionsCommand";
29
- export * from "./commands/ListGraphqlApisCommand";
30
- export * from "./commands/ListResolversCommand";
31
- export * from "./commands/ListResolversByFunctionCommand";
32
- export * from "./commands/ListTagsForResourceCommand";
33
- export * from "./commands/ListTypesCommand";
34
- export * from "./commands/StartSchemaCreationCommand";
35
- export * from "./commands/TagResourceCommand";
36
- export * from "./commands/UntagResourceCommand";
37
- export * from "./commands/UpdateApiCacheCommand";
38
- export * from "./commands/UpdateApiKeyCommand";
39
- export * from "./commands/UpdateDataSourceCommand";
40
- export * from "./commands/UpdateFunctionCommand";
41
- export * from "./commands/UpdateGraphqlApiCommand";
42
- export * from "./commands/UpdateResolverCommand";
43
- export * from "./commands/UpdateTypeCommand";
44
- export * from "./models/index";
2
+ export * from "./AppSyncClient";
3
+ export * from "./commands";
4
+ export * from "./models";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appsync",
3
3
  "description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
4
- "version": "3.37.0",
4
+ "version": "3.38.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,38 +21,38 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "^1.0.0",
23
23
  "@aws-crypto/sha256-js": "^1.0.0",
24
- "@aws-sdk/client-sts": "3.37.0",
25
- "@aws-sdk/config-resolver": "3.37.0",
26
- "@aws-sdk/credential-provider-node": "3.37.0",
27
- "@aws-sdk/fetch-http-handler": "3.37.0",
28
- "@aws-sdk/hash-node": "3.37.0",
29
- "@aws-sdk/invalid-dependency": "3.37.0",
30
- "@aws-sdk/middleware-content-length": "3.37.0",
31
- "@aws-sdk/middleware-host-header": "3.37.0",
32
- "@aws-sdk/middleware-logger": "3.37.0",
33
- "@aws-sdk/middleware-retry": "3.37.0",
34
- "@aws-sdk/middleware-serde": "3.37.0",
35
- "@aws-sdk/middleware-signing": "3.37.0",
36
- "@aws-sdk/middleware-stack": "3.37.0",
37
- "@aws-sdk/middleware-user-agent": "3.37.0",
38
- "@aws-sdk/node-config-provider": "3.37.0",
39
- "@aws-sdk/node-http-handler": "3.37.0",
40
- "@aws-sdk/protocol-http": "3.37.0",
41
- "@aws-sdk/smithy-client": "3.37.0",
42
- "@aws-sdk/types": "3.37.0",
43
- "@aws-sdk/url-parser": "3.37.0",
24
+ "@aws-sdk/client-sts": "3.38.0",
25
+ "@aws-sdk/config-resolver": "3.38.0",
26
+ "@aws-sdk/credential-provider-node": "3.38.0",
27
+ "@aws-sdk/fetch-http-handler": "3.38.0",
28
+ "@aws-sdk/hash-node": "3.38.0",
29
+ "@aws-sdk/invalid-dependency": "3.38.0",
30
+ "@aws-sdk/middleware-content-length": "3.38.0",
31
+ "@aws-sdk/middleware-host-header": "3.38.0",
32
+ "@aws-sdk/middleware-logger": "3.38.0",
33
+ "@aws-sdk/middleware-retry": "3.38.0",
34
+ "@aws-sdk/middleware-serde": "3.38.0",
35
+ "@aws-sdk/middleware-signing": "3.38.0",
36
+ "@aws-sdk/middleware-stack": "3.38.0",
37
+ "@aws-sdk/middleware-user-agent": "3.38.0",
38
+ "@aws-sdk/node-config-provider": "3.38.0",
39
+ "@aws-sdk/node-http-handler": "3.38.0",
40
+ "@aws-sdk/protocol-http": "3.38.0",
41
+ "@aws-sdk/smithy-client": "3.38.0",
42
+ "@aws-sdk/types": "3.38.0",
43
+ "@aws-sdk/url-parser": "3.38.0",
44
44
  "@aws-sdk/util-base64-browser": "3.37.0",
45
45
  "@aws-sdk/util-base64-node": "3.37.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.37.0",
47
47
  "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.37.0",
49
- "@aws-sdk/util-user-agent-node": "3.37.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.38.0",
49
+ "@aws-sdk/util-user-agent-node": "3.38.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.37.0",
51
51
  "@aws-sdk/util-utf8-node": "3.37.0",
52
52
  "tslib": "^2.3.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/client-documentation-generator": "3.37.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.38.0",
56
56
  "@types/node": "^12.7.5",
57
57
  "downlevel-dts": "0.7.0",
58
58
  "jest": "^26.1.0",