@aws-sdk/client-bedrock 3.831.0 → 3.835.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 +84 -44
- package/dist-es/models/models_0.js +28 -54
- package/dist-es/models/models_1.js +55 -1
- package/dist-es/protocols/Aws_restJson1.js +2 -2
- package/dist-types/commands/CreateGuardrailCommand.d.ts +6 -0
- package/dist-types/commands/GetGuardrailCommand.d.ts +6 -0
- package/dist-types/commands/UpdateGuardrailCommand.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +104 -166
- package/dist-types/models/models_1.d.ts +167 -1
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +4 -1
- package/dist-types/ts3.4/models/models_0.d.ts +40 -75
- package/dist-types/ts3.4/models/models_1.d.ts +81 -1
- package/package.json +11 -11
|
@@ -872,8 +872,18 @@ export interface GuardrailContentFilterConfig {
|
|
|
872
872
|
inputEnabled?: boolean | undefined;
|
|
873
873
|
outputEnabled?: boolean | undefined;
|
|
874
874
|
}
|
|
875
|
+
export declare const GuardrailContentFiltersTierName: {
|
|
876
|
+
readonly CLASSIC: "CLASSIC";
|
|
877
|
+
readonly STANDARD: "STANDARD";
|
|
878
|
+
};
|
|
879
|
+
export type GuardrailContentFiltersTierName =
|
|
880
|
+
(typeof GuardrailContentFiltersTierName)[keyof typeof GuardrailContentFiltersTierName];
|
|
881
|
+
export interface GuardrailContentFiltersTierConfig {
|
|
882
|
+
tierName: GuardrailContentFiltersTierName | undefined;
|
|
883
|
+
}
|
|
875
884
|
export interface GuardrailContentPolicyConfig {
|
|
876
885
|
filtersConfig: GuardrailContentFilterConfig[] | undefined;
|
|
886
|
+
tierConfig?: GuardrailContentFiltersTierConfig | undefined;
|
|
877
887
|
}
|
|
878
888
|
export declare const GuardrailContextualGroundingAction: {
|
|
879
889
|
readonly BLOCK: "BLOCK";
|
|
@@ -963,6 +973,15 @@ export interface GuardrailSensitiveInformationPolicyConfig {
|
|
|
963
973
|
piiEntitiesConfig?: GuardrailPiiEntityConfig[] | undefined;
|
|
964
974
|
regexesConfig?: GuardrailRegexConfig[] | undefined;
|
|
965
975
|
}
|
|
976
|
+
export declare const GuardrailTopicsTierName: {
|
|
977
|
+
readonly CLASSIC: "CLASSIC";
|
|
978
|
+
readonly STANDARD: "STANDARD";
|
|
979
|
+
};
|
|
980
|
+
export type GuardrailTopicsTierName =
|
|
981
|
+
(typeof GuardrailTopicsTierName)[keyof typeof GuardrailTopicsTierName];
|
|
982
|
+
export interface GuardrailTopicsTierConfig {
|
|
983
|
+
tierName: GuardrailTopicsTierName | undefined;
|
|
984
|
+
}
|
|
966
985
|
export declare const GuardrailTopicAction: {
|
|
967
986
|
readonly BLOCK: "BLOCK";
|
|
968
987
|
readonly NONE: "NONE";
|
|
@@ -986,6 +1005,7 @@ export interface GuardrailTopicConfig {
|
|
|
986
1005
|
}
|
|
987
1006
|
export interface GuardrailTopicPolicyConfig {
|
|
988
1007
|
topicsConfig: GuardrailTopicConfig[] | undefined;
|
|
1008
|
+
tierConfig?: GuardrailTopicsTierConfig | undefined;
|
|
989
1009
|
}
|
|
990
1010
|
export declare const GuardrailWordAction: {
|
|
991
1011
|
readonly BLOCK: "BLOCK";
|
|
@@ -1070,8 +1090,12 @@ export interface GuardrailContentFilter {
|
|
|
1070
1090
|
inputEnabled?: boolean | undefined;
|
|
1071
1091
|
outputEnabled?: boolean | undefined;
|
|
1072
1092
|
}
|
|
1093
|
+
export interface GuardrailContentFiltersTier {
|
|
1094
|
+
tierName: GuardrailContentFiltersTierName | undefined;
|
|
1095
|
+
}
|
|
1073
1096
|
export interface GuardrailContentPolicy {
|
|
1074
1097
|
filters?: GuardrailContentFilter[] | undefined;
|
|
1098
|
+
tier?: GuardrailContentFiltersTier | undefined;
|
|
1075
1099
|
}
|
|
1076
1100
|
export interface GuardrailContextualGroundingFilter {
|
|
1077
1101
|
type: GuardrailContextualGroundingFilterType | undefined;
|
|
@@ -1118,6 +1142,9 @@ export declare const GuardrailStatus: {
|
|
|
1118
1142
|
};
|
|
1119
1143
|
export type GuardrailStatus =
|
|
1120
1144
|
(typeof GuardrailStatus)[keyof typeof GuardrailStatus];
|
|
1145
|
+
export interface GuardrailTopicsTier {
|
|
1146
|
+
tierName: GuardrailTopicsTierName | undefined;
|
|
1147
|
+
}
|
|
1121
1148
|
export interface GuardrailTopic {
|
|
1122
1149
|
name: string | undefined;
|
|
1123
1150
|
definition: string | undefined;
|
|
@@ -1130,6 +1157,7 @@ export interface GuardrailTopic {
|
|
|
1130
1157
|
}
|
|
1131
1158
|
export interface GuardrailTopicPolicy {
|
|
1132
1159
|
topics: GuardrailTopic[] | undefined;
|
|
1160
|
+
tier?: GuardrailTopicsTier | undefined;
|
|
1133
1161
|
}
|
|
1134
1162
|
export interface GuardrailManagedWords {
|
|
1135
1163
|
type: GuardrailManagedWordsType | undefined;
|
|
@@ -2255,63 +2283,6 @@ export declare namespace RetrievalFilter {
|
|
|
2255
2283
|
}
|
|
2256
2284
|
const visit: <T>(value: RetrievalFilter, visitor: Visitor<T>) => T;
|
|
2257
2285
|
}
|
|
2258
|
-
export interface KnowledgeBaseVectorSearchConfiguration {
|
|
2259
|
-
numberOfResults?: number | undefined;
|
|
2260
|
-
overrideSearchType?: SearchType | undefined;
|
|
2261
|
-
filter?: RetrievalFilter | undefined;
|
|
2262
|
-
}
|
|
2263
|
-
export interface KnowledgeBaseRetrievalConfiguration {
|
|
2264
|
-
vectorSearchConfiguration: KnowledgeBaseVectorSearchConfiguration | undefined;
|
|
2265
|
-
}
|
|
2266
|
-
export interface KnowledgeBaseRetrieveAndGenerateConfiguration {
|
|
2267
|
-
knowledgeBaseId: string | undefined;
|
|
2268
|
-
modelArn: string | undefined;
|
|
2269
|
-
retrievalConfiguration?: KnowledgeBaseRetrievalConfiguration | undefined;
|
|
2270
|
-
generationConfiguration?: GenerationConfiguration | undefined;
|
|
2271
|
-
orchestrationConfiguration?: OrchestrationConfiguration | undefined;
|
|
2272
|
-
}
|
|
2273
|
-
export interface RetrieveConfig {
|
|
2274
|
-
knowledgeBaseId: string | undefined;
|
|
2275
|
-
knowledgeBaseRetrievalConfiguration:
|
|
2276
|
-
| KnowledgeBaseRetrievalConfiguration
|
|
2277
|
-
| undefined;
|
|
2278
|
-
}
|
|
2279
|
-
export interface RetrieveAndGenerateConfiguration {
|
|
2280
|
-
type: RetrieveAndGenerateType | undefined;
|
|
2281
|
-
knowledgeBaseConfiguration?:
|
|
2282
|
-
| KnowledgeBaseRetrieveAndGenerateConfiguration
|
|
2283
|
-
| undefined;
|
|
2284
|
-
externalSourcesConfiguration?:
|
|
2285
|
-
| ExternalSourcesRetrieveAndGenerateConfiguration
|
|
2286
|
-
| undefined;
|
|
2287
|
-
}
|
|
2288
|
-
export type KnowledgeBaseConfig =
|
|
2289
|
-
| KnowledgeBaseConfig.RetrieveAndGenerateConfigMember
|
|
2290
|
-
| KnowledgeBaseConfig.RetrieveConfigMember
|
|
2291
|
-
| KnowledgeBaseConfig.$UnknownMember;
|
|
2292
|
-
export declare namespace KnowledgeBaseConfig {
|
|
2293
|
-
interface RetrieveConfigMember {
|
|
2294
|
-
retrieveConfig: RetrieveConfig;
|
|
2295
|
-
retrieveAndGenerateConfig?: never;
|
|
2296
|
-
$unknown?: never;
|
|
2297
|
-
}
|
|
2298
|
-
interface RetrieveAndGenerateConfigMember {
|
|
2299
|
-
retrieveConfig?: never;
|
|
2300
|
-
retrieveAndGenerateConfig: RetrieveAndGenerateConfiguration;
|
|
2301
|
-
$unknown?: never;
|
|
2302
|
-
}
|
|
2303
|
-
interface $UnknownMember {
|
|
2304
|
-
retrieveConfig?: never;
|
|
2305
|
-
retrieveAndGenerateConfig?: never;
|
|
2306
|
-
$unknown: [string, any];
|
|
2307
|
-
}
|
|
2308
|
-
interface Visitor<T> {
|
|
2309
|
-
retrieveConfig: (value: RetrieveConfig) => T;
|
|
2310
|
-
retrieveAndGenerateConfig: (value: RetrieveAndGenerateConfiguration) => T;
|
|
2311
|
-
_: (name: string, value: any) => T;
|
|
2312
|
-
}
|
|
2313
|
-
const visit: <T>(value: KnowledgeBaseConfig, visitor: Visitor<T>) => T;
|
|
2314
|
-
}
|
|
2315
2286
|
export declare const RequestMetadataBaseFiltersFilterSensitiveLog: (
|
|
2316
2287
|
obj: RequestMetadataBaseFilters
|
|
2317
2288
|
) => any;
|
|
@@ -2402,6 +2373,9 @@ export declare const StopEvaluationJobRequestFilterSensitiveLog: (
|
|
|
2402
2373
|
export declare const GuardrailContentFilterConfigFilterSensitiveLog: (
|
|
2403
2374
|
obj: GuardrailContentFilterConfig
|
|
2404
2375
|
) => any;
|
|
2376
|
+
export declare const GuardrailContentFiltersTierConfigFilterSensitiveLog: (
|
|
2377
|
+
obj: GuardrailContentFiltersTierConfig
|
|
2378
|
+
) => any;
|
|
2405
2379
|
export declare const GuardrailContentPolicyConfigFilterSensitiveLog: (
|
|
2406
2380
|
obj: GuardrailContentPolicyConfig
|
|
2407
2381
|
) => any;
|
|
@@ -2411,6 +2385,9 @@ export declare const GuardrailContextualGroundingFilterConfigFilterSensitiveLog:
|
|
|
2411
2385
|
export declare const GuardrailContextualGroundingPolicyConfigFilterSensitiveLog: (
|
|
2412
2386
|
obj: GuardrailContextualGroundingPolicyConfig
|
|
2413
2387
|
) => any;
|
|
2388
|
+
export declare const GuardrailTopicsTierConfigFilterSensitiveLog: (
|
|
2389
|
+
obj: GuardrailTopicsTierConfig
|
|
2390
|
+
) => any;
|
|
2414
2391
|
export declare const GuardrailTopicConfigFilterSensitiveLog: (
|
|
2415
2392
|
obj: GuardrailTopicConfig
|
|
2416
2393
|
) => any;
|
|
@@ -2435,6 +2412,9 @@ export declare const CreateGuardrailVersionRequestFilterSensitiveLog: (
|
|
|
2435
2412
|
export declare const GuardrailContentFilterFilterSensitiveLog: (
|
|
2436
2413
|
obj: GuardrailContentFilter
|
|
2437
2414
|
) => any;
|
|
2415
|
+
export declare const GuardrailContentFiltersTierFilterSensitiveLog: (
|
|
2416
|
+
obj: GuardrailContentFiltersTier
|
|
2417
|
+
) => any;
|
|
2438
2418
|
export declare const GuardrailContentPolicyFilterSensitiveLog: (
|
|
2439
2419
|
obj: GuardrailContentPolicy
|
|
2440
2420
|
) => any;
|
|
@@ -2444,6 +2424,9 @@ export declare const GuardrailContextualGroundingFilterFilterSensitiveLog: (
|
|
|
2444
2424
|
export declare const GuardrailContextualGroundingPolicyFilterSensitiveLog: (
|
|
2445
2425
|
obj: GuardrailContextualGroundingPolicy
|
|
2446
2426
|
) => any;
|
|
2427
|
+
export declare const GuardrailTopicsTierFilterSensitiveLog: (
|
|
2428
|
+
obj: GuardrailTopicsTier
|
|
2429
|
+
) => any;
|
|
2447
2430
|
export declare const GuardrailTopicFilterSensitiveLog: (
|
|
2448
2431
|
obj: GuardrailTopic
|
|
2449
2432
|
) => any;
|
|
@@ -2513,21 +2496,3 @@ export declare const GetModelCustomizationJobResponseFilterSensitiveLog: (
|
|
|
2513
2496
|
export declare const RetrievalFilterFilterSensitiveLog: (
|
|
2514
2497
|
obj: RetrievalFilter
|
|
2515
2498
|
) => any;
|
|
2516
|
-
export declare const KnowledgeBaseVectorSearchConfigurationFilterSensitiveLog: (
|
|
2517
|
-
obj: KnowledgeBaseVectorSearchConfiguration
|
|
2518
|
-
) => any;
|
|
2519
|
-
export declare const KnowledgeBaseRetrievalConfigurationFilterSensitiveLog: (
|
|
2520
|
-
obj: KnowledgeBaseRetrievalConfiguration
|
|
2521
|
-
) => any;
|
|
2522
|
-
export declare const KnowledgeBaseRetrieveAndGenerateConfigurationFilterSensitiveLog: (
|
|
2523
|
-
obj: KnowledgeBaseRetrieveAndGenerateConfiguration
|
|
2524
|
-
) => any;
|
|
2525
|
-
export declare const RetrieveConfigFilterSensitiveLog: (
|
|
2526
|
-
obj: RetrieveConfig
|
|
2527
|
-
) => any;
|
|
2528
|
-
export declare const RetrieveAndGenerateConfigurationFilterSensitiveLog: (
|
|
2529
|
-
obj: RetrieveAndGenerateConfiguration
|
|
2530
|
-
) => any;
|
|
2531
|
-
export declare const KnowledgeBaseConfigFilterSensitiveLog: (
|
|
2532
|
-
obj: KnowledgeBaseConfig
|
|
2533
|
-
) => any;
|
|
@@ -6,9 +6,71 @@ import {
|
|
|
6
6
|
EvaluationModelConfig,
|
|
7
7
|
EvaluationOutputDataConfig,
|
|
8
8
|
EvaluationPrecomputedRagSourceConfig,
|
|
9
|
-
|
|
9
|
+
ExternalSourcesRetrieveAndGenerateConfiguration,
|
|
10
|
+
GenerationConfiguration,
|
|
11
|
+
OrchestrationConfiguration,
|
|
12
|
+
RetrievalFilter,
|
|
13
|
+
RetrieveAndGenerateType,
|
|
14
|
+
SearchType,
|
|
10
15
|
Tag,
|
|
11
16
|
} from "./models_0";
|
|
17
|
+
export interface KnowledgeBaseVectorSearchConfiguration {
|
|
18
|
+
numberOfResults?: number | undefined;
|
|
19
|
+
overrideSearchType?: SearchType | undefined;
|
|
20
|
+
filter?: RetrievalFilter | undefined;
|
|
21
|
+
}
|
|
22
|
+
export interface KnowledgeBaseRetrievalConfiguration {
|
|
23
|
+
vectorSearchConfiguration: KnowledgeBaseVectorSearchConfiguration | undefined;
|
|
24
|
+
}
|
|
25
|
+
export interface KnowledgeBaseRetrieveAndGenerateConfiguration {
|
|
26
|
+
knowledgeBaseId: string | undefined;
|
|
27
|
+
modelArn: string | undefined;
|
|
28
|
+
retrievalConfiguration?: KnowledgeBaseRetrievalConfiguration | undefined;
|
|
29
|
+
generationConfiguration?: GenerationConfiguration | undefined;
|
|
30
|
+
orchestrationConfiguration?: OrchestrationConfiguration | undefined;
|
|
31
|
+
}
|
|
32
|
+
export interface RetrieveConfig {
|
|
33
|
+
knowledgeBaseId: string | undefined;
|
|
34
|
+
knowledgeBaseRetrievalConfiguration:
|
|
35
|
+
| KnowledgeBaseRetrievalConfiguration
|
|
36
|
+
| undefined;
|
|
37
|
+
}
|
|
38
|
+
export interface RetrieveAndGenerateConfiguration {
|
|
39
|
+
type: RetrieveAndGenerateType | undefined;
|
|
40
|
+
knowledgeBaseConfiguration?:
|
|
41
|
+
| KnowledgeBaseRetrieveAndGenerateConfiguration
|
|
42
|
+
| undefined;
|
|
43
|
+
externalSourcesConfiguration?:
|
|
44
|
+
| ExternalSourcesRetrieveAndGenerateConfiguration
|
|
45
|
+
| undefined;
|
|
46
|
+
}
|
|
47
|
+
export type KnowledgeBaseConfig =
|
|
48
|
+
| KnowledgeBaseConfig.RetrieveAndGenerateConfigMember
|
|
49
|
+
| KnowledgeBaseConfig.RetrieveConfigMember
|
|
50
|
+
| KnowledgeBaseConfig.$UnknownMember;
|
|
51
|
+
export declare namespace KnowledgeBaseConfig {
|
|
52
|
+
interface RetrieveConfigMember {
|
|
53
|
+
retrieveConfig: RetrieveConfig;
|
|
54
|
+
retrieveAndGenerateConfig?: never;
|
|
55
|
+
$unknown?: never;
|
|
56
|
+
}
|
|
57
|
+
interface RetrieveAndGenerateConfigMember {
|
|
58
|
+
retrieveConfig?: never;
|
|
59
|
+
retrieveAndGenerateConfig: RetrieveAndGenerateConfiguration;
|
|
60
|
+
$unknown?: never;
|
|
61
|
+
}
|
|
62
|
+
interface $UnknownMember {
|
|
63
|
+
retrieveConfig?: never;
|
|
64
|
+
retrieveAndGenerateConfig?: never;
|
|
65
|
+
$unknown: [string, any];
|
|
66
|
+
}
|
|
67
|
+
interface Visitor<T> {
|
|
68
|
+
retrieveConfig: (value: RetrieveConfig) => T;
|
|
69
|
+
retrieveAndGenerateConfig: (value: RetrieveAndGenerateConfiguration) => T;
|
|
70
|
+
_: (name: string, value: any) => T;
|
|
71
|
+
}
|
|
72
|
+
const visit: <T>(value: KnowledgeBaseConfig, visitor: Visitor<T>) => T;
|
|
73
|
+
}
|
|
12
74
|
export type RAGConfig =
|
|
13
75
|
| RAGConfig.KnowledgeBaseConfigMember
|
|
14
76
|
| RAGConfig.PrecomputedRagSourceConfigMember
|
|
@@ -93,6 +155,24 @@ export interface GetEvaluationJobResponse {
|
|
|
93
155
|
lastModifiedTime?: Date | undefined;
|
|
94
156
|
failureMessages?: string[] | undefined;
|
|
95
157
|
}
|
|
158
|
+
export declare const KnowledgeBaseVectorSearchConfigurationFilterSensitiveLog: (
|
|
159
|
+
obj: KnowledgeBaseVectorSearchConfiguration
|
|
160
|
+
) => any;
|
|
161
|
+
export declare const KnowledgeBaseRetrievalConfigurationFilterSensitiveLog: (
|
|
162
|
+
obj: KnowledgeBaseRetrievalConfiguration
|
|
163
|
+
) => any;
|
|
164
|
+
export declare const KnowledgeBaseRetrieveAndGenerateConfigurationFilterSensitiveLog: (
|
|
165
|
+
obj: KnowledgeBaseRetrieveAndGenerateConfiguration
|
|
166
|
+
) => any;
|
|
167
|
+
export declare const RetrieveConfigFilterSensitiveLog: (
|
|
168
|
+
obj: RetrieveConfig
|
|
169
|
+
) => any;
|
|
170
|
+
export declare const RetrieveAndGenerateConfigurationFilterSensitiveLog: (
|
|
171
|
+
obj: RetrieveAndGenerateConfiguration
|
|
172
|
+
) => any;
|
|
173
|
+
export declare const KnowledgeBaseConfigFilterSensitiveLog: (
|
|
174
|
+
obj: KnowledgeBaseConfig
|
|
175
|
+
) => any;
|
|
96
176
|
export declare const RAGConfigFilterSensitiveLog: (obj: RAGConfig) => any;
|
|
97
177
|
export declare const EvaluationInferenceConfigFilterSensitiveLog: (
|
|
98
178
|
obj: EvaluationInferenceConfig
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.835.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-bedrock",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.835.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.835.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.835.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
30
|
"@aws-sdk/types": "3.821.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.828.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.835.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
35
|
"@smithy/core": "^3.5.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
37
|
"@smithy/hash-node": "^4.0.4",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.13",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.8",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.4",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.3",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.6",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
-
"@smithy/smithy-client": "^4.4.
|
|
47
|
+
"@smithy/smithy-client": "^4.4.4",
|
|
48
48
|
"@smithy/types": "^4.3.1",
|
|
49
49
|
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.20",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.20",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.6",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.4",
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
57
|
+
"@smithy/util-retry": "^4.0.6",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|