@aws-sdk/client-bedrock-agentcore 3.928.0 → 3.930.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 +1843 -2155
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/BedrockAgentCoreClient.js +2 -0
- package/dist-es/commands/BatchCreateMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/BatchDeleteMemoryRecordsCommand.js +3 -9
- package/dist-es/commands/BatchUpdateMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/CompleteResourceTokenAuthCommand.js +3 -10
- package/dist-es/commands/CreateEventCommand.js +3 -10
- package/dist-es/commands/DeleteEventCommand.js +3 -9
- package/dist-es/commands/DeleteMemoryRecordCommand.js +3 -9
- package/dist-es/commands/GetAgentCardCommand.js +3 -9
- package/dist-es/commands/GetBrowserSessionCommand.js +3 -9
- package/dist-es/commands/GetCodeInterpreterSessionCommand.js +3 -9
- package/dist-es/commands/GetEventCommand.js +3 -10
- package/dist-es/commands/GetMemoryRecordCommand.js +3 -10
- package/dist-es/commands/GetResourceApiKeyCommand.js +3 -10
- package/dist-es/commands/GetResourceOauth2TokenCommand.js +3 -10
- package/dist-es/commands/GetWorkloadAccessTokenCommand.js +3 -10
- package/dist-es/commands/GetWorkloadAccessTokenForJWTCommand.js +3 -10
- package/dist-es/commands/GetWorkloadAccessTokenForUserIdCommand.js +3 -10
- package/dist-es/commands/InvokeAgentRuntimeCommand.js +3 -10
- package/dist-es/commands/InvokeCodeInterpreterCommand.js +3 -10
- package/dist-es/commands/ListActorsCommand.js +3 -9
- package/dist-es/commands/ListBrowserSessionsCommand.js +3 -9
- package/dist-es/commands/ListCodeInterpreterSessionsCommand.js +3 -9
- package/dist-es/commands/ListEventsCommand.js +3 -10
- package/dist-es/commands/ListMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/ListSessionsCommand.js +3 -9
- package/dist-es/commands/RetrieveMemoryRecordsCommand.js +3 -10
- package/dist-es/commands/StartBrowserSessionCommand.js +3 -9
- package/dist-es/commands/StartCodeInterpreterSessionCommand.js +3 -9
- package/dist-es/commands/StopBrowserSessionCommand.js +3 -9
- package/dist-es/commands/StopCodeInterpreterSessionCommand.js +3 -9
- package/dist-es/commands/StopRuntimeSessionCommand.js +3 -9
- package/dist-es/commands/UpdateBrowserStreamCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -280
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1756 -0
- package/dist-types/BedrockAgentCoreClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +36 -157
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +179 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -115
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +186 -0
- package/package.json +37 -38
- package/dist-es/protocols/Aws_restJson1.js +0 -1593
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -290
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -393
|
@@ -236,7 +236,6 @@ export declare namespace StreamUpdate {
|
|
|
236
236
|
automationStreamUpdate: (value: AutomationStreamUpdate) => T;
|
|
237
237
|
_: (name: string, value: any) => T;
|
|
238
238
|
}
|
|
239
|
-
const visit: <T>(value: StreamUpdate, visitor: Visitor<T>) => T;
|
|
240
239
|
}
|
|
241
240
|
export interface UpdateBrowserStreamRequest {
|
|
242
241
|
browserIdentifier: string | undefined;
|
|
@@ -336,7 +335,6 @@ export declare namespace UserIdentifier {
|
|
|
336
335
|
userId: (value: string) => T;
|
|
337
336
|
_: (name: string, value: any) => T;
|
|
338
337
|
}
|
|
339
|
-
const visit: <T>(value: UserIdentifier, visitor: Visitor<T>) => T;
|
|
340
338
|
}
|
|
341
339
|
export interface CompleteResourceTokenAuthRequest {
|
|
342
340
|
userIdentifier: UserIdentifier | undefined;
|
|
@@ -615,10 +613,6 @@ export declare namespace CodeInterpreterStreamOutput {
|
|
|
615
613
|
validationException: (value: ValidationException) => T;
|
|
616
614
|
_: (name: string, value: any) => T;
|
|
617
615
|
}
|
|
618
|
-
const visit: <T>(
|
|
619
|
-
value: CodeInterpreterStreamOutput,
|
|
620
|
-
visitor: Visitor<T>
|
|
621
|
-
) => T;
|
|
622
616
|
}
|
|
623
617
|
export interface InvokeCodeInterpreterResponse {
|
|
624
618
|
sessionId?: string | undefined;
|
|
@@ -640,7 +634,6 @@ export declare namespace MemoryContent {
|
|
|
640
634
|
text: (value: string) => T;
|
|
641
635
|
_: (name: string, value: any) => T;
|
|
642
636
|
}
|
|
643
|
-
const visit: <T>(value: MemoryContent, visitor: Visitor<T>) => T;
|
|
644
637
|
}
|
|
645
638
|
export interface MemoryRecordCreateInput {
|
|
646
639
|
requestIdentifier: string | undefined;
|
|
@@ -727,7 +720,6 @@ export declare namespace MetadataValue {
|
|
|
727
720
|
stringValue: (value: string) => T;
|
|
728
721
|
_: (name: string, value: any) => T;
|
|
729
722
|
}
|
|
730
|
-
const visit: <T>(value: MetadataValue, visitor: Visitor<T>) => T;
|
|
731
723
|
}
|
|
732
724
|
export type Content = Content.TextMember | Content.$UnknownMember;
|
|
733
725
|
export declare namespace Content {
|
|
@@ -743,7 +735,6 @@ export declare namespace Content {
|
|
|
743
735
|
text: (value: string) => T;
|
|
744
736
|
_: (name: string, value: any) => T;
|
|
745
737
|
}
|
|
746
|
-
const visit: <T>(value: Content, visitor: Visitor<T>) => T;
|
|
747
738
|
}
|
|
748
739
|
export declare const Role: {
|
|
749
740
|
readonly ASSISTANT: "ASSISTANT";
|
|
@@ -781,7 +772,6 @@ export declare namespace PayloadType {
|
|
|
781
772
|
blob: (value: __DocumentType) => T;
|
|
782
773
|
_: (name: string, value: any) => T;
|
|
783
774
|
}
|
|
784
|
-
const visit: <T>(value: PayloadType, visitor: Visitor<T>) => T;
|
|
785
775
|
}
|
|
786
776
|
export interface CreateEventInput {
|
|
787
777
|
memoryId: string | undefined;
|
|
@@ -881,7 +871,6 @@ export declare namespace LeftExpression {
|
|
|
881
871
|
metadataKey: (value: string) => T;
|
|
882
872
|
_: (name: string, value: any) => T;
|
|
883
873
|
}
|
|
884
|
-
const visit: <T>(value: LeftExpression, visitor: Visitor<T>) => T;
|
|
885
874
|
}
|
|
886
875
|
export declare const OperatorType: {
|
|
887
876
|
readonly EQUALS_TO: "EQUALS_TO";
|
|
@@ -905,7 +894,6 @@ export declare namespace RightExpression {
|
|
|
905
894
|
metadataValue: (value: MetadataValue) => T;
|
|
906
895
|
_: (name: string, value: any) => T;
|
|
907
896
|
}
|
|
908
|
-
const visit: <T>(value: RightExpression, visitor: Visitor<T>) => T;
|
|
909
897
|
}
|
|
910
898
|
export interface EventMetadataFilterExpression {
|
|
911
899
|
left: LeftExpression | undefined;
|
|
@@ -979,106 +967,3 @@ export interface RetrieveMemoryRecordsOutput {
|
|
|
979
967
|
memoryRecordSummaries: MemoryRecordSummary[] | undefined;
|
|
980
968
|
nextToken?: string | undefined;
|
|
981
969
|
}
|
|
982
|
-
export declare const InvokeAgentRuntimeRequestFilterSensitiveLog: (
|
|
983
|
-
obj: InvokeAgentRuntimeRequest
|
|
984
|
-
) => any;
|
|
985
|
-
export declare const InvokeAgentRuntimeResponseFilterSensitiveLog: (
|
|
986
|
-
obj: InvokeAgentRuntimeResponse
|
|
987
|
-
) => any;
|
|
988
|
-
export declare const UserIdentifierFilterSensitiveLog: (
|
|
989
|
-
obj: UserIdentifier
|
|
990
|
-
) => any;
|
|
991
|
-
export declare const CompleteResourceTokenAuthRequestFilterSensitiveLog: (
|
|
992
|
-
obj: CompleteResourceTokenAuthRequest
|
|
993
|
-
) => any;
|
|
994
|
-
export declare const GetResourceApiKeyRequestFilterSensitiveLog: (
|
|
995
|
-
obj: GetResourceApiKeyRequest
|
|
996
|
-
) => any;
|
|
997
|
-
export declare const GetResourceApiKeyResponseFilterSensitiveLog: (
|
|
998
|
-
obj: GetResourceApiKeyResponse
|
|
999
|
-
) => any;
|
|
1000
|
-
export declare const GetResourceOauth2TokenRequestFilterSensitiveLog: (
|
|
1001
|
-
obj: GetResourceOauth2TokenRequest
|
|
1002
|
-
) => any;
|
|
1003
|
-
export declare const GetResourceOauth2TokenResponseFilterSensitiveLog: (
|
|
1004
|
-
obj: GetResourceOauth2TokenResponse
|
|
1005
|
-
) => any;
|
|
1006
|
-
export declare const GetWorkloadAccessTokenResponseFilterSensitiveLog: (
|
|
1007
|
-
obj: GetWorkloadAccessTokenResponse
|
|
1008
|
-
) => any;
|
|
1009
|
-
export declare const GetWorkloadAccessTokenForJWTRequestFilterSensitiveLog: (
|
|
1010
|
-
obj: GetWorkloadAccessTokenForJWTRequest
|
|
1011
|
-
) => any;
|
|
1012
|
-
export declare const GetWorkloadAccessTokenForJWTResponseFilterSensitiveLog: (
|
|
1013
|
-
obj: GetWorkloadAccessTokenForJWTResponse
|
|
1014
|
-
) => any;
|
|
1015
|
-
export declare const GetWorkloadAccessTokenForUserIdResponseFilterSensitiveLog: (
|
|
1016
|
-
obj: GetWorkloadAccessTokenForUserIdResponse
|
|
1017
|
-
) => any;
|
|
1018
|
-
export declare const InputContentBlockFilterSensitiveLog: (
|
|
1019
|
-
obj: InputContentBlock
|
|
1020
|
-
) => any;
|
|
1021
|
-
export declare const ToolArgumentsFilterSensitiveLog: (
|
|
1022
|
-
obj: ToolArguments
|
|
1023
|
-
) => any;
|
|
1024
|
-
export declare const InvokeCodeInterpreterRequestFilterSensitiveLog: (
|
|
1025
|
-
obj: InvokeCodeInterpreterRequest
|
|
1026
|
-
) => any;
|
|
1027
|
-
export declare const CodeInterpreterStreamOutputFilterSensitiveLog: (
|
|
1028
|
-
obj: CodeInterpreterStreamOutput
|
|
1029
|
-
) => any;
|
|
1030
|
-
export declare const InvokeCodeInterpreterResponseFilterSensitiveLog: (
|
|
1031
|
-
obj: InvokeCodeInterpreterResponse
|
|
1032
|
-
) => any;
|
|
1033
|
-
export declare const MemoryContentFilterSensitiveLog: (
|
|
1034
|
-
obj: MemoryContent
|
|
1035
|
-
) => any;
|
|
1036
|
-
export declare const MemoryRecordCreateInputFilterSensitiveLog: (
|
|
1037
|
-
obj: MemoryRecordCreateInput
|
|
1038
|
-
) => any;
|
|
1039
|
-
export declare const BatchCreateMemoryRecordsInputFilterSensitiveLog: (
|
|
1040
|
-
obj: BatchCreateMemoryRecordsInput
|
|
1041
|
-
) => any;
|
|
1042
|
-
export declare const MemoryRecordUpdateInputFilterSensitiveLog: (
|
|
1043
|
-
obj: MemoryRecordUpdateInput
|
|
1044
|
-
) => any;
|
|
1045
|
-
export declare const BatchUpdateMemoryRecordsInputFilterSensitiveLog: (
|
|
1046
|
-
obj: BatchUpdateMemoryRecordsInput
|
|
1047
|
-
) => any;
|
|
1048
|
-
export declare const ContentFilterSensitiveLog: (obj: Content) => any;
|
|
1049
|
-
export declare const ConversationalFilterSensitiveLog: (
|
|
1050
|
-
obj: Conversational
|
|
1051
|
-
) => any;
|
|
1052
|
-
export declare const PayloadTypeFilterSensitiveLog: (obj: PayloadType) => any;
|
|
1053
|
-
export declare const CreateEventInputFilterSensitiveLog: (
|
|
1054
|
-
obj: CreateEventInput
|
|
1055
|
-
) => any;
|
|
1056
|
-
export declare const EventFilterSensitiveLog: (obj: Event) => any;
|
|
1057
|
-
export declare const CreateEventOutputFilterSensitiveLog: (
|
|
1058
|
-
obj: CreateEventOutput
|
|
1059
|
-
) => any;
|
|
1060
|
-
export declare const GetEventOutputFilterSensitiveLog: (
|
|
1061
|
-
obj: GetEventOutput
|
|
1062
|
-
) => any;
|
|
1063
|
-
export declare const MemoryRecordFilterSensitiveLog: (obj: MemoryRecord) => any;
|
|
1064
|
-
export declare const GetMemoryRecordOutputFilterSensitiveLog: (
|
|
1065
|
-
obj: GetMemoryRecordOutput
|
|
1066
|
-
) => any;
|
|
1067
|
-
export declare const ListEventsOutputFilterSensitiveLog: (
|
|
1068
|
-
obj: ListEventsOutput
|
|
1069
|
-
) => any;
|
|
1070
|
-
export declare const MemoryRecordSummaryFilterSensitiveLog: (
|
|
1071
|
-
obj: MemoryRecordSummary
|
|
1072
|
-
) => any;
|
|
1073
|
-
export declare const ListMemoryRecordsOutputFilterSensitiveLog: (
|
|
1074
|
-
obj: ListMemoryRecordsOutput
|
|
1075
|
-
) => any;
|
|
1076
|
-
export declare const SearchCriteriaFilterSensitiveLog: (
|
|
1077
|
-
obj: SearchCriteria
|
|
1078
|
-
) => any;
|
|
1079
|
-
export declare const RetrieveMemoryRecordsInputFilterSensitiveLog: (
|
|
1080
|
-
obj: RetrieveMemoryRecordsInput
|
|
1081
|
-
) => any;
|
|
1082
|
-
export declare const RetrieveMemoryRecordsOutputFilterSensitiveLog: (
|
|
1083
|
-
obj: RetrieveMemoryRecordsOutput
|
|
1084
|
-
) => any;
|
|
@@ -41,6 +41,10 @@ export declare const getRuntimeConfig: (
|
|
|
41
41
|
profile?: string;
|
|
42
42
|
logger: import("@smithy/types").Logger;
|
|
43
43
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
44
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
45
|
+
import("@smithy/types").HttpRequest,
|
|
46
|
+
import("@smithy/types").HttpResponse
|
|
47
|
+
>;
|
|
44
48
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
45
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
50
|
userAgentAppId?:
|
|
@@ -41,6 +41,10 @@ export declare const getRuntimeConfig: (
|
|
|
41
41
|
profile?: string;
|
|
42
42
|
logger: import("@smithy/types").Logger;
|
|
43
43
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
44
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
45
|
+
import("@smithy/types").HttpRequest,
|
|
46
|
+
import("@smithy/types").HttpResponse
|
|
47
|
+
>;
|
|
44
48
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
45
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
50
|
retryStrategy?:
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
43
47
|
defaultsMode:
|
|
44
48
|
| import("@smithy/smithy-client").DefaultsMode
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockAgentCoreHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
20
24
|
serviceId: string;
|
|
21
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var AccessTokenType: StaticSimpleSchema;
|
|
10
|
+
export declare var ApiKeyType: StaticSimpleSchema;
|
|
11
|
+
export declare var AuthorizationUrlType: StaticSimpleSchema;
|
|
12
|
+
export declare var Body: StaticSimpleSchema;
|
|
13
|
+
export declare var CustomRequestValueType: StaticSimpleSchema;
|
|
14
|
+
export declare var ResponseStream: StaticSimpleSchema;
|
|
15
|
+
export declare var SensitiveString: StaticSimpleSchema;
|
|
16
|
+
export declare var State: StaticSimpleSchema;
|
|
17
|
+
export declare var UserTokenType: StaticSimpleSchema;
|
|
18
|
+
export declare var WorkloadIdentityTokenType: StaticSimpleSchema;
|
|
19
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
20
|
+
export declare var ActorSummary: StaticStructureSchema;
|
|
21
|
+
export declare var AutomationStream: StaticStructureSchema;
|
|
22
|
+
export declare var AutomationStreamUpdate: StaticStructureSchema;
|
|
23
|
+
export declare var BatchCreateMemoryRecordsInput: StaticStructureSchema;
|
|
24
|
+
export declare var BatchCreateMemoryRecordsOutput: StaticStructureSchema;
|
|
25
|
+
export declare var BatchDeleteMemoryRecordsInput: StaticStructureSchema;
|
|
26
|
+
export declare var BatchDeleteMemoryRecordsOutput: StaticStructureSchema;
|
|
27
|
+
export declare var BatchUpdateMemoryRecordsInput: StaticStructureSchema;
|
|
28
|
+
export declare var BatchUpdateMemoryRecordsOutput: StaticStructureSchema;
|
|
29
|
+
export declare var Branch: StaticStructureSchema;
|
|
30
|
+
export declare var BranchFilter: StaticStructureSchema;
|
|
31
|
+
export declare var BrowserSessionStream: StaticStructureSchema;
|
|
32
|
+
export declare var BrowserSessionSummary: StaticStructureSchema;
|
|
33
|
+
export declare var CodeInterpreterResult: StaticStructureSchema;
|
|
34
|
+
export declare var CodeInterpreterSessionSummary: StaticStructureSchema;
|
|
35
|
+
export declare var CompleteResourceTokenAuthRequest: StaticStructureSchema;
|
|
36
|
+
export declare var CompleteResourceTokenAuthResponse: StaticStructureSchema;
|
|
37
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
38
|
+
export declare var ContentBlock: StaticStructureSchema;
|
|
39
|
+
export declare var Conversational: StaticStructureSchema;
|
|
40
|
+
export declare var CreateEventInput: StaticStructureSchema;
|
|
41
|
+
export declare var CreateEventOutput: StaticStructureSchema;
|
|
42
|
+
export declare var DeleteEventInput: StaticStructureSchema;
|
|
43
|
+
export declare var DeleteEventOutput: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteMemoryRecordInput: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteMemoryRecordOutput: StaticStructureSchema;
|
|
46
|
+
export declare var Event: StaticStructureSchema;
|
|
47
|
+
export declare var EventMetadataFilterExpression: StaticStructureSchema;
|
|
48
|
+
export declare var FilterInput: StaticStructureSchema;
|
|
49
|
+
export declare var GetAgentCardRequest: StaticStructureSchema;
|
|
50
|
+
export declare var GetAgentCardResponse: StaticStructureSchema;
|
|
51
|
+
export declare var GetBrowserSessionRequest: StaticStructureSchema;
|
|
52
|
+
export declare var GetBrowserSessionResponse: StaticStructureSchema;
|
|
53
|
+
export declare var GetCodeInterpreterSessionRequest: StaticStructureSchema;
|
|
54
|
+
export declare var GetCodeInterpreterSessionResponse: StaticStructureSchema;
|
|
55
|
+
export declare var GetEventInput: StaticStructureSchema;
|
|
56
|
+
export declare var GetEventOutput: StaticStructureSchema;
|
|
57
|
+
export declare var GetMemoryRecordInput: StaticStructureSchema;
|
|
58
|
+
export declare var GetMemoryRecordOutput: StaticStructureSchema;
|
|
59
|
+
export declare var GetResourceApiKeyRequest: StaticStructureSchema;
|
|
60
|
+
export declare var GetResourceApiKeyResponse: StaticStructureSchema;
|
|
61
|
+
export declare var GetResourceOauth2TokenRequest: StaticStructureSchema;
|
|
62
|
+
export declare var GetResourceOauth2TokenResponse: StaticStructureSchema;
|
|
63
|
+
export declare var GetWorkloadAccessTokenForJWTRequest: StaticStructureSchema;
|
|
64
|
+
export declare var GetWorkloadAccessTokenForJWTResponse: StaticStructureSchema;
|
|
65
|
+
export declare var GetWorkloadAccessTokenForUserIdRequest: StaticStructureSchema;
|
|
66
|
+
export declare var GetWorkloadAccessTokenForUserIdResponse: StaticStructureSchema;
|
|
67
|
+
export declare var GetWorkloadAccessTokenRequest: StaticStructureSchema;
|
|
68
|
+
export declare var GetWorkloadAccessTokenResponse: StaticStructureSchema;
|
|
69
|
+
export declare var InputContentBlock: StaticStructureSchema;
|
|
70
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
71
|
+
export declare var InvalidInputException: StaticErrorSchema;
|
|
72
|
+
export declare var InvokeAgentRuntimeRequest: StaticStructureSchema;
|
|
73
|
+
export declare var InvokeAgentRuntimeResponse: StaticStructureSchema;
|
|
74
|
+
export declare var InvokeCodeInterpreterRequest: StaticStructureSchema;
|
|
75
|
+
export declare var InvokeCodeInterpreterResponse: StaticStructureSchema;
|
|
76
|
+
export declare var ListActorsInput: StaticStructureSchema;
|
|
77
|
+
export declare var ListActorsOutput: StaticStructureSchema;
|
|
78
|
+
export declare var ListBrowserSessionsRequest: StaticStructureSchema;
|
|
79
|
+
export declare var ListBrowserSessionsResponse: StaticStructureSchema;
|
|
80
|
+
export declare var ListCodeInterpreterSessionsRequest: StaticStructureSchema;
|
|
81
|
+
export declare var ListCodeInterpreterSessionsResponse: StaticStructureSchema;
|
|
82
|
+
export declare var ListEventsInput: StaticStructureSchema;
|
|
83
|
+
export declare var ListEventsOutput: StaticStructureSchema;
|
|
84
|
+
export declare var ListMemoryRecordsInput: StaticStructureSchema;
|
|
85
|
+
export declare var ListMemoryRecordsOutput: StaticStructureSchema;
|
|
86
|
+
export declare var ListSessionsInput: StaticStructureSchema;
|
|
87
|
+
export declare var ListSessionsOutput: StaticStructureSchema;
|
|
88
|
+
export declare var LiveViewStream: StaticStructureSchema;
|
|
89
|
+
export declare var MemoryRecord: StaticStructureSchema;
|
|
90
|
+
export declare var MemoryRecordCreateInput: StaticStructureSchema;
|
|
91
|
+
export declare var MemoryRecordDeleteInput: StaticStructureSchema;
|
|
92
|
+
export declare var MemoryRecordOutput: StaticStructureSchema;
|
|
93
|
+
export declare var MemoryRecordSummary: StaticStructureSchema;
|
|
94
|
+
export declare var MemoryRecordUpdateInput: StaticStructureSchema;
|
|
95
|
+
export declare var ResourceContent: StaticStructureSchema;
|
|
96
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
97
|
+
export declare var RetrieveMemoryRecordsInput: StaticStructureSchema;
|
|
98
|
+
export declare var RetrieveMemoryRecordsOutput: StaticStructureSchema;
|
|
99
|
+
export declare var RuntimeClientError: StaticErrorSchema;
|
|
100
|
+
export declare var SearchCriteria: StaticStructureSchema;
|
|
101
|
+
export declare var ServiceException: StaticErrorSchema;
|
|
102
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
103
|
+
export declare var SessionSummary: StaticStructureSchema;
|
|
104
|
+
export declare var StartBrowserSessionRequest: StaticStructureSchema;
|
|
105
|
+
export declare var StartBrowserSessionResponse: StaticStructureSchema;
|
|
106
|
+
export declare var StartCodeInterpreterSessionRequest: StaticStructureSchema;
|
|
107
|
+
export declare var StartCodeInterpreterSessionResponse: StaticStructureSchema;
|
|
108
|
+
export declare var StopBrowserSessionRequest: StaticStructureSchema;
|
|
109
|
+
export declare var StopBrowserSessionResponse: StaticStructureSchema;
|
|
110
|
+
export declare var StopCodeInterpreterSessionRequest: StaticStructureSchema;
|
|
111
|
+
export declare var StopCodeInterpreterSessionResponse: StaticStructureSchema;
|
|
112
|
+
export declare var StopRuntimeSessionRequest: StaticStructureSchema;
|
|
113
|
+
export declare var StopRuntimeSessionResponse: StaticStructureSchema;
|
|
114
|
+
export declare var ThrottledException: StaticErrorSchema;
|
|
115
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
116
|
+
export declare var ToolArguments: StaticStructureSchema;
|
|
117
|
+
export declare var ToolResultStructuredContent: StaticStructureSchema;
|
|
118
|
+
export declare var UnauthorizedException: StaticErrorSchema;
|
|
119
|
+
export declare var UpdateBrowserStreamRequest: StaticStructureSchema;
|
|
120
|
+
export declare var UpdateBrowserStreamResponse: StaticStructureSchema;
|
|
121
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
122
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
123
|
+
export declare var ViewPort: StaticStructureSchema;
|
|
124
|
+
export declare var __Unit: "unit";
|
|
125
|
+
export declare var BedrockAgentCoreServiceException: StaticErrorSchema;
|
|
126
|
+
export declare var ActorSummaryList: StaticListSchema;
|
|
127
|
+
export declare var BrowserSessionSummaries: StaticListSchema;
|
|
128
|
+
export declare var CodeInterpreterSessionSummaries: StaticListSchema;
|
|
129
|
+
export declare var ContentBlockList: StaticListSchema;
|
|
130
|
+
export declare var EventList: StaticListSchema;
|
|
131
|
+
export declare var EventMetadataFilterList: StaticListSchema;
|
|
132
|
+
export declare var InputContentBlockList: StaticListSchema;
|
|
133
|
+
export declare var MemoryRecordsCreateInputList: StaticListSchema;
|
|
134
|
+
export declare var MemoryRecordsDeleteInputList: StaticListSchema;
|
|
135
|
+
export declare var MemoryRecordsOutputList: StaticListSchema;
|
|
136
|
+
export declare var MemoryRecordSummaryList: StaticListSchema;
|
|
137
|
+
export declare var MemoryRecordsUpdateInputList: StaticListSchema;
|
|
138
|
+
export declare var NamespacesList: number;
|
|
139
|
+
export declare var PayloadTypeList: StaticListSchema;
|
|
140
|
+
export declare var ScopesListType: number;
|
|
141
|
+
export declare var SessionSummaryList: StaticListSchema;
|
|
142
|
+
export declare var StringList: number;
|
|
143
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
144
|
+
export declare var CustomRequestParametersType: StaticMapSchema;
|
|
145
|
+
export declare var MetadataMap: StaticMapSchema;
|
|
146
|
+
export declare var CodeInterpreterStreamOutput: StaticStructureSchema;
|
|
147
|
+
export declare var Content: StaticStructureSchema;
|
|
148
|
+
export declare var LeftExpression: StaticStructureSchema;
|
|
149
|
+
export declare var MemoryContent: StaticStructureSchema;
|
|
150
|
+
export declare var MetadataValue: StaticStructureSchema;
|
|
151
|
+
export declare var PayloadType: StaticStructureSchema;
|
|
152
|
+
export declare var RightExpression: StaticStructureSchema;
|
|
153
|
+
export declare var StreamUpdate: StaticStructureSchema;
|
|
154
|
+
export declare var UserIdentifier: StaticStructureSchema;
|
|
155
|
+
export declare var BatchCreateMemoryRecords: StaticOperationSchema;
|
|
156
|
+
export declare var BatchDeleteMemoryRecords: StaticOperationSchema;
|
|
157
|
+
export declare var BatchUpdateMemoryRecords: StaticOperationSchema;
|
|
158
|
+
export declare var CompleteResourceTokenAuth: StaticOperationSchema;
|
|
159
|
+
export declare var CreateEvent: StaticOperationSchema;
|
|
160
|
+
export declare var DeleteEvent: StaticOperationSchema;
|
|
161
|
+
export declare var DeleteMemoryRecord: StaticOperationSchema;
|
|
162
|
+
export declare var GetAgentCard: StaticOperationSchema;
|
|
163
|
+
export declare var GetBrowserSession: StaticOperationSchema;
|
|
164
|
+
export declare var GetCodeInterpreterSession: StaticOperationSchema;
|
|
165
|
+
export declare var GetEvent: StaticOperationSchema;
|
|
166
|
+
export declare var GetMemoryRecord: StaticOperationSchema;
|
|
167
|
+
export declare var GetResourceApiKey: StaticOperationSchema;
|
|
168
|
+
export declare var GetResourceOauth2Token: StaticOperationSchema;
|
|
169
|
+
export declare var GetWorkloadAccessToken: StaticOperationSchema;
|
|
170
|
+
export declare var GetWorkloadAccessTokenForJWT: StaticOperationSchema;
|
|
171
|
+
export declare var GetWorkloadAccessTokenForUserId: StaticOperationSchema;
|
|
172
|
+
export declare var InvokeAgentRuntime: StaticOperationSchema;
|
|
173
|
+
export declare var InvokeCodeInterpreter: StaticOperationSchema;
|
|
174
|
+
export declare var ListActors: StaticOperationSchema;
|
|
175
|
+
export declare var ListBrowserSessions: StaticOperationSchema;
|
|
176
|
+
export declare var ListCodeInterpreterSessions: StaticOperationSchema;
|
|
177
|
+
export declare var ListEvents: StaticOperationSchema;
|
|
178
|
+
export declare var ListMemoryRecords: StaticOperationSchema;
|
|
179
|
+
export declare var ListSessions: StaticOperationSchema;
|
|
180
|
+
export declare var RetrieveMemoryRecords: StaticOperationSchema;
|
|
181
|
+
export declare var StartBrowserSession: StaticOperationSchema;
|
|
182
|
+
export declare var StartCodeInterpreterSession: StaticOperationSchema;
|
|
183
|
+
export declare var StopBrowserSession: StaticOperationSchema;
|
|
184
|
+
export declare var StopCodeInterpreterSession: StaticOperationSchema;
|
|
185
|
+
export declare var StopRuntimeSession: StaticOperationSchema;
|
|
186
|
+
export declare var UpdateBrowserStream: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.930.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-agentcore",
|
|
@@ -20,47 +20,46 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/eventstream-serde-browser": "^4.2.
|
|
37
|
-
"@smithy/eventstream-serde-config-resolver": "^4.3.
|
|
38
|
-
"@smithy/eventstream-serde-node": "^4.2.
|
|
39
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
40
|
-
"@smithy/hash-node": "^4.2.
|
|
41
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
42
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
46
|
-
"@smithy/middleware-stack": "^4.2.
|
|
47
|
-
"@smithy/node-config-provider": "^4.3.
|
|
48
|
-
"@smithy/node-http-handler": "^4.4.
|
|
49
|
-
"@smithy/protocol-http": "^5.3.
|
|
50
|
-
"@smithy/smithy-client": "^4.9.
|
|
51
|
-
"@smithy/types": "^4.
|
|
52
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.930.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.930.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.930.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.930.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/eventstream-serde-browser": "^4.2.5",
|
|
37
|
+
"@smithy/eventstream-serde-config-resolver": "^4.3.5",
|
|
38
|
+
"@smithy/eventstream-serde-node": "^4.2.5",
|
|
39
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
40
|
+
"@smithy/hash-node": "^4.2.5",
|
|
41
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
42
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
46
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
47
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
48
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
49
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
50
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
51
|
+
"@smithy/types": "^4.9.0",
|
|
52
|
+
"@smithy/url-parser": "^4.2.5",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
58
|
-
"@smithy/util-endpoints": "^3.2.
|
|
59
|
-
"@smithy/util-middleware": "^4.2.
|
|
60
|
-
"@smithy/util-retry": "^4.2.
|
|
61
|
-
"@smithy/util-stream": "^4.5.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
58
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
59
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
60
|
+
"@smithy/util-retry": "^4.2.5",
|
|
61
|
+
"@smithy/util-stream": "^4.5.6",
|
|
62
62
|
"@smithy/util-utf8": "^4.2.0",
|
|
63
|
-
"@smithy/uuid": "^1.1.0",
|
|
64
63
|
"tslib": "^2.6.2"
|
|
65
64
|
},
|
|
66
65
|
"devDependencies": {
|