@aws-sdk/client-personalize 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/PersonalizeServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +83 -4
- package/dist-cjs/protocols/Aws_json1_1.js +437 -1520
- package/dist-es/index.js +1 -0
- package/dist-es/models/PersonalizeServiceException.js +12 -0
- package/dist-es/models/models_0.js +74 -1
- package/dist-es/protocols/Aws_json1_1.js +1031 -1729
- package/dist-types/PersonalizeClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/PersonalizeServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -25
- 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/PersonalizeClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/PersonalizeServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -25
- 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 { CreateBatchInferenceJobCommandInput, CreateBatchInferenceJobCommandOutput } from "./commands/CreateBatchInferenceJobCommand";
|
|
10
10
|
import { CreateBatchSegmentJobCommandInput, CreateBatchSegmentJobCommandOutput } from "./commands/CreateBatchSegmentJobCommand";
|
|
11
11
|
import { CreateCampaignCommandInput, CreateCampaignCommandOutput } from "./commands/CreateCampaignCommand";
|
|
@@ -83,7 +83,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
83
83
|
* A function that can calculate the length of a request body.
|
|
84
84
|
* @internal
|
|
85
85
|
*/
|
|
86
|
-
bodyLengthChecker?:
|
|
86
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
87
87
|
/**
|
|
88
88
|
* A function that converts a stream into an array of bytes.
|
|
89
89
|
* @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 Personalize service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class PersonalizeServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { PersonalizeServiceException as __BaseException } from "./PersonalizeServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Describes an algorithm image.</p>
|
|
4
5
|
*/
|
|
@@ -313,42 +314,57 @@ export declare namespace CreateBatchInferenceJobResponse {
|
|
|
313
314
|
/**
|
|
314
315
|
* <p>Provide a valid value for the field or parameter.</p>
|
|
315
316
|
*/
|
|
316
|
-
export
|
|
317
|
-
name: "InvalidInputException";
|
|
318
|
-
$fault: "client";
|
|
319
|
-
|
|
317
|
+
export declare class InvalidInputException extends __BaseException {
|
|
318
|
+
readonly name: "InvalidInputException";
|
|
319
|
+
readonly $fault: "client";
|
|
320
|
+
/**
|
|
321
|
+
* @internal
|
|
322
|
+
*/
|
|
323
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
320
324
|
}
|
|
321
325
|
/**
|
|
322
326
|
* <p>The limit on the number of requests per second has been exceeded.</p>
|
|
323
327
|
*/
|
|
324
|
-
export
|
|
325
|
-
name: "LimitExceededException";
|
|
326
|
-
$fault: "client";
|
|
327
|
-
|
|
328
|
+
export declare class LimitExceededException extends __BaseException {
|
|
329
|
+
readonly name: "LimitExceededException";
|
|
330
|
+
readonly $fault: "client";
|
|
331
|
+
/**
|
|
332
|
+
* @internal
|
|
333
|
+
*/
|
|
334
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
328
335
|
}
|
|
329
336
|
/**
|
|
330
337
|
* <p>The specified resource already exists.</p>
|
|
331
338
|
*/
|
|
332
|
-
export
|
|
333
|
-
name: "ResourceAlreadyExistsException";
|
|
334
|
-
$fault: "client";
|
|
335
|
-
|
|
339
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
340
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
341
|
+
readonly $fault: "client";
|
|
342
|
+
/**
|
|
343
|
+
* @internal
|
|
344
|
+
*/
|
|
345
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
336
346
|
}
|
|
337
347
|
/**
|
|
338
348
|
* <p>The specified resource is in use.</p>
|
|
339
349
|
*/
|
|
340
|
-
export
|
|
341
|
-
name: "ResourceInUseException";
|
|
342
|
-
$fault: "client";
|
|
343
|
-
|
|
350
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
351
|
+
readonly name: "ResourceInUseException";
|
|
352
|
+
readonly $fault: "client";
|
|
353
|
+
/**
|
|
354
|
+
* @internal
|
|
355
|
+
*/
|
|
356
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
344
357
|
}
|
|
345
358
|
/**
|
|
346
359
|
* <p>Could not find the specified resource.</p>
|
|
347
360
|
*/
|
|
348
|
-
export
|
|
349
|
-
name: "ResourceNotFoundException";
|
|
350
|
-
$fault: "client";
|
|
351
|
-
|
|
361
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
362
|
+
readonly name: "ResourceNotFoundException";
|
|
363
|
+
readonly $fault: "client";
|
|
364
|
+
/**
|
|
365
|
+
* @internal
|
|
366
|
+
*/
|
|
367
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
352
368
|
}
|
|
353
369
|
/**
|
|
354
370
|
* <p>The input configuration of a batch segment job.</p>
|
|
@@ -2912,10 +2928,13 @@ export declare namespace GetSolutionMetricsResponse {
|
|
|
2912
2928
|
/**
|
|
2913
2929
|
* <p>The token is not valid.</p>
|
|
2914
2930
|
*/
|
|
2915
|
-
export
|
|
2916
|
-
name: "InvalidNextTokenException";
|
|
2917
|
-
$fault: "client";
|
|
2918
|
-
|
|
2931
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
2932
|
+
readonly name: "InvalidNextTokenException";
|
|
2933
|
+
readonly $fault: "client";
|
|
2934
|
+
/**
|
|
2935
|
+
* @internal
|
|
2936
|
+
*/
|
|
2937
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2919
2938
|
}
|
|
2920
2939
|
export interface ListBatchInferenceJobsRequest {
|
|
2921
2940
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PersonalizeClientConfig) => {
|
|
|
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: PersonalizeClientConfig) => {
|
|
|
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: PersonalizeClientConfig) => {
|
|
|
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 { CreateBatchInferenceJobCommandInput, CreateBatchInferenceJobCommandOutput } from "./commands/CreateBatchInferenceJobCommand";
|
|
10
10
|
import { CreateBatchSegmentJobCommandInput, CreateBatchSegmentJobCommandOutput } from "./commands/CreateBatchSegmentJobCommand";
|
|
11
11
|
import { CreateCampaignCommandInput, CreateCampaignCommandOutput } from "./commands/CreateCampaignCommand";
|
|
@@ -71,7 +71,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
71
71
|
|
|
72
72
|
urlParser?: __UrlParser;
|
|
73
73
|
|
|
74
|
-
bodyLengthChecker?:
|
|
74
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
75
75
|
|
|
76
76
|
streamCollector?: __StreamCollector;
|
|
77
77
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class PersonalizeServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { PersonalizeServiceException as __BaseException } from "./PersonalizeServiceException";
|
|
2
3
|
|
|
3
4
|
export interface AlgorithmImage {
|
|
4
5
|
|
|
@@ -168,34 +169,39 @@ export declare namespace CreateBatchInferenceJobResponse {
|
|
|
168
169
|
const filterSensitiveLog: (obj: CreateBatchInferenceJobResponse) => any;
|
|
169
170
|
}
|
|
170
171
|
|
|
171
|
-
export
|
|
172
|
-
name: "InvalidInputException";
|
|
173
|
-
$fault: "client";
|
|
174
|
-
|
|
172
|
+
export declare class InvalidInputException extends __BaseException {
|
|
173
|
+
readonly name: "InvalidInputException";
|
|
174
|
+
readonly $fault: "client";
|
|
175
|
+
|
|
176
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
175
177
|
}
|
|
176
178
|
|
|
177
|
-
export
|
|
178
|
-
name: "LimitExceededException";
|
|
179
|
-
$fault: "client";
|
|
180
|
-
|
|
179
|
+
export declare class LimitExceededException extends __BaseException {
|
|
180
|
+
readonly name: "LimitExceededException";
|
|
181
|
+
readonly $fault: "client";
|
|
182
|
+
|
|
183
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
181
184
|
}
|
|
182
185
|
|
|
183
|
-
export
|
|
184
|
-
name: "ResourceAlreadyExistsException";
|
|
185
|
-
$fault: "client";
|
|
186
|
-
|
|
186
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
187
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
188
|
+
readonly $fault: "client";
|
|
189
|
+
|
|
190
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
187
191
|
}
|
|
188
192
|
|
|
189
|
-
export
|
|
190
|
-
name: "ResourceInUseException";
|
|
191
|
-
$fault: "client";
|
|
192
|
-
|
|
193
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
194
|
+
readonly name: "ResourceInUseException";
|
|
195
|
+
readonly $fault: "client";
|
|
196
|
+
|
|
197
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
193
198
|
}
|
|
194
199
|
|
|
195
|
-
export
|
|
196
|
-
name: "ResourceNotFoundException";
|
|
197
|
-
$fault: "client";
|
|
198
|
-
|
|
200
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
201
|
+
readonly name: "ResourceNotFoundException";
|
|
202
|
+
readonly $fault: "client";
|
|
203
|
+
|
|
204
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
199
205
|
}
|
|
200
206
|
|
|
201
207
|
export interface BatchSegmentJobInput {
|
|
@@ -1493,10 +1499,11 @@ export declare namespace GetSolutionMetricsResponse {
|
|
|
1493
1499
|
const filterSensitiveLog: (obj: GetSolutionMetricsResponse) => any;
|
|
1494
1500
|
}
|
|
1495
1501
|
|
|
1496
|
-
export
|
|
1497
|
-
name: "InvalidNextTokenException";
|
|
1498
|
-
$fault: "client";
|
|
1499
|
-
|
|
1502
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
1503
|
+
readonly name: "InvalidNextTokenException";
|
|
1504
|
+
readonly $fault: "client";
|
|
1505
|
+
|
|
1506
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
1500
1507
|
}
|
|
1501
1508
|
export interface ListBatchInferenceJobsRequest {
|
|
1502
1509
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: PersonalizeClientConfig) => {
|
|
|
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: PersonalizeClientConfig) => {
|
|
|
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: PersonalizeClientConfig) => {
|
|
|
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-personalize",
|
|
3
3
|
"description": "AWS SDK for JavaScript Personalize 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",
|