@aws-sdk/client-timestream-write 3.42.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 +50 -0
- package/README.md +8 -1
- package/dist-cjs/commands/WriteRecordsCommand.js +1 -1
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +38 -49
- package/dist-cjs/protocols/Aws_json1_0.js +101 -1
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/commands/WriteRecordsCommand.js +2 -2
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +31 -36
- package/dist-es/protocols/Aws_json1_0.js +91 -11
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/TimestreamWrite.d.ts +83 -21
- package/dist-types/TimestreamWriteClient.d.ts +12 -2
- package/dist-types/commands/CreateDatabaseCommand.d.ts +6 -3
- package/dist-types/commands/CreateTableCommand.d.ts +5 -4
- package/dist-types/commands/DeleteDatabaseCommand.d.ts +7 -2
- package/dist-types/commands/DeleteTableCommand.d.ts +5 -1
- package/dist-types/commands/DescribeDatabaseCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +9 -4
- package/dist-types/commands/DescribeTableCommand.d.ts +2 -1
- package/dist-types/commands/ListDatabasesCommand.d.ts +2 -1
- package/dist-types/commands/ListTablesCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +2 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +2 -1
- package/dist-types/commands/WriteRecordsCommand.d.ts +34 -4
- package/dist-types/models/models_0.d.ts +203 -68
- 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/TimestreamWriteClient.d.ts +3 -1
- package/dist-types/ts3.4/commands/WriteRecordsCommand.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +82 -35
- 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 +39 -46
|
@@ -5,7 +5,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
5
5
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
6
6
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
7
7
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
8
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
9
9
|
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";
|
|
10
10
|
import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
|
|
11
11
|
import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
@@ -69,6 +69,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
69
69
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
70
70
|
|
|
71
71
|
endpointDiscoveryEnabledProvider?: __Provider<boolean | undefined>;
|
|
72
|
+
|
|
73
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
72
74
|
}
|
|
73
75
|
declare type TimestreamWriteClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & EndpointDiscoveryInputConfig;
|
|
74
76
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { WriteRecordsRequest } from "../models/models_0";
|
|
3
|
+
import { WriteRecordsRequest, WriteRecordsResponse } from "../models/models_0";
|
|
4
4
|
import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient";
|
|
5
5
|
export interface WriteRecordsCommandInput extends WriteRecordsRequest {
|
|
6
6
|
}
|
|
7
|
-
export interface WriteRecordsCommandOutput extends __MetadataBearer {
|
|
7
|
+
export interface WriteRecordsCommandOutput extends WriteRecordsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export declare class WriteRecordsCommand extends $Command<WriteRecordsCommandInput, WriteRecordsCommandOutput, TimestreamWriteClientResolvedConfig> {
|
|
@@ -5,20 +5,12 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
5
5
|
$fault: "client";
|
|
6
6
|
Message: string | undefined;
|
|
7
7
|
}
|
|
8
|
-
export declare namespace AccessDeniedException {
|
|
9
|
-
|
|
10
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
11
|
-
}
|
|
12
8
|
|
|
13
9
|
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
14
10
|
name: "ConflictException";
|
|
15
11
|
$fault: "client";
|
|
16
12
|
Message: string | undefined;
|
|
17
13
|
}
|
|
18
|
-
export declare namespace ConflictException {
|
|
19
|
-
|
|
20
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
21
|
-
}
|
|
22
14
|
|
|
23
15
|
export interface Tag {
|
|
24
16
|
|
|
@@ -75,49 +67,68 @@ export interface InternalServerException extends __SmithyException, $MetadataBea
|
|
|
75
67
|
$fault: "server";
|
|
76
68
|
Message: string | undefined;
|
|
77
69
|
}
|
|
78
|
-
export declare namespace InternalServerException {
|
|
79
|
-
|
|
80
|
-
const filterSensitiveLog: (obj: InternalServerException) => any;
|
|
81
|
-
}
|
|
82
70
|
|
|
83
71
|
export interface InvalidEndpointException extends __SmithyException, $MetadataBearer {
|
|
84
72
|
name: "InvalidEndpointException";
|
|
85
73
|
$fault: "client";
|
|
86
74
|
Message?: string;
|
|
87
75
|
}
|
|
88
|
-
export declare namespace InvalidEndpointException {
|
|
89
|
-
|
|
90
|
-
const filterSensitiveLog: (obj: InvalidEndpointException) => any;
|
|
91
|
-
}
|
|
92
76
|
|
|
93
77
|
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
94
78
|
name: "ServiceQuotaExceededException";
|
|
95
79
|
$fault: "client";
|
|
96
80
|
Message?: string;
|
|
97
81
|
}
|
|
98
|
-
export declare namespace ServiceQuotaExceededException {
|
|
99
|
-
|
|
100
|
-
const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
|
|
101
|
-
}
|
|
102
82
|
|
|
103
83
|
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
104
84
|
name: "ThrottlingException";
|
|
105
85
|
$fault: "client";
|
|
106
86
|
Message: string | undefined;
|
|
107
87
|
}
|
|
108
|
-
export declare namespace ThrottlingException {
|
|
109
|
-
|
|
110
|
-
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
111
|
-
}
|
|
112
88
|
|
|
113
89
|
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
114
90
|
name: "ValidationException";
|
|
115
91
|
$fault: "client";
|
|
116
92
|
Message: string | undefined;
|
|
117
93
|
}
|
|
118
|
-
export declare
|
|
94
|
+
export declare enum S3EncryptionOption {
|
|
95
|
+
SSE_KMS = "SSE_KMS",
|
|
96
|
+
SSE_S3 = "SSE_S3"
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface S3Configuration {
|
|
100
|
+
|
|
101
|
+
BucketName?: string;
|
|
102
|
+
|
|
103
|
+
ObjectKeyPrefix?: string;
|
|
104
|
+
|
|
105
|
+
EncryptionOption?: S3EncryptionOption | string;
|
|
106
|
+
|
|
107
|
+
KmsKeyId?: string;
|
|
108
|
+
}
|
|
109
|
+
export declare namespace S3Configuration {
|
|
110
|
+
|
|
111
|
+
const filterSensitiveLog: (obj: S3Configuration) => any;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export interface MagneticStoreRejectedDataLocation {
|
|
115
|
+
|
|
116
|
+
S3Configuration?: S3Configuration;
|
|
117
|
+
}
|
|
118
|
+
export declare namespace MagneticStoreRejectedDataLocation {
|
|
119
|
+
|
|
120
|
+
const filterSensitiveLog: (obj: MagneticStoreRejectedDataLocation) => any;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export interface MagneticStoreWriteProperties {
|
|
124
|
+
|
|
125
|
+
EnableMagneticStoreWrites: boolean | undefined;
|
|
126
|
+
|
|
127
|
+
MagneticStoreRejectedDataLocation?: MagneticStoreRejectedDataLocation;
|
|
128
|
+
}
|
|
129
|
+
export declare namespace MagneticStoreWriteProperties {
|
|
119
130
|
|
|
120
|
-
const filterSensitiveLog: (obj:
|
|
131
|
+
const filterSensitiveLog: (obj: MagneticStoreWriteProperties) => any;
|
|
121
132
|
}
|
|
122
133
|
|
|
123
134
|
export interface RetentionProperties {
|
|
@@ -139,6 +150,8 @@ export interface CreateTableRequest {
|
|
|
139
150
|
RetentionProperties?: RetentionProperties;
|
|
140
151
|
|
|
141
152
|
Tags?: Tag[];
|
|
153
|
+
|
|
154
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
142
155
|
}
|
|
143
156
|
export declare namespace CreateTableRequest {
|
|
144
157
|
|
|
@@ -164,6 +177,8 @@ export interface Table {
|
|
|
164
177
|
CreationTime?: Date;
|
|
165
178
|
|
|
166
179
|
LastUpdatedTime?: Date;
|
|
180
|
+
|
|
181
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
167
182
|
}
|
|
168
183
|
export declare namespace Table {
|
|
169
184
|
|
|
@@ -183,10 +198,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
183
198
|
$fault: "client";
|
|
184
199
|
Message?: string;
|
|
185
200
|
}
|
|
186
|
-
export declare namespace ResourceNotFoundException {
|
|
187
|
-
|
|
188
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
189
|
-
}
|
|
190
201
|
export interface DeleteDatabaseRequest {
|
|
191
202
|
|
|
192
203
|
DatabaseName: string | undefined;
|
|
@@ -342,8 +353,23 @@ export declare enum MeasureValueType {
|
|
|
342
353
|
BIGINT = "BIGINT",
|
|
343
354
|
BOOLEAN = "BOOLEAN",
|
|
344
355
|
DOUBLE = "DOUBLE",
|
|
356
|
+
MULTI = "MULTI",
|
|
357
|
+
TIMESTAMP = "TIMESTAMP",
|
|
345
358
|
VARCHAR = "VARCHAR"
|
|
346
359
|
}
|
|
360
|
+
|
|
361
|
+
export interface MeasureValue {
|
|
362
|
+
|
|
363
|
+
Name: string | undefined;
|
|
364
|
+
|
|
365
|
+
Value: string | undefined;
|
|
366
|
+
|
|
367
|
+
Type: MeasureValueType | string | undefined;
|
|
368
|
+
}
|
|
369
|
+
export declare namespace MeasureValue {
|
|
370
|
+
|
|
371
|
+
const filterSensitiveLog: (obj: MeasureValue) => any;
|
|
372
|
+
}
|
|
347
373
|
export declare enum TimeUnit {
|
|
348
374
|
MICROSECONDS = "MICROSECONDS",
|
|
349
375
|
MILLISECONDS = "MILLISECONDS",
|
|
@@ -366,12 +392,27 @@ export interface _Record {
|
|
|
366
392
|
TimeUnit?: TimeUnit | string;
|
|
367
393
|
|
|
368
394
|
Version?: number;
|
|
395
|
+
|
|
396
|
+
MeasureValues?: MeasureValue[];
|
|
369
397
|
}
|
|
370
398
|
export declare namespace _Record {
|
|
371
399
|
|
|
372
400
|
const filterSensitiveLog: (obj: _Record) => any;
|
|
373
401
|
}
|
|
374
402
|
|
|
403
|
+
export interface RecordsIngested {
|
|
404
|
+
|
|
405
|
+
Total?: number;
|
|
406
|
+
|
|
407
|
+
MemoryStore?: number;
|
|
408
|
+
|
|
409
|
+
MagneticStore?: number;
|
|
410
|
+
}
|
|
411
|
+
export declare namespace RecordsIngested {
|
|
412
|
+
|
|
413
|
+
const filterSensitiveLog: (obj: RecordsIngested) => any;
|
|
414
|
+
}
|
|
415
|
+
|
|
375
416
|
export interface RejectedRecord {
|
|
376
417
|
|
|
377
418
|
RecordIndex?: number;
|
|
@@ -391,10 +432,6 @@ export interface RejectedRecordsException extends __SmithyException, $MetadataBe
|
|
|
391
432
|
Message?: string;
|
|
392
433
|
RejectedRecords?: RejectedRecord[];
|
|
393
434
|
}
|
|
394
|
-
export declare namespace RejectedRecordsException {
|
|
395
|
-
|
|
396
|
-
const filterSensitiveLog: (obj: RejectedRecordsException) => any;
|
|
397
|
-
}
|
|
398
435
|
export interface TagResourceRequest {
|
|
399
436
|
|
|
400
437
|
ResourceARN: string | undefined;
|
|
@@ -451,7 +488,9 @@ export interface UpdateTableRequest {
|
|
|
451
488
|
|
|
452
489
|
TableName: string | undefined;
|
|
453
490
|
|
|
454
|
-
RetentionProperties
|
|
491
|
+
RetentionProperties?: RetentionProperties;
|
|
492
|
+
|
|
493
|
+
MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
|
|
455
494
|
}
|
|
456
495
|
export declare namespace UpdateTableRequest {
|
|
457
496
|
|
|
@@ -479,3 +518,11 @@ export declare namespace WriteRecordsRequest {
|
|
|
479
518
|
|
|
480
519
|
const filterSensitiveLog: (obj: WriteRecordsRequest) => any;
|
|
481
520
|
}
|
|
521
|
+
export interface WriteRecordsResponse {
|
|
522
|
+
|
|
523
|
+
RecordsIngested?: RecordsIngested;
|
|
524
|
+
}
|
|
525
|
+
export declare namespace WriteRecordsResponse {
|
|
526
|
+
|
|
527
|
+
const filterSensitiveLog: (obj: WriteRecordsResponse) => any;
|
|
528
|
+
}
|
|
@@ -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 { TimestreamWriteClientConfig } from "./TimestreamWriteClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) => {
|
|
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;
|
|
@@ -11,7 +12,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
11
12
|
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
|
|
12
13
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
14
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
15
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { TimestreamWriteClientConfig } from "./TimestreamWriteClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) => {
|
|
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
|
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
|
|
12
13
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
14
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
15
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -24,6 +24,7 @@ export declare const getRuntimeConfig: (config: TimestreamWriteClientConfig) =>
|
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
26
|
endpointDiscoveryEnabledProvider: import("@aws-sdk/types").Provider<boolean | undefined>;
|
|
27
|
+
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>;
|
|
27
28
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
29
|
tls?: boolean | undefined;
|
|
29
30
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-write",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Write 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": "jest --coverage --passWithNoTests"
|
|
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,49 +18,45 @@
|
|
|
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-endpoint-discovery": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
46
|
-
"@aws-sdk/util-base64-node": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
52
|
-
"@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-endpoint-discovery": "3.47.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.47.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.47.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.47.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.47.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.47.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.47.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.47.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.47.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.47.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.47.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.47.0",
|
|
40
|
+
"@aws-sdk/types": "3.47.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.47.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.47.0",
|
|
43
|
+
"@aws-sdk/util-base64-node": "3.47.0",
|
|
44
|
+
"@aws-sdk/util-body-length-browser": "3.47.0",
|
|
45
|
+
"@aws-sdk/util-body-length-node": "3.47.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.47.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.47.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.47.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.47.0",
|
|
53
52
|
"tslib": "^2.3.0"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
57
|
-
"@types/node": "^12.7.5"
|
|
58
|
-
"downlevel-dts": "0.7.0",
|
|
59
|
-
"jest": "^26.1.0",
|
|
60
|
-
"rimraf": "^3.0.0",
|
|
61
|
-
"ts-jest": "^26.4.1",
|
|
62
|
-
"typedoc": "^0.19.2",
|
|
63
|
-
"typescript": "~4.3.5"
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.0",
|
|
56
|
+
"@types/node": "^12.7.5"
|
|
64
57
|
},
|
|
65
58
|
"engines": {
|
|
66
|
-
"node": ">=
|
|
59
|
+
"node": ">=12.0.0"
|
|
67
60
|
},
|
|
68
61
|
"typesVersions": {
|
|
69
62
|
"<4.0": {
|