@aws-sdk/client-bedrock 3.940.0 → 3.943.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 +3 -2
- package/dist-es/schemas/schemas_0.js +3 -2
- package/dist-types/commands/GetModelInvocationLoggingConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/PutModelInvocationLoggingConfigurationCommand.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +5 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -912,6 +912,7 @@ const _a = "annotation";
|
|
|
912
912
|
const _aA = "agreementAvailability";
|
|
913
913
|
const _aAn = "andAll";
|
|
914
914
|
const _aD = "agreementDuration";
|
|
915
|
+
const _aDDE = "audioDataDeliveryEnabled";
|
|
915
916
|
const _aE = "alternateExpression";
|
|
916
917
|
const _aEc = "acceptEula";
|
|
917
918
|
const _aMRF = "additionalModelRequestFields";
|
|
@@ -4458,8 +4459,8 @@ var LoggingConfig = [
|
|
|
4458
4459
|
n0,
|
|
4459
4460
|
_LC,
|
|
4460
4461
|
0,
|
|
4461
|
-
[_cWC, _sC, _tDDE, _iDDE, _eDDE, _vDDE],
|
|
4462
|
-
[() => CloudWatchConfig, () => S3Config, 2, 2, 2, 2],
|
|
4462
|
+
[_cWC, _sC, _tDDE, _iDDE, _eDDE, _vDDE, _aDDE],
|
|
4463
|
+
[() => CloudWatchConfig, () => S3Config, 2, 2, 2, 2, 2],
|
|
4463
4464
|
];
|
|
4464
4465
|
var MarketplaceModelEndpoint = [
|
|
4465
4466
|
3,
|
|
@@ -661,6 +661,7 @@ const _a = "annotation";
|
|
|
661
661
|
const _aA = "agreementAvailability";
|
|
662
662
|
const _aAn = "andAll";
|
|
663
663
|
const _aD = "agreementDuration";
|
|
664
|
+
const _aDDE = "audioDataDeliveryEnabled";
|
|
664
665
|
const _aE = "alternateExpression";
|
|
665
666
|
const _aEc = "acceptEula";
|
|
666
667
|
const _aMRF = "additionalModelRequestFields";
|
|
@@ -4210,8 +4211,8 @@ export var LoggingConfig = [
|
|
|
4210
4211
|
n0,
|
|
4211
4212
|
_LC,
|
|
4212
4213
|
0,
|
|
4213
|
-
[_cWC, _sC, _tDDE, _iDDE, _eDDE, _vDDE],
|
|
4214
|
-
[() => CloudWatchConfig, () => S3Config, 2, 2, 2, 2],
|
|
4214
|
+
[_cWC, _sC, _tDDE, _iDDE, _eDDE, _vDDE, _aDDE],
|
|
4215
|
+
[() => CloudWatchConfig, () => S3Config, 2, 2, 2, 2, 2],
|
|
4215
4216
|
];
|
|
4216
4217
|
export var MarketplaceModelEndpoint = [
|
|
4217
4218
|
3,
|
|
@@ -57,6 +57,7 @@ declare const GetModelInvocationLoggingConfigurationCommand_base: {
|
|
|
57
57
|
* // imageDataDeliveryEnabled: true || false,
|
|
58
58
|
* // embeddingDataDeliveryEnabled: true || false,
|
|
59
59
|
* // videoDataDeliveryEnabled: true || false,
|
|
60
|
+
* // audioDataDeliveryEnabled: true || false,
|
|
60
61
|
* // },
|
|
61
62
|
* // };
|
|
62
63
|
*
|
|
@@ -54,6 +54,7 @@ declare const PutModelInvocationLoggingConfigurationCommand_base: {
|
|
|
54
54
|
* imageDataDeliveryEnabled: true || false,
|
|
55
55
|
* embeddingDataDeliveryEnabled: true || false,
|
|
56
56
|
* videoDataDeliveryEnabled: true || false,
|
|
57
|
+
* audioDataDeliveryEnabled: true || false,
|
|
57
58
|
* },
|
|
58
59
|
* };
|
|
59
60
|
* const command = new PutModelInvocationLoggingConfigurationCommand(input);
|
|
@@ -87,6 +87,11 @@ export interface LoggingConfig {
|
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
89
|
videoDataDeliveryEnabled?: boolean | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>Set to include audio data in the log delivery.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
audioDataDeliveryEnabled?: boolean | undefined;
|
|
90
95
|
}
|
|
91
96
|
/**
|
|
92
97
|
* @public
|
|
@@ -70,6 +70,7 @@ export interface LoggingConfig {
|
|
|
70
70
|
imageDataDeliveryEnabled?: boolean | undefined;
|
|
71
71
|
embeddingDataDeliveryEnabled?: boolean | undefined;
|
|
72
72
|
videoDataDeliveryEnabled?: boolean | undefined;
|
|
73
|
+
audioDataDeliveryEnabled?: boolean | undefined;
|
|
73
74
|
}
|
|
74
75
|
export interface GetModelInvocationLoggingConfigurationResponse {
|
|
75
76
|
loggingConfig?: LoggingConfig | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.943.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.943.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.943.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.943.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
-
"@aws-sdk/token-providers": "3.
|
|
30
|
+
"@aws-sdk/token-providers": "3.943.0",
|
|
31
31
|
"@aws-sdk/types": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.943.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.3",
|
|
36
36
|
"@smithy/core": "^3.18.5",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.6",
|