@aws-sdk/client-codeguru-reviewer 3.490.0 → 3.495.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.
Files changed (35) hide show
  1. package/dist-cjs/CodeGuruReviewer.js +1 -39
  2. package/dist-cjs/CodeGuruReviewerClient.js +1 -43
  3. package/dist-cjs/commands/AssociateRepositoryCommand.js +1 -28
  4. package/dist-cjs/commands/CreateCodeReviewCommand.js +1 -28
  5. package/dist-cjs/commands/DescribeCodeReviewCommand.js +1 -28
  6. package/dist-cjs/commands/DescribeRecommendationFeedbackCommand.js +1 -28
  7. package/dist-cjs/commands/DescribeRepositoryAssociationCommand.js +1 -28
  8. package/dist-cjs/commands/DisassociateRepositoryCommand.js +1 -28
  9. package/dist-cjs/commands/ListCodeReviewsCommand.js +1 -28
  10. package/dist-cjs/commands/ListRecommendationFeedbackCommand.js +1 -28
  11. package/dist-cjs/commands/ListRecommendationsCommand.js +1 -28
  12. package/dist-cjs/commands/ListRepositoryAssociationsCommand.js +1 -28
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  14. package/dist-cjs/commands/PutRecommendationFeedbackCommand.js +1 -28
  15. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  16. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  17. package/dist-cjs/commands/index.js +1 -17
  18. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  19. package/dist-cjs/extensionConfiguration.js +1 -2
  20. package/dist-cjs/index.js +1838 -12
  21. package/dist-cjs/models/CodeGuruReviewerServiceException.js +1 -12
  22. package/dist-cjs/models/index.js +1 -4
  23. package/dist-cjs/models/models_0.js +1 -168
  24. package/dist-cjs/pagination/Interfaces.js +1 -2
  25. package/dist-cjs/pagination/ListCodeReviewsPaginator.js +1 -7
  26. package/dist-cjs/pagination/ListRecommendationFeedbackPaginator.js +1 -7
  27. package/dist-cjs/pagination/ListRecommendationsPaginator.js +1 -7
  28. package/dist-cjs/pagination/ListRepositoryAssociationsPaginator.js +1 -7
  29. package/dist-cjs/pagination/index.js +1 -8
  30. package/dist-cjs/protocols/Aws_restJson1.js +1 -1077
  31. package/dist-cjs/runtimeExtensions.js +1 -22
  32. package/dist-cjs/waiters/index.js +1 -5
  33. package/dist-cjs/waiters/waitForCodeReviewCompleted.js +1 -54
  34. package/dist-cjs/waiters/waitForRepositoryAssociationSucceeded.js +1 -54
  35. package/package.json +41 -41
@@ -1,22 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.resolveRuntimeExtensions = void 0;
4
- const region_config_resolver_1 = require("@aws-sdk/region-config-resolver");
5
- const protocol_http_1 = require("@smithy/protocol-http");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- const asPartial = (t) => t;
8
- const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
9
- const extensionConfiguration = {
10
- ...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)),
11
- ...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)),
12
- ...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
13
- };
14
- extensions.forEach((extension) => extension.configure(extensionConfiguration));
15
- return {
16
- ...runtimeConfig,
17
- ...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
18
- ...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration),
19
- ...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
20
- };
21
- };
22
- exports.resolveRuntimeExtensions = resolveRuntimeExtensions;
1
+ module.exports = require("./index.js");
@@ -1,5 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./waitForCodeReviewCompleted"), exports);
5
- tslib_1.__exportStar(require("./waitForRepositoryAssociationSucceeded"), exports);
1
+ module.exports = require("../index.js");
@@ -1,54 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.waitUntilCodeReviewCompleted = exports.waitForCodeReviewCompleted = void 0;
4
- const util_waiter_1 = require("@smithy/util-waiter");
5
- const DescribeCodeReviewCommand_1 = require("../commands/DescribeCodeReviewCommand");
6
- const checkState = async (client, input) => {
7
- let reason;
8
- try {
9
- const result = await client.send(new DescribeCodeReviewCommand_1.DescribeCodeReviewCommand(input));
10
- reason = result;
11
- try {
12
- const returnComparator = () => {
13
- return result.CodeReview.State;
14
- };
15
- if (returnComparator() === "Completed") {
16
- return { state: util_waiter_1.WaiterState.SUCCESS, reason };
17
- }
18
- }
19
- catch (e) { }
20
- try {
21
- const returnComparator = () => {
22
- return result.CodeReview.State;
23
- };
24
- if (returnComparator() === "Failed") {
25
- return { state: util_waiter_1.WaiterState.FAILURE, reason };
26
- }
27
- }
28
- catch (e) { }
29
- try {
30
- const returnComparator = () => {
31
- return result.CodeReview.State;
32
- };
33
- if (returnComparator() === "Pending") {
34
- return { state: util_waiter_1.WaiterState.RETRY, reason };
35
- }
36
- }
37
- catch (e) { }
38
- }
39
- catch (exception) {
40
- reason = exception;
41
- }
42
- return { state: util_waiter_1.WaiterState.RETRY, reason };
43
- };
44
- const waitForCodeReviewCompleted = async (params, input) => {
45
- const serviceDefaults = { minDelay: 10, maxDelay: 120 };
46
- return (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
47
- };
48
- exports.waitForCodeReviewCompleted = waitForCodeReviewCompleted;
49
- const waitUntilCodeReviewCompleted = async (params, input) => {
50
- const serviceDefaults = { minDelay: 10, maxDelay: 120 };
51
- const result = await (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
52
- return (0, util_waiter_1.checkExceptions)(result);
53
- };
54
- exports.waitUntilCodeReviewCompleted = waitUntilCodeReviewCompleted;
1
+ module.exports = require("../index.js");
@@ -1,54 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.waitUntilRepositoryAssociationSucceeded = exports.waitForRepositoryAssociationSucceeded = void 0;
4
- const util_waiter_1 = require("@smithy/util-waiter");
5
- const DescribeRepositoryAssociationCommand_1 = require("../commands/DescribeRepositoryAssociationCommand");
6
- const checkState = async (client, input) => {
7
- let reason;
8
- try {
9
- const result = await client.send(new DescribeRepositoryAssociationCommand_1.DescribeRepositoryAssociationCommand(input));
10
- reason = result;
11
- try {
12
- const returnComparator = () => {
13
- return result.RepositoryAssociation.State;
14
- };
15
- if (returnComparator() === "Associated") {
16
- return { state: util_waiter_1.WaiterState.SUCCESS, reason };
17
- }
18
- }
19
- catch (e) { }
20
- try {
21
- const returnComparator = () => {
22
- return result.RepositoryAssociation.State;
23
- };
24
- if (returnComparator() === "Failed") {
25
- return { state: util_waiter_1.WaiterState.FAILURE, reason };
26
- }
27
- }
28
- catch (e) { }
29
- try {
30
- const returnComparator = () => {
31
- return result.RepositoryAssociation.State;
32
- };
33
- if (returnComparator() === "Associating") {
34
- return { state: util_waiter_1.WaiterState.RETRY, reason };
35
- }
36
- }
37
- catch (e) { }
38
- }
39
- catch (exception) {
40
- reason = exception;
41
- }
42
- return { state: util_waiter_1.WaiterState.RETRY, reason };
43
- };
44
- const waitForRepositoryAssociationSucceeded = async (params, input) => {
45
- const serviceDefaults = { minDelay: 10, maxDelay: 120 };
46
- return (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
47
- };
48
- exports.waitForRepositoryAssociationSucceeded = waitForRepositoryAssociationSucceeded;
49
- const waitUntilRepositoryAssociationSucceeded = async (params, input) => {
50
- const serviceDefaults = { minDelay: 10, maxDelay: 120 };
51
- const result = await (0, util_waiter_1.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
52
- return (0, util_waiter_1.checkExceptions)(result);
53
- };
54
- exports.waitUntilRepositoryAssociationSucceeded = waitUntilRepositoryAssociationSucceeded;
1
+ module.exports = require("../index.js");
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codeguru-reviewer",
3
3
  "description": "AWS SDK for JavaScript Codeguru Reviewer Client for Node.js, Browser and React Native",
4
- "version": "3.490.0",
4
+ "version": "3.495.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
- "build:cjs": "tsc -p tsconfig.cjs.json",
7
+ "build:cjs": "node ../../scripts/compilation/inline client-codeguru-reviewer",
8
8
  "build:es": "tsc -p tsconfig.es.json",
9
9
  "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
10
10
  "build:types": "tsc -p tsconfig.types.json",
@@ -20,49 +20,49 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.490.0",
24
- "@aws-sdk/core": "3.490.0",
25
- "@aws-sdk/credential-provider-node": "3.490.0",
26
- "@aws-sdk/middleware-host-header": "3.489.0",
27
- "@aws-sdk/middleware-logger": "3.489.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.489.0",
29
- "@aws-sdk/middleware-signing": "3.489.0",
30
- "@aws-sdk/middleware-user-agent": "3.489.0",
31
- "@aws-sdk/region-config-resolver": "3.489.0",
32
- "@aws-sdk/types": "3.489.0",
33
- "@aws-sdk/util-endpoints": "3.489.0",
34
- "@aws-sdk/util-user-agent-browser": "3.489.0",
35
- "@aws-sdk/util-user-agent-node": "3.489.0",
36
- "@smithy/config-resolver": "^2.0.23",
37
- "@smithy/core": "^1.2.2",
38
- "@smithy/fetch-http-handler": "^2.3.2",
39
- "@smithy/hash-node": "^2.0.18",
40
- "@smithy/invalid-dependency": "^2.0.16",
41
- "@smithy/middleware-content-length": "^2.0.18",
42
- "@smithy/middleware-endpoint": "^2.3.0",
43
- "@smithy/middleware-retry": "^2.0.26",
44
- "@smithy/middleware-serde": "^2.0.16",
45
- "@smithy/middleware-stack": "^2.0.10",
46
- "@smithy/node-config-provider": "^2.1.9",
47
- "@smithy/node-http-handler": "^2.2.2",
48
- "@smithy/protocol-http": "^3.0.12",
49
- "@smithy/smithy-client": "^2.2.1",
50
- "@smithy/types": "^2.8.0",
51
- "@smithy/url-parser": "^2.0.16",
52
- "@smithy/util-base64": "^2.0.1",
53
- "@smithy/util-body-length-browser": "^2.0.1",
54
- "@smithy/util-body-length-node": "^2.1.0",
55
- "@smithy/util-defaults-mode-browser": "^2.0.24",
56
- "@smithy/util-defaults-mode-node": "^2.0.32",
57
- "@smithy/util-endpoints": "^1.0.8",
58
- "@smithy/util-retry": "^2.0.9",
59
- "@smithy/util-utf8": "^2.0.2",
60
- "@smithy/util-waiter": "^2.0.16",
23
+ "@aws-sdk/client-sts": "3.495.0",
24
+ "@aws-sdk/core": "3.495.0",
25
+ "@aws-sdk/credential-provider-node": "3.495.0",
26
+ "@aws-sdk/middleware-host-header": "3.495.0",
27
+ "@aws-sdk/middleware-logger": "3.495.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.495.0",
29
+ "@aws-sdk/middleware-signing": "3.495.0",
30
+ "@aws-sdk/middleware-user-agent": "3.495.0",
31
+ "@aws-sdk/region-config-resolver": "3.495.0",
32
+ "@aws-sdk/types": "3.495.0",
33
+ "@aws-sdk/util-endpoints": "3.495.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.495.0",
35
+ "@aws-sdk/util-user-agent-node": "3.495.0",
36
+ "@smithy/config-resolver": "^2.1.0",
37
+ "@smithy/core": "^1.3.0",
38
+ "@smithy/fetch-http-handler": "^2.4.0",
39
+ "@smithy/hash-node": "^2.1.0",
40
+ "@smithy/invalid-dependency": "^2.1.0",
41
+ "@smithy/middleware-content-length": "^2.1.0",
42
+ "@smithy/middleware-endpoint": "^2.4.0",
43
+ "@smithy/middleware-retry": "^2.1.0",
44
+ "@smithy/middleware-serde": "^2.1.0",
45
+ "@smithy/middleware-stack": "^2.1.0",
46
+ "@smithy/node-config-provider": "^2.2.0",
47
+ "@smithy/node-http-handler": "^2.3.0",
48
+ "@smithy/protocol-http": "^3.1.0",
49
+ "@smithy/smithy-client": "^2.3.0",
50
+ "@smithy/types": "^2.9.0",
51
+ "@smithy/url-parser": "^2.1.0",
52
+ "@smithy/util-base64": "^2.1.0",
53
+ "@smithy/util-body-length-browser": "^2.1.0",
54
+ "@smithy/util-body-length-node": "^2.2.0",
55
+ "@smithy/util-defaults-mode-browser": "^2.1.0",
56
+ "@smithy/util-defaults-mode-node": "^2.1.0",
57
+ "@smithy/util-endpoints": "^1.1.0",
58
+ "@smithy/util-retry": "^2.1.0",
59
+ "@smithy/util-utf8": "^2.1.0",
60
+ "@smithy/util-waiter": "^2.1.0",
61
61
  "tslib": "^2.5.0",
62
62
  "uuid": "^8.3.2"
63
63
  },
64
64
  "devDependencies": {
65
- "@smithy/service-client-documentation-generator": "^2.0.0",
65
+ "@smithy/service-client-documentation-generator": "^2.1.0",
66
66
  "@tsconfig/node14": "1.0.3",
67
67
  "@types/node": "^14.14.31",
68
68
  "@types/uuid": "^8.3.0",