@aws-sdk/client-auto-scaling-plans 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AutoScalingPlansServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +86 -1
- package/dist-cjs/protocols/Aws_json1_1.js +84 -231
- package/dist-es/index.js +1 -0
- package/dist-es/models/AutoScalingPlansServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_json1_1.js +155 -244
- package/dist-types/AutoScalingPlansClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AutoScalingPlansServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- 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/AutoScalingPlansClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AutoScalingPlansServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- 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 +33 -33
|
@@ -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 { CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput } from "./commands/CreateScalingPlanCommand";
|
|
10
10
|
import { DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput } from "./commands/DeleteScalingPlanCommand";
|
|
11
11
|
import { DescribeScalingPlanResourcesCommandInput, DescribeScalingPlanResourcesCommandOutput } from "./commands/DescribeScalingPlanResourcesCommand";
|
|
@@ -34,7 +34,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
34
34
|
* A function that can calculate the length of a request body.
|
|
35
35
|
* @internal
|
|
36
36
|
*/
|
|
37
|
-
bodyLengthChecker?:
|
|
37
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
38
38
|
/**
|
|
39
39
|
* A function that converts a stream into an array of bytes.
|
|
40
40
|
* @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 AutoScalingPlans service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AutoScalingPlansServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AutoScalingPlansServiceException as __BaseException } from "./AutoScalingPlansServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Concurrent updates caused an exception, for example, if you request an update to a
|
|
4
5
|
* scaling plan that already has a pending update.</p>
|
|
5
6
|
*/
|
|
6
|
-
export
|
|
7
|
-
name: "ConcurrentUpdateException";
|
|
8
|
-
$fault: "server";
|
|
7
|
+
export declare class ConcurrentUpdateException extends __BaseException {
|
|
8
|
+
readonly name: "ConcurrentUpdateException";
|
|
9
|
+
readonly $fault: "server";
|
|
9
10
|
Message?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<ConcurrentUpdateException, __BaseException>);
|
|
10
15
|
}
|
|
11
16
|
/**
|
|
12
17
|
* <p>Represents a tag.</p>
|
|
@@ -621,27 +626,39 @@ export declare namespace CreateScalingPlanResponse {
|
|
|
621
626
|
/**
|
|
622
627
|
* <p>The service encountered an internal error.</p>
|
|
623
628
|
*/
|
|
624
|
-
export
|
|
625
|
-
name: "InternalServiceException";
|
|
626
|
-
$fault: "server";
|
|
629
|
+
export declare class InternalServiceException extends __BaseException {
|
|
630
|
+
readonly name: "InternalServiceException";
|
|
631
|
+
readonly $fault: "server";
|
|
627
632
|
Message?: string;
|
|
633
|
+
/**
|
|
634
|
+
* @internal
|
|
635
|
+
*/
|
|
636
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
628
637
|
}
|
|
629
638
|
/**
|
|
630
639
|
* <p>Your account exceeded a limit. This exception is thrown when a per-account resource
|
|
631
640
|
* limit is exceeded.</p>
|
|
632
641
|
*/
|
|
633
|
-
export
|
|
634
|
-
name: "LimitExceededException";
|
|
635
|
-
$fault: "client";
|
|
642
|
+
export declare class LimitExceededException extends __BaseException {
|
|
643
|
+
readonly name: "LimitExceededException";
|
|
644
|
+
readonly $fault: "client";
|
|
636
645
|
Message?: string;
|
|
646
|
+
/**
|
|
647
|
+
* @internal
|
|
648
|
+
*/
|
|
649
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
637
650
|
}
|
|
638
651
|
/**
|
|
639
652
|
* <p>An exception was thrown for a validation issue. Review the parameters provided.</p>
|
|
640
653
|
*/
|
|
641
|
-
export
|
|
642
|
-
name: "ValidationException";
|
|
643
|
-
$fault: "client";
|
|
654
|
+
export declare class ValidationException extends __BaseException {
|
|
655
|
+
readonly name: "ValidationException";
|
|
656
|
+
readonly $fault: "client";
|
|
644
657
|
Message?: string;
|
|
658
|
+
/**
|
|
659
|
+
* @internal
|
|
660
|
+
*/
|
|
661
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
645
662
|
}
|
|
646
663
|
export interface DeleteScalingPlanRequest {
|
|
647
664
|
/**
|
|
@@ -671,10 +688,14 @@ export declare namespace DeleteScalingPlanResponse {
|
|
|
671
688
|
/**
|
|
672
689
|
* <p>The specified object could not be found.</p>
|
|
673
690
|
*/
|
|
674
|
-
export
|
|
675
|
-
name: "ObjectNotFoundException";
|
|
676
|
-
$fault: "client";
|
|
691
|
+
export declare class ObjectNotFoundException extends __BaseException {
|
|
692
|
+
readonly name: "ObjectNotFoundException";
|
|
693
|
+
readonly $fault: "client";
|
|
677
694
|
Message?: string;
|
|
695
|
+
/**
|
|
696
|
+
* @internal
|
|
697
|
+
*/
|
|
698
|
+
constructor(opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>);
|
|
678
699
|
}
|
|
679
700
|
export interface DescribeScalingPlanResourcesRequest {
|
|
680
701
|
/**
|
|
@@ -876,10 +897,14 @@ export declare namespace DescribeScalingPlanResourcesResponse {
|
|
|
876
897
|
/**
|
|
877
898
|
* <p>The token provided is not valid.</p>
|
|
878
899
|
*/
|
|
879
|
-
export
|
|
880
|
-
name: "InvalidNextTokenException";
|
|
881
|
-
$fault: "client";
|
|
900
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
901
|
+
readonly name: "InvalidNextTokenException";
|
|
902
|
+
readonly $fault: "client";
|
|
882
903
|
Message?: string;
|
|
904
|
+
/**
|
|
905
|
+
* @internal
|
|
906
|
+
*/
|
|
907
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
883
908
|
}
|
|
884
909
|
export interface DescribeScalingPlansRequest {
|
|
885
910
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AutoScalingPlansClientConfig) =>
|
|
|
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: AutoScalingPlansClientConfig) =>
|
|
|
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: AutoScalingPlansClientConfig) =>
|
|
|
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 { CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput } from "./commands/CreateScalingPlanCommand";
|
|
10
10
|
import { DeleteScalingPlanCommandInput, DeleteScalingPlanCommandOutput } from "./commands/DeleteScalingPlanCommand";
|
|
11
11
|
import { DescribeScalingPlanResourcesCommandInput, DescribeScalingPlanResourcesCommandOutput } from "./commands/DescribeScalingPlanResourcesCommand";
|
|
@@ -22,7 +22,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
22
22
|
|
|
23
23
|
urlParser?: __UrlParser;
|
|
24
24
|
|
|
25
|
-
bodyLengthChecker?:
|
|
25
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
26
26
|
|
|
27
27
|
streamCollector?: __StreamCollector;
|
|
28
28
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class AutoScalingPlansServiceException 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 { AutoScalingPlansServiceException as __BaseException } from "./AutoScalingPlansServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "ConcurrentUpdateException";
|
|
5
|
-
$fault: "server";
|
|
4
|
+
export declare class ConcurrentUpdateException extends __BaseException {
|
|
5
|
+
readonly name: "ConcurrentUpdateException";
|
|
6
|
+
readonly $fault: "server";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<ConcurrentUpdateException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
export interface TagFilter {
|
|
@@ -229,22 +232,28 @@ export declare namespace CreateScalingPlanResponse {
|
|
|
229
232
|
const filterSensitiveLog: (obj: CreateScalingPlanResponse) => any;
|
|
230
233
|
}
|
|
231
234
|
|
|
232
|
-
export
|
|
233
|
-
name: "InternalServiceException";
|
|
234
|
-
$fault: "server";
|
|
235
|
+
export declare class InternalServiceException extends __BaseException {
|
|
236
|
+
readonly name: "InternalServiceException";
|
|
237
|
+
readonly $fault: "server";
|
|
235
238
|
Message?: string;
|
|
239
|
+
|
|
240
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
236
241
|
}
|
|
237
242
|
|
|
238
|
-
export
|
|
239
|
-
name: "LimitExceededException";
|
|
240
|
-
$fault: "client";
|
|
243
|
+
export declare class LimitExceededException extends __BaseException {
|
|
244
|
+
readonly name: "LimitExceededException";
|
|
245
|
+
readonly $fault: "client";
|
|
241
246
|
Message?: string;
|
|
247
|
+
|
|
248
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
242
249
|
}
|
|
243
250
|
|
|
244
|
-
export
|
|
245
|
-
name: "ValidationException";
|
|
246
|
-
$fault: "client";
|
|
251
|
+
export declare class ValidationException extends __BaseException {
|
|
252
|
+
readonly name: "ValidationException";
|
|
253
|
+
readonly $fault: "client";
|
|
247
254
|
Message?: string;
|
|
255
|
+
|
|
256
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
248
257
|
}
|
|
249
258
|
export interface DeleteScalingPlanRequest {
|
|
250
259
|
|
|
@@ -263,10 +272,12 @@ export declare namespace DeleteScalingPlanResponse {
|
|
|
263
272
|
const filterSensitiveLog: (obj: DeleteScalingPlanResponse) => any;
|
|
264
273
|
}
|
|
265
274
|
|
|
266
|
-
export
|
|
267
|
-
name: "ObjectNotFoundException";
|
|
268
|
-
$fault: "client";
|
|
275
|
+
export declare class ObjectNotFoundException extends __BaseException {
|
|
276
|
+
readonly name: "ObjectNotFoundException";
|
|
277
|
+
readonly $fault: "client";
|
|
269
278
|
Message?: string;
|
|
279
|
+
|
|
280
|
+
constructor(opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>);
|
|
270
281
|
}
|
|
271
282
|
export interface DescribeScalingPlanResourcesRequest {
|
|
272
283
|
|
|
@@ -337,10 +348,12 @@ export declare namespace DescribeScalingPlanResourcesResponse {
|
|
|
337
348
|
const filterSensitiveLog: (obj: DescribeScalingPlanResourcesResponse) => any;
|
|
338
349
|
}
|
|
339
350
|
|
|
340
|
-
export
|
|
341
|
-
name: "InvalidNextTokenException";
|
|
342
|
-
$fault: "client";
|
|
351
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
352
|
+
readonly name: "InvalidNextTokenException";
|
|
353
|
+
readonly $fault: "client";
|
|
343
354
|
Message?: string;
|
|
355
|
+
|
|
356
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
344
357
|
}
|
|
345
358
|
export interface DescribeScalingPlansRequest {
|
|
346
359
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AutoScalingPlansClientConfig) =>
|
|
|
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: AutoScalingPlansClientConfig) =>
|
|
|
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: AutoScalingPlansClientConfig) =>
|
|
|
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-auto-scaling-plans",
|
|
3
3
|
"description": "AWS SDK for JavaScript Auto Scaling Plans Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.0",
|
|
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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,40 +18,40 @@
|
|
|
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.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
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.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
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.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|