@aws-sdk/client-iottwinmaker 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.
@@ -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 { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "./commands/BatchPutPropertyValuesCommand";
10
10
  import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
11
11
  import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
@@ -54,7 +54,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
54
54
  * A function that can calculate the length of a request body.
55
55
  * @internal
56
56
  */
57
- bodyLengthChecker?: (body: any) => number | undefined;
57
+ bodyLengthChecker?: __BodyLengthCalculator;
58
58
  /**
59
59
  * A function that converts a stream into an array of bytes.
60
60
  * @internal
@@ -3,3 +3,4 @@ export * from "./IoTTwinMakerClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { IoTTwinMakerServiceException } from "./models/IoTTwinMakerServiceException";
@@ -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 IoTTwinMaker service.
4
+ */
5
+ export declare class IoTTwinMakerServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,11 +1,15 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
2
3
  /**
3
4
  * <p>Access is denied.</p>
4
5
  */
5
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
6
- name: "AccessDeniedException";
7
- $fault: "client";
8
- message?: string;
6
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
+ /**
10
+ * @internal
11
+ */
12
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
13
  }
10
14
  /**
11
15
  * <p>An object that uniquely identifies an entity property.</p>
@@ -58,42 +62,57 @@ export declare namespace RelationshipValue {
58
62
  /**
59
63
  * <p>An unexpected error has occurred.</p>
60
64
  */
61
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
62
- name: "InternalServerException";
63
- $fault: "server";
64
- message?: string;
65
+ export declare class InternalServerException extends __BaseException {
66
+ readonly name: "InternalServerException";
67
+ readonly $fault: "server";
68
+ /**
69
+ * @internal
70
+ */
71
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
65
72
  }
66
73
  /**
67
74
  * <p>The resource wasn't found.</p>
68
75
  */
69
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
70
- name: "ResourceNotFoundException";
71
- $fault: "client";
72
- message?: string;
76
+ export declare class ResourceNotFoundException extends __BaseException {
77
+ readonly name: "ResourceNotFoundException";
78
+ readonly $fault: "client";
79
+ /**
80
+ * @internal
81
+ */
82
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
73
83
  }
74
84
  /**
75
85
  * <p>The rate exceeds the limit.</p>
76
86
  */
77
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
78
- name: "ThrottlingException";
79
- $fault: "client";
80
- message?: string;
87
+ export declare class ThrottlingException extends __BaseException {
88
+ readonly name: "ThrottlingException";
89
+ readonly $fault: "client";
90
+ /**
91
+ * @internal
92
+ */
93
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
81
94
  }
82
95
  /**
83
96
  * <p>Failed</p>
84
97
  */
85
- export interface ValidationException extends __SmithyException, $MetadataBearer {
86
- name: "ValidationException";
87
- $fault: "client";
88
- message?: string;
98
+ export declare class ValidationException extends __BaseException {
99
+ readonly name: "ValidationException";
100
+ readonly $fault: "client";
101
+ /**
102
+ * @internal
103
+ */
104
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
89
105
  }
90
106
  /**
91
107
  * <p>A conflict occurred.</p>
92
108
  */
93
- export interface ConflictException extends __SmithyException, $MetadataBearer {
94
- name: "ConflictException";
95
- $fault: "client";
96
- message?: string;
109
+ export declare class ConflictException extends __BaseException {
110
+ readonly name: "ConflictException";
111
+ readonly $fault: "client";
112
+ /**
113
+ * @internal
114
+ */
115
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
97
116
  }
98
117
  /**
99
118
  * <p>The Lambda function.</p>
@@ -215,10 +234,13 @@ export declare namespace CreateComponentTypeResponse {
215
234
  /**
216
235
  * <p>The service quota was exceeded.</p>
217
236
  */
218
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
219
- name: "ServiceQuotaExceededException";
220
- $fault: "client";
221
- message?: string;
237
+ export declare class ServiceQuotaExceededException extends __BaseException {
238
+ readonly name: "ServiceQuotaExceededException";
239
+ readonly $fault: "client";
240
+ /**
241
+ * @internal
242
+ */
243
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
222
244
  }
223
245
  export declare enum PropertyUpdateType {
224
246
  DELETE = "DELETE",
@@ -552,18 +574,24 @@ export declare namespace GetEntityRequest {
552
574
  /**
553
575
  * <p>The connector failed.</p>
554
576
  */
555
- export interface ConnectorFailureException extends __SmithyException, $MetadataBearer {
556
- name: "ConnectorFailureException";
557
- $fault: "client";
558
- message?: string;
577
+ export declare class ConnectorFailureException extends __BaseException {
578
+ readonly name: "ConnectorFailureException";
579
+ readonly $fault: "client";
580
+ /**
581
+ * @internal
582
+ */
583
+ constructor(opts: __ExceptionOptionType<ConnectorFailureException, __BaseException>);
559
584
  }
560
585
  /**
561
586
  * <p>The connector timed out.</p>
562
587
  */
563
- export interface ConnectorTimeoutException extends __SmithyException, $MetadataBearer {
564
- name: "ConnectorTimeoutException";
565
- $fault: "client";
566
- message?: string;
588
+ export declare class ConnectorTimeoutException extends __BaseException {
589
+ readonly name: "ConnectorTimeoutException";
590
+ readonly $fault: "client";
591
+ /**
592
+ * @internal
593
+ */
594
+ constructor(opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>);
567
595
  }
568
596
  export interface GetPropertyValueRequest {
569
597
  /**
@@ -1181,10 +1209,13 @@ export declare namespace TagResourceResponse {
1181
1209
  /**
1182
1210
  * <p>The number of tags exceeds the limit.</p>
1183
1211
  */
1184
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
1185
- name: "TooManyTagsException";
1186
- $fault: "client";
1187
- message?: string;
1212
+ export declare class TooManyTagsException extends __BaseException {
1213
+ readonly name: "TooManyTagsException";
1214
+ readonly $fault: "client";
1215
+ /**
1216
+ * @internal
1217
+ */
1218
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
1188
1219
  }
1189
1220
  export interface UntagResourceRequest {
1190
1221
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
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: (body: any) => number | undefined;
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: IoTTwinMakerClientConfig) => {
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: (body: any) => number | undefined;
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: IoTTwinMakerClientConfig) => {
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: (body: any) => number | undefined;
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 { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "./commands/BatchPutPropertyValuesCommand";
10
10
  import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
11
11
  import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
@@ -42,7 +42,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
42
42
 
43
43
  urlParser?: __UrlParser;
44
44
 
45
- bodyLengthChecker?: (body: any) => number | undefined;
45
+ bodyLengthChecker?: __BodyLengthCalculator;
46
46
 
47
47
  streamCollector?: __StreamCollector;
48
48
 
@@ -3,3 +3,4 @@ export * from "./IoTTwinMakerClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { IoTTwinMakerServiceException } from "./models/IoTTwinMakerServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class IoTTwinMakerServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,9 +1,11 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
6
- message?: string;
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
7
9
  }
8
10
 
9
11
  export interface EntityPropertyReference {
@@ -34,34 +36,39 @@ export declare namespace RelationshipValue {
34
36
  const filterSensitiveLog: (obj: RelationshipValue) => any;
35
37
  }
36
38
 
37
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
38
- name: "InternalServerException";
39
- $fault: "server";
40
- message?: string;
39
+ export declare class InternalServerException extends __BaseException {
40
+ readonly name: "InternalServerException";
41
+ readonly $fault: "server";
42
+
43
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
41
44
  }
42
45
 
43
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
44
- name: "ResourceNotFoundException";
45
- $fault: "client";
46
- message?: string;
46
+ export declare class ResourceNotFoundException extends __BaseException {
47
+ readonly name: "ResourceNotFoundException";
48
+ readonly $fault: "client";
49
+
50
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
47
51
  }
48
52
 
49
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
50
- name: "ThrottlingException";
51
- $fault: "client";
52
- message?: string;
53
+ export declare class ThrottlingException extends __BaseException {
54
+ readonly name: "ThrottlingException";
55
+ readonly $fault: "client";
56
+
57
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
53
58
  }
54
59
 
55
- export interface ValidationException extends __SmithyException, $MetadataBearer {
56
- name: "ValidationException";
57
- $fault: "client";
58
- message?: string;
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+
64
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
59
65
  }
60
66
 
61
- export interface ConflictException extends __SmithyException, $MetadataBearer {
62
- name: "ConflictException";
63
- $fault: "client";
64
- message?: string;
67
+ export declare class ConflictException extends __BaseException {
68
+ readonly name: "ConflictException";
69
+ readonly $fault: "client";
70
+
71
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
65
72
  }
66
73
 
67
74
  export interface LambdaFunction {
@@ -141,10 +148,11 @@ export declare namespace CreateComponentTypeResponse {
141
148
  const filterSensitiveLog: (obj: CreateComponentTypeResponse) => any;
142
149
  }
143
150
 
144
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
145
- name: "ServiceQuotaExceededException";
146
- $fault: "client";
147
- message?: string;
151
+ export declare class ServiceQuotaExceededException extends __BaseException {
152
+ readonly name: "ServiceQuotaExceededException";
153
+ readonly $fault: "client";
154
+
155
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
148
156
  }
149
157
  export declare enum PropertyUpdateType {
150
158
  DELETE = "DELETE",
@@ -352,16 +360,18 @@ export declare namespace GetEntityRequest {
352
360
  const filterSensitiveLog: (obj: GetEntityRequest) => any;
353
361
  }
354
362
 
355
- export interface ConnectorFailureException extends __SmithyException, $MetadataBearer {
356
- name: "ConnectorFailureException";
357
- $fault: "client";
358
- message?: string;
363
+ export declare class ConnectorFailureException extends __BaseException {
364
+ readonly name: "ConnectorFailureException";
365
+ readonly $fault: "client";
366
+
367
+ constructor(opts: __ExceptionOptionType<ConnectorFailureException, __BaseException>);
359
368
  }
360
369
 
361
- export interface ConnectorTimeoutException extends __SmithyException, $MetadataBearer {
362
- name: "ConnectorTimeoutException";
363
- $fault: "client";
364
- message?: string;
370
+ export declare class ConnectorTimeoutException extends __BaseException {
371
+ readonly name: "ConnectorTimeoutException";
372
+ readonly $fault: "client";
373
+
374
+ constructor(opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>);
365
375
  }
366
376
  export interface GetPropertyValueRequest {
367
377
 
@@ -749,10 +759,11 @@ export declare namespace TagResourceResponse {
749
759
  const filterSensitiveLog: (obj: TagResourceResponse) => any;
750
760
  }
751
761
 
752
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
753
- name: "TooManyTagsException";
754
- $fault: "client";
755
- message?: string;
762
+ export declare class TooManyTagsException extends __BaseException {
763
+ readonly name: "TooManyTagsException";
764
+ readonly $fault: "client";
765
+
766
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
756
767
  }
757
768
  export interface UntagResourceRequest {
758
769
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
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: (body: any) => number | undefined;
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: IoTTwinMakerClientConfig) => {
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: (body: any) => number | undefined;
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: IoTTwinMakerClientConfig) => {
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: (body: any) => number | undefined;
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-iottwinmaker",
3
3
  "description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
4
- "version": "3.51.0",
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.51.0",
22
- "@aws-sdk/config-resolver": "3.51.0",
23
- "@aws-sdk/credential-provider-node": "3.51.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.51.0",
31
- "@aws-sdk/middleware-serde": "3.50.0",
32
- "@aws-sdk/middleware-signing": "3.50.0",
33
- "@aws-sdk/middleware-stack": "3.50.0",
34
- "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.51.0",
36
- "@aws-sdk/node-http-handler": "3.50.0",
37
- "@aws-sdk/protocol-http": "3.50.0",
38
- "@aws-sdk/smithy-client": "3.50.0",
39
- "@aws-sdk/types": "3.50.0",
40
- "@aws-sdk/url-parser": "3.50.0",
41
- "@aws-sdk/util-base64-browser": "3.49.0",
42
- "@aws-sdk/util-base64-node": "3.49.0",
43
- "@aws-sdk/util-body-length-browser": "3.49.0",
44
- "@aws-sdk/util-body-length-node": "3.49.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
- "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.51.0",
49
- "@aws-sdk/util-utf8-browser": "3.49.0",
50
- "@aws-sdk/util-utf8-node": "3.49.0",
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.49.0",
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",