@aws-sdk/client-snowball 3.43.0 → 3.47.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 +51 -0
- package/README.md +6 -7
- package/dist-cjs/endpoints.js +1 -80
- package/dist-cjs/models/models_0.js +8 -68
- package/dist-cjs/protocols/Aws_json1_1.js +20 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -80
- package/dist-es/models/models_0.js +4 -44
- package/dist-es/protocols/Aws_json1_1.js +17 -1
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/Snowball.d.ts +31 -32
- package/dist-types/SnowballClient.d.ts +11 -8
- package/dist-types/commands/CreateJobCommand.d.ts +10 -9
- package/dist-types/commands/CreateLongTermPricingCommand.d.ts +1 -2
- package/dist-types/commands/CreateReturnShippingLabelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReturnShippingLabelCommand.d.ts +1 -1
- package/dist-types/commands/GetJobManifestCommand.d.ts +1 -1
- package/dist-types/commands/GetJobUnlockCodeCommand.d.ts +4 -4
- package/dist-types/commands/GetSnowballUsageCommand.d.ts +2 -2
- package/dist-types/commands/GetSoftwareUpdatesCommand.d.ts +1 -1
- package/dist-types/commands/ListCompatibleImagesCommand.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +195 -213
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SnowballClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +16 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { SnowballClientConfig } from "./SnowballClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { SnowballClientConfig } from "./SnowballClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
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";
|
|
9
9
|
import { CancelClusterCommandInput, CancelClusterCommandOutput } from "./commands/CancelClusterCommand";
|
|
10
10
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
@@ -76,6 +76,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
76
76
|
regionInfoProvider?: RegionInfoProvider;
|
|
77
77
|
|
|
78
78
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
79
|
+
|
|
80
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
79
81
|
}
|
|
80
82
|
declare type SnowballClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
81
83
|
|
|
@@ -54,10 +54,6 @@ export interface InvalidJobStateException extends __SmithyException, $MetadataBe
|
|
|
54
54
|
$fault: "client";
|
|
55
55
|
Message?: string;
|
|
56
56
|
}
|
|
57
|
-
export declare namespace InvalidJobStateException {
|
|
58
|
-
|
|
59
|
-
const filterSensitiveLog: (obj: InvalidJobStateException) => any;
|
|
60
|
-
}
|
|
61
57
|
|
|
62
58
|
export interface InvalidResourceException extends __SmithyException, $MetadataBearer {
|
|
63
59
|
name: "InvalidResourceException";
|
|
@@ -66,20 +62,12 @@ export interface InvalidResourceException extends __SmithyException, $MetadataBe
|
|
|
66
62
|
|
|
67
63
|
ResourceType?: string;
|
|
68
64
|
}
|
|
69
|
-
export declare namespace InvalidResourceException {
|
|
70
|
-
|
|
71
|
-
const filterSensitiveLog: (obj: InvalidResourceException) => any;
|
|
72
|
-
}
|
|
73
65
|
|
|
74
66
|
export interface KMSRequestFailedException extends __SmithyException, $MetadataBearer {
|
|
75
67
|
name: "KMSRequestFailedException";
|
|
76
68
|
$fault: "client";
|
|
77
69
|
Message?: string;
|
|
78
70
|
}
|
|
79
|
-
export declare namespace KMSRequestFailedException {
|
|
80
|
-
|
|
81
|
-
const filterSensitiveLog: (obj: KMSRequestFailedException) => any;
|
|
82
|
-
}
|
|
83
71
|
export interface CancelJobRequest {
|
|
84
72
|
|
|
85
73
|
JobId: string | undefined;
|
|
@@ -116,20 +104,12 @@ export interface InvalidAddressException extends __SmithyException, $MetadataBea
|
|
|
116
104
|
$fault: "client";
|
|
117
105
|
Message?: string;
|
|
118
106
|
}
|
|
119
|
-
export declare namespace InvalidAddressException {
|
|
120
|
-
|
|
121
|
-
const filterSensitiveLog: (obj: InvalidAddressException) => any;
|
|
122
|
-
}
|
|
123
107
|
|
|
124
108
|
export interface UnsupportedAddressException extends __SmithyException, $MetadataBearer {
|
|
125
109
|
name: "UnsupportedAddressException";
|
|
126
110
|
$fault: "client";
|
|
127
111
|
Message?: string;
|
|
128
112
|
}
|
|
129
|
-
export declare namespace UnsupportedAddressException {
|
|
130
|
-
|
|
131
|
-
const filterSensitiveLog: (obj: UnsupportedAddressException) => any;
|
|
132
|
-
}
|
|
133
113
|
export declare enum JobType {
|
|
134
114
|
EXPORT = "EXPORT",
|
|
135
115
|
IMPORT = "IMPORT",
|
|
@@ -178,9 +158,22 @@ export declare namespace NFSOnDeviceServiceConfiguration {
|
|
|
178
158
|
const filterSensitiveLog: (obj: NFSOnDeviceServiceConfiguration) => any;
|
|
179
159
|
}
|
|
180
160
|
|
|
161
|
+
export interface TGWOnDeviceServiceConfiguration {
|
|
162
|
+
|
|
163
|
+
StorageLimit?: number;
|
|
164
|
+
|
|
165
|
+
StorageUnit?: StorageUnit | string;
|
|
166
|
+
}
|
|
167
|
+
export declare namespace TGWOnDeviceServiceConfiguration {
|
|
168
|
+
|
|
169
|
+
const filterSensitiveLog: (obj: TGWOnDeviceServiceConfiguration) => any;
|
|
170
|
+
}
|
|
171
|
+
|
|
181
172
|
export interface OnDeviceServiceConfiguration {
|
|
182
173
|
|
|
183
174
|
NFSOnDeviceService?: NFSOnDeviceServiceConfiguration;
|
|
175
|
+
|
|
176
|
+
TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
|
|
184
177
|
}
|
|
185
178
|
export declare namespace OnDeviceServiceConfiguration {
|
|
186
179
|
|
|
@@ -357,30 +350,18 @@ export interface Ec2RequestFailedException extends __SmithyException, $MetadataB
|
|
|
357
350
|
$fault: "client";
|
|
358
351
|
Message?: string;
|
|
359
352
|
}
|
|
360
|
-
export declare namespace Ec2RequestFailedException {
|
|
361
|
-
|
|
362
|
-
const filterSensitiveLog: (obj: Ec2RequestFailedException) => any;
|
|
363
|
-
}
|
|
364
353
|
|
|
365
354
|
export interface InvalidInputCombinationException extends __SmithyException, $MetadataBearer {
|
|
366
355
|
name: "InvalidInputCombinationException";
|
|
367
356
|
$fault: "client";
|
|
368
357
|
Message?: string;
|
|
369
358
|
}
|
|
370
|
-
export declare namespace InvalidInputCombinationException {
|
|
371
|
-
|
|
372
|
-
const filterSensitiveLog: (obj: InvalidInputCombinationException) => any;
|
|
373
|
-
}
|
|
374
359
|
|
|
375
360
|
export interface ClusterLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
376
361
|
name: "ClusterLimitExceededException";
|
|
377
362
|
$fault: "client";
|
|
378
363
|
Message?: string;
|
|
379
364
|
}
|
|
380
|
-
export declare namespace ClusterLimitExceededException {
|
|
381
|
-
|
|
382
|
-
const filterSensitiveLog: (obj: ClusterLimitExceededException) => any;
|
|
383
|
-
}
|
|
384
365
|
|
|
385
366
|
export interface WirelessConnection {
|
|
386
367
|
|
|
@@ -494,13 +475,10 @@ export declare namespace CreateLongTermPricingResult {
|
|
|
494
475
|
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
495
476
|
name: "ConflictException";
|
|
496
477
|
$fault: "client";
|
|
478
|
+
|
|
497
479
|
ConflictResource?: string;
|
|
498
480
|
Message?: string;
|
|
499
481
|
}
|
|
500
|
-
export declare namespace ConflictException {
|
|
501
|
-
|
|
502
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
503
|
-
}
|
|
504
482
|
export interface CreateReturnShippingLabelRequest {
|
|
505
483
|
|
|
506
484
|
JobId: string | undefined;
|
|
@@ -531,10 +509,6 @@ export interface ReturnShippingLabelAlreadyExistsException extends __SmithyExcep
|
|
|
531
509
|
$fault: "client";
|
|
532
510
|
Message?: string;
|
|
533
511
|
}
|
|
534
|
-
export declare namespace ReturnShippingLabelAlreadyExistsException {
|
|
535
|
-
|
|
536
|
-
const filterSensitiveLog: (obj: ReturnShippingLabelAlreadyExistsException) => any;
|
|
537
|
-
}
|
|
538
512
|
export interface DescribeAddressRequest {
|
|
539
513
|
|
|
540
514
|
AddressId: string | undefined;
|
|
@@ -577,10 +551,6 @@ export interface InvalidNextTokenException extends __SmithyException, $MetadataB
|
|
|
577
551
|
$fault: "client";
|
|
578
552
|
Message?: string;
|
|
579
553
|
}
|
|
580
|
-
export declare namespace InvalidNextTokenException {
|
|
581
|
-
|
|
582
|
-
const filterSensitiveLog: (obj: InvalidNextTokenException) => any;
|
|
583
|
-
}
|
|
584
554
|
export interface DescribeClusterRequest {
|
|
585
555
|
|
|
586
556
|
ClusterId: string | undefined;
|
|
@@ -775,6 +745,8 @@ export interface DescribeReturnShippingLabelResult {
|
|
|
775
745
|
Status?: ShippingLabelStatus | string;
|
|
776
746
|
|
|
777
747
|
ExpirationDate?: Date;
|
|
748
|
+
|
|
749
|
+
ReturnShippingLabelURI?: string;
|
|
778
750
|
}
|
|
779
751
|
export declare namespace DescribeReturnShippingLabelResult {
|
|
780
752
|
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { SnowballClientConfig } from "./SnowballClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { SnowballClientConfig } from "./SnowballClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-snowball",
|
|
3
3
|
"description": "AWS SDK for JavaScript Snowball Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.47.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
-
"
|
|
12
|
-
"clean
|
|
13
|
-
"clean:docs": "rimraf ./docs",
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "exit 0"
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
16
13
|
},
|
|
17
14
|
"main": "./dist-cjs/index.js",
|
|
18
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,48 +18,44 @@
|
|
|
21
18
|
"dependencies": {
|
|
22
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.47.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.0",
|
|
39
|
+
"@aws-sdk/types": "3.47.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.0",
|
|
52
51
|
"tslib": "^2.3.0"
|
|
53
52
|
},
|
|
54
53
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
-
"@types/node": "^12.7.5"
|
|
57
|
-
"downlevel-dts": "0.7.0",
|
|
58
|
-
"jest": "^26.1.0",
|
|
59
|
-
"rimraf": "^3.0.0",
|
|
60
|
-
"ts-jest": "^26.4.1",
|
|
61
|
-
"typedoc": "^0.19.2",
|
|
62
|
-
"typescript": "~4.3.5"
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.0",
|
|
55
|
+
"@types/node": "^12.7.5"
|
|
63
56
|
},
|
|
64
57
|
"engines": {
|
|
65
|
-
"node": ">=
|
|
58
|
+
"node": ">=12.0.0"
|
|
66
59
|
},
|
|
67
60
|
"typesVersions": {
|
|
68
61
|
"<4.0": {
|