@aws-sdk/client-iotsitewise 3.716.0 → 3.723.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/dist-cjs/index.js +496 -350
- package/dist-es/IoTSiteWiseClient.js +1 -0
- package/dist-es/models/models_0.js +30 -24
- package/dist-es/models/models_1.js +5 -4
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +47 -47
|
@@ -15,6 +15,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
15
15
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
16
16
|
export { __Client };
|
|
17
17
|
export class IoTSiteWiseClient extends __Client {
|
|
18
|
+
config;
|
|
18
19
|
constructor(...[configuration]) {
|
|
19
20
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
20
21
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { IoTSiteWiseServiceException as __BaseException } from "./IoTSiteWiseServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
4
6
|
constructor(opts) {
|
|
5
7
|
super({
|
|
6
8
|
name: "AccessDeniedException",
|
|
7
9
|
$fault: "client",
|
|
8
10
|
...opts,
|
|
9
11
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -86,90 +86,94 @@ export const AssetState = {
|
|
|
86
86
|
UPDATING: "UPDATING",
|
|
87
87
|
};
|
|
88
88
|
export class ConflictingOperationException extends __BaseException {
|
|
89
|
+
name = "ConflictingOperationException";
|
|
90
|
+
$fault = "client";
|
|
91
|
+
resourceId;
|
|
92
|
+
resourceArn;
|
|
89
93
|
constructor(opts) {
|
|
90
94
|
super({
|
|
91
95
|
name: "ConflictingOperationException",
|
|
92
96
|
$fault: "client",
|
|
93
97
|
...opts,
|
|
94
98
|
});
|
|
95
|
-
this.name = "ConflictingOperationException";
|
|
96
|
-
this.$fault = "client";
|
|
97
99
|
Object.setPrototypeOf(this, ConflictingOperationException.prototype);
|
|
98
100
|
this.resourceId = opts.resourceId;
|
|
99
101
|
this.resourceArn = opts.resourceArn;
|
|
100
102
|
}
|
|
101
103
|
}
|
|
102
104
|
export class InternalFailureException extends __BaseException {
|
|
105
|
+
name = "InternalFailureException";
|
|
106
|
+
$fault = "server";
|
|
103
107
|
constructor(opts) {
|
|
104
108
|
super({
|
|
105
109
|
name: "InternalFailureException",
|
|
106
110
|
$fault: "server",
|
|
107
111
|
...opts,
|
|
108
112
|
});
|
|
109
|
-
this.name = "InternalFailureException";
|
|
110
|
-
this.$fault = "server";
|
|
111
113
|
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
112
114
|
}
|
|
113
115
|
}
|
|
114
116
|
export class InvalidRequestException extends __BaseException {
|
|
117
|
+
name = "InvalidRequestException";
|
|
118
|
+
$fault = "client";
|
|
115
119
|
constructor(opts) {
|
|
116
120
|
super({
|
|
117
121
|
name: "InvalidRequestException",
|
|
118
122
|
$fault: "client",
|
|
119
123
|
...opts,
|
|
120
124
|
});
|
|
121
|
-
this.name = "InvalidRequestException";
|
|
122
|
-
this.$fault = "client";
|
|
123
125
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
124
126
|
}
|
|
125
127
|
}
|
|
126
128
|
export class LimitExceededException extends __BaseException {
|
|
129
|
+
name = "LimitExceededException";
|
|
130
|
+
$fault = "client";
|
|
127
131
|
constructor(opts) {
|
|
128
132
|
super({
|
|
129
133
|
name: "LimitExceededException",
|
|
130
134
|
$fault: "client",
|
|
131
135
|
...opts,
|
|
132
136
|
});
|
|
133
|
-
this.name = "LimitExceededException";
|
|
134
|
-
this.$fault = "client";
|
|
135
137
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
136
138
|
}
|
|
137
139
|
}
|
|
138
140
|
export class ResourceAlreadyExistsException extends __BaseException {
|
|
141
|
+
name = "ResourceAlreadyExistsException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
resourceId;
|
|
144
|
+
resourceArn;
|
|
139
145
|
constructor(opts) {
|
|
140
146
|
super({
|
|
141
147
|
name: "ResourceAlreadyExistsException",
|
|
142
148
|
$fault: "client",
|
|
143
149
|
...opts,
|
|
144
150
|
});
|
|
145
|
-
this.name = "ResourceAlreadyExistsException";
|
|
146
|
-
this.$fault = "client";
|
|
147
151
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
148
152
|
this.resourceId = opts.resourceId;
|
|
149
153
|
this.resourceArn = opts.resourceArn;
|
|
150
154
|
}
|
|
151
155
|
}
|
|
152
156
|
export class ResourceNotFoundException extends __BaseException {
|
|
157
|
+
name = "ResourceNotFoundException";
|
|
158
|
+
$fault = "client";
|
|
153
159
|
constructor(opts) {
|
|
154
160
|
super({
|
|
155
161
|
name: "ResourceNotFoundException",
|
|
156
162
|
$fault: "client",
|
|
157
163
|
...opts,
|
|
158
164
|
});
|
|
159
|
-
this.name = "ResourceNotFoundException";
|
|
160
|
-
this.$fault = "client";
|
|
161
165
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
162
166
|
}
|
|
163
167
|
}
|
|
164
168
|
export class ThrottlingException extends __BaseException {
|
|
169
|
+
name = "ThrottlingException";
|
|
170
|
+
$fault = "client";
|
|
165
171
|
constructor(opts) {
|
|
166
172
|
super({
|
|
167
173
|
name: "ThrottlingException",
|
|
168
174
|
$fault: "client",
|
|
169
175
|
...opts,
|
|
170
176
|
});
|
|
171
|
-
this.name = "ThrottlingException";
|
|
172
|
-
this.$fault = "client";
|
|
173
177
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
174
178
|
}
|
|
175
179
|
}
|
|
@@ -191,14 +195,14 @@ export const BatchEntryCompletionStatus = {
|
|
|
191
195
|
SUCCESS: "SUCCESS",
|
|
192
196
|
};
|
|
193
197
|
export class ServiceUnavailableException extends __BaseException {
|
|
198
|
+
name = "ServiceUnavailableException";
|
|
199
|
+
$fault = "server";
|
|
194
200
|
constructor(opts) {
|
|
195
201
|
super({
|
|
196
202
|
name: "ServiceUnavailableException",
|
|
197
203
|
$fault: "server",
|
|
198
204
|
...opts,
|
|
199
205
|
});
|
|
200
|
-
this.name = "ServiceUnavailableException";
|
|
201
|
-
this.$fault = "server";
|
|
202
206
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
203
207
|
}
|
|
204
208
|
}
|
|
@@ -224,14 +228,16 @@ export const BatchPutAssetPropertyValueErrorCode = {
|
|
|
224
228
|
TimestampOutOfRangeException: "TimestampOutOfRangeException",
|
|
225
229
|
};
|
|
226
230
|
export class PreconditionFailedException extends __BaseException {
|
|
231
|
+
name = "PreconditionFailedException";
|
|
232
|
+
$fault = "client";
|
|
233
|
+
resourceId;
|
|
234
|
+
resourceArn;
|
|
227
235
|
constructor(opts) {
|
|
228
236
|
super({
|
|
229
237
|
name: "PreconditionFailedException",
|
|
230
238
|
$fault: "client",
|
|
231
239
|
...opts,
|
|
232
240
|
});
|
|
233
|
-
this.name = "PreconditionFailedException";
|
|
234
|
-
this.$fault = "client";
|
|
235
241
|
Object.setPrototypeOf(this, PreconditionFailedException.prototype);
|
|
236
242
|
this.resourceId = opts.resourceId;
|
|
237
243
|
this.resourceArn = opts.resourceArn;
|
|
@@ -329,26 +335,26 @@ export const ScalarType = {
|
|
|
329
335
|
TIMESTAMP: "TIMESTAMP",
|
|
330
336
|
};
|
|
331
337
|
export class QueryTimeoutException extends __BaseException {
|
|
338
|
+
name = "QueryTimeoutException";
|
|
339
|
+
$fault = "client";
|
|
332
340
|
constructor(opts) {
|
|
333
341
|
super({
|
|
334
342
|
name: "QueryTimeoutException",
|
|
335
343
|
$fault: "client",
|
|
336
344
|
...opts,
|
|
337
345
|
});
|
|
338
|
-
this.name = "QueryTimeoutException";
|
|
339
|
-
this.$fault = "client";
|
|
340
346
|
Object.setPrototypeOf(this, QueryTimeoutException.prototype);
|
|
341
347
|
}
|
|
342
348
|
}
|
|
343
349
|
export class ValidationException extends __BaseException {
|
|
350
|
+
name = "ValidationException";
|
|
351
|
+
$fault = "client";
|
|
344
352
|
constructor(opts) {
|
|
345
353
|
super({
|
|
346
354
|
name: "ValidationException",
|
|
347
355
|
$fault: "client",
|
|
348
356
|
...opts,
|
|
349
357
|
});
|
|
350
|
-
this.name = "ValidationException";
|
|
351
|
-
this.$fault = "client";
|
|
352
358
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
353
359
|
}
|
|
354
360
|
}
|
|
@@ -10,14 +10,14 @@ export const ListBulkImportJobsFilter = {
|
|
|
10
10
|
RUNNING: "RUNNING",
|
|
11
11
|
};
|
|
12
12
|
export class UnauthorizedException extends __BaseException {
|
|
13
|
+
name = "UnauthorizedException";
|
|
14
|
+
$fault = "client";
|
|
13
15
|
constructor(opts) {
|
|
14
16
|
super({
|
|
15
17
|
name: "UnauthorizedException",
|
|
16
18
|
$fault: "client",
|
|
17
19
|
...opts,
|
|
18
20
|
});
|
|
19
|
-
this.name = "UnauthorizedException";
|
|
20
|
-
this.$fault = "client";
|
|
21
21
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -26,14 +26,15 @@ export const ListTimeSeriesType = {
|
|
|
26
26
|
DISASSOCIATED: "DISASSOCIATED",
|
|
27
27
|
};
|
|
28
28
|
export class TooManyTagsException extends __BaseException {
|
|
29
|
+
name = "TooManyTagsException";
|
|
30
|
+
$fault = "client";
|
|
31
|
+
resourceName;
|
|
29
32
|
constructor(opts) {
|
|
30
33
|
super({
|
|
31
34
|
name: "TooManyTagsException",
|
|
32
35
|
$fault: "client",
|
|
33
36
|
...opts,
|
|
34
37
|
});
|
|
35
|
-
this.name = "TooManyTagsException";
|
|
36
|
-
this.$fault = "client";
|
|
37
38
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
38
39
|
this.resourceName = opts.resourceName;
|
|
39
40
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
13
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
13
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
32
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
33
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
34
34
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
38
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -51,11 +53,21 @@ export declare const getRuntimeConfig: (config: IoTSiteWiseClientConfig) => {
|
|
|
51
53
|
| import("@smithy/types").RetryStrategyV2
|
|
52
54
|
| undefined;
|
|
53
55
|
endpoint?:
|
|
54
|
-
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
| ((
|
|
57
|
+
| string
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
) &
|
|
63
|
+
(
|
|
64
|
+
| string
|
|
65
|
+
| import("@smithy/types").Provider<string>
|
|
66
|
+
| import("@smithy/types").Endpoint
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
|
+
| import("@smithy/types").EndpointV2
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
|
+
))
|
|
59
71
|
| undefined;
|
|
60
72
|
endpointProvider: (
|
|
61
73
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotsitewise",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotsitewise Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iotsitewise",
|
|
@@ -20,62 +20,62 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/eventstream-serde-browser": "^
|
|
39
|
-
"@smithy/eventstream-serde-config-resolver": "^
|
|
40
|
-
"@smithy/eventstream-serde-node": "^
|
|
41
|
-
"@smithy/fetch-http-handler": "^
|
|
42
|
-
"@smithy/hash-node": "^
|
|
43
|
-
"@smithy/invalid-dependency": "^
|
|
44
|
-
"@smithy/middleware-content-length": "^
|
|
45
|
-
"@smithy/middleware-endpoint": "^
|
|
46
|
-
"@smithy/middleware-retry": "^
|
|
47
|
-
"@smithy/middleware-serde": "^
|
|
48
|
-
"@smithy/middleware-stack": "^
|
|
49
|
-
"@smithy/node-config-provider": "^
|
|
50
|
-
"@smithy/node-http-handler": "^
|
|
51
|
-
"@smithy/protocol-http": "^
|
|
52
|
-
"@smithy/smithy-client": "^
|
|
53
|
-
"@smithy/types": "^
|
|
54
|
-
"@smithy/url-parser": "^
|
|
55
|
-
"@smithy/util-base64": "^
|
|
56
|
-
"@smithy/util-body-length-browser": "^
|
|
57
|
-
"@smithy/util-body-length-node": "^
|
|
58
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
59
|
-
"@smithy/util-defaults-mode-node": "^
|
|
60
|
-
"@smithy/util-endpoints": "^
|
|
61
|
-
"@smithy/util-middleware": "^
|
|
62
|
-
"@smithy/util-retry": "^
|
|
63
|
-
"@smithy/util-utf8": "^
|
|
64
|
-
"@smithy/util-waiter": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/eventstream-serde-browser": "^4.0.0",
|
|
39
|
+
"@smithy/eventstream-serde-config-resolver": "^4.0.0",
|
|
40
|
+
"@smithy/eventstream-serde-node": "^4.0.0",
|
|
41
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
42
|
+
"@smithy/hash-node": "^4.0.0",
|
|
43
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
46
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
47
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
48
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
49
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
50
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
51
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
52
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
53
|
+
"@smithy/types": "^4.0.0",
|
|
54
|
+
"@smithy/url-parser": "^4.0.0",
|
|
55
|
+
"@smithy/util-base64": "^4.0.0",
|
|
56
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
57
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
58
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
59
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
60
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
61
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
62
|
+
"@smithy/util-retry": "^4.0.0",
|
|
63
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
64
|
+
"@smithy/util-waiter": "^4.0.0",
|
|
65
65
|
"@types/uuid": "^9.0.1",
|
|
66
66
|
"tslib": "^2.6.2",
|
|
67
67
|
"uuid": "^9.0.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@tsconfig/
|
|
71
|
-
"@types/node": "^
|
|
70
|
+
"@tsconfig/node18": "18.2.4",
|
|
71
|
+
"@types/node": "^18.19.69",
|
|
72
72
|
"concurrently": "7.0.0",
|
|
73
73
|
"downlevel-dts": "0.10.1",
|
|
74
74
|
"rimraf": "3.0.2",
|
|
75
|
-
"typescript": "~
|
|
75
|
+
"typescript": "~5.2.2"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
|
-
"node": ">=
|
|
78
|
+
"node": ">=18.0.0"
|
|
79
79
|
},
|
|
80
80
|
"typesVersions": {
|
|
81
81
|
"<4.0": {
|