@aws-sdk/client-codeguru-reviewer 3.928.0 → 3.929.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-cjs/index.js +826 -733
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/CodeGuruReviewerClient.js +2 -0
- package/dist-es/commands/AssociateRepositoryCommand.js +3 -9
- package/dist-es/commands/CreateCodeReviewCommand.js +3 -9
- package/dist-es/commands/DescribeCodeReviewCommand.js +3 -9
- package/dist-es/commands/DescribeRecommendationFeedbackCommand.js +3 -9
- package/dist-es/commands/DescribeRepositoryAssociationCommand.js +3 -9
- package/dist-es/commands/DisassociateRepositoryCommand.js +3 -9
- package/dist-es/commands/ListCodeReviewsCommand.js +3 -9
- package/dist-es/commands/ListRecommendationFeedbackCommand.js +3 -9
- package/dist-es/commands/ListRecommendationsCommand.js +3 -9
- package/dist-es/commands/ListRepositoryAssociationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutRecommendationFeedbackCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +797 -0
- package/dist-types/CodeGuruReviewerClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +95 -0
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +100 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -623
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -128
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -173
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput } from "./commands/AssociateRepositoryCommand";
|
|
11
11
|
import { CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput } from "./commands/CreateCodeReviewCommand";
|
|
@@ -155,6 +155,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
155
155
|
* Optional extensions
|
|
156
156
|
*/
|
|
157
157
|
extensions?: RuntimeExtension[];
|
|
158
|
+
/**
|
|
159
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
160
|
+
* may be overridden. A default will always be set by the client.
|
|
161
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
162
|
+
* the client.
|
|
163
|
+
* @alpha
|
|
164
|
+
*
|
|
165
|
+
*/
|
|
166
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
158
167
|
/**
|
|
159
168
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
160
169
|
*/
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeGuruReviewerHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
3
|
+
export declare var AssociateRepositoryRequest: StaticStructureSchema;
|
|
4
|
+
export declare var AssociateRepositoryResponse: StaticStructureSchema;
|
|
5
|
+
export declare var BranchDiffSourceCodeType: StaticStructureSchema;
|
|
6
|
+
export declare var CodeArtifacts: StaticStructureSchema;
|
|
7
|
+
export declare var CodeCommitRepository: StaticStructureSchema;
|
|
8
|
+
export declare var CodeReview: StaticStructureSchema;
|
|
9
|
+
export declare var CodeReviewSummary: StaticStructureSchema;
|
|
10
|
+
export declare var CodeReviewType: StaticStructureSchema;
|
|
11
|
+
export declare var CommitDiffSourceCodeType: StaticStructureSchema;
|
|
12
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
13
|
+
export declare var CreateCodeReviewRequest: StaticStructureSchema;
|
|
14
|
+
export declare var CreateCodeReviewResponse: StaticStructureSchema;
|
|
15
|
+
export declare var DescribeCodeReviewRequest: StaticStructureSchema;
|
|
16
|
+
export declare var DescribeCodeReviewResponse: StaticStructureSchema;
|
|
17
|
+
export declare var DescribeRecommendationFeedbackRequest: StaticStructureSchema;
|
|
18
|
+
export declare var DescribeRecommendationFeedbackResponse: StaticStructureSchema;
|
|
19
|
+
export declare var DescribeRepositoryAssociationRequest: StaticStructureSchema;
|
|
20
|
+
export declare var DescribeRepositoryAssociationResponse: StaticStructureSchema;
|
|
21
|
+
export declare var DisassociateRepositoryRequest: StaticStructureSchema;
|
|
22
|
+
export declare var DisassociateRepositoryResponse: StaticStructureSchema;
|
|
23
|
+
export declare var EventInfo: StaticStructureSchema;
|
|
24
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
25
|
+
export declare var KMSKeyDetails: StaticStructureSchema;
|
|
26
|
+
export declare var ListCodeReviewsRequest: StaticStructureSchema;
|
|
27
|
+
export declare var ListCodeReviewsResponse: StaticStructureSchema;
|
|
28
|
+
export declare var ListRecommendationFeedbackRequest: StaticStructureSchema;
|
|
29
|
+
export declare var ListRecommendationFeedbackResponse: StaticStructureSchema;
|
|
30
|
+
export declare var ListRecommendationsRequest: StaticStructureSchema;
|
|
31
|
+
export declare var ListRecommendationsResponse: StaticStructureSchema;
|
|
32
|
+
export declare var ListRepositoryAssociationsRequest: StaticStructureSchema;
|
|
33
|
+
export declare var ListRepositoryAssociationsResponse: StaticStructureSchema;
|
|
34
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
35
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
36
|
+
export declare var Metrics: StaticStructureSchema;
|
|
37
|
+
export declare var MetricsSummary: StaticStructureSchema;
|
|
38
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
39
|
+
export declare var PutRecommendationFeedbackRequest: StaticStructureSchema;
|
|
40
|
+
export declare var PutRecommendationFeedbackResponse: StaticStructureSchema;
|
|
41
|
+
export declare var RecommendationFeedback: StaticStructureSchema;
|
|
42
|
+
export declare var RecommendationFeedbackSummary: StaticStructureSchema;
|
|
43
|
+
export declare var RecommendationSummary: StaticStructureSchema;
|
|
44
|
+
export declare var Repository: StaticStructureSchema;
|
|
45
|
+
export declare var RepositoryAnalysis: StaticStructureSchema;
|
|
46
|
+
export declare var RepositoryAssociation: StaticStructureSchema;
|
|
47
|
+
export declare var RepositoryAssociationSummary: StaticStructureSchema;
|
|
48
|
+
export declare var RepositoryHeadSourceCodeType: StaticStructureSchema;
|
|
49
|
+
export declare var RequestMetadata: StaticStructureSchema;
|
|
50
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
51
|
+
export declare var RuleMetadata: StaticStructureSchema;
|
|
52
|
+
export declare var S3BucketRepository: StaticStructureSchema;
|
|
53
|
+
export declare var S3Repository: StaticStructureSchema;
|
|
54
|
+
export declare var S3RepositoryDetails: StaticStructureSchema;
|
|
55
|
+
export declare var SourceCodeType: StaticStructureSchema;
|
|
56
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
57
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
58
|
+
export declare var ThirdPartySourceRepository: StaticStructureSchema;
|
|
59
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
60
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
61
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
62
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
63
|
+
export declare var __Unit: "unit";
|
|
64
|
+
export declare var CodeGuruReviewerServiceException: StaticErrorSchema;
|
|
65
|
+
export declare var AnalysisTypes: number;
|
|
66
|
+
export declare var CodeReviewSummaries: StaticListSchema;
|
|
67
|
+
export declare var JobStates: number;
|
|
68
|
+
export declare var Names: number;
|
|
69
|
+
export declare var Owners: number;
|
|
70
|
+
export declare var ProviderTypes: number;
|
|
71
|
+
export declare var Reactions: number;
|
|
72
|
+
export declare var RecommendationFeedbackSummaries: StaticListSchema;
|
|
73
|
+
export declare var RecommendationIds: number;
|
|
74
|
+
export declare var RecommendationSummaries: StaticListSchema;
|
|
75
|
+
export declare var RepositoryAssociationStates: number;
|
|
76
|
+
export declare var RepositoryAssociationSummaries: StaticListSchema;
|
|
77
|
+
export declare var RepositoryNames: number;
|
|
78
|
+
export declare var RuleTags: number;
|
|
79
|
+
export declare var TagKeyList: number;
|
|
80
|
+
export declare var UserIds: number;
|
|
81
|
+
export declare var TagMap: number;
|
|
82
|
+
export declare var AssociateRepository: StaticOperationSchema;
|
|
83
|
+
export declare var CreateCodeReview: StaticOperationSchema;
|
|
84
|
+
export declare var DescribeCodeReview: StaticOperationSchema;
|
|
85
|
+
export declare var DescribeRecommendationFeedback: StaticOperationSchema;
|
|
86
|
+
export declare var DescribeRepositoryAssociation: StaticOperationSchema;
|
|
87
|
+
export declare var DisassociateRepository: StaticOperationSchema;
|
|
88
|
+
export declare var ListCodeReviews: StaticOperationSchema;
|
|
89
|
+
export declare var ListRecommendationFeedback: StaticOperationSchema;
|
|
90
|
+
export declare var ListRecommendations: StaticOperationSchema;
|
|
91
|
+
export declare var ListRepositoryAssociations: StaticOperationSchema;
|
|
92
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
93
|
+
export declare var PutRecommendationFeedback: StaticOperationSchema;
|
|
94
|
+
export declare var TagResource: StaticOperationSchema;
|
|
95
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -162,6 +165,7 @@ export interface ClientDefaults
|
|
|
162
165
|
retryMode?: string | __Provider<string>;
|
|
163
166
|
logger?: __Logger;
|
|
164
167
|
extensions?: RuntimeExtension[];
|
|
168
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
165
169
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
166
170
|
}
|
|
167
171
|
export type CodeGuruReviewerClientConfigType = Partial<
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeGuruReviewerHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
8
|
+
export declare var AssociateRepositoryRequest: StaticStructureSchema;
|
|
9
|
+
export declare var AssociateRepositoryResponse: StaticStructureSchema;
|
|
10
|
+
export declare var BranchDiffSourceCodeType: StaticStructureSchema;
|
|
11
|
+
export declare var CodeArtifacts: StaticStructureSchema;
|
|
12
|
+
export declare var CodeCommitRepository: StaticStructureSchema;
|
|
13
|
+
export declare var CodeReview: StaticStructureSchema;
|
|
14
|
+
export declare var CodeReviewSummary: StaticStructureSchema;
|
|
15
|
+
export declare var CodeReviewType: StaticStructureSchema;
|
|
16
|
+
export declare var CommitDiffSourceCodeType: StaticStructureSchema;
|
|
17
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
18
|
+
export declare var CreateCodeReviewRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateCodeReviewResponse: StaticStructureSchema;
|
|
20
|
+
export declare var DescribeCodeReviewRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DescribeCodeReviewResponse: StaticStructureSchema;
|
|
22
|
+
export declare var DescribeRecommendationFeedbackRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DescribeRecommendationFeedbackResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DescribeRepositoryAssociationRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DescribeRepositoryAssociationResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DisassociateRepositoryRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DisassociateRepositoryResponse: StaticStructureSchema;
|
|
28
|
+
export declare var EventInfo: StaticStructureSchema;
|
|
29
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
30
|
+
export declare var KMSKeyDetails: StaticStructureSchema;
|
|
31
|
+
export declare var ListCodeReviewsRequest: StaticStructureSchema;
|
|
32
|
+
export declare var ListCodeReviewsResponse: StaticStructureSchema;
|
|
33
|
+
export declare var ListRecommendationFeedbackRequest: StaticStructureSchema;
|
|
34
|
+
export declare var ListRecommendationFeedbackResponse: StaticStructureSchema;
|
|
35
|
+
export declare var ListRecommendationsRequest: StaticStructureSchema;
|
|
36
|
+
export declare var ListRecommendationsResponse: StaticStructureSchema;
|
|
37
|
+
export declare var ListRepositoryAssociationsRequest: StaticStructureSchema;
|
|
38
|
+
export declare var ListRepositoryAssociationsResponse: StaticStructureSchema;
|
|
39
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
40
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
41
|
+
export declare var Metrics: StaticStructureSchema;
|
|
42
|
+
export declare var MetricsSummary: StaticStructureSchema;
|
|
43
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
44
|
+
export declare var PutRecommendationFeedbackRequest: StaticStructureSchema;
|
|
45
|
+
export declare var PutRecommendationFeedbackResponse: StaticStructureSchema;
|
|
46
|
+
export declare var RecommendationFeedback: StaticStructureSchema;
|
|
47
|
+
export declare var RecommendationFeedbackSummary: StaticStructureSchema;
|
|
48
|
+
export declare var RecommendationSummary: StaticStructureSchema;
|
|
49
|
+
export declare var Repository: StaticStructureSchema;
|
|
50
|
+
export declare var RepositoryAnalysis: StaticStructureSchema;
|
|
51
|
+
export declare var RepositoryAssociation: StaticStructureSchema;
|
|
52
|
+
export declare var RepositoryAssociationSummary: StaticStructureSchema;
|
|
53
|
+
export declare var RepositoryHeadSourceCodeType: StaticStructureSchema;
|
|
54
|
+
export declare var RequestMetadata: StaticStructureSchema;
|
|
55
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
56
|
+
export declare var RuleMetadata: StaticStructureSchema;
|
|
57
|
+
export declare var S3BucketRepository: StaticStructureSchema;
|
|
58
|
+
export declare var S3Repository: StaticStructureSchema;
|
|
59
|
+
export declare var S3RepositoryDetails: StaticStructureSchema;
|
|
60
|
+
export declare var SourceCodeType: StaticStructureSchema;
|
|
61
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
62
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
63
|
+
export declare var ThirdPartySourceRepository: StaticStructureSchema;
|
|
64
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
65
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
66
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
67
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
68
|
+
export declare var __Unit: "unit";
|
|
69
|
+
export declare var CodeGuruReviewerServiceException: StaticErrorSchema;
|
|
70
|
+
export declare var AnalysisTypes: number;
|
|
71
|
+
export declare var CodeReviewSummaries: StaticListSchema;
|
|
72
|
+
export declare var JobStates: number;
|
|
73
|
+
export declare var Names: number;
|
|
74
|
+
export declare var Owners: number;
|
|
75
|
+
export declare var ProviderTypes: number;
|
|
76
|
+
export declare var Reactions: number;
|
|
77
|
+
export declare var RecommendationFeedbackSummaries: StaticListSchema;
|
|
78
|
+
export declare var RecommendationIds: number;
|
|
79
|
+
export declare var RecommendationSummaries: StaticListSchema;
|
|
80
|
+
export declare var RepositoryAssociationStates: number;
|
|
81
|
+
export declare var RepositoryAssociationSummaries: StaticListSchema;
|
|
82
|
+
export declare var RepositoryNames: number;
|
|
83
|
+
export declare var RuleTags: number;
|
|
84
|
+
export declare var TagKeyList: number;
|
|
85
|
+
export declare var UserIds: number;
|
|
86
|
+
export declare var TagMap: number;
|
|
87
|
+
export declare var AssociateRepository: StaticOperationSchema;
|
|
88
|
+
export declare var CreateCodeReview: StaticOperationSchema;
|
|
89
|
+
export declare var DescribeCodeReview: StaticOperationSchema;
|
|
90
|
+
export declare var DescribeRecommendationFeedback: StaticOperationSchema;
|
|
91
|
+
export declare var DescribeRepositoryAssociation: StaticOperationSchema;
|
|
92
|
+
export declare var DisassociateRepository: StaticOperationSchema;
|
|
93
|
+
export declare var ListCodeReviews: StaticOperationSchema;
|
|
94
|
+
export declare var ListRecommendationFeedback: StaticOperationSchema;
|
|
95
|
+
export declare var ListRecommendations: StaticOperationSchema;
|
|
96
|
+
export declare var ListRepositoryAssociations: StaticOperationSchema;
|
|
97
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
98
|
+
export declare var PutRecommendationFeedback: StaticOperationSchema;
|
|
99
|
+
export declare var TagResource: StaticOperationSchema;
|
|
100
|
+
export declare var UntagResource: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.
|
|
4
|
+
"version": "3.929.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-codeguru-reviewer",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.928.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
@@ -57,7 +57,6 @@
|
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"@smithy/util-waiter": "^4.2.4",
|
|
60
|
-
"@smithy/uuid": "^1.1.0",
|
|
61
60
|
"tslib": "^2.6.2"
|
|
62
61
|
},
|
|
63
62
|
"devDependencies": {
|