@aws-sdk/client-imagebuilder 3.721.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 +415 -317
- package/dist-es/ImagebuilderClient.js +1 -0
- package/dist-es/models/models_0.js +34 -34
- 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 +43 -43
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class ImagebuilderClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -19,98 +19,98 @@ export const BuildType = {
|
|
|
19
19
|
USER_INITIATED: "USER_INITIATED",
|
|
20
20
|
};
|
|
21
21
|
export class CallRateLimitExceededException extends __BaseException {
|
|
22
|
+
name = "CallRateLimitExceededException";
|
|
23
|
+
$fault = "client";
|
|
22
24
|
constructor(opts) {
|
|
23
25
|
super({
|
|
24
26
|
name: "CallRateLimitExceededException",
|
|
25
27
|
$fault: "client",
|
|
26
28
|
...opts,
|
|
27
29
|
});
|
|
28
|
-
this.name = "CallRateLimitExceededException";
|
|
29
|
-
this.$fault = "client";
|
|
30
30
|
Object.setPrototypeOf(this, CallRateLimitExceededException.prototype);
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
export class ClientException extends __BaseException {
|
|
34
|
+
name = "ClientException";
|
|
35
|
+
$fault = "client";
|
|
34
36
|
constructor(opts) {
|
|
35
37
|
super({
|
|
36
38
|
name: "ClientException",
|
|
37
39
|
$fault: "client",
|
|
38
40
|
...opts,
|
|
39
41
|
});
|
|
40
|
-
this.name = "ClientException";
|
|
41
|
-
this.$fault = "client";
|
|
42
42
|
Object.setPrototypeOf(this, ClientException.prototype);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
export class ForbiddenException extends __BaseException {
|
|
46
|
+
name = "ForbiddenException";
|
|
47
|
+
$fault = "client";
|
|
46
48
|
constructor(opts) {
|
|
47
49
|
super({
|
|
48
50
|
name: "ForbiddenException",
|
|
49
51
|
$fault: "client",
|
|
50
52
|
...opts,
|
|
51
53
|
});
|
|
52
|
-
this.name = "ForbiddenException";
|
|
53
|
-
this.$fault = "client";
|
|
54
54
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
export class IdempotentParameterMismatchException extends __BaseException {
|
|
58
|
+
name = "IdempotentParameterMismatchException";
|
|
59
|
+
$fault = "client";
|
|
58
60
|
constructor(opts) {
|
|
59
61
|
super({
|
|
60
62
|
name: "IdempotentParameterMismatchException",
|
|
61
63
|
$fault: "client",
|
|
62
64
|
...opts,
|
|
63
65
|
});
|
|
64
|
-
this.name = "IdempotentParameterMismatchException";
|
|
65
|
-
this.$fault = "client";
|
|
66
66
|
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
export class InvalidRequestException extends __BaseException {
|
|
70
|
+
name = "InvalidRequestException";
|
|
71
|
+
$fault = "client";
|
|
70
72
|
constructor(opts) {
|
|
71
73
|
super({
|
|
72
74
|
name: "InvalidRequestException",
|
|
73
75
|
$fault: "client",
|
|
74
76
|
...opts,
|
|
75
77
|
});
|
|
76
|
-
this.name = "InvalidRequestException";
|
|
77
|
-
this.$fault = "client";
|
|
78
78
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
export class ResourceInUseException extends __BaseException {
|
|
82
|
+
name = "ResourceInUseException";
|
|
83
|
+
$fault = "client";
|
|
82
84
|
constructor(opts) {
|
|
83
85
|
super({
|
|
84
86
|
name: "ResourceInUseException",
|
|
85
87
|
$fault: "client",
|
|
86
88
|
...opts,
|
|
87
89
|
});
|
|
88
|
-
this.name = "ResourceInUseException";
|
|
89
|
-
this.$fault = "client";
|
|
90
90
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
export class ServiceException extends __BaseException {
|
|
94
|
+
name = "ServiceException";
|
|
95
|
+
$fault = "server";
|
|
94
96
|
constructor(opts) {
|
|
95
97
|
super({
|
|
96
98
|
name: "ServiceException",
|
|
97
99
|
$fault: "server",
|
|
98
100
|
...opts,
|
|
99
101
|
});
|
|
100
|
-
this.name = "ServiceException";
|
|
101
|
-
this.$fault = "server";
|
|
102
102
|
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
export class ServiceUnavailableException extends __BaseException {
|
|
106
|
+
name = "ServiceUnavailableException";
|
|
107
|
+
$fault = "server";
|
|
106
108
|
constructor(opts) {
|
|
107
109
|
super({
|
|
108
110
|
name: "ServiceUnavailableException",
|
|
109
111
|
$fault: "server",
|
|
110
112
|
...opts,
|
|
111
113
|
});
|
|
112
|
-
this.name = "ServiceUnavailableException";
|
|
113
|
-
this.$fault = "server";
|
|
114
114
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
115
115
|
}
|
|
116
116
|
}
|
|
@@ -150,50 +150,50 @@ export const EbsVolumeType = {
|
|
|
150
150
|
STANDARD: "standard",
|
|
151
151
|
};
|
|
152
152
|
export class InvalidParameterCombinationException extends __BaseException {
|
|
153
|
+
name = "InvalidParameterCombinationException";
|
|
154
|
+
$fault = "client";
|
|
153
155
|
constructor(opts) {
|
|
154
156
|
super({
|
|
155
157
|
name: "InvalidParameterCombinationException",
|
|
156
158
|
$fault: "client",
|
|
157
159
|
...opts,
|
|
158
160
|
});
|
|
159
|
-
this.name = "InvalidParameterCombinationException";
|
|
160
|
-
this.$fault = "client";
|
|
161
161
|
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
164
|
export class InvalidVersionNumberException extends __BaseException {
|
|
165
|
+
name = "InvalidVersionNumberException";
|
|
166
|
+
$fault = "client";
|
|
165
167
|
constructor(opts) {
|
|
166
168
|
super({
|
|
167
169
|
name: "InvalidVersionNumberException",
|
|
168
170
|
$fault: "client",
|
|
169
171
|
...opts,
|
|
170
172
|
});
|
|
171
|
-
this.name = "InvalidVersionNumberException";
|
|
172
|
-
this.$fault = "client";
|
|
173
173
|
Object.setPrototypeOf(this, InvalidVersionNumberException.prototype);
|
|
174
174
|
}
|
|
175
175
|
}
|
|
176
176
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
177
|
+
name = "ServiceQuotaExceededException";
|
|
178
|
+
$fault = "client";
|
|
177
179
|
constructor(opts) {
|
|
178
180
|
super({
|
|
179
181
|
name: "ServiceQuotaExceededException",
|
|
180
182
|
$fault: "client",
|
|
181
183
|
...opts,
|
|
182
184
|
});
|
|
183
|
-
this.name = "ServiceQuotaExceededException";
|
|
184
|
-
this.$fault = "client";
|
|
185
185
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
186
186
|
}
|
|
187
187
|
}
|
|
188
188
|
export class ResourceAlreadyExistsException extends __BaseException {
|
|
189
|
+
name = "ResourceAlreadyExistsException";
|
|
190
|
+
$fault = "client";
|
|
189
191
|
constructor(opts) {
|
|
190
192
|
super({
|
|
191
193
|
name: "ResourceAlreadyExistsException",
|
|
192
194
|
$fault: "client",
|
|
193
195
|
...opts,
|
|
194
196
|
});
|
|
195
|
-
this.name = "ResourceAlreadyExistsException";
|
|
196
|
-
this.$fault = "client";
|
|
197
197
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
198
198
|
}
|
|
199
199
|
}
|
|
@@ -248,26 +248,26 @@ export const WorkflowType = {
|
|
|
248
248
|
TEST: "TEST",
|
|
249
249
|
};
|
|
250
250
|
export class ResourceDependencyException extends __BaseException {
|
|
251
|
+
name = "ResourceDependencyException";
|
|
252
|
+
$fault = "client";
|
|
251
253
|
constructor(opts) {
|
|
252
254
|
super({
|
|
253
255
|
name: "ResourceDependencyException",
|
|
254
256
|
$fault: "client",
|
|
255
257
|
...opts,
|
|
256
258
|
});
|
|
257
|
-
this.name = "ResourceDependencyException";
|
|
258
|
-
this.$fault = "client";
|
|
259
259
|
Object.setPrototypeOf(this, ResourceDependencyException.prototype);
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
export class ResourceNotFoundException extends __BaseException {
|
|
263
|
+
name = "ResourceNotFoundException";
|
|
264
|
+
$fault = "client";
|
|
263
265
|
constructor(opts) {
|
|
264
266
|
super({
|
|
265
267
|
name: "ResourceNotFoundException",
|
|
266
268
|
$fault: "client",
|
|
267
269
|
...opts,
|
|
268
270
|
});
|
|
269
|
-
this.name = "ResourceNotFoundException";
|
|
270
|
-
this.$fault = "client";
|
|
271
271
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
272
272
|
}
|
|
273
273
|
}
|
|
@@ -330,14 +330,14 @@ export const WorkflowStepExecutionStatus = {
|
|
|
330
330
|
SKIPPED: "SKIPPED",
|
|
331
331
|
};
|
|
332
332
|
export class InvalidPaginationTokenException extends __BaseException {
|
|
333
|
+
name = "InvalidPaginationTokenException";
|
|
334
|
+
$fault = "client";
|
|
333
335
|
constructor(opts) {
|
|
334
336
|
super({
|
|
335
337
|
name: "InvalidPaginationTokenException",
|
|
336
338
|
$fault: "client",
|
|
337
339
|
...opts,
|
|
338
340
|
});
|
|
339
|
-
this.name = "InvalidPaginationTokenException";
|
|
340
|
-
this.$fault = "client";
|
|
341
341
|
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
342
342
|
}
|
|
343
343
|
}
|
|
@@ -361,26 +361,26 @@ export const LifecycleExecutionResourceStatus = {
|
|
|
361
361
|
SUCCESS: "SUCCESS",
|
|
362
362
|
};
|
|
363
363
|
export class InvalidParameterException extends __BaseException {
|
|
364
|
+
name = "InvalidParameterException";
|
|
365
|
+
$fault = "client";
|
|
364
366
|
constructor(opts) {
|
|
365
367
|
super({
|
|
366
368
|
name: "InvalidParameterException",
|
|
367
369
|
$fault: "client",
|
|
368
370
|
...opts,
|
|
369
371
|
});
|
|
370
|
-
this.name = "InvalidParameterException";
|
|
371
|
-
this.$fault = "client";
|
|
372
372
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
373
373
|
}
|
|
374
374
|
}
|
|
375
375
|
export class InvalidParameterValueException extends __BaseException {
|
|
376
|
+
name = "InvalidParameterValueException";
|
|
377
|
+
$fault = "client";
|
|
376
378
|
constructor(opts) {
|
|
377
379
|
super({
|
|
378
380
|
name: "InvalidParameterValueException",
|
|
379
381
|
$fault: "client",
|
|
380
382
|
...opts,
|
|
381
383
|
});
|
|
382
|
-
this.name = "InvalidParameterValueException";
|
|
383
|
-
this.$fault = "client";
|
|
384
384
|
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
385
385
|
}
|
|
386
386
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ImagebuilderClientConfig) => {
|
|
|
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
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ImagebuilderClientConfig) => {
|
|
|
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
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: ImagebuilderClientConfig) => {
|
|
|
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;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: ImagebuilderClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
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;
|
|
34
|
+
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;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: ImagebuilderClientConfig) => {
|
|
|
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: ImagebuilderClientConfig) => {
|
|
|
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: ImagebuilderClientConfig) => {
|
|
|
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;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: ImagebuilderClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-imagebuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Imagebuilder 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-imagebuilder",
|
|
@@ -20,58 +20,58 @@
|
|
|
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/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
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/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|