@aws-sdk/client-eks 3.1106.0 → 3.1108.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 +252 -15
- package/dist-es/index.js +1 -1
- package/dist-es/models/enums.js +8 -0
- package/dist-es/schemas/schemas_0.js +215 -14
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/CancelUpdateCommand.d.ts +2 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +50 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +25 -0
- package/dist-types/commands/DeregisterClusterCommand.d.ts +25 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +25 -0
- package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +121 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/RegisterClusterCommand.d.ts +25 -0
- package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +27 -2
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +16 -0
- package/dist-types/models/models_0.d.ts +464 -1
- package/dist-types/schemas/schemas_0.d.ts +28 -0
- package/dist-types/ts3.4/index.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +122 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +28 -0
- package/package.json +6 -6
|
@@ -34,6 +34,7 @@ import {
|
|
|
34
34
|
ProvisionedControlPlaneTier,
|
|
35
35
|
RepairAction,
|
|
36
36
|
ResolveConflicts,
|
|
37
|
+
ScoringStrategyType,
|
|
37
38
|
SpreadLevel,
|
|
38
39
|
SsoIdentityType,
|
|
39
40
|
SupportType,
|
|
@@ -137,6 +138,9 @@ export interface AddonPodIdentityConfiguration {
|
|
|
137
138
|
serviceAccount?: string | undefined;
|
|
138
139
|
recommendedManagedPolicies?: string[] | undefined;
|
|
139
140
|
}
|
|
141
|
+
export interface AllowedValuesConstraint {
|
|
142
|
+
allowedValues?: string[] | undefined;
|
|
143
|
+
}
|
|
140
144
|
export interface ArgoCdAwsIdcConfigRequest {
|
|
141
145
|
idcInstanceArn: string | undefined;
|
|
142
146
|
idcRegion?: string | undefined;
|
|
@@ -338,6 +342,22 @@ export interface ComputeConfigRequest {
|
|
|
338
342
|
export interface ControlPlaneScalingConfig {
|
|
339
343
|
tier?: ProvisionedControlPlaneTier | undefined;
|
|
340
344
|
}
|
|
345
|
+
export interface ServiceNodePortRange {
|
|
346
|
+
minPort?: number | undefined;
|
|
347
|
+
maxPort?: number | undefined;
|
|
348
|
+
}
|
|
349
|
+
export interface KubeApiServerConfigRequest {
|
|
350
|
+
eventTtl?: string | undefined;
|
|
351
|
+
serviceNodePortRange?: ServiceNodePortRange | undefined;
|
|
352
|
+
}
|
|
353
|
+
export interface HorizontalPodAutoscalerControllerConfigRequest {
|
|
354
|
+
horizontalPodAutoscalerSyncPeriod?: string | undefined;
|
|
355
|
+
}
|
|
356
|
+
export interface KubeControllerManagerConfigRequest {
|
|
357
|
+
horizontalPodAutoscalerControllerConfig?:
|
|
358
|
+
| HorizontalPodAutoscalerControllerConfigRequest
|
|
359
|
+
| undefined;
|
|
360
|
+
}
|
|
341
361
|
export interface ElasticLoadBalancing {
|
|
342
362
|
enabled?: boolean | undefined;
|
|
343
363
|
}
|
|
@@ -346,6 +366,20 @@ export interface KubernetesNetworkConfigRequest {
|
|
|
346
366
|
ipFamily?: IpFamily | undefined;
|
|
347
367
|
elasticLoadBalancing?: ElasticLoadBalancing | undefined;
|
|
348
368
|
}
|
|
369
|
+
export interface ResourceWeight {
|
|
370
|
+
name?: string | undefined;
|
|
371
|
+
weight?: number | undefined;
|
|
372
|
+
}
|
|
373
|
+
export interface ScoringStrategy {
|
|
374
|
+
type?: ScoringStrategyType | undefined;
|
|
375
|
+
resources?: ResourceWeight[] | undefined;
|
|
376
|
+
}
|
|
377
|
+
export interface NodeResourcesFitConfig {
|
|
378
|
+
scoringStrategy?: ScoringStrategy | undefined;
|
|
379
|
+
}
|
|
380
|
+
export interface KubeSchedulerConfigRequest {
|
|
381
|
+
nodeResourcesFit?: NodeResourcesFitConfig | undefined;
|
|
382
|
+
}
|
|
349
383
|
export interface LogSetup {
|
|
350
384
|
types?: LogType[] | undefined;
|
|
351
385
|
enabled?: boolean | undefined;
|
|
@@ -417,6 +451,9 @@ export interface CreateClusterRequest {
|
|
|
417
451
|
storageConfig?: StorageConfigRequest | undefined;
|
|
418
452
|
deletionProtection?: boolean | undefined;
|
|
419
453
|
controlPlaneScalingConfig?: ControlPlaneScalingConfig | undefined;
|
|
454
|
+
kubeApiServerConfig?: KubeApiServerConfigRequest | undefined;
|
|
455
|
+
kubeSchedulerConfig?: KubeSchedulerConfigRequest | undefined;
|
|
456
|
+
kubeControllerManagerConfig?: KubeControllerManagerConfigRequest | undefined;
|
|
420
457
|
}
|
|
421
458
|
export interface Certificate {
|
|
422
459
|
data?: string | undefined;
|
|
@@ -447,12 +484,27 @@ export interface OIDC {
|
|
|
447
484
|
export interface Identity {
|
|
448
485
|
oidc?: OIDC | undefined;
|
|
449
486
|
}
|
|
487
|
+
export interface KubeApiServerConfigResponse {
|
|
488
|
+
eventTtl?: string | undefined;
|
|
489
|
+
serviceNodePortRange?: ServiceNodePortRange | undefined;
|
|
490
|
+
}
|
|
491
|
+
export interface HorizontalPodAutoscalerControllerConfigResponse {
|
|
492
|
+
horizontalPodAutoscalerSyncPeriod?: string | undefined;
|
|
493
|
+
}
|
|
494
|
+
export interface KubeControllerManagerConfigResponse {
|
|
495
|
+
horizontalPodAutoscalerControllerConfig?:
|
|
496
|
+
| HorizontalPodAutoscalerControllerConfigResponse
|
|
497
|
+
| undefined;
|
|
498
|
+
}
|
|
450
499
|
export interface KubernetesNetworkConfigResponse {
|
|
451
500
|
serviceIpv4Cidr?: string | undefined;
|
|
452
501
|
serviceIpv6Cidr?: string | undefined;
|
|
453
502
|
ipFamily?: IpFamily | undefined;
|
|
454
503
|
elasticLoadBalancing?: ElasticLoadBalancing | undefined;
|
|
455
504
|
}
|
|
505
|
+
export interface KubeSchedulerConfigResponse {
|
|
506
|
+
nodeResourcesFit?: NodeResourcesFitConfig | undefined;
|
|
507
|
+
}
|
|
456
508
|
export interface ControlPlanePlacementResponse {
|
|
457
509
|
groupName?: string | undefined;
|
|
458
510
|
spreadLevel?: SpreadLevel | undefined;
|
|
@@ -519,6 +571,9 @@ export interface Cluster {
|
|
|
519
571
|
storageConfig?: StorageConfigResponse | undefined;
|
|
520
572
|
deletionProtection?: boolean | undefined;
|
|
521
573
|
controlPlaneScalingConfig?: ControlPlaneScalingConfig | undefined;
|
|
574
|
+
kubeApiServerConfig?: KubeApiServerConfigResponse | undefined;
|
|
575
|
+
kubeSchedulerConfig?: KubeSchedulerConfigResponse | undefined;
|
|
576
|
+
kubeControllerManagerConfig?: KubeControllerManagerConfigResponse | undefined;
|
|
522
577
|
}
|
|
523
578
|
export interface CreateClusterResponse {
|
|
524
579
|
cluster?: Cluster | undefined;
|
|
@@ -852,6 +907,68 @@ export interface DescribeClusterVersionsRequest {
|
|
|
852
907
|
status?: ClusterVersionStatus | undefined;
|
|
853
908
|
versionStatus?: VersionStatus | undefined;
|
|
854
909
|
}
|
|
910
|
+
export interface DurationConstraints {
|
|
911
|
+
min?: string | undefined;
|
|
912
|
+
max?: string | undefined;
|
|
913
|
+
}
|
|
914
|
+
export interface DurationParameterConfig {
|
|
915
|
+
defaultValue?: string | undefined;
|
|
916
|
+
constraints?: DurationConstraints | undefined;
|
|
917
|
+
}
|
|
918
|
+
export interface IntegerRangeConstraint {
|
|
919
|
+
min?: number | undefined;
|
|
920
|
+
max?: number | undefined;
|
|
921
|
+
}
|
|
922
|
+
export interface PortRangeConstraints {
|
|
923
|
+
minPort?: IntegerRangeConstraint | undefined;
|
|
924
|
+
maxPort?: IntegerRangeConstraint | undefined;
|
|
925
|
+
}
|
|
926
|
+
export interface PortRangeParameterConfig {
|
|
927
|
+
defaultValue?: ServiceNodePortRange | undefined;
|
|
928
|
+
constraints?: PortRangeConstraints | undefined;
|
|
929
|
+
}
|
|
930
|
+
export interface KubeApiServerVersionConfig {
|
|
931
|
+
eventTtl?: DurationParameterConfig | undefined;
|
|
932
|
+
serviceNodePortRange?: PortRangeParameterConfig | undefined;
|
|
933
|
+
}
|
|
934
|
+
export interface HorizontalPodAutoscalerControllerVersionConfig {
|
|
935
|
+
horizontalPodAutoscalerSyncPeriod?: DurationParameterConfig | undefined;
|
|
936
|
+
}
|
|
937
|
+
export interface KubeControllerManagerVersionConfig {
|
|
938
|
+
horizontalPodAutoscalerControllerConfig?:
|
|
939
|
+
| HorizontalPodAutoscalerControllerVersionConfig
|
|
940
|
+
| undefined;
|
|
941
|
+
}
|
|
942
|
+
export interface ResourceConstraints {
|
|
943
|
+
name?: AllowedValuesConstraint | undefined;
|
|
944
|
+
weight?: IntegerRangeConstraint | undefined;
|
|
945
|
+
}
|
|
946
|
+
export interface ScoringStrategyConstraints {
|
|
947
|
+
scoringStrategy?: AllowedValuesConstraint | undefined;
|
|
948
|
+
resources?: ResourceConstraints | undefined;
|
|
949
|
+
}
|
|
950
|
+
export interface ScoringStrategyConfig {
|
|
951
|
+
defaultValue?: ScoringStrategy | undefined;
|
|
952
|
+
constraints?: ScoringStrategyConstraints | undefined;
|
|
953
|
+
}
|
|
954
|
+
export interface NodeResourcesFitVersionConfig {
|
|
955
|
+
scoringStrategy?: ScoringStrategyConfig | undefined;
|
|
956
|
+
}
|
|
957
|
+
export interface KubeSchedulerVersionConfig {
|
|
958
|
+
nodeResourcesFit?: NodeResourcesFitVersionConfig | undefined;
|
|
959
|
+
}
|
|
960
|
+
export interface ControlPlaneConfigInfo {
|
|
961
|
+
kubeApiServerConfig?: KubeApiServerVersionConfig | undefined;
|
|
962
|
+
kubeSchedulerConfig?: KubeSchedulerVersionConfig | undefined;
|
|
963
|
+
kubeControllerManagerConfig?: KubeControllerManagerVersionConfig | undefined;
|
|
964
|
+
}
|
|
965
|
+
export interface ControlPlaneScalingTierInfo {
|
|
966
|
+
tierName?: string | undefined;
|
|
967
|
+
apiRequestConcurrency?: number | undefined;
|
|
968
|
+
podSchedulingRatePerSecond?: number | undefined;
|
|
969
|
+
clusterDatabaseSizeGb?: number | undefined;
|
|
970
|
+
controlPlaneComponentConfigOverrides?: ControlPlaneConfigInfo | undefined;
|
|
971
|
+
}
|
|
855
972
|
export interface ClusterVersionInformation {
|
|
856
973
|
clusterVersion?: string | undefined;
|
|
857
974
|
clusterType?: string | undefined;
|
|
@@ -863,6 +980,8 @@ export interface ClusterVersionInformation {
|
|
|
863
980
|
status?: ClusterVersionStatus | undefined;
|
|
864
981
|
versionStatus?: VersionStatus | undefined;
|
|
865
982
|
kubernetesPatchVersion?: string | undefined;
|
|
983
|
+
controlPlaneScalingTiers?: ControlPlaneScalingTierInfo[] | undefined;
|
|
984
|
+
controlPlaneComponentConfig?: ControlPlaneConfigInfo | undefined;
|
|
866
985
|
}
|
|
867
986
|
export interface DescribeClusterVersionsResponse {
|
|
868
987
|
nextToken?: string | undefined;
|
|
@@ -1258,6 +1377,9 @@ export interface UpdateClusterConfigRequest {
|
|
|
1258
1377
|
remoteNetworkConfig?: RemoteNetworkConfigRequest | undefined;
|
|
1259
1378
|
deletionProtection?: boolean | undefined;
|
|
1260
1379
|
controlPlaneScalingConfig?: ControlPlaneScalingConfig | undefined;
|
|
1380
|
+
kubeApiServerConfig?: KubeApiServerConfigRequest | undefined;
|
|
1381
|
+
kubeSchedulerConfig?: KubeSchedulerConfigRequest | undefined;
|
|
1382
|
+
kubeControllerManagerConfig?: KubeControllerManagerConfigRequest | undefined;
|
|
1261
1383
|
}
|
|
1262
1384
|
export interface UpdateClusterConfigResponse {
|
|
1263
1385
|
update?: Update | undefined;
|
|
@@ -31,6 +31,7 @@ export declare var AddonNamespaceConfigResponse$: StaticStructureSchema;
|
|
|
31
31
|
export declare var AddonPodIdentityAssociations$: StaticStructureSchema;
|
|
32
32
|
export declare var AddonPodIdentityConfiguration$: StaticStructureSchema;
|
|
33
33
|
export declare var AddonVersionInfo$: StaticStructureSchema;
|
|
34
|
+
export declare var AllowedValuesConstraint$: StaticStructureSchema;
|
|
34
35
|
export declare var ArgoCdAwsIdcConfigRequest$: StaticStructureSchema;
|
|
35
36
|
export declare var ArgoCdAwsIdcConfigResponse$: StaticStructureSchema;
|
|
36
37
|
export declare var ArgoCdConfigRequest$: StaticStructureSchema;
|
|
@@ -67,9 +68,11 @@ export declare var ComputeConfigRequest$: StaticStructureSchema;
|
|
|
67
68
|
export declare var ComputeConfigResponse$: StaticStructureSchema;
|
|
68
69
|
export declare var ConnectorConfigRequest$: StaticStructureSchema;
|
|
69
70
|
export declare var ConnectorConfigResponse$: StaticStructureSchema;
|
|
71
|
+
export declare var ControlPlaneConfigInfo$: StaticStructureSchema;
|
|
70
72
|
export declare var ControlPlanePlacementRequest$: StaticStructureSchema;
|
|
71
73
|
export declare var ControlPlanePlacementResponse$: StaticStructureSchema;
|
|
72
74
|
export declare var ControlPlaneScalingConfig$: StaticStructureSchema;
|
|
75
|
+
export declare var ControlPlaneScalingTierInfo$: StaticStructureSchema;
|
|
73
76
|
export declare var CreateAccessConfigRequest$: StaticStructureSchema;
|
|
74
77
|
export declare var CreateAccessEntryRequest$: StaticStructureSchema;
|
|
75
78
|
export declare var CreateAccessEntryResponse$: StaticStructureSchema;
|
|
@@ -140,6 +143,8 @@ export declare var DisassociateAccessPolicyRequest$: StaticStructureSchema;
|
|
|
140
143
|
export declare var DisassociateAccessPolicyResponse$: StaticStructureSchema;
|
|
141
144
|
export declare var DisassociateIdentityProviderConfigRequest$: StaticStructureSchema;
|
|
142
145
|
export declare var DisassociateIdentityProviderConfigResponse$: StaticStructureSchema;
|
|
146
|
+
export declare var DurationConstraints$: StaticStructureSchema;
|
|
147
|
+
export declare var DurationParameterConfig$: StaticStructureSchema;
|
|
143
148
|
export declare var EksAnywhereSubscription$: StaticStructureSchema;
|
|
144
149
|
export declare var EksAnywhereSubscriptionTerm$: StaticStructureSchema;
|
|
145
150
|
export declare var ElasticLoadBalancing$: StaticStructureSchema;
|
|
@@ -151,6 +156,9 @@ export declare var FargateProfile$: StaticStructureSchema;
|
|
|
151
156
|
export declare var FargateProfileHealth$: StaticStructureSchema;
|
|
152
157
|
export declare var FargateProfileIssue$: StaticStructureSchema;
|
|
153
158
|
export declare var FargateProfileSelector$: StaticStructureSchema;
|
|
159
|
+
export declare var HorizontalPodAutoscalerControllerConfigRequest$: StaticStructureSchema;
|
|
160
|
+
export declare var HorizontalPodAutoscalerControllerConfigResponse$: StaticStructureSchema;
|
|
161
|
+
export declare var HorizontalPodAutoscalerControllerVersionConfig$: StaticStructureSchema;
|
|
154
162
|
export declare var Identity$: StaticStructureSchema;
|
|
155
163
|
export declare var IdentityProviderConfig$: StaticStructureSchema;
|
|
156
164
|
export declare var IdentityProviderConfigResponse$: StaticStructureSchema;
|
|
@@ -160,9 +168,19 @@ export declare var InsightResourceDetail$: StaticStructureSchema;
|
|
|
160
168
|
export declare var InsightsFilter$: StaticStructureSchema;
|
|
161
169
|
export declare var InsightStatus$: StaticStructureSchema;
|
|
162
170
|
export declare var InsightSummary$: StaticStructureSchema;
|
|
171
|
+
export declare var IntegerRangeConstraint$: StaticStructureSchema;
|
|
163
172
|
export declare var Issue$: StaticStructureSchema;
|
|
173
|
+
export declare var KubeApiServerConfigRequest$: StaticStructureSchema;
|
|
174
|
+
export declare var KubeApiServerConfigResponse$: StaticStructureSchema;
|
|
175
|
+
export declare var KubeApiServerVersionConfig$: StaticStructureSchema;
|
|
176
|
+
export declare var KubeControllerManagerConfigRequest$: StaticStructureSchema;
|
|
177
|
+
export declare var KubeControllerManagerConfigResponse$: StaticStructureSchema;
|
|
178
|
+
export declare var KubeControllerManagerVersionConfig$: StaticStructureSchema;
|
|
164
179
|
export declare var KubernetesNetworkConfigRequest$: StaticStructureSchema;
|
|
165
180
|
export declare var KubernetesNetworkConfigResponse$: StaticStructureSchema;
|
|
181
|
+
export declare var KubeSchedulerConfigRequest$: StaticStructureSchema;
|
|
182
|
+
export declare var KubeSchedulerConfigResponse$: StaticStructureSchema;
|
|
183
|
+
export declare var KubeSchedulerVersionConfig$: StaticStructureSchema;
|
|
166
184
|
export declare var LaunchTemplateSpecification$: StaticStructureSchema;
|
|
167
185
|
export declare var License$: StaticStructureSchema;
|
|
168
186
|
export declare var ListAccessEntriesRequest$: StaticStructureSchema;
|
|
@@ -203,6 +221,8 @@ export declare var NodegroupScalingConfig$: StaticStructureSchema;
|
|
|
203
221
|
export declare var NodegroupUpdateConfig$: StaticStructureSchema;
|
|
204
222
|
export declare var NodeRepairConfig$: StaticStructureSchema;
|
|
205
223
|
export declare var NodeRepairConfigOverrides$: StaticStructureSchema;
|
|
224
|
+
export declare var NodeResourcesFitConfig$: StaticStructureSchema;
|
|
225
|
+
export declare var NodeResourcesFitVersionConfig$: StaticStructureSchema;
|
|
206
226
|
export declare var OIDC$: StaticStructureSchema;
|
|
207
227
|
export declare var OidcIdentityProviderConfig$: StaticStructureSchema;
|
|
208
228
|
export declare var OidcIdentityProviderConfigRequest$: StaticStructureSchema;
|
|
@@ -210,6 +230,8 @@ export declare var OutpostConfigRequest$: StaticStructureSchema;
|
|
|
210
230
|
export declare var OutpostConfigResponse$: StaticStructureSchema;
|
|
211
231
|
export declare var PodIdentityAssociation$: StaticStructureSchema;
|
|
212
232
|
export declare var PodIdentityAssociationSummary$: StaticStructureSchema;
|
|
233
|
+
export declare var PortRangeConstraints$: StaticStructureSchema;
|
|
234
|
+
export declare var PortRangeParameterConfig$: StaticStructureSchema;
|
|
213
235
|
export declare var Provider$: StaticStructureSchema;
|
|
214
236
|
export declare var RegisterClusterRequest$: StaticStructureSchema;
|
|
215
237
|
export declare var RegisterClusterResponse$: StaticStructureSchema;
|
|
@@ -218,7 +240,13 @@ export declare var RemoteNetworkConfigRequest$: StaticStructureSchema;
|
|
|
218
240
|
export declare var RemoteNetworkConfigResponse$: StaticStructureSchema;
|
|
219
241
|
export declare var RemoteNodeNetwork$: StaticStructureSchema;
|
|
220
242
|
export declare var RemotePodNetwork$: StaticStructureSchema;
|
|
243
|
+
export declare var ResourceConstraints$: StaticStructureSchema;
|
|
244
|
+
export declare var ResourceWeight$: StaticStructureSchema;
|
|
221
245
|
export declare var RollbackConfig$: StaticStructureSchema;
|
|
246
|
+
export declare var ScoringStrategy$: StaticStructureSchema;
|
|
247
|
+
export declare var ScoringStrategyConfig$: StaticStructureSchema;
|
|
248
|
+
export declare var ScoringStrategyConstraints$: StaticStructureSchema;
|
|
249
|
+
export declare var ServiceNodePortRange$: StaticStructureSchema;
|
|
222
250
|
export declare var SsoIdentity$: StaticStructureSchema;
|
|
223
251
|
export declare var StartInsightsRefreshRequest$: StaticStructureSchema;
|
|
224
252
|
export declare var StartInsightsRefreshResponse$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eks",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1108.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-eks",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"clean": "premove dist-cjs dist-es dist-types",
|
|
44
44
|
"extract:docs": "api-extractor run --local",
|
|
45
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
46
|
-
"test:index": "tsc
|
|
46
|
+
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
51
|
-
"@aws-sdk/types": "^3.974.
|
|
49
|
+
"@aws-sdk/core": "^3.977.7",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.79",
|
|
51
|
+
"@aws-sdk/types": "^3.974.3",
|
|
52
52
|
"@smithy/core": "^3.31.1",
|
|
53
53
|
"@smithy/fetch-http-handler": "^5.6.13",
|
|
54
54
|
"@smithy/node-http-handler": "^4.9.13",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"concurrently": "7.0.0",
|
|
62
62
|
"downlevel-dts": "0.10.1",
|
|
63
63
|
"premove": "4.0.0",
|
|
64
|
-
"typescript": "~
|
|
64
|
+
"typescript": "~6.0.3"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=20.0.0"
|