@aws-sdk/client-bedrock-agentcore 3.952.0 → 3.953.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.
Files changed (55) hide show
  1. package/dist-cjs/index.js +555 -386
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/BatchCreateMemoryRecordsCommand.js +2 -2
  4. package/dist-es/commands/BatchDeleteMemoryRecordsCommand.js +2 -2
  5. package/dist-es/commands/BatchUpdateMemoryRecordsCommand.js +2 -2
  6. package/dist-es/commands/CompleteResourceTokenAuthCommand.js +2 -2
  7. package/dist-es/commands/CreateEventCommand.js +2 -2
  8. package/dist-es/commands/DeleteEventCommand.js +2 -2
  9. package/dist-es/commands/DeleteMemoryRecordCommand.js +2 -2
  10. package/dist-es/commands/EvaluateCommand.js +2 -2
  11. package/dist-es/commands/GetAgentCardCommand.js +2 -2
  12. package/dist-es/commands/GetBrowserSessionCommand.js +2 -2
  13. package/dist-es/commands/GetCodeInterpreterSessionCommand.js +2 -2
  14. package/dist-es/commands/GetEventCommand.js +2 -2
  15. package/dist-es/commands/GetMemoryRecordCommand.js +2 -2
  16. package/dist-es/commands/GetResourceApiKeyCommand.js +2 -2
  17. package/dist-es/commands/GetResourceOauth2TokenCommand.js +2 -2
  18. package/dist-es/commands/GetWorkloadAccessTokenCommand.js +2 -2
  19. package/dist-es/commands/GetWorkloadAccessTokenForJWTCommand.js +2 -2
  20. package/dist-es/commands/GetWorkloadAccessTokenForUserIdCommand.js +2 -2
  21. package/dist-es/commands/InvokeAgentRuntimeCommand.js +2 -2
  22. package/dist-es/commands/InvokeCodeInterpreterCommand.js +2 -2
  23. package/dist-es/commands/ListActorsCommand.js +2 -2
  24. package/dist-es/commands/ListBrowserSessionsCommand.js +2 -2
  25. package/dist-es/commands/ListCodeInterpreterSessionsCommand.js +2 -2
  26. package/dist-es/commands/ListEventsCommand.js +2 -2
  27. package/dist-es/commands/ListMemoryExtractionJobsCommand.js +2 -2
  28. package/dist-es/commands/ListMemoryRecordsCommand.js +2 -2
  29. package/dist-es/commands/ListSessionsCommand.js +2 -2
  30. package/dist-es/commands/RetrieveMemoryRecordsCommand.js +2 -2
  31. package/dist-es/commands/StartBrowserSessionCommand.js +2 -2
  32. package/dist-es/commands/StartCodeInterpreterSessionCommand.js +2 -2
  33. package/dist-es/commands/StartMemoryExtractionJobCommand.js +2 -2
  34. package/dist-es/commands/StopBrowserSessionCommand.js +2 -2
  35. package/dist-es/commands/StopCodeInterpreterSessionCommand.js +2 -2
  36. package/dist-es/commands/StopRuntimeSessionCommand.js +2 -2
  37. package/dist-es/commands/UpdateBrowserStreamCommand.js +2 -2
  38. package/dist-es/index.js +1 -0
  39. package/dist-es/runtimeConfig.shared.js +6 -1
  40. package/dist-es/schemas/schemas_0.js +330 -330
  41. package/dist-types/BedrockAgentCoreClient.d.ts +1 -10
  42. package/dist-types/index.d.ts +1 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  44. package/dist-types/runtimeConfig.d.ts +6 -2
  45. package/dist-types/runtimeConfig.native.d.ts +6 -2
  46. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  47. package/dist-types/schemas/schemas_0.d.ts +170 -209
  48. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +0 -4
  49. package/dist-types/ts3.4/index.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +169 -211
  55. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -112,14 +112,14 @@ class BedrockAgentCoreClient extends smithyClient.Client {
112
112
  }
113
113
  }
114
114
 
115
- let BedrockAgentCoreServiceException$1 = class BedrockAgentCoreServiceException extends smithyClient.ServiceException {
115
+ class BedrockAgentCoreServiceException extends smithyClient.ServiceException {
116
116
  constructor(options) {
117
117
  super(options);
118
118
  Object.setPrototypeOf(this, BedrockAgentCoreServiceException.prototype);
119
119
  }
120
- };
120
+ }
121
121
 
122
- let AccessDeniedException$1 = class AccessDeniedException extends BedrockAgentCoreServiceException$1 {
122
+ class AccessDeniedException extends BedrockAgentCoreServiceException {
123
123
  name = "AccessDeniedException";
124
124
  $fault = "client";
125
125
  constructor(opts) {
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends BedrockAgentCo
130
130
  });
131
131
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
132
  }
133
- };
134
- let InternalServerException$1 = class InternalServerException extends BedrockAgentCoreServiceException$1 {
133
+ }
134
+ class InternalServerException extends BedrockAgentCoreServiceException {
135
135
  name = "InternalServerException";
136
136
  $fault = "server";
137
137
  constructor(opts) {
@@ -142,8 +142,8 @@ let InternalServerException$1 = class InternalServerException extends BedrockAge
142
142
  });
143
143
  Object.setPrototypeOf(this, InternalServerException.prototype);
144
144
  }
145
- };
146
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends BedrockAgentCoreServiceException$1 {
145
+ }
146
+ class ResourceNotFoundException extends BedrockAgentCoreServiceException {
147
147
  name = "ResourceNotFoundException";
148
148
  $fault = "client";
149
149
  constructor(opts) {
@@ -154,8 +154,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Bedroc
154
154
  });
155
155
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
156
156
  }
157
- };
158
- let RuntimeClientError$1 = class RuntimeClientError extends BedrockAgentCoreServiceException$1 {
157
+ }
158
+ class RuntimeClientError extends BedrockAgentCoreServiceException {
159
159
  name = "RuntimeClientError";
160
160
  $fault = "client";
161
161
  constructor(opts) {
@@ -166,8 +166,8 @@ let RuntimeClientError$1 = class RuntimeClientError extends BedrockAgentCoreServ
166
166
  });
167
167
  Object.setPrototypeOf(this, RuntimeClientError.prototype);
168
168
  }
169
- };
170
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BedrockAgentCoreServiceException$1 {
169
+ }
170
+ class ServiceQuotaExceededException extends BedrockAgentCoreServiceException {
171
171
  name = "ServiceQuotaExceededException";
172
172
  $fault = "client";
173
173
  constructor(opts) {
@@ -178,8 +178,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
178
178
  });
179
179
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
180
180
  }
181
- };
182
- let ThrottlingException$1 = class ThrottlingException extends BedrockAgentCoreServiceException$1 {
181
+ }
182
+ class ThrottlingException extends BedrockAgentCoreServiceException {
183
183
  name = "ThrottlingException";
184
184
  $fault = "client";
185
185
  constructor(opts) {
@@ -190,8 +190,8 @@ let ThrottlingException$1 = class ThrottlingException extends BedrockAgentCoreSe
190
190
  });
191
191
  Object.setPrototypeOf(this, ThrottlingException.prototype);
192
192
  }
193
- };
194
- let ValidationException$1 = class ValidationException extends BedrockAgentCoreServiceException$1 {
193
+ }
194
+ class ValidationException extends BedrockAgentCoreServiceException {
195
195
  name = "ValidationException";
196
196
  $fault = "client";
197
197
  reason;
@@ -206,8 +206,8 @@ let ValidationException$1 = class ValidationException extends BedrockAgentCoreSe
206
206
  this.reason = opts.reason;
207
207
  this.fieldList = opts.fieldList;
208
208
  }
209
- };
210
- let ConflictException$1 = class ConflictException extends BedrockAgentCoreServiceException$1 {
209
+ }
210
+ class ConflictException extends BedrockAgentCoreServiceException {
211
211
  name = "ConflictException";
212
212
  $fault = "client";
213
213
  constructor(opts) {
@@ -218,8 +218,8 @@ let ConflictException$1 = class ConflictException extends BedrockAgentCoreServic
218
218
  });
219
219
  Object.setPrototypeOf(this, ConflictException.prototype);
220
220
  }
221
- };
222
- let UnauthorizedException$1 = class UnauthorizedException extends BedrockAgentCoreServiceException$1 {
221
+ }
222
+ class UnauthorizedException extends BedrockAgentCoreServiceException {
223
223
  name = "UnauthorizedException";
224
224
  $fault = "client";
225
225
  constructor(opts) {
@@ -230,8 +230,8 @@ let UnauthorizedException$1 = class UnauthorizedException extends BedrockAgentCo
230
230
  });
231
231
  Object.setPrototypeOf(this, UnauthorizedException.prototype);
232
232
  }
233
- };
234
- let DuplicateIdException$1 = class DuplicateIdException extends BedrockAgentCoreServiceException$1 {
233
+ }
234
+ class DuplicateIdException extends BedrockAgentCoreServiceException {
235
235
  name = "DuplicateIdException";
236
236
  $fault = "client";
237
237
  constructor(opts) {
@@ -242,8 +242,8 @@ let DuplicateIdException$1 = class DuplicateIdException extends BedrockAgentCore
242
242
  });
243
243
  Object.setPrototypeOf(this, DuplicateIdException.prototype);
244
244
  }
245
- };
246
- let ServiceException$1 = class ServiceException extends BedrockAgentCoreServiceException$1 {
245
+ }
246
+ class ServiceException extends BedrockAgentCoreServiceException {
247
247
  name = "ServiceException";
248
248
  $fault = "server";
249
249
  constructor(opts) {
@@ -254,8 +254,8 @@ let ServiceException$1 = class ServiceException extends BedrockAgentCoreServiceE
254
254
  });
255
255
  Object.setPrototypeOf(this, ServiceException.prototype);
256
256
  }
257
- };
258
- let ThrottledException$1 = class ThrottledException extends BedrockAgentCoreServiceException$1 {
257
+ }
258
+ class ThrottledException extends BedrockAgentCoreServiceException {
259
259
  name = "ThrottledException";
260
260
  $fault = "client";
261
261
  constructor(opts) {
@@ -266,8 +266,8 @@ let ThrottledException$1 = class ThrottledException extends BedrockAgentCoreServ
266
266
  });
267
267
  Object.setPrototypeOf(this, ThrottledException.prototype);
268
268
  }
269
- };
270
- let InvalidInputException$1 = class InvalidInputException extends BedrockAgentCoreServiceException$1 {
269
+ }
270
+ class InvalidInputException extends BedrockAgentCoreServiceException {
271
271
  name = "InvalidInputException";
272
272
  $fault = "client";
273
273
  constructor(opts) {
@@ -278,7 +278,7 @@ let InvalidInputException$1 = class InvalidInputException extends BedrockAgentCo
278
278
  });
279
279
  Object.setPrototypeOf(this, InvalidInputException.prototype);
280
280
  }
281
- };
281
+ }
282
282
 
283
283
  const _A = "Accept";
284
284
  const _ADE = "AccessDeniedException";
@@ -682,12 +682,12 @@ var SensitiveString = [0, n0, _SS, 8, 0];
682
682
  var State = [0, n0, _S, 8, 0];
683
683
  var UserTokenType = [0, n0, _UTT, 8, 0];
684
684
  var WorkloadIdentityTokenType = [0, n0, _WITT, 8, 0];
685
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
686
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
687
- var ActorSummary = [3, n0, _AS, 0, [_aI], [0]];
688
- var AutomationStream = [3, n0, _ASu, 0, [_sE, _sS], [0, 0]];
689
- var AutomationStreamUpdate = [3, n0, _ASU, 0, [_sS], [0]];
690
- var BatchCreateMemoryRecordsInput = [
685
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
686
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
687
+ var ActorSummary$ = [3, n0, _AS, 0, [_aI], [0]];
688
+ var AutomationStream$ = [3, n0, _ASu, 0, [_sE, _sS], [0, 0]];
689
+ var AutomationStreamUpdate$ = [3, n0, _ASU, 0, [_sS], [0]];
690
+ var BatchCreateMemoryRecordsInput$ = [
691
691
  3,
692
692
  n0,
693
693
  _BCMRI,
@@ -699,7 +699,7 @@ var BatchCreateMemoryRecordsInput = [
699
699
  [0, 4],
700
700
  ],
701
701
  ];
702
- var BatchCreateMemoryRecordsOutput = [
702
+ var BatchCreateMemoryRecordsOutput$ = [
703
703
  3,
704
704
  n0,
705
705
  _BCMRO,
@@ -707,7 +707,7 @@ var BatchCreateMemoryRecordsOutput = [
707
707
  [_sR, _fR],
708
708
  [() => MemoryRecordsOutputList, () => MemoryRecordsOutputList],
709
709
  ];
710
- var BatchDeleteMemoryRecordsInput = [
710
+ var BatchDeleteMemoryRecordsInput$ = [
711
711
  3,
712
712
  n0,
713
713
  _BDMRI,
@@ -715,7 +715,7 @@ var BatchDeleteMemoryRecordsInput = [
715
715
  [_mI, _r],
716
716
  [[0, 1], () => MemoryRecordsDeleteInputList],
717
717
  ];
718
- var BatchDeleteMemoryRecordsOutput = [
718
+ var BatchDeleteMemoryRecordsOutput$ = [
719
719
  3,
720
720
  n0,
721
721
  _BDMRO,
@@ -723,7 +723,7 @@ var BatchDeleteMemoryRecordsOutput = [
723
723
  [_sR, _fR],
724
724
  [() => MemoryRecordsOutputList, () => MemoryRecordsOutputList],
725
725
  ];
726
- var BatchUpdateMemoryRecordsInput = [
726
+ var BatchUpdateMemoryRecordsInput$ = [
727
727
  3,
728
728
  n0,
729
729
  _BUMRI,
@@ -734,7 +734,7 @@ var BatchUpdateMemoryRecordsInput = [
734
734
  [() => MemoryRecordsUpdateInputList, 0],
735
735
  ],
736
736
  ];
737
- var BatchUpdateMemoryRecordsOutput = [
737
+ var BatchUpdateMemoryRecordsOutput$ = [
738
738
  3,
739
739
  n0,
740
740
  _BUMRO,
@@ -742,17 +742,17 @@ var BatchUpdateMemoryRecordsOutput = [
742
742
  [_sR, _fR],
743
743
  [() => MemoryRecordsOutputList, () => MemoryRecordsOutputList],
744
744
  ];
745
- var Branch = [3, n0, _Br, 0, [_rEI, _n], [0, 0]];
746
- var BranchFilter = [3, n0, _BF, 0, [_n, _iPB], [0, 2]];
747
- var BrowserSessionStream = [
745
+ var Branch$ = [3, n0, _Br, 0, [_rEI, _n], [0, 0]];
746
+ var BranchFilter$ = [3, n0, _BF, 0, [_n, _iPB], [0, 2]];
747
+ var BrowserSessionStream$ = [
748
748
  3,
749
749
  n0,
750
750
  _BSS,
751
751
  0,
752
752
  [_aS, _lVS],
753
- [() => AutomationStream, () => LiveViewStream],
753
+ [() => AutomationStream$, () => LiveViewStream$],
754
754
  ];
755
- var BrowserSessionSummary = [
755
+ var BrowserSessionSummary$ = [
756
756
  3,
757
757
  n0,
758
758
  _BSSr,
@@ -760,15 +760,15 @@ var BrowserSessionSummary = [
760
760
  [_bI, _sI, _n, _st, _cA, _lUA],
761
761
  [0, 0, 0, 0, 5, 5],
762
762
  ];
763
- var CodeInterpreterResult = [
763
+ var CodeInterpreterResult$ = [
764
764
  3,
765
765
  n0,
766
766
  _CIR,
767
767
  0,
768
768
  [_co, _sC, _iE],
769
- [() => ContentBlockList, () => ToolResultStructuredContent, 2],
769
+ [() => ContentBlockList, () => ToolResultStructuredContent$, 2],
770
770
  ];
771
- var CodeInterpreterSessionSummary = [
771
+ var CodeInterpreterSessionSummary$ = [
772
772
  3,
773
773
  n0,
774
774
  _CISS,
@@ -776,36 +776,36 @@ var CodeInterpreterSessionSummary = [
776
776
  [_cII, _sI, _n, _st, _cA, _lUA],
777
777
  [0, 0, 0, 0, 5, 5],
778
778
  ];
779
- var CompleteResourceTokenAuthRequest = [
779
+ var CompleteResourceTokenAuthRequest$ = [
780
780
  3,
781
781
  n0,
782
782
  _CRTAR,
783
783
  0,
784
784
  [_uI, _sU],
785
- [[() => UserIdentifier, 0], 0],
785
+ [[() => UserIdentifier$, 0], 0],
786
786
  ];
787
- var CompleteResourceTokenAuthResponse = [3, n0, _CRTARo, 0, [], []];
788
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
789
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
790
- var ContentBlock = [
787
+ var CompleteResourceTokenAuthResponse$ = [3, n0, _CRTARo, 0, [], []];
788
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
789
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
790
+ var ContentBlock$ = [
791
791
  3,
792
792
  n0,
793
793
  _CB,
794
794
  0,
795
795
  [_t, _te, _d, _mT, _u, _n, _de, _si, _re],
796
- [0, 0, 21, 0, 0, 0, 0, 1, () => ResourceContent],
796
+ [0, 0, 21, 0, 0, 0, 0, 1, () => ResourceContent$],
797
797
  ];
798
- var Conversational = [3, n0, _C, 0, [_co, _ro], [[() => Content, 0], 0]];
799
- var CreateEventInput = [
798
+ var Conversational$ = [3, n0, _C, 0, [_co, _ro], [[() => Content$, 0], 0]];
799
+ var CreateEventInput$ = [
800
800
  3,
801
801
  n0,
802
802
  _CEI,
803
803
  0,
804
804
  [_mI, _aI, _sI, _eT, _p, _b, _cT, _me],
805
- [[0, 1], 0, 0, 4, [() => PayloadTypeList, 0], () => Branch, [0, 4], () => MetadataMap],
805
+ [[0, 1], 0, 0, 4, [() => PayloadTypeList, 0], () => Branch$, [0, 4], () => MetadataMap],
806
806
  ];
807
- var CreateEventOutput = [3, n0, _CEO, 0, [_ev], [[() => Event, 0]]];
808
- var DeleteEventInput = [
807
+ var CreateEventOutput$ = [3, n0, _CEO, 0, [_ev], [[() => Event$, 0]]];
808
+ var DeleteEventInput$ = [
809
809
  3,
810
810
  n0,
811
811
  _DEI,
@@ -818,8 +818,8 @@ var DeleteEventInput = [
818
818
  [0, 1],
819
819
  ],
820
820
  ];
821
- var DeleteEventOutput = [3, n0, _DEO, 0, [_eI], [0]];
822
- var DeleteMemoryRecordInput = [
821
+ var DeleteEventOutput$ = [3, n0, _DEO, 0, [_eI], [0]];
822
+ var DeleteMemoryRecordInput$ = [
823
823
  3,
824
824
  n0,
825
825
  _DMRI,
@@ -830,61 +830,61 @@ var DeleteMemoryRecordInput = [
830
830
  [0, 1],
831
831
  ],
832
832
  ];
833
- var DeleteMemoryRecordOutput = [3, n0, _DMRO, 0, [_mRI], [0]];
834
- var DuplicateIdException = [-3, n0, _DIE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
835
- schema.TypeRegistry.for(n0).registerError(DuplicateIdException, DuplicateIdException$1);
836
- var EvaluateRequest = [
833
+ var DeleteMemoryRecordOutput$ = [3, n0, _DMRO, 0, [_mRI], [0]];
834
+ var DuplicateIdException$ = [-3, n0, _DIE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
835
+ schema.TypeRegistry.for(n0).registerError(DuplicateIdException$, DuplicateIdException);
836
+ var EvaluateRequest$ = [
837
837
  3,
838
838
  n0,
839
839
  _ER,
840
840
  0,
841
841
  [_eIv, _eIva, _eTv],
842
- [[0, 1], [() => EvaluationInput, 0], () => EvaluationTarget],
842
+ [[0, 1], [() => EvaluationInput$, 0], () => EvaluationTarget$],
843
843
  ];
844
- var EvaluateResponse = [3, n0, _ERv, 0, [_eR], [[() => EvaluationResults, 0]]];
845
- var EvaluationResultContent = [
844
+ var EvaluateResponse$ = [3, n0, _ERv, 0, [_eR], [[() => EvaluationResults, 0]]];
845
+ var EvaluationResultContent$ = [
846
846
  3,
847
847
  n0,
848
848
  _ERC,
849
849
  0,
850
850
  [_eA, _eIv, _eN, _ex, _con, _v, _l, _tU, _eM, _eC],
851
- [0, 0, 0, [() => EvaluationExplanation, 0], () => Context, 1, 0, () => TokenUsage, 0, 0],
851
+ [0, 0, 0, [() => EvaluationExplanation, 0], () => Context$, 1, 0, () => TokenUsage$, 0, 0],
852
852
  ];
853
- var Event = [
853
+ var Event$ = [
854
854
  3,
855
855
  n0,
856
856
  _E,
857
857
  0,
858
858
  [_mI, _aI, _sI, _eI, _eT, _p, _b, _me],
859
- [0, 0, 0, 0, 4, [() => PayloadTypeList, 0], () => Branch, () => MetadataMap],
859
+ [0, 0, 0, 0, 4, [() => PayloadTypeList, 0], () => Branch$, () => MetadataMap],
860
860
  ];
861
- var EventMetadataFilterExpression = [
861
+ var EventMetadataFilterExpression$ = [
862
862
  3,
863
863
  n0,
864
864
  _EMFE,
865
865
  0,
866
866
  [_le, _o, _ri],
867
- [() => LeftExpression, 0, () => RightExpression],
867
+ [() => LeftExpression$, 0, () => RightExpression$],
868
868
  ];
869
- var ExtractionJob = [3, n0, _EJ, 0, [_jI], [0]];
870
- var ExtractionJobFilterInput = [3, n0, _EJFI, 0, [_sIt, _sI, _aI, _st], [0, 0, 0, 0]];
871
- var ExtractionJobMetadata = [
869
+ var ExtractionJob$ = [3, n0, _EJ, 0, [_jI], [0]];
870
+ var ExtractionJobFilterInput$ = [3, n0, _EJFI, 0, [_sIt, _sI, _aI, _st], [0, 0, 0, 0]];
871
+ var ExtractionJobMetadata$ = [
872
872
  3,
873
873
  n0,
874
874
  _EJM,
875
875
  0,
876
876
  [_jID, _mes, _st, _fRa, _sIt, _sI, _aI],
877
- [0, () => ExtractionJobMessages, 0, 0, 0, 0, 0],
877
+ [0, () => ExtractionJobMessages$, 0, 0, 0, 0, 0],
878
878
  ];
879
- var FilterInput = [
879
+ var FilterInput$ = [
880
880
  3,
881
881
  n0,
882
882
  _FI,
883
883
  0,
884
884
  [_b, _eMv],
885
- [() => BranchFilter, () => EventMetadataFilterList],
885
+ [() => BranchFilter$, () => EventMetadataFilterList],
886
886
  ];
887
- var GetAgentCardRequest = [
887
+ var GetAgentCardRequest$ = [
888
888
  3,
889
889
  n0,
890
890
  _GACR,
@@ -896,7 +896,7 @@ var GetAgentCardRequest = [
896
896
  [0, { [_hQ]: _q }],
897
897
  ],
898
898
  ];
899
- var GetAgentCardResponse = [
899
+ var GetAgentCardResponse$ = [
900
900
  3,
901
901
  n0,
902
902
  _GACRe,
@@ -908,7 +908,7 @@ var GetAgentCardResponse = [
908
908
  [1, 32],
909
909
  ],
910
910
  ];
911
- var GetBrowserSessionRequest = [
911
+ var GetBrowserSessionRequest$ = [
912
912
  3,
913
913
  n0,
914
914
  _GBSR,
@@ -919,15 +919,15 @@ var GetBrowserSessionRequest = [
919
919
  [0, { [_hQ]: _sI }],
920
920
  ],
921
921
  ];
922
- var GetBrowserSessionResponse = [
922
+ var GetBrowserSessionResponse$ = [
923
923
  3,
924
924
  n0,
925
925
  _GBSRe,
926
926
  0,
927
927
  [_bI, _sI, _n, _cA, _vP, _sTS, _st, _str, _sRA, _lUA],
928
- [0, 0, 0, 5, () => ViewPort, 1, 0, () => BrowserSessionStream, 0, 5],
928
+ [0, 0, 0, 5, () => ViewPort$, 1, 0, () => BrowserSessionStream$, 0, 5],
929
929
  ];
930
- var GetCodeInterpreterSessionRequest = [
930
+ var GetCodeInterpreterSessionRequest$ = [
931
931
  3,
932
932
  n0,
933
933
  _GCISR,
@@ -938,7 +938,7 @@ var GetCodeInterpreterSessionRequest = [
938
938
  [0, { [_hQ]: _sI }],
939
939
  ],
940
940
  ];
941
- var GetCodeInterpreterSessionResponse = [
941
+ var GetCodeInterpreterSessionResponse$ = [
942
942
  3,
943
943
  n0,
944
944
  _GCISRe,
@@ -946,7 +946,7 @@ var GetCodeInterpreterSessionResponse = [
946
946
  [_cII, _sI, _n, _cA, _sTS, _st],
947
947
  [0, 0, 0, 5, 1, 0],
948
948
  ];
949
- var GetEventInput = [
949
+ var GetEventInput$ = [
950
950
  3,
951
951
  n0,
952
952
  _GEI,
@@ -959,8 +959,8 @@ var GetEventInput = [
959
959
  [0, 1],
960
960
  ],
961
961
  ];
962
- var GetEventOutput = [3, n0, _GEO, 0, [_ev], [[() => Event, 0]]];
963
- var GetMemoryRecordInput = [
962
+ var GetEventOutput$ = [3, n0, _GEO, 0, [_ev], [[() => Event$, 0]]];
963
+ var GetMemoryRecordInput$ = [
964
964
  3,
965
965
  n0,
966
966
  _GMRI,
@@ -971,8 +971,8 @@ var GetMemoryRecordInput = [
971
971
  [0, 1],
972
972
  ],
973
973
  ];
974
- var GetMemoryRecordOutput = [3, n0, _GMRO, 0, [_mR], [[() => MemoryRecord, 0]]];
975
- var GetResourceApiKeyRequest = [
974
+ var GetMemoryRecordOutput$ = [3, n0, _GMRO, 0, [_mR], [[() => MemoryRecord$, 0]]];
975
+ var GetResourceApiKeyRequest$ = [
976
976
  3,
977
977
  n0,
978
978
  _GRAKR,
@@ -980,8 +980,8 @@ var GetResourceApiKeyRequest = [
980
980
  [_wIT, _rCPN],
981
981
  [[() => WorkloadIdentityTokenType, 0], 0],
982
982
  ];
983
- var GetResourceApiKeyResponse = [3, n0, _GRAKRe, 0, [_aK], [[() => ApiKeyType, 0]]];
984
- var GetResourceOauth2TokenRequest = [
983
+ var GetResourceApiKeyResponse$ = [3, n0, _GRAKRe, 0, [_aK], [[() => ApiKeyType, 0]]];
984
+ var GetResourceOauth2TokenRequest$ = [
985
985
  3,
986
986
  n0,
987
987
  _GROTR,
@@ -999,7 +999,7 @@ var GetResourceOauth2TokenRequest = [
999
999
  [() => State, 0],
1000
1000
  ],
1001
1001
  ];
1002
- var GetResourceOauth2TokenResponse = [
1002
+ var GetResourceOauth2TokenResponse$ = [
1003
1003
  3,
1004
1004
  n0,
1005
1005
  _GROTRe,
@@ -1007,7 +1007,7 @@ var GetResourceOauth2TokenResponse = [
1007
1007
  [_aU, _aT, _sU, _sSe],
1008
1008
  [[() => AuthorizationUrlType, 0], [() => AccessTokenType, 0], 0, 0],
1009
1009
  ];
1010
- var GetWorkloadAccessTokenForJWTRequest = [
1010
+ var GetWorkloadAccessTokenForJWTRequest$ = [
1011
1011
  3,
1012
1012
  n0,
1013
1013
  _GWATFJWTR,
@@ -1015,7 +1015,7 @@ var GetWorkloadAccessTokenForJWTRequest = [
1015
1015
  [_wN, _uT],
1016
1016
  [0, [() => UserTokenType, 0]],
1017
1017
  ];
1018
- var GetWorkloadAccessTokenForJWTResponse = [
1018
+ var GetWorkloadAccessTokenForJWTResponse$ = [
1019
1019
  3,
1020
1020
  n0,
1021
1021
  _GWATFJWTRe,
@@ -1023,8 +1023,8 @@ var GetWorkloadAccessTokenForJWTResponse = [
1023
1023
  [_wAT],
1024
1024
  [[() => WorkloadIdentityTokenType, 0]],
1025
1025
  ];
1026
- var GetWorkloadAccessTokenForUserIdRequest = [3, n0, _GWATFUIR, 0, [_wN, _uIs], [0, 0]];
1027
- var GetWorkloadAccessTokenForUserIdResponse = [
1026
+ var GetWorkloadAccessTokenForUserIdRequest$ = [3, n0, _GWATFUIR, 0, [_wN, _uIs], [0, 0]];
1027
+ var GetWorkloadAccessTokenForUserIdResponse$ = [
1028
1028
  3,
1029
1029
  n0,
1030
1030
  _GWATFUIRe,
@@ -1032,8 +1032,8 @@ var GetWorkloadAccessTokenForUserIdResponse = [
1032
1032
  [_wAT],
1033
1033
  [[() => WorkloadIdentityTokenType, 0]],
1034
1034
  ];
1035
- var GetWorkloadAccessTokenRequest = [3, n0, _GWATR, 0, [_wN], [0]];
1036
- var GetWorkloadAccessTokenResponse = [
1035
+ var GetWorkloadAccessTokenRequest$ = [3, n0, _GWATR, 0, [_wN], [0]];
1036
+ var GetWorkloadAccessTokenResponse$ = [
1037
1037
  3,
1038
1038
  n0,
1039
1039
  _GWATRe,
@@ -1041,12 +1041,12 @@ var GetWorkloadAccessTokenResponse = [
1041
1041
  [_wAT],
1042
1042
  [[() => WorkloadIdentityTokenType, 0]],
1043
1043
  ];
1044
- var InputContentBlock = [3, n0, _ICB, 0, [_pa, _te, _bl], [0, 0, [() => Body, 0]]];
1045
- var InternalServerException = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
1046
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1047
- var InvalidInputException = [-3, n0, _IIE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1048
- schema.TypeRegistry.for(n0).registerError(InvalidInputException, InvalidInputException$1);
1049
- var InvokeAgentRuntimeRequest = [
1044
+ var InputContentBlock$ = [3, n0, _ICB, 0, [_pa, _te, _bl], [0, 0, [() => Body, 0]]];
1045
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
1046
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
1047
+ var InvalidInputException$ = [-3, n0, _IIE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1048
+ schema.TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
1049
+ var InvokeAgentRuntimeRequest$ = [
1050
1050
  3,
1051
1051
  n0,
1052
1052
  _IARR,
@@ -1069,7 +1069,7 @@ var InvokeAgentRuntimeRequest = [
1069
1069
  [() => Body, 16],
1070
1070
  ],
1071
1071
  ];
1072
- var InvokeAgentRuntimeResponse = [
1072
+ var InvokeAgentRuntimeResponse$ = [
1073
1073
  3,
1074
1074
  n0,
1075
1075
  _IARRn,
@@ -1088,15 +1088,15 @@ var InvokeAgentRuntimeResponse = [
1088
1088
  [1, 32],
1089
1089
  ],
1090
1090
  ];
1091
- var InvokeCodeInterpreterRequest = [
1091
+ var InvokeCodeInterpreterRequest$ = [
1092
1092
  3,
1093
1093
  n0,
1094
1094
  _ICIR,
1095
1095
  0,
1096
1096
  [_cII, _sI, _tI, _tP, _n, _ar],
1097
- [[0, 1], [0, { [_hH]: _xacisi }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], 0, [() => ToolArguments, 0]],
1097
+ [[0, 1], [0, { [_hH]: _xacisi }], [0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], 0, [() => ToolArguments$, 0]],
1098
1098
  ];
1099
- var InvokeCodeInterpreterResponse = [
1099
+ var InvokeCodeInterpreterResponse$ = [
1100
1100
  3,
1101
1101
  n0,
1102
1102
  _ICIRn,
@@ -1104,12 +1104,12 @@ var InvokeCodeInterpreterResponse = [
1104
1104
  [_sI, _stre],
1105
1105
  [
1106
1106
  [0, { [_hH]: _xacisi }],
1107
- [() => CodeInterpreterStreamOutput, 16],
1107
+ [() => CodeInterpreterStreamOutput$, 16],
1108
1108
  ],
1109
1109
  ];
1110
- var ListActorsInput = [3, n0, _LAI, 0, [_mI, _mRa, _nT], [[0, 1], 1, 0]];
1111
- var ListActorsOutput = [3, n0, _LAO, 0, [_aSc, _nT], [() => ActorSummaryList, 0]];
1112
- var ListBrowserSessionsRequest = [
1110
+ var ListActorsInput$ = [3, n0, _LAI, 0, [_mI, _mRa, _nT], [[0, 1], 1, 0]];
1111
+ var ListActorsOutput$ = [3, n0, _LAO, 0, [_aSc, _nT], [() => ActorSummaryList, 0]];
1112
+ var ListBrowserSessionsRequest$ = [
1113
1113
  3,
1114
1114
  n0,
1115
1115
  _LBSR,
@@ -1117,7 +1117,7 @@ var ListBrowserSessionsRequest = [
1117
1117
  [_bI, _mRa, _nT, _st],
1118
1118
  [[0, 1], 1, 0, 0],
1119
1119
  ];
1120
- var ListBrowserSessionsResponse = [
1120
+ var ListBrowserSessionsResponse$ = [
1121
1121
  3,
1122
1122
  n0,
1123
1123
  _LBSRi,
@@ -1125,7 +1125,7 @@ var ListBrowserSessionsResponse = [
1125
1125
  [_i, _nT],
1126
1126
  [() => BrowserSessionSummaries, 0],
1127
1127
  ];
1128
- var ListCodeInterpreterSessionsRequest = [
1128
+ var ListCodeInterpreterSessionsRequest$ = [
1129
1129
  3,
1130
1130
  n0,
1131
1131
  _LCISR,
@@ -1133,7 +1133,7 @@ var ListCodeInterpreterSessionsRequest = [
1133
1133
  [_cII, _mRa, _nT, _st],
1134
1134
  [[0, 1], 1, 0, 0],
1135
1135
  ];
1136
- var ListCodeInterpreterSessionsResponse = [
1136
+ var ListCodeInterpreterSessionsResponse$ = [
1137
1137
  3,
1138
1138
  n0,
1139
1139
  _LCISRi,
@@ -1141,24 +1141,24 @@ var ListCodeInterpreterSessionsResponse = [
1141
1141
  [_i, _nT],
1142
1142
  [() => CodeInterpreterSessionSummaries, 0],
1143
1143
  ];
1144
- var ListEventsInput = [
1144
+ var ListEventsInput$ = [
1145
1145
  3,
1146
1146
  n0,
1147
1147
  _LEI,
1148
1148
  0,
1149
1149
  [_mI, _sI, _aI, _iP, _f, _mRa, _nT],
1150
- [[0, 1], [0, 1], [0, 1], 2, () => FilterInput, 1, 0],
1150
+ [[0, 1], [0, 1], [0, 1], 2, () => FilterInput$, 1, 0],
1151
1151
  ];
1152
- var ListEventsOutput = [3, n0, _LEO, 0, [_eve, _nT], [[() => EventList, 0], 0]];
1153
- var ListMemoryExtractionJobsInput = [
1152
+ var ListEventsOutput$ = [3, n0, _LEO, 0, [_eve, _nT], [[() => EventList, 0], 0]];
1153
+ var ListMemoryExtractionJobsInput$ = [
1154
1154
  3,
1155
1155
  n0,
1156
1156
  _LMEJI,
1157
1157
  0,
1158
1158
  [_mI, _mRa, _f, _nT],
1159
- [[0, 1], 1, () => ExtractionJobFilterInput, 0],
1159
+ [[0, 1], 1, () => ExtractionJobFilterInput$, 0],
1160
1160
  ];
1161
- var ListMemoryExtractionJobsOutput = [
1161
+ var ListMemoryExtractionJobsOutput$ = [
1162
1162
  3,
1163
1163
  n0,
1164
1164
  _LMEJO,
@@ -1166,7 +1166,7 @@ var ListMemoryExtractionJobsOutput = [
1166
1166
  [_j, _nT],
1167
1167
  [() => ExtractionJobMetadataList, 0],
1168
1168
  ];
1169
- var ListMemoryRecordsInput = [
1169
+ var ListMemoryRecordsInput$ = [
1170
1170
  3,
1171
1171
  n0,
1172
1172
  _LMRI,
@@ -1174,7 +1174,7 @@ var ListMemoryRecordsInput = [
1174
1174
  [_mI, _na, _mSIe, _mRa, _nT],
1175
1175
  [[0, 1], 0, 0, 1, 0],
1176
1176
  ];
1177
- var ListMemoryRecordsOutput = [
1177
+ var ListMemoryRecordsOutput$ = [
1178
1178
  3,
1179
1179
  n0,
1180
1180
  _LMRO,
@@ -1182,64 +1182,64 @@ var ListMemoryRecordsOutput = [
1182
1182
  [_mRS, _nT],
1183
1183
  [[() => MemoryRecordSummaryList, 0], 0],
1184
1184
  ];
1185
- var ListSessionsInput = [3, n0, _LSI, 0, [_mI, _aI, _mRa, _nT], [[0, 1], [0, 1], 1, 0]];
1186
- var ListSessionsOutput = [3, n0, _LSO, 0, [_sSes, _nT], [() => SessionSummaryList, 0]];
1187
- var LiveViewStream = [3, n0, _LVS, 0, [_sE], [0]];
1188
- var MemoryMetadataFilterExpression = [
1185
+ var ListSessionsInput$ = [3, n0, _LSI, 0, [_mI, _aI, _mRa, _nT], [[0, 1], [0, 1], 1, 0]];
1186
+ var ListSessionsOutput$ = [3, n0, _LSO, 0, [_sSes, _nT], [() => SessionSummaryList, 0]];
1187
+ var LiveViewStream$ = [3, n0, _LVS, 0, [_sE], [0]];
1188
+ var MemoryMetadataFilterExpression$ = [
1189
1189
  3,
1190
1190
  n0,
1191
1191
  _MMFE,
1192
1192
  0,
1193
1193
  [_le, _o, _ri],
1194
- [() => LeftExpression, 0, () => RightExpression],
1194
+ [() => LeftExpression$, 0, () => RightExpression$],
1195
1195
  ];
1196
- var MemoryRecord = [
1196
+ var MemoryRecord$ = [
1197
1197
  3,
1198
1198
  n0,
1199
1199
  _MR,
1200
1200
  0,
1201
1201
  [_mRI, _co, _mSIe, _nam, _cA, _me],
1202
- [0, [() => MemoryContent, 0], 0, 64 | 0, 4, () => MetadataMap],
1202
+ [0, [() => MemoryContent$, 0], 0, 64 | 0, 4, () => MetadataMap],
1203
1203
  ];
1204
- var MemoryRecordCreateInput = [
1204
+ var MemoryRecordCreateInput$ = [
1205
1205
  3,
1206
1206
  n0,
1207
1207
  _MRCI,
1208
1208
  0,
1209
1209
  [_rI, _nam, _co, _ti, _mSIe],
1210
- [0, 64 | 0, [() => MemoryContent, 0], 4, 0],
1210
+ [0, 64 | 0, [() => MemoryContent$, 0], 4, 0],
1211
1211
  ];
1212
- var MemoryRecordDeleteInput = [3, n0, _MRDI, 0, [_mRI], [0]];
1213
- var MemoryRecordOutput = [3, n0, _MRO, 0, [_mRI, _st, _rI, _eC, _eM], [0, 0, 0, 1, 0]];
1214
- var MemoryRecordSummary = [
1212
+ var MemoryRecordDeleteInput$ = [3, n0, _MRDI, 0, [_mRI], [0]];
1213
+ var MemoryRecordOutput$ = [3, n0, _MRO, 0, [_mRI, _st, _rI, _eC, _eM], [0, 0, 0, 1, 0]];
1214
+ var MemoryRecordSummary$ = [
1215
1215
  3,
1216
1216
  n0,
1217
1217
  _MRS,
1218
1218
  0,
1219
1219
  [_mRI, _co, _mSIe, _nam, _cA, _sco, _me],
1220
- [0, [() => MemoryContent, 0], 0, 64 | 0, 4, 1, () => MetadataMap],
1220
+ [0, [() => MemoryContent$, 0], 0, 64 | 0, 4, 1, () => MetadataMap],
1221
1221
  ];
1222
- var MemoryRecordUpdateInput = [
1222
+ var MemoryRecordUpdateInput$ = [
1223
1223
  3,
1224
1224
  n0,
1225
1225
  _MRUI,
1226
1226
  0,
1227
1227
  [_mRI, _ti, _co, _nam, _mSIe],
1228
- [0, 4, [() => MemoryContent, 0], 64 | 0, 0],
1228
+ [0, 4, [() => MemoryContent$, 0], 64 | 0, 0],
1229
1229
  ];
1230
- var MessageMetadata = [3, n0, _MM, 0, [_eI, _mIe], [0, 1]];
1231
- var ResourceContent = [3, n0, _RC, 0, [_t, _u, _mT, _te, _bl], [0, 0, 0, 0, 21]];
1232
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1233
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1234
- var RetrieveMemoryRecordsInput = [
1230
+ var MessageMetadata$ = [3, n0, _MM, 0, [_eI, _mIe], [0, 1]];
1231
+ var ResourceContent$ = [3, n0, _RC, 0, [_t, _u, _mT, _te, _bl], [0, 0, 0, 0, 21]];
1232
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
1233
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1234
+ var RetrieveMemoryRecordsInput$ = [
1235
1235
  3,
1236
1236
  n0,
1237
1237
  _RMRI,
1238
1238
  0,
1239
1239
  [_mI, _na, _sCe, _nT, _mRa],
1240
- [[0, 1], 0, [() => SearchCriteria, 0], 0, 1],
1240
+ [[0, 1], 0, [() => SearchCriteria$, 0], 0, 1],
1241
1241
  ];
1242
- var RetrieveMemoryRecordsOutput = [
1242
+ var RetrieveMemoryRecordsOutput$ = [
1243
1243
  3,
1244
1244
  n0,
1245
1245
  _RMRO,
@@ -1247,9 +1247,9 @@ var RetrieveMemoryRecordsOutput = [
1247
1247
  [_mRS, _nT],
1248
1248
  [[() => MemoryRecordSummaryList, 0], 0],
1249
1249
  ];
1250
- var RuntimeClientError = [-3, n0, _RCE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
1251
- schema.TypeRegistry.for(n0).registerError(RuntimeClientError, RuntimeClientError$1);
1252
- var SearchCriteria = [
1250
+ var RuntimeClientError$ = [-3, n0, _RCE, { [_e]: _c, [_hE]: 424 }, [_m], [0]];
1251
+ schema.TypeRegistry.for(n0).registerError(RuntimeClientError$, RuntimeClientError);
1252
+ var SearchCriteria$ = [
1253
1253
  3,
1254
1254
  n0,
1255
1255
  _SC,
@@ -1257,29 +1257,29 @@ var SearchCriteria = [
1257
1257
  [_sQ, _mSIe, _tK, _mF],
1258
1258
  [[() => SensitiveString, 0], 0, 1, () => MemoryMetadataFilterList],
1259
1259
  ];
1260
- var ServiceException = [-3, n0, _SE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
1261
- schema.TypeRegistry.for(n0).registerError(ServiceException, ServiceException$1);
1262
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1263
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1264
- var SessionSummary = [3, n0, _SSe, 0, [_sI, _aI, _cA], [0, 0, 4]];
1265
- var SpanContext = [3, n0, _SCp, 0, [_sI, _tI, _sIp], [0, 0, 0]];
1266
- var StartBrowserSessionRequest = [
1260
+ var ServiceException$ = [-3, n0, _SE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
1261
+ schema.TypeRegistry.for(n0).registerError(ServiceException$, ServiceException);
1262
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
1263
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1264
+ var SessionSummary$ = [3, n0, _SSe, 0, [_sI, _aI, _cA], [0, 0, 4]];
1265
+ var SpanContext$ = [3, n0, _SCp, 0, [_sI, _tI, _sIp], [0, 0, 0]];
1266
+ var StartBrowserSessionRequest$ = [
1267
1267
  3,
1268
1268
  n0,
1269
1269
  _SBSR,
1270
1270
  0,
1271
1271
  [_tI, _tP, _bI, _n, _sTS, _vP, _cT],
1272
- [[0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 1], 0, 1, () => ViewPort, [0, 4]],
1272
+ [[0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 1], 0, 1, () => ViewPort$, [0, 4]],
1273
1273
  ];
1274
- var StartBrowserSessionResponse = [
1274
+ var StartBrowserSessionResponse$ = [
1275
1275
  3,
1276
1276
  n0,
1277
1277
  _SBSRt,
1278
1278
  0,
1279
1279
  [_bI, _sI, _cA, _str],
1280
- [0, 0, 5, () => BrowserSessionStream],
1280
+ [0, 0, 5, () => BrowserSessionStream$],
1281
1281
  ];
1282
- var StartCodeInterpreterSessionRequest = [
1282
+ var StartCodeInterpreterSessionRequest$ = [
1283
1283
  3,
1284
1284
  n0,
1285
1285
  _SCISR,
@@ -1287,7 +1287,7 @@ var StartCodeInterpreterSessionRequest = [
1287
1287
  [_tI, _tP, _cII, _n, _sTS, _cT],
1288
1288
  [[0, { [_hH]: _XATI }], [0, { [_hH]: _tr }], [0, 1], 0, 1, [0, 4]],
1289
1289
  ];
1290
- var StartCodeInterpreterSessionResponse = [
1290
+ var StartCodeInterpreterSessionResponse$ = [
1291
1291
  3,
1292
1292
  n0,
1293
1293
  _SCISRt,
@@ -1295,16 +1295,16 @@ var StartCodeInterpreterSessionResponse = [
1295
1295
  [_cII, _sI, _cA],
1296
1296
  [0, 0, 5],
1297
1297
  ];
1298
- var StartMemoryExtractionJobInput = [
1298
+ var StartMemoryExtractionJobInput$ = [
1299
1299
  3,
1300
1300
  n0,
1301
1301
  _SMEJI,
1302
1302
  0,
1303
1303
  [_mI, _eJ, _cT],
1304
- [[0, 1], () => ExtractionJob, [0, 4]],
1304
+ [[0, 1], () => ExtractionJob$, [0, 4]],
1305
1305
  ];
1306
- var StartMemoryExtractionJobOutput = [3, n0, _SMEJO, 0, [_jI], [0]];
1307
- var StopBrowserSessionRequest = [
1306
+ var StartMemoryExtractionJobOutput$ = [3, n0, _SMEJO, 0, [_jI], [0]];
1307
+ var StopBrowserSessionRequest$ = [
1308
1308
  3,
1309
1309
  n0,
1310
1310
  _SBSRto,
@@ -1318,8 +1318,8 @@ var StopBrowserSessionRequest = [
1318
1318
  [0, 4],
1319
1319
  ],
1320
1320
  ];
1321
- var StopBrowserSessionResponse = [3, n0, _SBSRtop, 0, [_bI, _sI, _lUA], [0, 0, 5]];
1322
- var StopCodeInterpreterSessionRequest = [
1321
+ var StopBrowserSessionResponse$ = [3, n0, _SBSRtop, 0, [_bI, _sI, _lUA], [0, 0, 5]];
1322
+ var StopCodeInterpreterSessionRequest$ = [
1323
1323
  3,
1324
1324
  n0,
1325
1325
  _SCISRto,
@@ -1333,7 +1333,7 @@ var StopCodeInterpreterSessionRequest = [
1333
1333
  [0, 4],
1334
1334
  ],
1335
1335
  ];
1336
- var StopCodeInterpreterSessionResponse = [
1336
+ var StopCodeInterpreterSessionResponse$ = [
1337
1337
  3,
1338
1338
  n0,
1339
1339
  _SCISRtop,
@@ -1341,7 +1341,7 @@ var StopCodeInterpreterSessionResponse = [
1341
1341
  [_cII, _sI, _lUA],
1342
1342
  [0, 0, 5],
1343
1343
  ];
1344
- var StopRuntimeSessionRequest = [
1344
+ var StopRuntimeSessionRequest$ = [
1345
1345
  3,
1346
1346
  n0,
1347
1347
  _SRSR,
@@ -1354,7 +1354,7 @@ var StopRuntimeSessionRequest = [
1354
1354
  [0, 4],
1355
1355
  ],
1356
1356
  ];
1357
- var StopRuntimeSessionResponse = [
1357
+ var StopRuntimeSessionResponse$ = [
1358
1358
  3,
1359
1359
  n0,
1360
1360
  _SRSRt,
@@ -1365,12 +1365,12 @@ var StopRuntimeSessionResponse = [
1365
1365
  [1, 32],
1366
1366
  ],
1367
1367
  ];
1368
- var ThrottledException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1369
- schema.TypeRegistry.for(n0).registerError(ThrottledException, ThrottledException$1);
1370
- var ThrottlingException = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1371
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1372
- var TokenUsage = [3, n0, _TU, 0, [_iTn, _oT, _tT], [1, 1, 1]];
1373
- var ToolArguments = [
1368
+ var ThrottledException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1369
+ schema.TypeRegistry.for(n0).registerError(ThrottledException$, ThrottledException);
1370
+ var ThrottlingException$ = [-3, n0, _TEh, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1371
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1372
+ var TokenUsage$ = [3, n0, _TU, 0, [_iTn, _oT, _tT], [1, 1, 1]];
1373
+ var ToolArguments$ = [
1374
1374
  3,
1375
1375
  n0,
1376
1376
  _TA,
@@ -1378,7 +1378,7 @@ var ToolArguments = [
1378
1378
  [_cod, _la, _cC, _com, _pa, _pat, _co, _dP, _tIa],
1379
1379
  [0, 0, 2, 0, 0, 64 | 0, [() => InputContentBlockList, 0], 0, 0],
1380
1380
  ];
1381
- var ToolResultStructuredContent = [
1381
+ var ToolResultStructuredContent$ = [
1382
1382
  3,
1383
1383
  n0,
1384
1384
  _TRSC,
@@ -1386,25 +1386,25 @@ var ToolResultStructuredContent = [
1386
1386
  [_tIa, _tSa, _std, _stde, _eCx, _eTx],
1387
1387
  [0, 0, 0, 0, 1, 1],
1388
1388
  ];
1389
- var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
1390
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
1391
- var UpdateBrowserStreamRequest = [
1389
+ var UnauthorizedException$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
1390
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
1391
+ var UpdateBrowserStreamRequest$ = [
1392
1392
  3,
1393
1393
  n0,
1394
1394
  _UBSR,
1395
1395
  0,
1396
1396
  [_bI, _sI, _sUt, _cT],
1397
- [[0, 1], [0, { [_hQ]: _sI }], () => StreamUpdate, [0, 4]],
1397
+ [[0, 1], [0, { [_hQ]: _sI }], () => StreamUpdate$, [0, 4]],
1398
1398
  ];
1399
- var UpdateBrowserStreamResponse = [
1399
+ var UpdateBrowserStreamResponse$ = [
1400
1400
  3,
1401
1401
  n0,
1402
1402
  _UBSRp,
1403
1403
  0,
1404
1404
  [_bI, _sI, _str, _uA],
1405
- [0, 0, () => BrowserSessionStream, 5],
1405
+ [0, 0, () => BrowserSessionStream$, 5],
1406
1406
  ];
1407
- var ValidationException = [
1407
+ var ValidationException$ = [
1408
1408
  -3,
1409
1409
  n0,
1410
1410
  _VE,
@@ -1412,10 +1412,10 @@ var ValidationException = [
1412
1412
  [_m, _rea, _fL],
1413
1413
  [0, 0, () => ValidationExceptionFieldList],
1414
1414
  ];
1415
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1416
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
1417
- var ViewPort = [3, n0, _VP, 0, [_w, _h], [1, 1]];
1418
- var BedrockAgentCoreServiceException = [
1415
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1416
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
1417
+ var ViewPort$ = [3, n0, _VP, 0, [_w, _h], [1, 1]];
1418
+ var BedrockAgentCoreServiceException$ = [
1419
1419
  -3,
1420
1420
  _sm,
1421
1421
  "BedrockAgentCoreServiceException",
@@ -1423,347 +1423,347 @@ var BedrockAgentCoreServiceException = [
1423
1423
  [],
1424
1424
  [],
1425
1425
  ];
1426
- schema.TypeRegistry.for(_sm).registerError(BedrockAgentCoreServiceException, BedrockAgentCoreServiceException$1);
1427
- var ActorSummaryList = [1, n0, _ASL, 0, () => ActorSummary];
1428
- var BrowserSessionSummaries = [1, n0, _BSSro, 0, () => BrowserSessionSummary];
1429
- var CodeInterpreterSessionSummaries = [1, n0, _CISSo, 0, () => CodeInterpreterSessionSummary];
1430
- var ContentBlockList = [1, n0, _CBL, 0, () => ContentBlock];
1431
- var EvaluationResults = [1, n0, _ERva, 0, [() => EvaluationResultContent, 0]];
1432
- var EventList = [1, n0, _EL, 0, [() => Event, 0]];
1433
- var EventMetadataFilterList = [1, n0, _EMFL, 0, () => EventMetadataFilterExpression];
1434
- var ExtractionJobMetadataList = [1, n0, _EJML, 0, () => ExtractionJobMetadata];
1435
- var InputContentBlockList = [1, n0, _ICBL, 0, [() => InputContentBlock, 0]];
1436
- var MemoryMetadataFilterList = [1, n0, _MMFL, 0, () => MemoryMetadataFilterExpression];
1437
- var MemoryRecordsCreateInputList = [1, n0, _MRCIL, 0, [() => MemoryRecordCreateInput, 0]];
1438
- var MemoryRecordsDeleteInputList = [1, n0, _MRDIL, 0, () => MemoryRecordDeleteInput];
1439
- var MemoryRecordsOutputList = [1, n0, _MROL, 0, () => MemoryRecordOutput];
1440
- var MemoryRecordSummaryList = [1, n0, _MRSL, 0, [() => MemoryRecordSummary, 0]];
1441
- var MemoryRecordsUpdateInputList = [1, n0, _MRUIL, 0, [() => MemoryRecordUpdateInput, 0]];
1442
- var MessagesList = [1, n0, _ML, 0, () => MessageMetadata];
1443
- var PayloadTypeList = [1, n0, _PTL, 0, [() => PayloadType, 0]];
1444
- var SessionSummaryList = [1, n0, _SSL, 0, () => SessionSummary];
1426
+ schema.TypeRegistry.for(_sm).registerError(BedrockAgentCoreServiceException$, BedrockAgentCoreServiceException);
1427
+ var ActorSummaryList = [1, n0, _ASL, 0, () => ActorSummary$];
1428
+ var BrowserSessionSummaries = [1, n0, _BSSro, 0, () => BrowserSessionSummary$];
1429
+ var CodeInterpreterSessionSummaries = [1, n0, _CISSo, 0, () => CodeInterpreterSessionSummary$];
1430
+ var ContentBlockList = [1, n0, _CBL, 0, () => ContentBlock$];
1431
+ var EvaluationResults = [1, n0, _ERva, 0, [() => EvaluationResultContent$, 0]];
1432
+ var EventList = [1, n0, _EL, 0, [() => Event$, 0]];
1433
+ var EventMetadataFilterList = [1, n0, _EMFL, 0, () => EventMetadataFilterExpression$];
1434
+ var ExtractionJobMetadataList = [1, n0, _EJML, 0, () => ExtractionJobMetadata$];
1435
+ var InputContentBlockList = [1, n0, _ICBL, 0, [() => InputContentBlock$, 0]];
1436
+ var MemoryMetadataFilterList = [1, n0, _MMFL, 0, () => MemoryMetadataFilterExpression$];
1437
+ var MemoryRecordsCreateInputList = [1, n0, _MRCIL, 0, [() => MemoryRecordCreateInput$, 0]];
1438
+ var MemoryRecordsDeleteInputList = [1, n0, _MRDIL, 0, () => MemoryRecordDeleteInput$];
1439
+ var MemoryRecordsOutputList = [1, n0, _MROL, 0, () => MemoryRecordOutput$];
1440
+ var MemoryRecordSummaryList = [1, n0, _MRSL, 0, [() => MemoryRecordSummary$, 0]];
1441
+ var MemoryRecordsUpdateInputList = [1, n0, _MRUIL, 0, [() => MemoryRecordUpdateInput$, 0]];
1442
+ var MessagesList = [1, n0, _ML, 0, () => MessageMetadata$];
1443
+ var PayloadTypeList = [1, n0, _PTL, 0, [() => PayloadType$, 0]];
1444
+ var SessionSummaryList = [1, n0, _SSL, 0, () => SessionSummary$];
1445
1445
  var Spans = [1, n0, _Sp, 8, 15];
1446
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
1446
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
1447
1447
  var CustomRequestParametersType = [2, n0, _CRPT, 0, [0, 0], [() => CustomRequestValueType, 0]];
1448
- var MetadataMap = [2, n0, _MMe, 0, 0, () => MetadataValue];
1449
- var CodeInterpreterStreamOutput = [
1448
+ var MetadataMap = [2, n0, _MMe, 0, 0, () => MetadataValue$];
1449
+ var CodeInterpreterStreamOutput$ = [
1450
1450
  3,
1451
1451
  n0,
1452
1452
  _CISO,
1453
1453
  { [_s]: 1 },
1454
1454
  [_resu, _aDE, _cE, _iSE, _rNFE, _sQEE, _tE, _vE],
1455
1455
  [
1456
- () => CodeInterpreterResult,
1457
- [() => AccessDeniedException, 0],
1458
- [() => ConflictException, 0],
1459
- [() => InternalServerException, 0],
1460
- [() => ResourceNotFoundException, 0],
1461
- [() => ServiceQuotaExceededException, 0],
1462
- [() => ThrottlingException, 0],
1463
- [() => ValidationException, 0],
1456
+ () => CodeInterpreterResult$,
1457
+ [() => AccessDeniedException$, 0],
1458
+ [() => ConflictException$, 0],
1459
+ [() => InternalServerException$, 0],
1460
+ [() => ResourceNotFoundException$, 0],
1461
+ [() => ServiceQuotaExceededException$, 0],
1462
+ [() => ThrottlingException$, 0],
1463
+ [() => ValidationException$, 0],
1464
1464
  ],
1465
1465
  ];
1466
- var Content = [3, n0, _Co, 0, [_te], [[() => SensitiveString, 0]]];
1467
- var Context = [3, n0, _Con, 0, [_sCp], [() => SpanContext]];
1468
- var EvaluationInput = [3, n0, _EI, 0, [_sSess], [[() => Spans, 0]]];
1469
- var EvaluationTarget = [3, n0, _ET, 0, [_sIpa, _tIr], [64 | 0, 64 | 0]];
1470
- var ExtractionJobMessages = [3, n0, _EJMx, 0, [_mL], [() => MessagesList]];
1471
- var LeftExpression = [3, n0, _LE, 0, [_mK], [0]];
1472
- var MemoryContent = [3, n0, _MC, 0, [_te], [[() => SensitiveString, 0]]];
1473
- var MetadataValue = [3, n0, _MV, 0, [_sV], [0]];
1474
- var PayloadType = [
1466
+ var Content$ = [3, n0, _Co, 0, [_te], [[() => SensitiveString, 0]]];
1467
+ var Context$ = [3, n0, _Con, 0, [_sCp], [() => SpanContext$]];
1468
+ var EvaluationInput$ = [3, n0, _EI, 0, [_sSess], [[() => Spans, 0]]];
1469
+ var EvaluationTarget$ = [3, n0, _ET, 0, [_sIpa, _tIr], [64 | 0, 64 | 0]];
1470
+ var ExtractionJobMessages$ = [3, n0, _EJMx, 0, [_mL], [() => MessagesList]];
1471
+ var LeftExpression$ = [3, n0, _LE, 0, [_mK], [0]];
1472
+ var MemoryContent$ = [3, n0, _MC, 0, [_te], [[() => SensitiveString, 0]]];
1473
+ var MetadataValue$ = [3, n0, _MV, 0, [_sV], [0]];
1474
+ var PayloadType$ = [
1475
1475
  3,
1476
1476
  n0,
1477
1477
  _PT,
1478
1478
  0,
1479
1479
  [_conv, _bl],
1480
1480
  [
1481
- [() => Conversational, 0],
1481
+ [() => Conversational$, 0],
1482
1482
  [() => Document, 0],
1483
1483
  ],
1484
1484
  ];
1485
- var RightExpression = [3, n0, _RE, 0, [_mV], [() => MetadataValue]];
1486
- var StreamUpdate = [3, n0, _SU, 0, [_aSU], [() => AutomationStreamUpdate]];
1487
- var UserIdentifier = [3, n0, _UI, 0, [_uT, _uIs], [[() => UserTokenType, 0], 0]];
1488
- var BatchCreateMemoryRecords = [
1485
+ var RightExpression$ = [3, n0, _RE, 0, [_mV], [() => MetadataValue$]];
1486
+ var StreamUpdate$ = [3, n0, _SU, 0, [_aSU], [() => AutomationStreamUpdate$]];
1487
+ var UserIdentifier$ = [3, n0, _UI, 0, [_uT, _uIs], [[() => UserTokenType, 0], 0]];
1488
+ var BatchCreateMemoryRecords$ = [
1489
1489
  9,
1490
1490
  n0,
1491
1491
  _BCMR,
1492
1492
  { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchCreate", 201] },
1493
- () => BatchCreateMemoryRecordsInput,
1494
- () => BatchCreateMemoryRecordsOutput,
1493
+ () => BatchCreateMemoryRecordsInput$,
1494
+ () => BatchCreateMemoryRecordsOutput$,
1495
1495
  ];
1496
- var BatchDeleteMemoryRecords = [
1496
+ var BatchDeleteMemoryRecords$ = [
1497
1497
  9,
1498
1498
  n0,
1499
1499
  _BDMR,
1500
1500
  { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchDelete", 200] },
1501
- () => BatchDeleteMemoryRecordsInput,
1502
- () => BatchDeleteMemoryRecordsOutput,
1501
+ () => BatchDeleteMemoryRecordsInput$,
1502
+ () => BatchDeleteMemoryRecordsOutput$,
1503
1503
  ];
1504
- var BatchUpdateMemoryRecords = [
1504
+ var BatchUpdateMemoryRecords$ = [
1505
1505
  9,
1506
1506
  n0,
1507
1507
  _BUMR,
1508
1508
  { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords/batchUpdate", 200] },
1509
- () => BatchUpdateMemoryRecordsInput,
1510
- () => BatchUpdateMemoryRecordsOutput,
1509
+ () => BatchUpdateMemoryRecordsInput$,
1510
+ () => BatchUpdateMemoryRecordsOutput$,
1511
1511
  ];
1512
- var CompleteResourceTokenAuth = [
1512
+ var CompleteResourceTokenAuth$ = [
1513
1513
  9,
1514
1514
  n0,
1515
1515
  _CRTA,
1516
1516
  { [_ht]: ["POST", "/identities/CompleteResourceTokenAuth", 200] },
1517
- () => CompleteResourceTokenAuthRequest,
1518
- () => CompleteResourceTokenAuthResponse,
1517
+ () => CompleteResourceTokenAuthRequest$,
1518
+ () => CompleteResourceTokenAuthResponse$,
1519
1519
  ];
1520
- var CreateEvent = [
1520
+ var CreateEvent$ = [
1521
1521
  9,
1522
1522
  n0,
1523
1523
  _CEr,
1524
1524
  { [_ht]: ["POST", "/memories/{memoryId}/events", 201] },
1525
- () => CreateEventInput,
1526
- () => CreateEventOutput,
1525
+ () => CreateEventInput$,
1526
+ () => CreateEventOutput$,
1527
1527
  ];
1528
- var DeleteEvent = [
1528
+ var DeleteEvent$ = [
1529
1529
  9,
1530
1530
  n0,
1531
1531
  _DE,
1532
1532
  { [_ht]: ["DELETE", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] },
1533
- () => DeleteEventInput,
1534
- () => DeleteEventOutput,
1533
+ () => DeleteEventInput$,
1534
+ () => DeleteEventOutput$,
1535
1535
  ];
1536
- var DeleteMemoryRecord = [
1536
+ var DeleteMemoryRecord$ = [
1537
1537
  9,
1538
1538
  n0,
1539
1539
  _DMR,
1540
1540
  { [_ht]: ["DELETE", "/memories/{memoryId}/memoryRecords/{memoryRecordId}", 200] },
1541
- () => DeleteMemoryRecordInput,
1542
- () => DeleteMemoryRecordOutput,
1541
+ () => DeleteMemoryRecordInput$,
1542
+ () => DeleteMemoryRecordOutput$,
1543
1543
  ];
1544
- var Evaluate = [
1544
+ var Evaluate$ = [
1545
1545
  9,
1546
1546
  n0,
1547
1547
  _Ev,
1548
1548
  { [_ht]: ["POST", "/evaluations/evaluate/{evaluatorId}", 200] },
1549
- () => EvaluateRequest,
1550
- () => EvaluateResponse,
1549
+ () => EvaluateRequest$,
1550
+ () => EvaluateResponse$,
1551
1551
  ];
1552
- var GetAgentCard = [
1552
+ var GetAgentCard$ = [
1553
1553
  9,
1554
1554
  n0,
1555
1555
  _GAC,
1556
1556
  { [_ht]: ["GET", "/runtimes/{agentRuntimeArn}/invocations/.well-known/agent-card.json", 200] },
1557
- () => GetAgentCardRequest,
1558
- () => GetAgentCardResponse,
1557
+ () => GetAgentCardRequest$,
1558
+ () => GetAgentCardResponse$,
1559
1559
  ];
1560
- var GetBrowserSession = [
1560
+ var GetBrowserSession$ = [
1561
1561
  9,
1562
1562
  n0,
1563
1563
  _GBS,
1564
1564
  { [_ht]: ["GET", "/browsers/{browserIdentifier}/sessions/get", 200] },
1565
- () => GetBrowserSessionRequest,
1566
- () => GetBrowserSessionResponse,
1565
+ () => GetBrowserSessionRequest$,
1566
+ () => GetBrowserSessionResponse$,
1567
1567
  ];
1568
- var GetCodeInterpreterSession = [
1568
+ var GetCodeInterpreterSession$ = [
1569
1569
  9,
1570
1570
  n0,
1571
1571
  _GCIS,
1572
1572
  { [_ht]: ["GET", "/code-interpreters/{codeInterpreterIdentifier}/sessions/get", 200] },
1573
- () => GetCodeInterpreterSessionRequest,
1574
- () => GetCodeInterpreterSessionResponse,
1573
+ () => GetCodeInterpreterSessionRequest$,
1574
+ () => GetCodeInterpreterSessionResponse$,
1575
1575
  ];
1576
- var GetEvent = [
1576
+ var GetEvent$ = [
1577
1577
  9,
1578
1578
  n0,
1579
1579
  _GE,
1580
1580
  { [_ht]: ["GET", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}/events/{eventId}", 200] },
1581
- () => GetEventInput,
1582
- () => GetEventOutput,
1581
+ () => GetEventInput$,
1582
+ () => GetEventOutput$,
1583
1583
  ];
1584
- var GetMemoryRecord = [
1584
+ var GetMemoryRecord$ = [
1585
1585
  9,
1586
1586
  n0,
1587
1587
  _GMR,
1588
1588
  { [_ht]: ["GET", "/memories/{memoryId}/memoryRecord/{memoryRecordId}", 200] },
1589
- () => GetMemoryRecordInput,
1590
- () => GetMemoryRecordOutput,
1589
+ () => GetMemoryRecordInput$,
1590
+ () => GetMemoryRecordOutput$,
1591
1591
  ];
1592
- var GetResourceApiKey = [
1592
+ var GetResourceApiKey$ = [
1593
1593
  9,
1594
1594
  n0,
1595
1595
  _GRAK,
1596
1596
  { [_ht]: ["POST", "/identities/api-key", 200] },
1597
- () => GetResourceApiKeyRequest,
1598
- () => GetResourceApiKeyResponse,
1597
+ () => GetResourceApiKeyRequest$,
1598
+ () => GetResourceApiKeyResponse$,
1599
1599
  ];
1600
- var GetResourceOauth2Token = [
1600
+ var GetResourceOauth2Token$ = [
1601
1601
  9,
1602
1602
  n0,
1603
1603
  _GROT,
1604
1604
  { [_ht]: ["POST", "/identities/oauth2/token", 200] },
1605
- () => GetResourceOauth2TokenRequest,
1606
- () => GetResourceOauth2TokenResponse,
1605
+ () => GetResourceOauth2TokenRequest$,
1606
+ () => GetResourceOauth2TokenResponse$,
1607
1607
  ];
1608
- var GetWorkloadAccessToken = [
1608
+ var GetWorkloadAccessToken$ = [
1609
1609
  9,
1610
1610
  n0,
1611
1611
  _GWAT,
1612
1612
  { [_ht]: ["POST", "/identities/GetWorkloadAccessToken", 200] },
1613
- () => GetWorkloadAccessTokenRequest,
1614
- () => GetWorkloadAccessTokenResponse,
1613
+ () => GetWorkloadAccessTokenRequest$,
1614
+ () => GetWorkloadAccessTokenResponse$,
1615
1615
  ];
1616
- var GetWorkloadAccessTokenForJWT = [
1616
+ var GetWorkloadAccessTokenForJWT$ = [
1617
1617
  9,
1618
1618
  n0,
1619
1619
  _GWATFJWT,
1620
1620
  { [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForJWT", 200] },
1621
- () => GetWorkloadAccessTokenForJWTRequest,
1622
- () => GetWorkloadAccessTokenForJWTResponse,
1621
+ () => GetWorkloadAccessTokenForJWTRequest$,
1622
+ () => GetWorkloadAccessTokenForJWTResponse$,
1623
1623
  ];
1624
- var GetWorkloadAccessTokenForUserId = [
1624
+ var GetWorkloadAccessTokenForUserId$ = [
1625
1625
  9,
1626
1626
  n0,
1627
1627
  _GWATFUI,
1628
1628
  { [_ht]: ["POST", "/identities/GetWorkloadAccessTokenForUserId", 200] },
1629
- () => GetWorkloadAccessTokenForUserIdRequest,
1630
- () => GetWorkloadAccessTokenForUserIdResponse,
1629
+ () => GetWorkloadAccessTokenForUserIdRequest$,
1630
+ () => GetWorkloadAccessTokenForUserIdResponse$,
1631
1631
  ];
1632
- var InvokeAgentRuntime = [
1632
+ var InvokeAgentRuntime$ = [
1633
1633
  9,
1634
1634
  n0,
1635
1635
  _IAR,
1636
1636
  { [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/invocations", 200] },
1637
- () => InvokeAgentRuntimeRequest,
1638
- () => InvokeAgentRuntimeResponse,
1637
+ () => InvokeAgentRuntimeRequest$,
1638
+ () => InvokeAgentRuntimeResponse$,
1639
1639
  ];
1640
- var InvokeCodeInterpreter = [
1640
+ var InvokeCodeInterpreter$ = [
1641
1641
  9,
1642
1642
  n0,
1643
1643
  _ICI,
1644
1644
  { [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/tools/invoke", 200] },
1645
- () => InvokeCodeInterpreterRequest,
1646
- () => InvokeCodeInterpreterResponse,
1645
+ () => InvokeCodeInterpreterRequest$,
1646
+ () => InvokeCodeInterpreterResponse$,
1647
1647
  ];
1648
- var ListActors = [
1648
+ var ListActors$ = [
1649
1649
  9,
1650
1650
  n0,
1651
1651
  _LA,
1652
1652
  { [_ht]: ["POST", "/memories/{memoryId}/actors", 200] },
1653
- () => ListActorsInput,
1654
- () => ListActorsOutput,
1653
+ () => ListActorsInput$,
1654
+ () => ListActorsOutput$,
1655
1655
  ];
1656
- var ListBrowserSessions = [
1656
+ var ListBrowserSessions$ = [
1657
1657
  9,
1658
1658
  n0,
1659
1659
  _LBS,
1660
1660
  { [_ht]: ["POST", "/browsers/{browserIdentifier}/sessions/list", 200] },
1661
- () => ListBrowserSessionsRequest,
1662
- () => ListBrowserSessionsResponse,
1661
+ () => ListBrowserSessionsRequest$,
1662
+ () => ListBrowserSessionsResponse$,
1663
1663
  ];
1664
- var ListCodeInterpreterSessions = [
1664
+ var ListCodeInterpreterSessions$ = [
1665
1665
  9,
1666
1666
  n0,
1667
1667
  _LCIS,
1668
1668
  { [_ht]: ["POST", "/code-interpreters/{codeInterpreterIdentifier}/sessions/list", 200] },
1669
- () => ListCodeInterpreterSessionsRequest,
1670
- () => ListCodeInterpreterSessionsResponse,
1669
+ () => ListCodeInterpreterSessionsRequest$,
1670
+ () => ListCodeInterpreterSessionsResponse$,
1671
1671
  ];
1672
- var ListEvents = [
1672
+ var ListEvents$ = [
1673
1673
  9,
1674
1674
  n0,
1675
1675
  _LEi,
1676
1676
  { [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions/{sessionId}", 200] },
1677
- () => ListEventsInput,
1678
- () => ListEventsOutput,
1677
+ () => ListEventsInput$,
1678
+ () => ListEventsOutput$,
1679
1679
  ];
1680
- var ListMemoryExtractionJobs = [
1680
+ var ListMemoryExtractionJobs$ = [
1681
1681
  9,
1682
1682
  n0,
1683
1683
  _LMEJ,
1684
1684
  { [_ht]: ["POST", "/memories/{memoryId}/extractionJobs", 200] },
1685
- () => ListMemoryExtractionJobsInput,
1686
- () => ListMemoryExtractionJobsOutput,
1685
+ () => ListMemoryExtractionJobsInput$,
1686
+ () => ListMemoryExtractionJobsOutput$,
1687
1687
  ];
1688
- var ListMemoryRecords = [
1688
+ var ListMemoryRecords$ = [
1689
1689
  9,
1690
1690
  n0,
1691
1691
  _LMR,
1692
1692
  { [_ht]: ["POST", "/memories/{memoryId}/memoryRecords", 200] },
1693
- () => ListMemoryRecordsInput,
1694
- () => ListMemoryRecordsOutput,
1693
+ () => ListMemoryRecordsInput$,
1694
+ () => ListMemoryRecordsOutput$,
1695
1695
  ];
1696
- var ListSessions = [
1696
+ var ListSessions$ = [
1697
1697
  9,
1698
1698
  n0,
1699
1699
  _LS,
1700
1700
  { [_ht]: ["POST", "/memories/{memoryId}/actor/{actorId}/sessions", 200] },
1701
- () => ListSessionsInput,
1702
- () => ListSessionsOutput,
1701
+ () => ListSessionsInput$,
1702
+ () => ListSessionsOutput$,
1703
1703
  ];
1704
- var RetrieveMemoryRecords = [
1704
+ var RetrieveMemoryRecords$ = [
1705
1705
  9,
1706
1706
  n0,
1707
1707
  _RMR,
1708
1708
  { [_ht]: ["POST", "/memories/{memoryId}/retrieve", 200] },
1709
- () => RetrieveMemoryRecordsInput,
1710
- () => RetrieveMemoryRecordsOutput,
1709
+ () => RetrieveMemoryRecordsInput$,
1710
+ () => RetrieveMemoryRecordsOutput$,
1711
1711
  ];
1712
- var StartBrowserSession = [
1712
+ var StartBrowserSession$ = [
1713
1713
  9,
1714
1714
  n0,
1715
1715
  _SBS,
1716
1716
  { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/start", 200] },
1717
- () => StartBrowserSessionRequest,
1718
- () => StartBrowserSessionResponse,
1717
+ () => StartBrowserSessionRequest$,
1718
+ () => StartBrowserSessionResponse$,
1719
1719
  ];
1720
- var StartCodeInterpreterSession = [
1720
+ var StartCodeInterpreterSession$ = [
1721
1721
  9,
1722
1722
  n0,
1723
1723
  _SCIS,
1724
1724
  { [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/start", 200] },
1725
- () => StartCodeInterpreterSessionRequest,
1726
- () => StartCodeInterpreterSessionResponse,
1725
+ () => StartCodeInterpreterSessionRequest$,
1726
+ () => StartCodeInterpreterSessionResponse$,
1727
1727
  ];
1728
- var StartMemoryExtractionJob = [
1728
+ var StartMemoryExtractionJob$ = [
1729
1729
  9,
1730
1730
  n0,
1731
1731
  _SMEJ,
1732
1732
  { [_ht]: ["POST", "/memories/{memoryId}/extractionJobs/start", 200] },
1733
- () => StartMemoryExtractionJobInput,
1734
- () => StartMemoryExtractionJobOutput,
1733
+ () => StartMemoryExtractionJobInput$,
1734
+ () => StartMemoryExtractionJobOutput$,
1735
1735
  ];
1736
- var StopBrowserSession = [
1736
+ var StopBrowserSession$ = [
1737
1737
  9,
1738
1738
  n0,
1739
1739
  _SBSt,
1740
1740
  { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/stop", 200] },
1741
- () => StopBrowserSessionRequest,
1742
- () => StopBrowserSessionResponse,
1741
+ () => StopBrowserSessionRequest$,
1742
+ () => StopBrowserSessionResponse$,
1743
1743
  ];
1744
- var StopCodeInterpreterSession = [
1744
+ var StopCodeInterpreterSession$ = [
1745
1745
  9,
1746
1746
  n0,
1747
1747
  _SCISt,
1748
1748
  { [_ht]: ["PUT", "/code-interpreters/{codeInterpreterIdentifier}/sessions/stop", 200] },
1749
- () => StopCodeInterpreterSessionRequest,
1750
- () => StopCodeInterpreterSessionResponse,
1749
+ () => StopCodeInterpreterSessionRequest$,
1750
+ () => StopCodeInterpreterSessionResponse$,
1751
1751
  ];
1752
- var StopRuntimeSession = [
1752
+ var StopRuntimeSession$ = [
1753
1753
  9,
1754
1754
  n0,
1755
1755
  _SRS,
1756
1756
  { [_ht]: ["POST", "/runtimes/{agentRuntimeArn}/stopruntimesession", 200] },
1757
- () => StopRuntimeSessionRequest,
1758
- () => StopRuntimeSessionResponse,
1757
+ () => StopRuntimeSessionRequest$,
1758
+ () => StopRuntimeSessionResponse$,
1759
1759
  ];
1760
- var UpdateBrowserStream = [
1760
+ var UpdateBrowserStream$ = [
1761
1761
  9,
1762
1762
  n0,
1763
1763
  _UBS,
1764
1764
  { [_ht]: ["PUT", "/browsers/{browserIdentifier}/sessions/streams/update", 200] },
1765
- () => UpdateBrowserStreamRequest,
1766
- () => UpdateBrowserStreamResponse,
1765
+ () => UpdateBrowserStreamRequest$,
1766
+ () => UpdateBrowserStreamResponse$,
1767
1767
  ];
1768
1768
 
1769
1769
  class BatchCreateMemoryRecordsCommand extends smithyClient.Command
@@ -1774,7 +1774,7 @@ class BatchCreateMemoryRecordsCommand extends smithyClient.Command
1774
1774
  })
1775
1775
  .s("AmazonBedrockAgentCore", "BatchCreateMemoryRecords", {})
1776
1776
  .n("BedrockAgentCoreClient", "BatchCreateMemoryRecordsCommand")
1777
- .sc(BatchCreateMemoryRecords)
1777
+ .sc(BatchCreateMemoryRecords$)
1778
1778
  .build() {
1779
1779
  }
1780
1780
 
@@ -1786,7 +1786,7 @@ class BatchDeleteMemoryRecordsCommand extends smithyClient.Command
1786
1786
  })
1787
1787
  .s("AmazonBedrockAgentCore", "BatchDeleteMemoryRecords", {})
1788
1788
  .n("BedrockAgentCoreClient", "BatchDeleteMemoryRecordsCommand")
1789
- .sc(BatchDeleteMemoryRecords)
1789
+ .sc(BatchDeleteMemoryRecords$)
1790
1790
  .build() {
1791
1791
  }
1792
1792
 
@@ -1798,7 +1798,7 @@ class BatchUpdateMemoryRecordsCommand extends smithyClient.Command
1798
1798
  })
1799
1799
  .s("AmazonBedrockAgentCore", "BatchUpdateMemoryRecords", {})
1800
1800
  .n("BedrockAgentCoreClient", "BatchUpdateMemoryRecordsCommand")
1801
- .sc(BatchUpdateMemoryRecords)
1801
+ .sc(BatchUpdateMemoryRecords$)
1802
1802
  .build() {
1803
1803
  }
1804
1804
 
@@ -1810,7 +1810,7 @@ class CompleteResourceTokenAuthCommand extends smithyClient.Command
1810
1810
  })
1811
1811
  .s("AmazonBedrockAgentCore", "CompleteResourceTokenAuth", {})
1812
1812
  .n("BedrockAgentCoreClient", "CompleteResourceTokenAuthCommand")
1813
- .sc(CompleteResourceTokenAuth)
1813
+ .sc(CompleteResourceTokenAuth$)
1814
1814
  .build() {
1815
1815
  }
1816
1816
 
@@ -1822,7 +1822,7 @@ class CreateEventCommand extends smithyClient.Command
1822
1822
  })
1823
1823
  .s("AmazonBedrockAgentCore", "CreateEvent", {})
1824
1824
  .n("BedrockAgentCoreClient", "CreateEventCommand")
1825
- .sc(CreateEvent)
1825
+ .sc(CreateEvent$)
1826
1826
  .build() {
1827
1827
  }
1828
1828
 
@@ -1834,7 +1834,7 @@ class DeleteEventCommand extends smithyClient.Command
1834
1834
  })
1835
1835
  .s("AmazonBedrockAgentCore", "DeleteEvent", {})
1836
1836
  .n("BedrockAgentCoreClient", "DeleteEventCommand")
1837
- .sc(DeleteEvent)
1837
+ .sc(DeleteEvent$)
1838
1838
  .build() {
1839
1839
  }
1840
1840
 
@@ -1846,7 +1846,7 @@ class DeleteMemoryRecordCommand extends smithyClient.Command
1846
1846
  })
1847
1847
  .s("AmazonBedrockAgentCore", "DeleteMemoryRecord", {})
1848
1848
  .n("BedrockAgentCoreClient", "DeleteMemoryRecordCommand")
1849
- .sc(DeleteMemoryRecord)
1849
+ .sc(DeleteMemoryRecord$)
1850
1850
  .build() {
1851
1851
  }
1852
1852
 
@@ -1858,7 +1858,7 @@ class EvaluateCommand extends smithyClient.Command
1858
1858
  })
1859
1859
  .s("AmazonBedrockAgentCore", "Evaluate", {})
1860
1860
  .n("BedrockAgentCoreClient", "EvaluateCommand")
1861
- .sc(Evaluate)
1861
+ .sc(Evaluate$)
1862
1862
  .build() {
1863
1863
  }
1864
1864
 
@@ -1870,7 +1870,7 @@ class GetAgentCardCommand extends smithyClient.Command
1870
1870
  })
1871
1871
  .s("AmazonBedrockAgentCore", "GetAgentCard", {})
1872
1872
  .n("BedrockAgentCoreClient", "GetAgentCardCommand")
1873
- .sc(GetAgentCard)
1873
+ .sc(GetAgentCard$)
1874
1874
  .build() {
1875
1875
  }
1876
1876
 
@@ -1882,7 +1882,7 @@ class GetBrowserSessionCommand extends smithyClient.Command
1882
1882
  })
1883
1883
  .s("AmazonBedrockAgentCore", "GetBrowserSession", {})
1884
1884
  .n("BedrockAgentCoreClient", "GetBrowserSessionCommand")
1885
- .sc(GetBrowserSession)
1885
+ .sc(GetBrowserSession$)
1886
1886
  .build() {
1887
1887
  }
1888
1888
 
@@ -1894,7 +1894,7 @@ class GetCodeInterpreterSessionCommand extends smithyClient.Command
1894
1894
  })
1895
1895
  .s("AmazonBedrockAgentCore", "GetCodeInterpreterSession", {})
1896
1896
  .n("BedrockAgentCoreClient", "GetCodeInterpreterSessionCommand")
1897
- .sc(GetCodeInterpreterSession)
1897
+ .sc(GetCodeInterpreterSession$)
1898
1898
  .build() {
1899
1899
  }
1900
1900
 
@@ -1906,7 +1906,7 @@ class GetEventCommand extends smithyClient.Command
1906
1906
  })
1907
1907
  .s("AmazonBedrockAgentCore", "GetEvent", {})
1908
1908
  .n("BedrockAgentCoreClient", "GetEventCommand")
1909
- .sc(GetEvent)
1909
+ .sc(GetEvent$)
1910
1910
  .build() {
1911
1911
  }
1912
1912
 
@@ -1918,7 +1918,7 @@ class GetMemoryRecordCommand extends smithyClient.Command
1918
1918
  })
1919
1919
  .s("AmazonBedrockAgentCore", "GetMemoryRecord", {})
1920
1920
  .n("BedrockAgentCoreClient", "GetMemoryRecordCommand")
1921
- .sc(GetMemoryRecord)
1921
+ .sc(GetMemoryRecord$)
1922
1922
  .build() {
1923
1923
  }
1924
1924
 
@@ -1930,7 +1930,7 @@ class GetResourceApiKeyCommand extends smithyClient.Command
1930
1930
  })
1931
1931
  .s("AmazonBedrockAgentCore", "GetResourceApiKey", {})
1932
1932
  .n("BedrockAgentCoreClient", "GetResourceApiKeyCommand")
1933
- .sc(GetResourceApiKey)
1933
+ .sc(GetResourceApiKey$)
1934
1934
  .build() {
1935
1935
  }
1936
1936
 
@@ -1942,7 +1942,7 @@ class GetResourceOauth2TokenCommand extends smithyClient.Command
1942
1942
  })
1943
1943
  .s("AmazonBedrockAgentCore", "GetResourceOauth2Token", {})
1944
1944
  .n("BedrockAgentCoreClient", "GetResourceOauth2TokenCommand")
1945
- .sc(GetResourceOauth2Token)
1945
+ .sc(GetResourceOauth2Token$)
1946
1946
  .build() {
1947
1947
  }
1948
1948
 
@@ -1954,7 +1954,7 @@ class GetWorkloadAccessTokenCommand extends smithyClient.Command
1954
1954
  })
1955
1955
  .s("AmazonBedrockAgentCore", "GetWorkloadAccessToken", {})
1956
1956
  .n("BedrockAgentCoreClient", "GetWorkloadAccessTokenCommand")
1957
- .sc(GetWorkloadAccessToken)
1957
+ .sc(GetWorkloadAccessToken$)
1958
1958
  .build() {
1959
1959
  }
1960
1960
 
@@ -1966,7 +1966,7 @@ class GetWorkloadAccessTokenForJWTCommand extends smithyClient.Command
1966
1966
  })
1967
1967
  .s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForJWT", {})
1968
1968
  .n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForJWTCommand")
1969
- .sc(GetWorkloadAccessTokenForJWT)
1969
+ .sc(GetWorkloadAccessTokenForJWT$)
1970
1970
  .build() {
1971
1971
  }
1972
1972
 
@@ -1978,7 +1978,7 @@ class GetWorkloadAccessTokenForUserIdCommand extends smithyClient.Command
1978
1978
  })
1979
1979
  .s("AmazonBedrockAgentCore", "GetWorkloadAccessTokenForUserId", {})
1980
1980
  .n("BedrockAgentCoreClient", "GetWorkloadAccessTokenForUserIdCommand")
1981
- .sc(GetWorkloadAccessTokenForUserId)
1981
+ .sc(GetWorkloadAccessTokenForUserId$)
1982
1982
  .build() {
1983
1983
  }
1984
1984
 
@@ -1990,7 +1990,7 @@ class InvokeAgentRuntimeCommand extends smithyClient.Command
1990
1990
  })
1991
1991
  .s("AmazonBedrockAgentCore", "InvokeAgentRuntime", {})
1992
1992
  .n("BedrockAgentCoreClient", "InvokeAgentRuntimeCommand")
1993
- .sc(InvokeAgentRuntime)
1993
+ .sc(InvokeAgentRuntime$)
1994
1994
  .build() {
1995
1995
  }
1996
1996
 
@@ -2006,7 +2006,7 @@ class InvokeCodeInterpreterCommand extends smithyClient.Command
2006
2006
  },
2007
2007
  })
2008
2008
  .n("BedrockAgentCoreClient", "InvokeCodeInterpreterCommand")
2009
- .sc(InvokeCodeInterpreter)
2009
+ .sc(InvokeCodeInterpreter$)
2010
2010
  .build() {
2011
2011
  }
2012
2012
 
@@ -2018,7 +2018,7 @@ class ListActorsCommand extends smithyClient.Command
2018
2018
  })
2019
2019
  .s("AmazonBedrockAgentCore", "ListActors", {})
2020
2020
  .n("BedrockAgentCoreClient", "ListActorsCommand")
2021
- .sc(ListActors)
2021
+ .sc(ListActors$)
2022
2022
  .build() {
2023
2023
  }
2024
2024
 
@@ -2030,7 +2030,7 @@ class ListBrowserSessionsCommand extends smithyClient.Command
2030
2030
  })
2031
2031
  .s("AmazonBedrockAgentCore", "ListBrowserSessions", {})
2032
2032
  .n("BedrockAgentCoreClient", "ListBrowserSessionsCommand")
2033
- .sc(ListBrowserSessions)
2033
+ .sc(ListBrowserSessions$)
2034
2034
  .build() {
2035
2035
  }
2036
2036
 
@@ -2042,7 +2042,7 @@ class ListCodeInterpreterSessionsCommand extends smithyClient.Command
2042
2042
  })
2043
2043
  .s("AmazonBedrockAgentCore", "ListCodeInterpreterSessions", {})
2044
2044
  .n("BedrockAgentCoreClient", "ListCodeInterpreterSessionsCommand")
2045
- .sc(ListCodeInterpreterSessions)
2045
+ .sc(ListCodeInterpreterSessions$)
2046
2046
  .build() {
2047
2047
  }
2048
2048
 
@@ -2054,7 +2054,7 @@ class ListEventsCommand extends smithyClient.Command
2054
2054
  })
2055
2055
  .s("AmazonBedrockAgentCore", "ListEvents", {})
2056
2056
  .n("BedrockAgentCoreClient", "ListEventsCommand")
2057
- .sc(ListEvents)
2057
+ .sc(ListEvents$)
2058
2058
  .build() {
2059
2059
  }
2060
2060
 
@@ -2066,7 +2066,7 @@ class ListMemoryExtractionJobsCommand extends smithyClient.Command
2066
2066
  })
2067
2067
  .s("AmazonBedrockAgentCore", "ListMemoryExtractionJobs", {})
2068
2068
  .n("BedrockAgentCoreClient", "ListMemoryExtractionJobsCommand")
2069
- .sc(ListMemoryExtractionJobs)
2069
+ .sc(ListMemoryExtractionJobs$)
2070
2070
  .build() {
2071
2071
  }
2072
2072
 
@@ -2078,7 +2078,7 @@ class ListMemoryRecordsCommand extends smithyClient.Command
2078
2078
  })
2079
2079
  .s("AmazonBedrockAgentCore", "ListMemoryRecords", {})
2080
2080
  .n("BedrockAgentCoreClient", "ListMemoryRecordsCommand")
2081
- .sc(ListMemoryRecords)
2081
+ .sc(ListMemoryRecords$)
2082
2082
  .build() {
2083
2083
  }
2084
2084
 
@@ -2090,7 +2090,7 @@ class ListSessionsCommand extends smithyClient.Command
2090
2090
  })
2091
2091
  .s("AmazonBedrockAgentCore", "ListSessions", {})
2092
2092
  .n("BedrockAgentCoreClient", "ListSessionsCommand")
2093
- .sc(ListSessions)
2093
+ .sc(ListSessions$)
2094
2094
  .build() {
2095
2095
  }
2096
2096
 
@@ -2102,7 +2102,7 @@ class RetrieveMemoryRecordsCommand extends smithyClient.Command
2102
2102
  })
2103
2103
  .s("AmazonBedrockAgentCore", "RetrieveMemoryRecords", {})
2104
2104
  .n("BedrockAgentCoreClient", "RetrieveMemoryRecordsCommand")
2105
- .sc(RetrieveMemoryRecords)
2105
+ .sc(RetrieveMemoryRecords$)
2106
2106
  .build() {
2107
2107
  }
2108
2108
 
@@ -2114,7 +2114,7 @@ class StartBrowserSessionCommand extends smithyClient.Command
2114
2114
  })
2115
2115
  .s("AmazonBedrockAgentCore", "StartBrowserSession", {})
2116
2116
  .n("BedrockAgentCoreClient", "StartBrowserSessionCommand")
2117
- .sc(StartBrowserSession)
2117
+ .sc(StartBrowserSession$)
2118
2118
  .build() {
2119
2119
  }
2120
2120
 
@@ -2126,7 +2126,7 @@ class StartCodeInterpreterSessionCommand extends smithyClient.Command
2126
2126
  })
2127
2127
  .s("AmazonBedrockAgentCore", "StartCodeInterpreterSession", {})
2128
2128
  .n("BedrockAgentCoreClient", "StartCodeInterpreterSessionCommand")
2129
- .sc(StartCodeInterpreterSession)
2129
+ .sc(StartCodeInterpreterSession$)
2130
2130
  .build() {
2131
2131
  }
2132
2132
 
@@ -2138,7 +2138,7 @@ class StartMemoryExtractionJobCommand extends smithyClient.Command
2138
2138
  })
2139
2139
  .s("AmazonBedrockAgentCore", "StartMemoryExtractionJob", {})
2140
2140
  .n("BedrockAgentCoreClient", "StartMemoryExtractionJobCommand")
2141
- .sc(StartMemoryExtractionJob)
2141
+ .sc(StartMemoryExtractionJob$)
2142
2142
  .build() {
2143
2143
  }
2144
2144
 
@@ -2150,7 +2150,7 @@ class StopBrowserSessionCommand extends smithyClient.Command
2150
2150
  })
2151
2151
  .s("AmazonBedrockAgentCore", "StopBrowserSession", {})
2152
2152
  .n("BedrockAgentCoreClient", "StopBrowserSessionCommand")
2153
- .sc(StopBrowserSession)
2153
+ .sc(StopBrowserSession$)
2154
2154
  .build() {
2155
2155
  }
2156
2156
 
@@ -2162,7 +2162,7 @@ class StopCodeInterpreterSessionCommand extends smithyClient.Command
2162
2162
  })
2163
2163
  .s("AmazonBedrockAgentCore", "StopCodeInterpreterSession", {})
2164
2164
  .n("BedrockAgentCoreClient", "StopCodeInterpreterSessionCommand")
2165
- .sc(StopCodeInterpreterSession)
2165
+ .sc(StopCodeInterpreterSession$)
2166
2166
  .build() {
2167
2167
  }
2168
2168
 
@@ -2174,7 +2174,7 @@ class StopRuntimeSessionCommand extends smithyClient.Command
2174
2174
  })
2175
2175
  .s("AmazonBedrockAgentCore", "StopRuntimeSession", {})
2176
2176
  .n("BedrockAgentCoreClient", "StopRuntimeSessionCommand")
2177
- .sc(StopRuntimeSession)
2177
+ .sc(StopRuntimeSession$)
2178
2178
  .build() {
2179
2179
  }
2180
2180
 
@@ -2186,7 +2186,7 @@ class UpdateBrowserStreamCommand extends smithyClient.Command
2186
2186
  })
2187
2187
  .s("AmazonBedrockAgentCore", "UpdateBrowserStream", {})
2188
2188
  .n("BedrockAgentCoreClient", "UpdateBrowserStreamCommand")
2189
- .sc(UpdateBrowserStream)
2189
+ .sc(UpdateBrowserStream$)
2190
2190
  .build() {
2191
2191
  }
2192
2192
 
@@ -2330,72 +2330,241 @@ Object.defineProperty(exports, "__Client", {
2330
2330
  enumerable: true,
2331
2331
  get: function () { return smithyClient.Client; }
2332
2332
  });
2333
- exports.AccessDeniedException = AccessDeniedException$1;
2333
+ exports.AccessDeniedException = AccessDeniedException;
2334
+ exports.AccessDeniedException$ = AccessDeniedException$;
2335
+ exports.ActorSummary$ = ActorSummary$;
2336
+ exports.AutomationStream$ = AutomationStream$;
2334
2337
  exports.AutomationStreamStatus = AutomationStreamStatus;
2338
+ exports.AutomationStreamUpdate$ = AutomationStreamUpdate$;
2339
+ exports.BatchCreateMemoryRecords$ = BatchCreateMemoryRecords$;
2335
2340
  exports.BatchCreateMemoryRecordsCommand = BatchCreateMemoryRecordsCommand;
2341
+ exports.BatchCreateMemoryRecordsInput$ = BatchCreateMemoryRecordsInput$;
2342
+ exports.BatchCreateMemoryRecordsOutput$ = BatchCreateMemoryRecordsOutput$;
2343
+ exports.BatchDeleteMemoryRecords$ = BatchDeleteMemoryRecords$;
2336
2344
  exports.BatchDeleteMemoryRecordsCommand = BatchDeleteMemoryRecordsCommand;
2345
+ exports.BatchDeleteMemoryRecordsInput$ = BatchDeleteMemoryRecordsInput$;
2346
+ exports.BatchDeleteMemoryRecordsOutput$ = BatchDeleteMemoryRecordsOutput$;
2347
+ exports.BatchUpdateMemoryRecords$ = BatchUpdateMemoryRecords$;
2337
2348
  exports.BatchUpdateMemoryRecordsCommand = BatchUpdateMemoryRecordsCommand;
2349
+ exports.BatchUpdateMemoryRecordsInput$ = BatchUpdateMemoryRecordsInput$;
2350
+ exports.BatchUpdateMemoryRecordsOutput$ = BatchUpdateMemoryRecordsOutput$;
2338
2351
  exports.BedrockAgentCore = BedrockAgentCore;
2339
2352
  exports.BedrockAgentCoreClient = BedrockAgentCoreClient;
2340
- exports.BedrockAgentCoreServiceException = BedrockAgentCoreServiceException$1;
2353
+ exports.BedrockAgentCoreServiceException = BedrockAgentCoreServiceException;
2354
+ exports.BedrockAgentCoreServiceException$ = BedrockAgentCoreServiceException$;
2355
+ exports.Branch$ = Branch$;
2356
+ exports.BranchFilter$ = BranchFilter$;
2341
2357
  exports.BrowserSessionStatus = BrowserSessionStatus;
2358
+ exports.BrowserSessionStream$ = BrowserSessionStream$;
2359
+ exports.BrowserSessionSummary$ = BrowserSessionSummary$;
2360
+ exports.CodeInterpreterResult$ = CodeInterpreterResult$;
2342
2361
  exports.CodeInterpreterSessionStatus = CodeInterpreterSessionStatus;
2362
+ exports.CodeInterpreterSessionSummary$ = CodeInterpreterSessionSummary$;
2363
+ exports.CodeInterpreterStreamOutput$ = CodeInterpreterStreamOutput$;
2364
+ exports.CompleteResourceTokenAuth$ = CompleteResourceTokenAuth$;
2343
2365
  exports.CompleteResourceTokenAuthCommand = CompleteResourceTokenAuthCommand;
2344
- exports.ConflictException = ConflictException$1;
2366
+ exports.CompleteResourceTokenAuthRequest$ = CompleteResourceTokenAuthRequest$;
2367
+ exports.CompleteResourceTokenAuthResponse$ = CompleteResourceTokenAuthResponse$;
2368
+ exports.ConflictException = ConflictException;
2369
+ exports.ConflictException$ = ConflictException$;
2370
+ exports.Content$ = Content$;
2371
+ exports.ContentBlock$ = ContentBlock$;
2345
2372
  exports.ContentBlockType = ContentBlockType;
2373
+ exports.Context$ = Context$;
2374
+ exports.Conversational$ = Conversational$;
2375
+ exports.CreateEvent$ = CreateEvent$;
2346
2376
  exports.CreateEventCommand = CreateEventCommand;
2377
+ exports.CreateEventInput$ = CreateEventInput$;
2378
+ exports.CreateEventOutput$ = CreateEventOutput$;
2379
+ exports.DeleteEvent$ = DeleteEvent$;
2347
2380
  exports.DeleteEventCommand = DeleteEventCommand;
2381
+ exports.DeleteEventInput$ = DeleteEventInput$;
2382
+ exports.DeleteEventOutput$ = DeleteEventOutput$;
2383
+ exports.DeleteMemoryRecord$ = DeleteMemoryRecord$;
2348
2384
  exports.DeleteMemoryRecordCommand = DeleteMemoryRecordCommand;
2349
- exports.DuplicateIdException = DuplicateIdException$1;
2385
+ exports.DeleteMemoryRecordInput$ = DeleteMemoryRecordInput$;
2386
+ exports.DeleteMemoryRecordOutput$ = DeleteMemoryRecordOutput$;
2387
+ exports.DuplicateIdException = DuplicateIdException;
2388
+ exports.DuplicateIdException$ = DuplicateIdException$;
2389
+ exports.Evaluate$ = Evaluate$;
2350
2390
  exports.EvaluateCommand = EvaluateCommand;
2391
+ exports.EvaluateRequest$ = EvaluateRequest$;
2392
+ exports.EvaluateResponse$ = EvaluateResponse$;
2393
+ exports.EvaluationInput$ = EvaluationInput$;
2394
+ exports.EvaluationResultContent$ = EvaluationResultContent$;
2395
+ exports.EvaluationTarget$ = EvaluationTarget$;
2396
+ exports.Event$ = Event$;
2397
+ exports.EventMetadataFilterExpression$ = EventMetadataFilterExpression$;
2398
+ exports.ExtractionJob$ = ExtractionJob$;
2399
+ exports.ExtractionJobFilterInput$ = ExtractionJobFilterInput$;
2400
+ exports.ExtractionJobMessages$ = ExtractionJobMessages$;
2401
+ exports.ExtractionJobMetadata$ = ExtractionJobMetadata$;
2351
2402
  exports.ExtractionJobStatus = ExtractionJobStatus;
2403
+ exports.FilterInput$ = FilterInput$;
2404
+ exports.GetAgentCard$ = GetAgentCard$;
2352
2405
  exports.GetAgentCardCommand = GetAgentCardCommand;
2406
+ exports.GetAgentCardRequest$ = GetAgentCardRequest$;
2407
+ exports.GetAgentCardResponse$ = GetAgentCardResponse$;
2408
+ exports.GetBrowserSession$ = GetBrowserSession$;
2353
2409
  exports.GetBrowserSessionCommand = GetBrowserSessionCommand;
2410
+ exports.GetBrowserSessionRequest$ = GetBrowserSessionRequest$;
2411
+ exports.GetBrowserSessionResponse$ = GetBrowserSessionResponse$;
2412
+ exports.GetCodeInterpreterSession$ = GetCodeInterpreterSession$;
2354
2413
  exports.GetCodeInterpreterSessionCommand = GetCodeInterpreterSessionCommand;
2414
+ exports.GetCodeInterpreterSessionRequest$ = GetCodeInterpreterSessionRequest$;
2415
+ exports.GetCodeInterpreterSessionResponse$ = GetCodeInterpreterSessionResponse$;
2416
+ exports.GetEvent$ = GetEvent$;
2355
2417
  exports.GetEventCommand = GetEventCommand;
2418
+ exports.GetEventInput$ = GetEventInput$;
2419
+ exports.GetEventOutput$ = GetEventOutput$;
2420
+ exports.GetMemoryRecord$ = GetMemoryRecord$;
2356
2421
  exports.GetMemoryRecordCommand = GetMemoryRecordCommand;
2422
+ exports.GetMemoryRecordInput$ = GetMemoryRecordInput$;
2423
+ exports.GetMemoryRecordOutput$ = GetMemoryRecordOutput$;
2424
+ exports.GetResourceApiKey$ = GetResourceApiKey$;
2357
2425
  exports.GetResourceApiKeyCommand = GetResourceApiKeyCommand;
2426
+ exports.GetResourceApiKeyRequest$ = GetResourceApiKeyRequest$;
2427
+ exports.GetResourceApiKeyResponse$ = GetResourceApiKeyResponse$;
2428
+ exports.GetResourceOauth2Token$ = GetResourceOauth2Token$;
2358
2429
  exports.GetResourceOauth2TokenCommand = GetResourceOauth2TokenCommand;
2430
+ exports.GetResourceOauth2TokenRequest$ = GetResourceOauth2TokenRequest$;
2431
+ exports.GetResourceOauth2TokenResponse$ = GetResourceOauth2TokenResponse$;
2432
+ exports.GetWorkloadAccessToken$ = GetWorkloadAccessToken$;
2359
2433
  exports.GetWorkloadAccessTokenCommand = GetWorkloadAccessTokenCommand;
2434
+ exports.GetWorkloadAccessTokenForJWT$ = GetWorkloadAccessTokenForJWT$;
2360
2435
  exports.GetWorkloadAccessTokenForJWTCommand = GetWorkloadAccessTokenForJWTCommand;
2436
+ exports.GetWorkloadAccessTokenForJWTRequest$ = GetWorkloadAccessTokenForJWTRequest$;
2437
+ exports.GetWorkloadAccessTokenForJWTResponse$ = GetWorkloadAccessTokenForJWTResponse$;
2438
+ exports.GetWorkloadAccessTokenForUserId$ = GetWorkloadAccessTokenForUserId$;
2361
2439
  exports.GetWorkloadAccessTokenForUserIdCommand = GetWorkloadAccessTokenForUserIdCommand;
2362
- exports.InternalServerException = InternalServerException$1;
2363
- exports.InvalidInputException = InvalidInputException$1;
2440
+ exports.GetWorkloadAccessTokenForUserIdRequest$ = GetWorkloadAccessTokenForUserIdRequest$;
2441
+ exports.GetWorkloadAccessTokenForUserIdResponse$ = GetWorkloadAccessTokenForUserIdResponse$;
2442
+ exports.GetWorkloadAccessTokenRequest$ = GetWorkloadAccessTokenRequest$;
2443
+ exports.GetWorkloadAccessTokenResponse$ = GetWorkloadAccessTokenResponse$;
2444
+ exports.InputContentBlock$ = InputContentBlock$;
2445
+ exports.InternalServerException = InternalServerException;
2446
+ exports.InternalServerException$ = InternalServerException$;
2447
+ exports.InvalidInputException = InvalidInputException;
2448
+ exports.InvalidInputException$ = InvalidInputException$;
2449
+ exports.InvokeAgentRuntime$ = InvokeAgentRuntime$;
2364
2450
  exports.InvokeAgentRuntimeCommand = InvokeAgentRuntimeCommand;
2451
+ exports.InvokeAgentRuntimeRequest$ = InvokeAgentRuntimeRequest$;
2452
+ exports.InvokeAgentRuntimeResponse$ = InvokeAgentRuntimeResponse$;
2453
+ exports.InvokeCodeInterpreter$ = InvokeCodeInterpreter$;
2365
2454
  exports.InvokeCodeInterpreterCommand = InvokeCodeInterpreterCommand;
2455
+ exports.InvokeCodeInterpreterRequest$ = InvokeCodeInterpreterRequest$;
2456
+ exports.InvokeCodeInterpreterResponse$ = InvokeCodeInterpreterResponse$;
2457
+ exports.LeftExpression$ = LeftExpression$;
2458
+ exports.ListActors$ = ListActors$;
2366
2459
  exports.ListActorsCommand = ListActorsCommand;
2460
+ exports.ListActorsInput$ = ListActorsInput$;
2461
+ exports.ListActorsOutput$ = ListActorsOutput$;
2462
+ exports.ListBrowserSessions$ = ListBrowserSessions$;
2367
2463
  exports.ListBrowserSessionsCommand = ListBrowserSessionsCommand;
2464
+ exports.ListBrowserSessionsRequest$ = ListBrowserSessionsRequest$;
2465
+ exports.ListBrowserSessionsResponse$ = ListBrowserSessionsResponse$;
2466
+ exports.ListCodeInterpreterSessions$ = ListCodeInterpreterSessions$;
2368
2467
  exports.ListCodeInterpreterSessionsCommand = ListCodeInterpreterSessionsCommand;
2468
+ exports.ListCodeInterpreterSessionsRequest$ = ListCodeInterpreterSessionsRequest$;
2469
+ exports.ListCodeInterpreterSessionsResponse$ = ListCodeInterpreterSessionsResponse$;
2470
+ exports.ListEvents$ = ListEvents$;
2369
2471
  exports.ListEventsCommand = ListEventsCommand;
2472
+ exports.ListEventsInput$ = ListEventsInput$;
2473
+ exports.ListEventsOutput$ = ListEventsOutput$;
2474
+ exports.ListMemoryExtractionJobs$ = ListMemoryExtractionJobs$;
2370
2475
  exports.ListMemoryExtractionJobsCommand = ListMemoryExtractionJobsCommand;
2476
+ exports.ListMemoryExtractionJobsInput$ = ListMemoryExtractionJobsInput$;
2477
+ exports.ListMemoryExtractionJobsOutput$ = ListMemoryExtractionJobsOutput$;
2478
+ exports.ListMemoryRecords$ = ListMemoryRecords$;
2371
2479
  exports.ListMemoryRecordsCommand = ListMemoryRecordsCommand;
2480
+ exports.ListMemoryRecordsInput$ = ListMemoryRecordsInput$;
2481
+ exports.ListMemoryRecordsOutput$ = ListMemoryRecordsOutput$;
2482
+ exports.ListSessions$ = ListSessions$;
2372
2483
  exports.ListSessionsCommand = ListSessionsCommand;
2484
+ exports.ListSessionsInput$ = ListSessionsInput$;
2485
+ exports.ListSessionsOutput$ = ListSessionsOutput$;
2486
+ exports.LiveViewStream$ = LiveViewStream$;
2487
+ exports.MemoryContent$ = MemoryContent$;
2488
+ exports.MemoryMetadataFilterExpression$ = MemoryMetadataFilterExpression$;
2489
+ exports.MemoryRecord$ = MemoryRecord$;
2490
+ exports.MemoryRecordCreateInput$ = MemoryRecordCreateInput$;
2491
+ exports.MemoryRecordDeleteInput$ = MemoryRecordDeleteInput$;
2492
+ exports.MemoryRecordOutput$ = MemoryRecordOutput$;
2373
2493
  exports.MemoryRecordStatus = MemoryRecordStatus;
2494
+ exports.MemoryRecordSummary$ = MemoryRecordSummary$;
2495
+ exports.MemoryRecordUpdateInput$ = MemoryRecordUpdateInput$;
2496
+ exports.MessageMetadata$ = MessageMetadata$;
2497
+ exports.MetadataValue$ = MetadataValue$;
2374
2498
  exports.Oauth2FlowType = Oauth2FlowType;
2375
2499
  exports.OperatorType = OperatorType;
2500
+ exports.PayloadType$ = PayloadType$;
2376
2501
  exports.ProgrammingLanguage = ProgrammingLanguage;
2502
+ exports.ResourceContent$ = ResourceContent$;
2377
2503
  exports.ResourceContentType = ResourceContentType;
2378
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2504
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2505
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2506
+ exports.RetrieveMemoryRecords$ = RetrieveMemoryRecords$;
2379
2507
  exports.RetrieveMemoryRecordsCommand = RetrieveMemoryRecordsCommand;
2508
+ exports.RetrieveMemoryRecordsInput$ = RetrieveMemoryRecordsInput$;
2509
+ exports.RetrieveMemoryRecordsOutput$ = RetrieveMemoryRecordsOutput$;
2510
+ exports.RightExpression$ = RightExpression$;
2380
2511
  exports.Role = Role;
2381
- exports.RuntimeClientError = RuntimeClientError$1;
2382
- exports.ServiceException = ServiceException$1;
2383
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2512
+ exports.RuntimeClientError = RuntimeClientError;
2513
+ exports.RuntimeClientError$ = RuntimeClientError$;
2514
+ exports.SearchCriteria$ = SearchCriteria$;
2515
+ exports.ServiceException = ServiceException;
2516
+ exports.ServiceException$ = ServiceException$;
2517
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2518
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2384
2519
  exports.SessionStatus = SessionStatus;
2520
+ exports.SessionSummary$ = SessionSummary$;
2521
+ exports.SpanContext$ = SpanContext$;
2522
+ exports.StartBrowserSession$ = StartBrowserSession$;
2385
2523
  exports.StartBrowserSessionCommand = StartBrowserSessionCommand;
2524
+ exports.StartBrowserSessionRequest$ = StartBrowserSessionRequest$;
2525
+ exports.StartBrowserSessionResponse$ = StartBrowserSessionResponse$;
2526
+ exports.StartCodeInterpreterSession$ = StartCodeInterpreterSession$;
2386
2527
  exports.StartCodeInterpreterSessionCommand = StartCodeInterpreterSessionCommand;
2528
+ exports.StartCodeInterpreterSessionRequest$ = StartCodeInterpreterSessionRequest$;
2529
+ exports.StartCodeInterpreterSessionResponse$ = StartCodeInterpreterSessionResponse$;
2530
+ exports.StartMemoryExtractionJob$ = StartMemoryExtractionJob$;
2387
2531
  exports.StartMemoryExtractionJobCommand = StartMemoryExtractionJobCommand;
2532
+ exports.StartMemoryExtractionJobInput$ = StartMemoryExtractionJobInput$;
2533
+ exports.StartMemoryExtractionJobOutput$ = StartMemoryExtractionJobOutput$;
2534
+ exports.StopBrowserSession$ = StopBrowserSession$;
2388
2535
  exports.StopBrowserSessionCommand = StopBrowserSessionCommand;
2536
+ exports.StopBrowserSessionRequest$ = StopBrowserSessionRequest$;
2537
+ exports.StopBrowserSessionResponse$ = StopBrowserSessionResponse$;
2538
+ exports.StopCodeInterpreterSession$ = StopCodeInterpreterSession$;
2389
2539
  exports.StopCodeInterpreterSessionCommand = StopCodeInterpreterSessionCommand;
2540
+ exports.StopCodeInterpreterSessionRequest$ = StopCodeInterpreterSessionRequest$;
2541
+ exports.StopCodeInterpreterSessionResponse$ = StopCodeInterpreterSessionResponse$;
2542
+ exports.StopRuntimeSession$ = StopRuntimeSession$;
2390
2543
  exports.StopRuntimeSessionCommand = StopRuntimeSessionCommand;
2544
+ exports.StopRuntimeSessionRequest$ = StopRuntimeSessionRequest$;
2545
+ exports.StopRuntimeSessionResponse$ = StopRuntimeSessionResponse$;
2546
+ exports.StreamUpdate$ = StreamUpdate$;
2391
2547
  exports.TaskStatus = TaskStatus;
2392
- exports.ThrottledException = ThrottledException$1;
2393
- exports.ThrottlingException = ThrottlingException$1;
2548
+ exports.ThrottledException = ThrottledException;
2549
+ exports.ThrottledException$ = ThrottledException$;
2550
+ exports.ThrottlingException = ThrottlingException;
2551
+ exports.ThrottlingException$ = ThrottlingException$;
2552
+ exports.TokenUsage$ = TokenUsage$;
2553
+ exports.ToolArguments$ = ToolArguments$;
2394
2554
  exports.ToolName = ToolName;
2395
- exports.UnauthorizedException = UnauthorizedException$1;
2555
+ exports.ToolResultStructuredContent$ = ToolResultStructuredContent$;
2556
+ exports.UnauthorizedException = UnauthorizedException;
2557
+ exports.UnauthorizedException$ = UnauthorizedException$;
2558
+ exports.UpdateBrowserStream$ = UpdateBrowserStream$;
2396
2559
  exports.UpdateBrowserStreamCommand = UpdateBrowserStreamCommand;
2397
- exports.ValidationException = ValidationException$1;
2560
+ exports.UpdateBrowserStreamRequest$ = UpdateBrowserStreamRequest$;
2561
+ exports.UpdateBrowserStreamResponse$ = UpdateBrowserStreamResponse$;
2562
+ exports.UserIdentifier$ = UserIdentifier$;
2563
+ exports.ValidationException = ValidationException;
2564
+ exports.ValidationException$ = ValidationException$;
2565
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
2398
2566
  exports.ValidationExceptionReason = ValidationExceptionReason;
2567
+ exports.ViewPort$ = ViewPort$;
2399
2568
  exports.paginateListActors = paginateListActors;
2400
2569
  exports.paginateListEvents = paginateListEvents;
2401
2570
  exports.paginateListMemoryExtractionJobs = paginateListMemoryExtractionJobs;