@aws-sdk/client-codeguru-reviewer 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CodeGuruReviewerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +101 -2
- package/dist-cjs/protocols/Aws_restJson1.js +177 -574
- package/dist-es/index.js +1 -0
- package/dist-es/models/CodeGuruReviewerServiceException.js +12 -0
- package/dist-es/models/models_0.js +93 -1
- package/dist-es/protocols/Aws_restJson1.js +339 -638
- package/dist-types/CodeGuruReviewerClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CodeGuruReviewerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CodeGuruReviewerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +28 -28
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput } from "./commands/AssociateRepositoryCommand";
|
|
10
10
|
import { CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput } from "./commands/CreateCodeReviewCommand";
|
|
11
11
|
import { DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput } from "./commands/DescribeCodeReviewCommand";
|
|
@@ -42,7 +42,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
42
42
|
* A function that can calculate the length of a request body.
|
|
43
43
|
* @internal
|
|
44
44
|
*/
|
|
45
|
-
bodyLengthChecker?:
|
|
45
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
46
46
|
/**
|
|
47
47
|
* A function that converts a stream into an array of bytes.
|
|
48
48
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from CodeGuruReviewer service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class CodeGuruReviewerServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodeGuruReviewerServiceException as __BaseException } from "./CodeGuruReviewerServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
export declare enum AnalysisType {
|
|
11
16
|
CODE_QUALITY = "CodeQuality",
|
|
@@ -459,34 +464,50 @@ export declare namespace AssociateRepositoryResponse {
|
|
|
459
464
|
* <p>The requested operation would cause a conflict with the current state of a service
|
|
460
465
|
* resource associated with the request. Resolve the conflict before retrying this request. </p>
|
|
461
466
|
*/
|
|
462
|
-
export
|
|
463
|
-
name: "ConflictException";
|
|
464
|
-
$fault: "client";
|
|
467
|
+
export declare class ConflictException extends __BaseException {
|
|
468
|
+
readonly name: "ConflictException";
|
|
469
|
+
readonly $fault: "client";
|
|
465
470
|
Message?: string;
|
|
471
|
+
/**
|
|
472
|
+
* @internal
|
|
473
|
+
*/
|
|
474
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
466
475
|
}
|
|
467
476
|
/**
|
|
468
477
|
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
469
478
|
*/
|
|
470
|
-
export
|
|
471
|
-
name: "InternalServerException";
|
|
472
|
-
$fault: "server";
|
|
479
|
+
export declare class InternalServerException extends __BaseException {
|
|
480
|
+
readonly name: "InternalServerException";
|
|
481
|
+
readonly $fault: "server";
|
|
473
482
|
Message?: string;
|
|
483
|
+
/**
|
|
484
|
+
* @internal
|
|
485
|
+
*/
|
|
486
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
474
487
|
}
|
|
475
488
|
/**
|
|
476
489
|
* <p>The request was denied due to request throttling.</p>
|
|
477
490
|
*/
|
|
478
|
-
export
|
|
479
|
-
name: "ThrottlingException";
|
|
480
|
-
$fault: "client";
|
|
491
|
+
export declare class ThrottlingException extends __BaseException {
|
|
492
|
+
readonly name: "ThrottlingException";
|
|
493
|
+
readonly $fault: "client";
|
|
481
494
|
Message?: string;
|
|
495
|
+
/**
|
|
496
|
+
* @internal
|
|
497
|
+
*/
|
|
498
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
482
499
|
}
|
|
483
500
|
/**
|
|
484
501
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
485
502
|
*/
|
|
486
|
-
export
|
|
487
|
-
name: "ValidationException";
|
|
488
|
-
$fault: "client";
|
|
503
|
+
export declare class ValidationException extends __BaseException {
|
|
504
|
+
readonly name: "ValidationException";
|
|
505
|
+
readonly $fault: "client";
|
|
489
506
|
Message?: string;
|
|
507
|
+
/**
|
|
508
|
+
* @internal
|
|
509
|
+
*/
|
|
510
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
490
511
|
}
|
|
491
512
|
/**
|
|
492
513
|
* <p>
|
|
@@ -1014,10 +1035,14 @@ export declare namespace CreateCodeReviewResponse {
|
|
|
1014
1035
|
* The resource specified in the request was not found.
|
|
1015
1036
|
* </p>
|
|
1016
1037
|
*/
|
|
1017
|
-
export
|
|
1018
|
-
name: "ResourceNotFoundException";
|
|
1019
|
-
$fault: "client";
|
|
1038
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1039
|
+
readonly name: "ResourceNotFoundException";
|
|
1040
|
+
readonly $fault: "client";
|
|
1020
1041
|
Message?: string;
|
|
1042
|
+
/**
|
|
1043
|
+
* @internal
|
|
1044
|
+
*/
|
|
1045
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1021
1046
|
}
|
|
1022
1047
|
export interface DescribeCodeReviewRequest {
|
|
1023
1048
|
/**
|
|
@@ -1210,10 +1235,14 @@ export declare namespace DescribeRepositoryAssociationResponse {
|
|
|
1210
1235
|
/**
|
|
1211
1236
|
* <p>The resource specified in the request was not found.</p>
|
|
1212
1237
|
*/
|
|
1213
|
-
export
|
|
1214
|
-
name: "NotFoundException";
|
|
1215
|
-
$fault: "client";
|
|
1238
|
+
export declare class NotFoundException extends __BaseException {
|
|
1239
|
+
readonly name: "NotFoundException";
|
|
1240
|
+
readonly $fault: "client";
|
|
1216
1241
|
Message?: string;
|
|
1242
|
+
/**
|
|
1243
|
+
* @internal
|
|
1244
|
+
*/
|
|
1245
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
1217
1246
|
}
|
|
1218
1247
|
export interface DisassociateRepositoryRequest {
|
|
1219
1248
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput } from "./commands/AssociateRepositoryCommand";
|
|
10
10
|
import { CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput } from "./commands/CreateCodeReviewCommand";
|
|
11
11
|
import { DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput } from "./commands/DescribeCodeReviewCommand";
|
|
@@ -30,7 +30,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
30
30
|
|
|
31
31
|
urlParser?: __UrlParser;
|
|
32
32
|
|
|
33
|
-
bodyLengthChecker?:
|
|
33
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
34
34
|
|
|
35
35
|
streamCollector?: __StreamCollector;
|
|
36
36
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class CodeGuruReviewerServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodeGuruReviewerServiceException as __BaseException } from "./CodeGuruReviewerServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
export declare enum AnalysisType {
|
|
9
12
|
CODE_QUALITY = "CodeQuality",
|
|
@@ -168,28 +171,36 @@ export declare namespace AssociateRepositoryResponse {
|
|
|
168
171
|
const filterSensitiveLog: (obj: AssociateRepositoryResponse) => any;
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
export
|
|
172
|
-
name: "ConflictException";
|
|
173
|
-
$fault: "client";
|
|
174
|
+
export declare class ConflictException extends __BaseException {
|
|
175
|
+
readonly name: "ConflictException";
|
|
176
|
+
readonly $fault: "client";
|
|
174
177
|
Message?: string;
|
|
178
|
+
|
|
179
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
175
180
|
}
|
|
176
181
|
|
|
177
|
-
export
|
|
178
|
-
name: "InternalServerException";
|
|
179
|
-
$fault: "server";
|
|
182
|
+
export declare class InternalServerException extends __BaseException {
|
|
183
|
+
readonly name: "InternalServerException";
|
|
184
|
+
readonly $fault: "server";
|
|
180
185
|
Message?: string;
|
|
186
|
+
|
|
187
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
181
188
|
}
|
|
182
189
|
|
|
183
|
-
export
|
|
184
|
-
name: "ThrottlingException";
|
|
185
|
-
$fault: "client";
|
|
190
|
+
export declare class ThrottlingException extends __BaseException {
|
|
191
|
+
readonly name: "ThrottlingException";
|
|
192
|
+
readonly $fault: "client";
|
|
186
193
|
Message?: string;
|
|
194
|
+
|
|
195
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
187
196
|
}
|
|
188
197
|
|
|
189
|
-
export
|
|
190
|
-
name: "ValidationException";
|
|
191
|
-
$fault: "client";
|
|
198
|
+
export declare class ValidationException extends __BaseException {
|
|
199
|
+
readonly name: "ValidationException";
|
|
200
|
+
readonly $fault: "client";
|
|
192
201
|
Message?: string;
|
|
202
|
+
|
|
203
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
193
204
|
}
|
|
194
205
|
|
|
195
206
|
export interface RepositoryHeadSourceCodeType {
|
|
@@ -386,10 +397,12 @@ export declare namespace CreateCodeReviewResponse {
|
|
|
386
397
|
const filterSensitiveLog: (obj: CreateCodeReviewResponse) => any;
|
|
387
398
|
}
|
|
388
399
|
|
|
389
|
-
export
|
|
390
|
-
name: "ResourceNotFoundException";
|
|
391
|
-
$fault: "client";
|
|
400
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
401
|
+
readonly name: "ResourceNotFoundException";
|
|
402
|
+
readonly $fault: "client";
|
|
392
403
|
Message?: string;
|
|
404
|
+
|
|
405
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
393
406
|
}
|
|
394
407
|
export interface DescribeCodeReviewRequest {
|
|
395
408
|
|
|
@@ -471,10 +484,12 @@ export declare namespace DescribeRepositoryAssociationResponse {
|
|
|
471
484
|
const filterSensitiveLog: (obj: DescribeRepositoryAssociationResponse) => any;
|
|
472
485
|
}
|
|
473
486
|
|
|
474
|
-
export
|
|
475
|
-
name: "NotFoundException";
|
|
476
|
-
$fault: "client";
|
|
487
|
+
export declare class NotFoundException extends __BaseException {
|
|
488
|
+
readonly name: "NotFoundException";
|
|
489
|
+
readonly $fault: "client";
|
|
477
490
|
Message?: string;
|
|
491
|
+
|
|
492
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
478
493
|
}
|
|
479
494
|
export interface DisassociateRepositoryRequest {
|
|
480
495
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: CodeGuruReviewerClientConfig) =>
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
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.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,37 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
51
|
+
"@aws-sdk/util-waiter": "3.54.1",
|
|
52
52
|
"tslib": "^2.3.0",
|
|
53
53
|
"uuid": "^8.3.2"
|
|
54
54
|
},
|