@aws-sdk/client-bedrock-runtime 3.940.0 → 3.941.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 CHANGED
@@ -2423,6 +2423,7 @@ const ServiceTierType = {
2423
2423
  DEFAULT: "default",
2424
2424
  FLEX: "flex",
2425
2425
  PRIORITY: "priority",
2426
+ RESERVED: "reserved",
2426
2427
  };
2427
2428
  const StopReason = {
2428
2429
  CONTENT_FILTERED: "content_filtered",
@@ -192,6 +192,7 @@ export const ServiceTierType = {
192
192
  DEFAULT: "default",
193
193
  FLEX: "flex",
194
194
  PRIORITY: "priority",
195
+ RESERVED: "reserved",
195
196
  };
196
197
  export const StopReason = {
197
198
  CONTENT_FILTERED: "content_filtered",
@@ -311,7 +311,7 @@ declare const ConverseCommand_base: {
311
311
  * latency: "standard" || "optimized",
312
312
  * },
313
313
  * serviceTier: { // ServiceTier
314
- * type: "priority" || "default" || "flex", // required
314
+ * type: "priority" || "default" || "flex" || "reserved", // required
315
315
  * },
316
316
  * };
317
317
  * const command = new ConverseCommand(input);
@@ -968,7 +968,7 @@ declare const ConverseCommand_base: {
968
968
  * // latency: "standard" || "optimized",
969
969
  * // },
970
970
  * // serviceTier: { // ServiceTier
971
- * // type: "priority" || "default" || "flex", // required
971
+ * // type: "priority" || "default" || "flex" || "reserved", // required
972
972
  * // },
973
973
  * // };
974
974
  *
@@ -312,7 +312,7 @@ declare const ConverseStreamCommand_base: {
312
312
  * latency: "standard" || "optimized",
313
313
  * },
314
314
  * serviceTier: { // ServiceTier
315
- * type: "priority" || "default" || "flex", // required
315
+ * type: "priority" || "default" || "flex" || "reserved", // required
316
316
  * },
317
317
  * };
318
318
  * const command = new ConverseStreamCommand(input);
@@ -850,7 +850,7 @@ declare const ConverseStreamCommand_base: {
850
850
  * // latency: "standard" || "optimized",
851
851
  * // },
852
852
  * // serviceTier: { // ServiceTier
853
- * // type: "priority" || "default" || "flex", // required
853
+ * // type: "priority" || "default" || "flex" || "reserved", // required
854
854
  * // },
855
855
  * // },
856
856
  * // internalServerException: { // InternalServerException
@@ -58,7 +58,7 @@ declare const InvokeModelCommand_base: {
58
58
  * guardrailIdentifier: "STRING_VALUE",
59
59
  * guardrailVersion: "STRING_VALUE",
60
60
  * performanceConfigLatency: "standard" || "optimized",
61
- * serviceTier: "priority" || "default" || "flex",
61
+ * serviceTier: "priority" || "default" || "flex" || "reserved",
62
62
  * };
63
63
  * const command = new InvokeModelCommand(input);
64
64
  * const response = await client.send(command);
@@ -66,7 +66,7 @@ declare const InvokeModelCommand_base: {
66
66
  * // body: new Uint8Array(), // required
67
67
  * // contentType: "STRING_VALUE", // required
68
68
  * // performanceConfigLatency: "standard" || "optimized",
69
- * // serviceTier: "priority" || "default" || "flex",
69
+ * // serviceTier: "priority" || "default" || "flex" || "reserved",
70
70
  * // };
71
71
  *
72
72
  * ```
@@ -51,7 +51,7 @@ declare const InvokeModelWithResponseStreamCommand_base: {
51
51
  * guardrailIdentifier: "STRING_VALUE",
52
52
  * guardrailVersion: "STRING_VALUE",
53
53
  * performanceConfigLatency: "standard" || "optimized",
54
- * serviceTier: "priority" || "default" || "flex",
54
+ * serviceTier: "priority" || "default" || "flex" || "reserved",
55
55
  * };
56
56
  * const command = new InvokeModelWithResponseStreamCommand(input);
57
57
  * const response = await client.send(command);
@@ -83,7 +83,7 @@ declare const InvokeModelWithResponseStreamCommand_base: {
83
83
  * // },
84
84
  * // contentType: "STRING_VALUE", // required
85
85
  * // performanceConfigLatency: "standard" || "optimized",
86
- * // serviceTier: "priority" || "default" || "flex",
86
+ * // serviceTier: "priority" || "default" || "flex" || "reserved",
87
87
  * // };
88
88
  *
89
89
  * ```
@@ -468,6 +468,7 @@ export declare const ServiceTierType: {
468
468
  readonly DEFAULT: "default";
469
469
  readonly FLEX: "flex";
470
470
  readonly PRIORITY: "priority";
471
+ readonly RESERVED: "reserved";
471
472
  };
472
473
  /**
473
474
  * @public
@@ -256,6 +256,7 @@ export declare const ServiceTierType: {
256
256
  readonly DEFAULT: "default";
257
257
  readonly FLEX: "flex";
258
258
  readonly PRIORITY: "priority";
259
+ readonly RESERVED: "reserved";
259
260
  };
260
261
  export type ServiceTierType =
261
262
  (typeof ServiceTierType)[keyof typeof ServiceTierType];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-runtime",
3
3
  "description": "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
4
- "version": "3.940.0",
4
+ "version": "3.941.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-runtime",