@openclaw/amazon-bedrock-provider 2026.7.2-beta.4 → 2026.7.2-beta.5
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/README.md +1 -1
- package/dist/bedrock-options.js +1 -1
- package/dist/discovery.js +5 -4
- package/dist/register.sync.runtime.js +7 -3
- package/dist/stream.runtime.js +7 -4
- package/dist/thinking-policy.js +25 -3
- package/package.json +4 -5
- package/npm-shrinkwrap.json +0 -487
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Official OpenClaw provider plugin for Amazon Bedrock. It adds Bedrock model disc
|
|
|
5
5
|
Install from OpenClaw:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
openclaw
|
|
8
|
+
openclaw plugins install @openclaw/amazon-bedrock-provider
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Configure AWS credentials and region through your normal OpenClaw credential/profile setup, then select Bedrock models with the `amazon-bedrock/...` provider prefix.
|
package/dist/bedrock-options.js
CHANGED
|
@@ -13,7 +13,7 @@ function supportsBedrockPromptCaching(modelId, modelName) {
|
|
|
13
13
|
return false;
|
|
14
14
|
}
|
|
15
15
|
if (candidates.some((s) => s.includes("-4-"))) return true;
|
|
16
|
-
if (candidates.some((candidate) => candidate.includes("claude-fable-5") || candidate.includes("claude-mythos-5") || candidate.includes("claude-sonnet-5"))) return true;
|
|
16
|
+
if (candidates.some((candidate) => candidate.includes("claude-fable-5") || candidate.includes("claude-mythos-5") || candidate.includes("claude-opus-5") || candidate.includes("claude-sonnet-5"))) return true;
|
|
17
17
|
if (candidates.some((s) => s.includes("claude-3-7-sonnet"))) return true;
|
|
18
18
|
if (candidates.some((s) => s.includes("claude-3-5-haiku"))) return true;
|
|
19
19
|
return false;
|
package/dist/discovery.js
CHANGED
|
@@ -2,7 +2,7 @@ import { refreshAwsSharedConfigCacheForBedrock } from "./aws-credential-refresh.
|
|
|
2
2
|
import { loadBedrockControlPlaneSdk, runBedrockControlPlaneRequest } from "./control-plane.js";
|
|
3
3
|
import { resolveBedrockConfigApiKey } from "./discovery-shared.js";
|
|
4
4
|
import { resolveBedrockNativeThinkingLevelMap } from "./thinking-policy.js";
|
|
5
|
-
import { resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeSonnet5ModelIdentity, supportsClaudeAdaptiveThinking } from "openclaw/plugin-sdk/provider-model-shared";
|
|
5
|
+
import { resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeOpus5ModelIdentity, resolveClaudeSonnet5ModelIdentity, supportsClaudeAdaptiveThinking } from "openclaw/plugin-sdk/provider-model-shared";
|
|
6
6
|
import { normalizeLowercaseStringOrEmpty, normalizeOptionalLowercaseString, normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
7
7
|
import { createSubsystemLogger } from "openclaw/plugin-sdk/core";
|
|
8
8
|
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
|
|
@@ -32,6 +32,7 @@ const KNOWN_CONTEXT_WINDOWS = {
|
|
|
32
32
|
"anthropic.claude-fable-5": 1e6,
|
|
33
33
|
"anthropic.claude-mythos-5": 1e6,
|
|
34
34
|
"anthropic.claude-sonnet-5": 1e6,
|
|
35
|
+
"anthropic.claude-opus-5": 1e6,
|
|
35
36
|
"anthropic.claude-3-7-sonnet-20250219-v1:0": 2e5,
|
|
36
37
|
"anthropic.claude-opus-4-8": 1e6,
|
|
37
38
|
"anthropic.claude-opus-4-7": 1e6,
|
|
@@ -93,7 +94,7 @@ const KNOWN_CONTEXT_WINDOWS = {
|
|
|
93
94
|
function resolveKnownContextWindow(modelId) {
|
|
94
95
|
const candidates = [modelId, modelId.replace(/^(?:us|eu|ap|apac|au|jp|global)\./, "")];
|
|
95
96
|
for (const candidate of candidates) {
|
|
96
|
-
if (resolveClaudeFable5ModelIdentity({ id: candidate }) || resolveClaudeMythos5ModelIdentity({ id: candidate }) || resolveClaudeSonnet5ModelIdentity({ id: candidate })) return 1e6;
|
|
97
|
+
if (resolveClaudeFable5ModelIdentity({ id: candidate }) || resolveClaudeMythos5ModelIdentity({ id: candidate }) || resolveClaudeSonnet5ModelIdentity({ id: candidate }) || resolveClaudeOpus5ModelIdentity({ id: candidate })) return 1e6;
|
|
97
98
|
if (/(?:^|[/.:])anthropic\.claude-opus-4[.-]8(?:$|[-.:/])/i.test(candidate)) return 1e6;
|
|
98
99
|
if (KNOWN_CONTEXT_WINDOWS[candidate] !== void 0) return KNOWN_CONTEXT_WINDOWS[candidate];
|
|
99
100
|
const withoutVersionSuffix = candidate.replace(/:0$/, "");
|
|
@@ -107,10 +108,10 @@ function resolveKnownThinkingLevelMap(modelId) {
|
|
|
107
108
|
return resolveBedrockNativeThinkingLevelMap(modelId);
|
|
108
109
|
}
|
|
109
110
|
function resolveKnownMaxTokens(modelId) {
|
|
110
|
-
return resolveClaudeFable5ModelIdentity({ id: modelId }) || resolveClaudeMythos5ModelIdentity({ id: modelId }) || resolveClaudeSonnet5ModelIdentity({ id: modelId }) ? 128e3 : void 0;
|
|
111
|
+
return resolveClaudeFable5ModelIdentity({ id: modelId }) || resolveClaudeMythos5ModelIdentity({ id: modelId }) || resolveClaudeSonnet5ModelIdentity({ id: modelId }) || resolveClaudeOpus5ModelIdentity({ id: modelId }) ? 128e3 : void 0;
|
|
111
112
|
}
|
|
112
113
|
function resolveKnownInput(modelId) {
|
|
113
|
-
return resolveClaudeFable5ModelIdentity({ id: modelId }) || resolveClaudeMythos5ModelIdentity({ id: modelId }) || resolveClaudeSonnet5ModelIdentity({ id: modelId }) ? ["text", "image"] : void 0;
|
|
114
|
+
return resolveClaudeFable5ModelIdentity({ id: modelId }) || resolveClaudeMythos5ModelIdentity({ id: modelId }) || resolveClaudeSonnet5ModelIdentity({ id: modelId }) || resolveClaudeOpus5ModelIdentity({ id: modelId }) ? ["text", "image"] : void 0;
|
|
114
115
|
}
|
|
115
116
|
const DEFAULT_COST = {
|
|
116
117
|
input: 0,
|
|
@@ -6,7 +6,7 @@ import { bedrockMemoryEmbeddingProviderAdapter } from "./memory-embedding-adapte
|
|
|
6
6
|
import { isLatestAdaptiveBedrockModelRef, isOpus47OrNewerBedrockModelRef, resolveBedrockClaudeThinkingProfile, resolveBedrockNativeThinkingLevelMap, supportsBedrockNativeMaxEffort } from "./thinking-policy.js";
|
|
7
7
|
import { streamSimpleBedrock } from "./stream.runtime.js";
|
|
8
8
|
import { resolvePluginConfigObject } from "openclaw/plugin-sdk/plugin-config-runtime";
|
|
9
|
-
import { buildProviderReplayFamilyHooks, normalizeProviderId, resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeSonnet5ModelIdentity } from "openclaw/plugin-sdk/provider-model-shared";
|
|
9
|
+
import { buildProviderReplayFamilyHooks, normalizeProviderId, resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeOpus5ModelIdentity, resolveClaudeSonnet5ModelIdentity } from "openclaw/plugin-sdk/provider-model-shared";
|
|
10
10
|
import { streamWithPayloadPatch } from "openclaw/plugin-sdk/provider-stream-shared";
|
|
11
11
|
//#region extensions/amazon-bedrock/register.sync.runtime.ts
|
|
12
12
|
function normalizeBedrockResolvedModel({ modelId, model }) {
|
|
@@ -18,6 +18,9 @@ function normalizeBedrockResolvedModel({ modelId, model }) {
|
|
|
18
18
|
}) !== void 0 || resolveClaudeMythos5ModelIdentity({
|
|
19
19
|
id: modelId,
|
|
20
20
|
params: model.params
|
|
21
|
+
}) !== void 0 || resolveClaudeOpus5ModelIdentity({
|
|
22
|
+
id: modelId,
|
|
23
|
+
params: model.params
|
|
21
24
|
}) !== void 0;
|
|
22
25
|
const current = model.thinkingLevelMap;
|
|
23
26
|
const currentEfforts = current;
|
|
@@ -309,6 +312,7 @@ function registerAmazonBedrockPlugin(api) {
|
|
|
309
312
|
params: model?.params
|
|
310
313
|
};
|
|
311
314
|
const fable5 = resolveClaudeFable5ModelIdentity(modelRef) !== void 0;
|
|
315
|
+
const opus5 = resolveClaudeOpus5ModelIdentity(modelRef) !== void 0;
|
|
312
316
|
const sonnet5 = resolveClaudeSonnet5ModelIdentity(modelRef) !== void 0;
|
|
313
317
|
const canonicalModelId = resolveClaudeModelIdentity(modelRef);
|
|
314
318
|
const opus47OrNewer = isOpus47OrNewerBedrockModelRef(modelId) || isOpus47OrNewerBedrockModelRef(canonicalModelId);
|
|
@@ -323,8 +327,8 @@ function registerAmazonBedrockPlugin(api) {
|
|
|
323
327
|
streamFn
|
|
324
328
|
})) ?? void 0;
|
|
325
329
|
const serviceTier = resolveBedrockServiceTier(extraParams, (message) => api.logger.warn(message));
|
|
326
|
-
if (serviceTier && wrapped) if ((fable5 || sonnet5) && serviceTier !== "default") {
|
|
327
|
-
const modelLabel = fable5 ? "Fable 5" : "Sonnet 5";
|
|
330
|
+
if (serviceTier && wrapped) if ((fable5 || opus5 || sonnet5) && serviceTier !== "default") {
|
|
331
|
+
const modelLabel = fable5 ? "Fable 5" : opus5 ? "Opus 5" : "Sonnet 5";
|
|
328
332
|
api.logger.warn(`ignoring unsupported ${modelLabel} Bedrock service tier: ${serviceTier}`);
|
|
329
333
|
} else wrapped = createBedrockServiceTierWrapper(wrapped, serviceTier);
|
|
330
334
|
const region = resolveBedrockRegion(config) ?? extractRegionFromBaseUrl(model?.baseUrl) ?? currentPluginConfig?.discovery?.region;
|
package/dist/stream.runtime.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { supportsBedrockPromptCaching } from "./bedrock-options.js";
|
|
2
2
|
import { supportsBedrockNativeMaxEffort } from "./thinking-policy.js";
|
|
3
|
-
import { requiresClaudeMandatoryAdaptiveThinking, resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeSonnet5ModelIdentity, supportsClaudeAdaptiveThinking, supportsClaudeNativeXhighEffort } from "openclaw/plugin-sdk/provider-model-shared";
|
|
3
|
+
import { requiresClaudeMandatoryAdaptiveThinking, resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeOpus5ModelIdentity, resolveClaudeSonnet5ModelIdentity, supportsClaudeAdaptiveThinking, supportsClaudeNativeXhighEffort } from "openclaw/plugin-sdk/provider-model-shared";
|
|
4
4
|
import { applyAnthropicRefusal, createDeferredEventBuffer, notifyLlmRequestActivity } from "openclaw/plugin-sdk/provider-stream-shared";
|
|
5
5
|
import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
6
6
|
import { BedrockRuntimeClient, BedrockRuntimeServiceException, CachePointType, CacheTTL, ConversationRole, ConverseStreamCommand, ImageFormat, StopReason, ToolResultStatus } from "@aws-sdk/client-bedrock-runtime";
|
|
@@ -17,11 +17,14 @@ import { describeToolResultMediaPlaceholder } from "openclaw/plugin-sdk/provider
|
|
|
17
17
|
function usesClaudeFable5BedrockContract(model) {
|
|
18
18
|
return resolveClaudeFable5ModelIdentity(model) !== void 0;
|
|
19
19
|
}
|
|
20
|
+
function usesClaudeOpus5BedrockContract(model) {
|
|
21
|
+
return resolveClaudeOpus5ModelIdentity(model) !== void 0;
|
|
22
|
+
}
|
|
20
23
|
function usesClaudeSonnet5BedrockContract(model) {
|
|
21
24
|
return resolveClaudeSonnet5ModelIdentity(model) !== void 0;
|
|
22
25
|
}
|
|
23
26
|
function usesClaudeStreamingRefusalBedrockContract(model) {
|
|
24
|
-
return usesClaudeFable5BedrockContract(model) || resolveClaudeMythos5ModelIdentity(model) !== void 0 || usesClaudeSonnet5BedrockContract(model);
|
|
27
|
+
return usesClaudeFable5BedrockContract(model) || resolveClaudeMythos5ModelIdentity(model) !== void 0 || usesClaudeOpus5BedrockContract(model) || usesClaudeSonnet5BedrockContract(model);
|
|
25
28
|
}
|
|
26
29
|
function readBedrockStopDetails(fields) {
|
|
27
30
|
if (!fields || typeof fields !== "object" || Array.isArray(fields)) return;
|
|
@@ -222,7 +225,7 @@ function resolveSimpleBedrockOptions(model, options) {
|
|
|
222
225
|
thinkingBudgets: options?.thinkingBudgets
|
|
223
226
|
};
|
|
224
227
|
if (!options?.reasoning) {
|
|
225
|
-
const reasoning = isAnthropicClaudeModel(model) && requiresMandatoryAdaptiveThinking(model) ? "high" : void 0;
|
|
228
|
+
const reasoning = usesClaudeOpus5BedrockContract(model) || isAnthropicClaudeModel(model) && requiresMandatoryAdaptiveThinking(model) ? "high" : void 0;
|
|
226
229
|
return {
|
|
227
230
|
...base,
|
|
228
231
|
...reasoning !== void 0 ? { maxTokens: resolveAdaptiveBedrockMaxTokens(model, base.maxTokens) } : {},
|
|
@@ -400,7 +403,7 @@ function handleContentBlockStop(event, blocks, output, stream) {
|
|
|
400
403
|
function resolveClaudeProfileNameModelId(modelName) {
|
|
401
404
|
const normalized = modelName?.trim().toLowerCase().replace(/[\s_.:]+/g, "-") ?? "";
|
|
402
405
|
if (!normalized.includes("claude")) return;
|
|
403
|
-
const family = /(?:fable-5|mythos-(?:5|preview)|opus-4-(?:6|7|8)|sonnet-(?:5|4-6))(?:$|-)/.exec(normalized)?.[0];
|
|
406
|
+
const family = /(?:fable-5|mythos-(?:5|preview)|opus-(?:5|4-(?:6|7|8))|sonnet-(?:5|4-6))(?:$|-)/.exec(normalized)?.[0];
|
|
404
407
|
return family ? `claude-${family.replace(/-$/, "")}` : void 0;
|
|
405
408
|
}
|
|
406
409
|
function isClaudeMythosPreviewModelId(modelId) {
|
package/dist/thinking-policy.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeSonnet5ModelIdentity } from "openclaw/plugin-sdk/provider-model-shared";
|
|
1
|
+
import { resolveClaudeFable5ModelIdentity, resolveClaudeModelIdentity, resolveClaudeMythos5ModelIdentity, resolveClaudeOpus5ModelIdentity, resolveClaudeSonnet5ModelIdentity } from "openclaw/plugin-sdk/provider-model-shared";
|
|
2
2
|
//#region extensions/amazon-bedrock/thinking-policy.ts
|
|
3
3
|
const BASE_CLAUDE_THINKING_LEVELS = [
|
|
4
4
|
{ id: "off" },
|
|
@@ -7,6 +7,9 @@ const BASE_CLAUDE_THINKING_LEVELS = [
|
|
|
7
7
|
{ id: "medium" },
|
|
8
8
|
{ id: "high" }
|
|
9
9
|
];
|
|
10
|
+
function isOpus5BedrockModelRef(modelRef) {
|
|
11
|
+
return /(?:^|[/.:])(?:(?:us|eu|ap|apac|au|jp|global)\.)?(?:anthropic\.)?claude-opus-5(?:$|[-.:/])/i.test(modelRef);
|
|
12
|
+
}
|
|
10
13
|
function isOpus48BedrockModelRef(modelRef) {
|
|
11
14
|
return /(?:^|[/.:])(?:(?:us|eu|ap|apac|au|jp|global)\.)?(?:anthropic\.)?claude-opus-4[.-]8(?:$|[-.:/])/i.test(modelRef);
|
|
12
15
|
}
|
|
@@ -19,7 +22,7 @@ function isOpus47BedrockModelRef(modelRef) {
|
|
|
19
22
|
}
|
|
20
23
|
/** Return whether a Bedrock model ref names Claude Opus 4.7 or newer. */
|
|
21
24
|
function isOpus47OrNewerBedrockModelRef(modelRef) {
|
|
22
|
-
return isOpus47BedrockModelRef(modelRef) || isOpus48BedrockModelRef(modelRef);
|
|
25
|
+
return isOpus5BedrockModelRef(modelRef) || isOpus47BedrockModelRef(modelRef) || isOpus48BedrockModelRef(modelRef);
|
|
23
26
|
}
|
|
24
27
|
function isMythosPreviewBedrockModelRef(modelRef) {
|
|
25
28
|
return /(?:^|[/.:])(?:(?:us|eu|ap|apac|au|jp|global)\.)?(?:anthropic\.)?claude-mythos-preview(?:$|[-.:/])/i.test(modelRef);
|
|
@@ -31,7 +34,7 @@ function isLatestAdaptiveBedrockModelRef(modelId, params) {
|
|
|
31
34
|
params
|
|
32
35
|
};
|
|
33
36
|
const canonicalModelId = resolveClaudeModelIdentity(modelRef);
|
|
34
|
-
return resolveClaudeFable5ModelIdentity(modelRef) !== void 0 || resolveClaudeMythos5ModelIdentity(modelRef) !== void 0 || resolveClaudeSonnet5ModelIdentity(modelRef) !== void 0 || [modelId, canonicalModelId].some((candidate) => isOpus47OrNewerBedrockModelRef(candidate) || isMythosPreviewBedrockModelRef(candidate));
|
|
37
|
+
return resolveClaudeFable5ModelIdentity(modelRef) !== void 0 || resolveClaudeMythos5ModelIdentity(modelRef) !== void 0 || resolveClaudeOpus5ModelIdentity(modelRef) !== void 0 || resolveClaudeSonnet5ModelIdentity(modelRef) !== void 0 || [modelId, canonicalModelId].some((candidate) => isOpus47OrNewerBedrockModelRef(candidate) || isMythosPreviewBedrockModelRef(candidate));
|
|
35
38
|
}
|
|
36
39
|
/** Return whether a Bedrock Claude ref supports max effort. */
|
|
37
40
|
function supportsBedrockNativeMaxEffort(modelId, params) {
|
|
@@ -41,6 +44,9 @@ function supportsBedrockNativeMaxEffort(modelId, params) {
|
|
|
41
44
|
}) || resolveClaudeMythos5ModelIdentity({
|
|
42
45
|
id: modelId,
|
|
43
46
|
params
|
|
47
|
+
}) || resolveClaudeOpus5ModelIdentity({
|
|
48
|
+
id: modelId,
|
|
49
|
+
params
|
|
44
50
|
}) || resolveClaudeSonnet5ModelIdentity({
|
|
45
51
|
id: modelId,
|
|
46
52
|
params
|
|
@@ -62,6 +68,10 @@ function resolveBedrockNativeThinkingLevelMap(modelId, params) {
|
|
|
62
68
|
xhigh: "xhigh",
|
|
63
69
|
max: "max"
|
|
64
70
|
};
|
|
71
|
+
if (resolveClaudeOpus5ModelIdentity(modelRef)) return {
|
|
72
|
+
xhigh: "xhigh",
|
|
73
|
+
max: "max"
|
|
74
|
+
};
|
|
65
75
|
if (resolveClaudeSonnet5ModelIdentity(modelRef)) return {
|
|
66
76
|
off: "low",
|
|
67
77
|
minimal: "low",
|
|
@@ -100,6 +110,18 @@ function resolveBedrockClaudeThinkingProfile(modelId, params) {
|
|
|
100
110
|
defaultLevel: "high",
|
|
101
111
|
preserveWhenCatalogReasoningFalse: true
|
|
102
112
|
};
|
|
113
|
+
if (resolveClaudeOpus5ModelIdentity({
|
|
114
|
+
id: trimmed,
|
|
115
|
+
params
|
|
116
|
+
})) return {
|
|
117
|
+
levels: [
|
|
118
|
+
...BASE_CLAUDE_THINKING_LEVELS,
|
|
119
|
+
{ id: "xhigh" },
|
|
120
|
+
{ id: "adaptive" },
|
|
121
|
+
{ id: "max" }
|
|
122
|
+
],
|
|
123
|
+
defaultLevel: "high"
|
|
124
|
+
};
|
|
103
125
|
if (modelRefs.some(isOpus48BedrockModelRef)) return {
|
|
104
126
|
levels: [
|
|
105
127
|
...BASE_CLAUDE_THINKING_LEVELS,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/amazon-bedrock-provider",
|
|
3
|
-
"version": "2026.7.2-beta.
|
|
3
|
+
"version": "2026.7.2-beta.5",
|
|
4
4
|
"description": "OpenClaw Amazon Bedrock provider plugin with model discovery, embeddings, and guardrail support.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"minHostVersion": ">=2026.5.12-beta.1"
|
|
26
26
|
},
|
|
27
27
|
"compat": {
|
|
28
|
-
"pluginApi": ">=2026.7.2-beta.
|
|
28
|
+
"pluginApi": ">=2026.7.2-beta.5"
|
|
29
29
|
},
|
|
30
30
|
"build": {
|
|
31
|
-
"openclawVersion": "2026.7.2-beta.
|
|
31
|
+
"openclawVersion": "2026.7.2-beta.5",
|
|
32
32
|
"bundledDist": false
|
|
33
33
|
},
|
|
34
34
|
"release": {
|
|
@@ -42,11 +42,10 @@
|
|
|
42
42
|
"files": [
|
|
43
43
|
"dist/**",
|
|
44
44
|
"openclaw.plugin.json",
|
|
45
|
-
"npm-shrinkwrap.json",
|
|
46
45
|
"README.md"
|
|
47
46
|
],
|
|
48
47
|
"peerDependencies": {
|
|
49
|
-
"openclaw": ">=2026.7.2-beta.
|
|
48
|
+
"openclaw": ">=2026.7.2-beta.5"
|
|
50
49
|
},
|
|
51
50
|
"peerDependenciesMeta": {
|
|
52
51
|
"openclaw": {
|
package/npm-shrinkwrap.json
DELETED
|
@@ -1,487 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@openclaw/amazon-bedrock-provider",
|
|
3
|
-
"version": "2026.7.2-beta.4",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "@openclaw/amazon-bedrock-provider",
|
|
9
|
-
"version": "2026.7.2-beta.4",
|
|
10
|
-
"dependencies": {
|
|
11
|
-
"@aws-sdk/client-bedrock": "3.1090.0",
|
|
12
|
-
"@aws-sdk/client-bedrock-runtime": "3.1090.0",
|
|
13
|
-
"@aws-sdk/credential-provider-node": "3.972.70",
|
|
14
|
-
"@smithy/node-http-handler": "4.9.7",
|
|
15
|
-
"@smithy/shared-ini-file-loader": "4.6.10",
|
|
16
|
-
"@smithy/types": "4.16.1"
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"node_modules/@aws-sdk/client-bedrock": {
|
|
20
|
-
"version": "3.1090.0",
|
|
21
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock/-/client-bedrock-3.1090.0.tgz",
|
|
22
|
-
"integrity": "sha512-uwal8ZYv6rpGePxTzrq7ac+DwpiIsIV06azvZpEfYb5ufZ2YZ55A/djXZX/fwjq2KmTvPpLdeB782sglbjMnNg==",
|
|
23
|
-
"license": "Apache-2.0",
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"@aws-sdk/core": "^3.975.3",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "^3.972.70",
|
|
27
|
-
"@aws-sdk/token-providers": "3.1090.0",
|
|
28
|
-
"@aws-sdk/types": "^3.974.2",
|
|
29
|
-
"@smithy/core": "^3.29.4",
|
|
30
|
-
"@smithy/fetch-http-handler": "^5.6.6",
|
|
31
|
-
"@smithy/node-http-handler": "^4.9.6",
|
|
32
|
-
"@smithy/types": "^4.16.1",
|
|
33
|
-
"tslib": "^2.6.2"
|
|
34
|
-
},
|
|
35
|
-
"engines": {
|
|
36
|
-
"node": ">=20.0.0"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"node_modules/@aws-sdk/client-bedrock-runtime": {
|
|
40
|
-
"version": "3.1090.0",
|
|
41
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.1090.0.tgz",
|
|
42
|
-
"integrity": "sha512-uFo62YTKik92NxlnExaTU2rH2WQCseW8XvZnBiSab+YWU9pl1URhVsnxY8whUe4EVOuxdAAlgCuChTJo6gZIfQ==",
|
|
43
|
-
"license": "Apache-2.0",
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@aws-sdk/core": "^3.975.3",
|
|
46
|
-
"@aws-sdk/credential-provider-node": "^3.972.70",
|
|
47
|
-
"@aws-sdk/eventstream-handler-node": "^3.972.29",
|
|
48
|
-
"@aws-sdk/middleware-eventstream": "^3.972.24",
|
|
49
|
-
"@aws-sdk/middleware-websocket": "^3.972.41",
|
|
50
|
-
"@aws-sdk/token-providers": "3.1090.0",
|
|
51
|
-
"@aws-sdk/types": "^3.974.2",
|
|
52
|
-
"@smithy/core": "^3.29.4",
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
-
"@smithy/node-http-handler": "^4.9.6",
|
|
55
|
-
"@smithy/types": "^4.16.1",
|
|
56
|
-
"tslib": "^2.6.2"
|
|
57
|
-
},
|
|
58
|
-
"engines": {
|
|
59
|
-
"node": ">=20.0.0"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
"node_modules/@aws-sdk/core": {
|
|
63
|
-
"version": "3.975.3",
|
|
64
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.975.3.tgz",
|
|
65
|
-
"integrity": "sha512-7ur3kCKuvPLqlsZ2XlvnNBVQ7KkpSu6Y6dOTwSPHLrFpTEfZM8isLBJc4cgv96WB7GifeVM436mpycwxBd2vEA==",
|
|
66
|
-
"license": "Apache-2.0",
|
|
67
|
-
"dependencies": {
|
|
68
|
-
"@aws-sdk/types": "^3.974.2",
|
|
69
|
-
"@aws-sdk/xml-builder": "^3.972.36",
|
|
70
|
-
"@aws/lambda-invoke-store": "^0.3.0",
|
|
71
|
-
"@smithy/core": "^3.29.4",
|
|
72
|
-
"@smithy/signature-v4": "^5.6.5",
|
|
73
|
-
"@smithy/types": "^4.16.1",
|
|
74
|
-
"bowser": "^2.11.0",
|
|
75
|
-
"tslib": "^2.6.2"
|
|
76
|
-
},
|
|
77
|
-
"engines": {
|
|
78
|
-
"node": ">=20.0.0"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"node_modules/@aws-sdk/credential-provider-env": {
|
|
82
|
-
"version": "3.972.59",
|
|
83
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.59.tgz",
|
|
84
|
-
"integrity": "sha512-Ny5e4Mfh3QPmiAc0AiUe+cbTXDlxkU3Rc+EpWOfyWeWEy6yp7Fa1KmfNeCc+1a8by9zQ9gtohmiQUkMPScF3ng==",
|
|
85
|
-
"license": "Apache-2.0",
|
|
86
|
-
"dependencies": {
|
|
87
|
-
"@aws-sdk/core": "^3.975.3",
|
|
88
|
-
"@aws-sdk/types": "^3.974.2",
|
|
89
|
-
"@smithy/core": "^3.29.4",
|
|
90
|
-
"@smithy/types": "^4.16.1",
|
|
91
|
-
"tslib": "^2.6.2"
|
|
92
|
-
},
|
|
93
|
-
"engines": {
|
|
94
|
-
"node": ">=20.0.0"
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
"node_modules/@aws-sdk/credential-provider-http": {
|
|
98
|
-
"version": "3.972.61",
|
|
99
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.61.tgz",
|
|
100
|
-
"integrity": "sha512-8jAjgStl5Ytq4+HF3X/9f+EmRinaRbGRRtQGktlPfBRVx73H+R1y48vIeXerQtYGFaUqkEp3fT6jP854rVO2yQ==",
|
|
101
|
-
"license": "Apache-2.0",
|
|
102
|
-
"dependencies": {
|
|
103
|
-
"@aws-sdk/core": "^3.975.3",
|
|
104
|
-
"@aws-sdk/types": "^3.974.2",
|
|
105
|
-
"@smithy/core": "^3.29.4",
|
|
106
|
-
"@smithy/fetch-http-handler": "^5.6.6",
|
|
107
|
-
"@smithy/node-http-handler": "^4.9.6",
|
|
108
|
-
"@smithy/types": "^4.16.1",
|
|
109
|
-
"tslib": "^2.6.2"
|
|
110
|
-
},
|
|
111
|
-
"engines": {
|
|
112
|
-
"node": ">=20.0.0"
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
"node_modules/@aws-sdk/credential-provider-ini": {
|
|
116
|
-
"version": "3.973.4",
|
|
117
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.973.4.tgz",
|
|
118
|
-
"integrity": "sha512-e6ZvVsj90aRALf1kHP+J4iqC1496ZpVgqI/+u0LJ5HL7q7ATauGy4gdDvRCP13L1pN/fMiZLah162PGIYkbUVQ==",
|
|
119
|
-
"license": "Apache-2.0",
|
|
120
|
-
"dependencies": {
|
|
121
|
-
"@aws-sdk/core": "^3.975.3",
|
|
122
|
-
"@aws-sdk/credential-provider-env": "^3.972.59",
|
|
123
|
-
"@aws-sdk/credential-provider-http": "^3.972.61",
|
|
124
|
-
"@aws-sdk/credential-provider-login": "^3.972.66",
|
|
125
|
-
"@aws-sdk/credential-provider-process": "^3.972.59",
|
|
126
|
-
"@aws-sdk/credential-provider-sso": "^3.973.3",
|
|
127
|
-
"@aws-sdk/credential-provider-web-identity": "^3.972.65",
|
|
128
|
-
"@aws-sdk/nested-clients": "^3.997.33",
|
|
129
|
-
"@aws-sdk/types": "^3.974.2",
|
|
130
|
-
"@smithy/core": "^3.29.4",
|
|
131
|
-
"@smithy/credential-provider-imds": "^4.4.9",
|
|
132
|
-
"@smithy/types": "^4.16.1",
|
|
133
|
-
"tslib": "^2.6.2"
|
|
134
|
-
},
|
|
135
|
-
"engines": {
|
|
136
|
-
"node": ">=20.0.0"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
"node_modules/@aws-sdk/credential-provider-login": {
|
|
140
|
-
"version": "3.972.66",
|
|
141
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.66.tgz",
|
|
142
|
-
"integrity": "sha512-g2fsqm87r/nKthLZ0VkkDBElkGg0PvSa8d97HQ6EilMbJTZ6hxa8FxkSZyJfgPfFdZn0TTmkOffQmTSUcAHIng==",
|
|
143
|
-
"license": "Apache-2.0",
|
|
144
|
-
"dependencies": {
|
|
145
|
-
"@aws-sdk/core": "^3.975.3",
|
|
146
|
-
"@aws-sdk/nested-clients": "^3.997.33",
|
|
147
|
-
"@aws-sdk/types": "^3.974.2",
|
|
148
|
-
"@smithy/core": "^3.29.4",
|
|
149
|
-
"@smithy/types": "^4.16.1",
|
|
150
|
-
"tslib": "^2.6.2"
|
|
151
|
-
},
|
|
152
|
-
"engines": {
|
|
153
|
-
"node": ">=20.0.0"
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
"node_modules/@aws-sdk/credential-provider-node": {
|
|
157
|
-
"version": "3.972.70",
|
|
158
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.70.tgz",
|
|
159
|
-
"integrity": "sha512-3xzvkGdykBunxqh8WudmUpSyLWvIhfI6aBQo1b5rb3mDO5mNLadK+0hiI0qBQBMVynJbfLO+Ajy9dztMwy9O8w==",
|
|
160
|
-
"license": "Apache-2.0",
|
|
161
|
-
"dependencies": {
|
|
162
|
-
"@aws-sdk/credential-provider-env": "^3.972.59",
|
|
163
|
-
"@aws-sdk/credential-provider-http": "^3.972.61",
|
|
164
|
-
"@aws-sdk/credential-provider-ini": "^3.973.4",
|
|
165
|
-
"@aws-sdk/credential-provider-process": "^3.972.59",
|
|
166
|
-
"@aws-sdk/credential-provider-sso": "^3.973.3",
|
|
167
|
-
"@aws-sdk/credential-provider-web-identity": "^3.972.65",
|
|
168
|
-
"@aws-sdk/types": "^3.974.2",
|
|
169
|
-
"@smithy/core": "^3.29.4",
|
|
170
|
-
"@smithy/credential-provider-imds": "^4.4.9",
|
|
171
|
-
"@smithy/types": "^4.16.1",
|
|
172
|
-
"tslib": "^2.6.2"
|
|
173
|
-
},
|
|
174
|
-
"engines": {
|
|
175
|
-
"node": ">=20.0.0"
|
|
176
|
-
}
|
|
177
|
-
},
|
|
178
|
-
"node_modules/@aws-sdk/credential-provider-process": {
|
|
179
|
-
"version": "3.972.59",
|
|
180
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.59.tgz",
|
|
181
|
-
"integrity": "sha512-DlZF2/MhLlatDdlrIy3CUCpfdbLrKx+3SMjVo+WyHnPpwzkc/M3vwAHw4OVJf7DMvO+4vfRqSCMc/E9I1auN0g==",
|
|
182
|
-
"license": "Apache-2.0",
|
|
183
|
-
"dependencies": {
|
|
184
|
-
"@aws-sdk/core": "^3.975.3",
|
|
185
|
-
"@aws-sdk/types": "^3.974.2",
|
|
186
|
-
"@smithy/core": "^3.29.4",
|
|
187
|
-
"@smithy/types": "^4.16.1",
|
|
188
|
-
"tslib": "^2.6.2"
|
|
189
|
-
},
|
|
190
|
-
"engines": {
|
|
191
|
-
"node": ">=20.0.0"
|
|
192
|
-
}
|
|
193
|
-
},
|
|
194
|
-
"node_modules/@aws-sdk/credential-provider-sso": {
|
|
195
|
-
"version": "3.973.3",
|
|
196
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.973.3.tgz",
|
|
197
|
-
"integrity": "sha512-hmdDHoy2G5Es2e8IgelNMYUuSQI6uCIAKZMJ2u2PdKDhxvbk1uWD/g4+R7R5c/tJfKEB1+KjjWiaoCr/S+ZTiQ==",
|
|
198
|
-
"license": "Apache-2.0",
|
|
199
|
-
"dependencies": {
|
|
200
|
-
"@aws-sdk/core": "^3.975.3",
|
|
201
|
-
"@aws-sdk/nested-clients": "^3.997.33",
|
|
202
|
-
"@aws-sdk/token-providers": "3.1088.0",
|
|
203
|
-
"@aws-sdk/types": "^3.974.2",
|
|
204
|
-
"@smithy/core": "^3.29.4",
|
|
205
|
-
"@smithy/types": "^4.16.1",
|
|
206
|
-
"tslib": "^2.6.2"
|
|
207
|
-
},
|
|
208
|
-
"engines": {
|
|
209
|
-
"node": ">=20.0.0"
|
|
210
|
-
}
|
|
211
|
-
},
|
|
212
|
-
"node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/token-providers": {
|
|
213
|
-
"version": "3.1088.0",
|
|
214
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1088.0.tgz",
|
|
215
|
-
"integrity": "sha512-4ObatWt2qpJg5FBk4LOOKrTQYzaqeewAtdO3r9ZO8lH9YqLtpTzLyIdy0mJ+nVdfYOnqISkKNfmzP22bNDhwyw==",
|
|
216
|
-
"license": "Apache-2.0",
|
|
217
|
-
"dependencies": {
|
|
218
|
-
"@aws-sdk/core": "^3.975.3",
|
|
219
|
-
"@aws-sdk/nested-clients": "^3.997.33",
|
|
220
|
-
"@aws-sdk/types": "^3.974.2",
|
|
221
|
-
"@smithy/core": "^3.29.4",
|
|
222
|
-
"@smithy/types": "^4.16.1",
|
|
223
|
-
"tslib": "^2.6.2"
|
|
224
|
-
},
|
|
225
|
-
"engines": {
|
|
226
|
-
"node": ">=20.0.0"
|
|
227
|
-
}
|
|
228
|
-
},
|
|
229
|
-
"node_modules/@aws-sdk/credential-provider-web-identity": {
|
|
230
|
-
"version": "3.972.65",
|
|
231
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.65.tgz",
|
|
232
|
-
"integrity": "sha512-gHQb/Kt0chjk/JQDa/GJDqmAvEuVn8n7z10wK2h0LFM9TUDRkohgOO4aEF+s2sBLM0br7Cl5W6P7phgjrrJvLQ==",
|
|
233
|
-
"license": "Apache-2.0",
|
|
234
|
-
"dependencies": {
|
|
235
|
-
"@aws-sdk/core": "^3.975.3",
|
|
236
|
-
"@aws-sdk/nested-clients": "^3.997.33",
|
|
237
|
-
"@aws-sdk/types": "^3.974.2",
|
|
238
|
-
"@smithy/core": "^3.29.4",
|
|
239
|
-
"@smithy/types": "^4.16.1",
|
|
240
|
-
"tslib": "^2.6.2"
|
|
241
|
-
},
|
|
242
|
-
"engines": {
|
|
243
|
-
"node": ">=20.0.0"
|
|
244
|
-
}
|
|
245
|
-
},
|
|
246
|
-
"node_modules/@aws-sdk/eventstream-handler-node": {
|
|
247
|
-
"version": "3.972.29",
|
|
248
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.29.tgz",
|
|
249
|
-
"integrity": "sha512-t3tKQRTVXsI2QNPE3CaNjHl0wRO9Xi3acZkAyti2RQsiFmZ9Gi0kArX2ighlRJ1BtDVuul413gThAgzyTfgmWA==",
|
|
250
|
-
"license": "Apache-2.0",
|
|
251
|
-
"dependencies": {
|
|
252
|
-
"@aws-sdk/types": "^3.974.2",
|
|
253
|
-
"@smithy/core": "^3.29.4",
|
|
254
|
-
"@smithy/types": "^4.16.1",
|
|
255
|
-
"tslib": "^2.6.2"
|
|
256
|
-
},
|
|
257
|
-
"engines": {
|
|
258
|
-
"node": ">=20.0.0"
|
|
259
|
-
}
|
|
260
|
-
},
|
|
261
|
-
"node_modules/@aws-sdk/middleware-eventstream": {
|
|
262
|
-
"version": "3.972.24",
|
|
263
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.24.tgz",
|
|
264
|
-
"integrity": "sha512-oykin4mDWxNOuYQ7SF1cHzgYeuFEkF4cdRwgvjFFbIklkx09qIFBiOgsORafG9sXZFO3TayMmQuAQYgADXhI8w==",
|
|
265
|
-
"license": "Apache-2.0",
|
|
266
|
-
"dependencies": {
|
|
267
|
-
"@aws-sdk/types": "^3.974.2",
|
|
268
|
-
"@smithy/core": "^3.29.4",
|
|
269
|
-
"@smithy/types": "^4.16.1",
|
|
270
|
-
"tslib": "^2.6.2"
|
|
271
|
-
},
|
|
272
|
-
"engines": {
|
|
273
|
-
"node": ">=20.0.0"
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
"node_modules/@aws-sdk/middleware-websocket": {
|
|
277
|
-
"version": "3.972.41",
|
|
278
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.41.tgz",
|
|
279
|
-
"integrity": "sha512-LSbGvvYmjc4Br9BPYI2dTLnIclmrSiQbahkP4D6nRGVEv4qsCZ8csVuKBPVEEFCVD+EEngGh8ROls6XpumtwMg==",
|
|
280
|
-
"license": "Apache-2.0",
|
|
281
|
-
"dependencies": {
|
|
282
|
-
"@aws-sdk/core": "^3.975.3",
|
|
283
|
-
"@aws-sdk/types": "^3.974.2",
|
|
284
|
-
"@smithy/core": "^3.29.4",
|
|
285
|
-
"@smithy/fetch-http-handler": "^5.6.6",
|
|
286
|
-
"@smithy/signature-v4": "^5.6.5",
|
|
287
|
-
"@smithy/types": "^4.16.1",
|
|
288
|
-
"tslib": "^2.6.2"
|
|
289
|
-
},
|
|
290
|
-
"engines": {
|
|
291
|
-
"node": ">= 14.0.0"
|
|
292
|
-
}
|
|
293
|
-
},
|
|
294
|
-
"node_modules/@aws-sdk/nested-clients": {
|
|
295
|
-
"version": "3.997.33",
|
|
296
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.33.tgz",
|
|
297
|
-
"integrity": "sha512-dVZOroI/r3/ENvqNGgjMPul+jjlz9GddfVusgTXlVjfZj5isibOxecLkGQbRPp8XOuX+RAfjXLFgPkD1JS5xrw==",
|
|
298
|
-
"license": "Apache-2.0",
|
|
299
|
-
"dependencies": {
|
|
300
|
-
"@aws-sdk/core": "^3.975.3",
|
|
301
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.41",
|
|
302
|
-
"@aws-sdk/types": "^3.974.2",
|
|
303
|
-
"@smithy/core": "^3.29.4",
|
|
304
|
-
"@smithy/fetch-http-handler": "^5.6.6",
|
|
305
|
-
"@smithy/node-http-handler": "^4.9.6",
|
|
306
|
-
"@smithy/types": "^4.16.1",
|
|
307
|
-
"tslib": "^2.6.2"
|
|
308
|
-
},
|
|
309
|
-
"engines": {
|
|
310
|
-
"node": ">=20.0.0"
|
|
311
|
-
}
|
|
312
|
-
},
|
|
313
|
-
"node_modules/@aws-sdk/signature-v4-multi-region": {
|
|
314
|
-
"version": "3.996.41",
|
|
315
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.41.tgz",
|
|
316
|
-
"integrity": "sha512-QMUytg+FQMGouc8gHS00KoYih3+N6cqmVI/pQGOIo7Nr7OpQaiXjSYOuL+vsPZ1tymY4LAQ8MYcHJmws5LRxng==",
|
|
317
|
-
"license": "Apache-2.0",
|
|
318
|
-
"dependencies": {
|
|
319
|
-
"@aws-sdk/types": "^3.974.2",
|
|
320
|
-
"@smithy/signature-v4": "^5.6.5",
|
|
321
|
-
"@smithy/types": "^4.16.1",
|
|
322
|
-
"tslib": "^2.6.2"
|
|
323
|
-
},
|
|
324
|
-
"engines": {
|
|
325
|
-
"node": ">=20.0.0"
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
"node_modules/@aws-sdk/token-providers": {
|
|
329
|
-
"version": "3.1090.0",
|
|
330
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1090.0.tgz",
|
|
331
|
-
"integrity": "sha512-uwPWr8zRBL1YLiWpIWoEOVj0bgGJ0M4Gfi151lEJroQq/7Lc/phrJVIEnCTEHHa1BIse525BfunmOZLMBfD9OQ==",
|
|
332
|
-
"license": "Apache-2.0",
|
|
333
|
-
"dependencies": {
|
|
334
|
-
"@aws-sdk/core": "^3.975.3",
|
|
335
|
-
"@aws-sdk/nested-clients": "^3.997.33",
|
|
336
|
-
"@aws-sdk/types": "^3.974.2",
|
|
337
|
-
"@smithy/core": "^3.29.4",
|
|
338
|
-
"@smithy/types": "^4.16.1",
|
|
339
|
-
"tslib": "^2.6.2"
|
|
340
|
-
},
|
|
341
|
-
"engines": {
|
|
342
|
-
"node": ">=20.0.0"
|
|
343
|
-
}
|
|
344
|
-
},
|
|
345
|
-
"node_modules/@aws-sdk/types": {
|
|
346
|
-
"version": "3.974.2",
|
|
347
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.974.2.tgz",
|
|
348
|
-
"integrity": "sha512-3W6IUtSxFbH6X7Wb7DzGCV5QiFQsd0g8bOfntpmDxQlzBoKWUMBu/JPQR0DwkE+Hpnxd6db1tXbOwdeHddG6cA==",
|
|
349
|
-
"license": "Apache-2.0",
|
|
350
|
-
"dependencies": {
|
|
351
|
-
"@smithy/types": "^4.16.1",
|
|
352
|
-
"tslib": "^2.6.2"
|
|
353
|
-
},
|
|
354
|
-
"engines": {
|
|
355
|
-
"node": ">=20.0.0"
|
|
356
|
-
}
|
|
357
|
-
},
|
|
358
|
-
"node_modules/@aws-sdk/xml-builder": {
|
|
359
|
-
"version": "3.972.36",
|
|
360
|
-
"resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.36.tgz",
|
|
361
|
-
"integrity": "sha512-RdGmS1GLrtaTOLE1ElSluMldNrpk9Emq6uYs8SS8iHlu5xTAmM9rRkM91o48+rIRryBtyO9t+uLYCoMG6jVMVA==",
|
|
362
|
-
"license": "Apache-2.0",
|
|
363
|
-
"dependencies": {
|
|
364
|
-
"@smithy/types": "^4.16.1",
|
|
365
|
-
"tslib": "^2.6.2"
|
|
366
|
-
},
|
|
367
|
-
"engines": {
|
|
368
|
-
"node": ">=20.0.0"
|
|
369
|
-
}
|
|
370
|
-
},
|
|
371
|
-
"node_modules/@aws/lambda-invoke-store": {
|
|
372
|
-
"version": "0.3.0",
|
|
373
|
-
"resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.3.0.tgz",
|
|
374
|
-
"integrity": "sha512-sl4Bm6yiMNYrZKkqqDFWN0UfnWhlS8ivKxrYl+6t0gCLrqr8y3B2IqZZbFRkfaVVp7C/baApyh71P+LeE1A2sQ==",
|
|
375
|
-
"license": "Apache-2.0",
|
|
376
|
-
"engines": {
|
|
377
|
-
"node": ">=18.0.0"
|
|
378
|
-
}
|
|
379
|
-
},
|
|
380
|
-
"node_modules/@smithy/core": {
|
|
381
|
-
"version": "3.29.6",
|
|
382
|
-
"resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.29.6.tgz",
|
|
383
|
-
"integrity": "sha512-TO3w25cdGWBeYqKNDaqH3v4O3jjMPpKwf39YlG5X5xhqWfpOWJbi5gQi1lrllukuwohdhY0TPB8jBEv6UC50Vg==",
|
|
384
|
-
"license": "Apache-2.0",
|
|
385
|
-
"dependencies": {
|
|
386
|
-
"@smithy/types": "^4.16.1",
|
|
387
|
-
"tslib": "^2.6.2"
|
|
388
|
-
},
|
|
389
|
-
"engines": {
|
|
390
|
-
"node": ">=18.0.0"
|
|
391
|
-
}
|
|
392
|
-
},
|
|
393
|
-
"node_modules/@smithy/credential-provider-imds": {
|
|
394
|
-
"version": "4.4.11",
|
|
395
|
-
"resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.4.11.tgz",
|
|
396
|
-
"integrity": "sha512-6CUvZwS0tCcVCrcvh2TpwTXxmAkuY6JGNPeKODYRLjHtUUhFLGS3dNkNdRvT/ttJyqimqnhFMTS2nqp4pDZ7oQ==",
|
|
397
|
-
"license": "Apache-2.0",
|
|
398
|
-
"dependencies": {
|
|
399
|
-
"@smithy/core": "^3.29.6",
|
|
400
|
-
"@smithy/types": "^4.16.1",
|
|
401
|
-
"tslib": "^2.6.2"
|
|
402
|
-
},
|
|
403
|
-
"engines": {
|
|
404
|
-
"node": ">=18.0.0"
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
"node_modules/@smithy/fetch-http-handler": {
|
|
408
|
-
"version": "5.6.8",
|
|
409
|
-
"resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.6.8.tgz",
|
|
410
|
-
"integrity": "sha512-AFuLou893FesRZeQcKMh87P9x4PF2/ksPOYLLI1ctW7WJxm55SWInFSHAhaNRBPBmbgZyUcCCDKepBX+1jZBBw==",
|
|
411
|
-
"license": "Apache-2.0",
|
|
412
|
-
"dependencies": {
|
|
413
|
-
"@smithy/core": "^3.29.6",
|
|
414
|
-
"@smithy/types": "^4.16.1",
|
|
415
|
-
"tslib": "^2.6.2"
|
|
416
|
-
},
|
|
417
|
-
"engines": {
|
|
418
|
-
"node": ">=18.0.0"
|
|
419
|
-
}
|
|
420
|
-
},
|
|
421
|
-
"node_modules/@smithy/node-http-handler": {
|
|
422
|
-
"version": "4.9.7",
|
|
423
|
-
"resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.9.7.tgz",
|
|
424
|
-
"integrity": "sha512-wCU8HCLjAtAVqxxe0j2xff9LcEPw3yjBbg5IdQDIYFnxnPxbxcSLc7rgex7kqm9L/WYOnJEgaWQlfDkZleozMA==",
|
|
425
|
-
"license": "Apache-2.0",
|
|
426
|
-
"dependencies": {
|
|
427
|
-
"@smithy/core": "^3.29.5",
|
|
428
|
-
"@smithy/types": "^4.16.1",
|
|
429
|
-
"tslib": "^2.6.2"
|
|
430
|
-
},
|
|
431
|
-
"engines": {
|
|
432
|
-
"node": ">=18.0.0"
|
|
433
|
-
}
|
|
434
|
-
},
|
|
435
|
-
"node_modules/@smithy/shared-ini-file-loader": {
|
|
436
|
-
"version": "4.6.10",
|
|
437
|
-
"resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.6.10.tgz",
|
|
438
|
-
"integrity": "sha512-1Z0EugVOVGP8Bz78J1+m2NQfZ3HEqev+6VOf5vbiaT5S4mEiwFS2Gh+sUUazIl0EYlLsyjbXUuiMhD8vAMcBfg==",
|
|
439
|
-
"license": "Apache-2.0",
|
|
440
|
-
"dependencies": {
|
|
441
|
-
"@smithy/core": "^3.29.5",
|
|
442
|
-
"tslib": "^2.6.2"
|
|
443
|
-
},
|
|
444
|
-
"engines": {
|
|
445
|
-
"node": ">=18.0.0"
|
|
446
|
-
}
|
|
447
|
-
},
|
|
448
|
-
"node_modules/@smithy/signature-v4": {
|
|
449
|
-
"version": "5.6.7",
|
|
450
|
-
"resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.6.7.tgz",
|
|
451
|
-
"integrity": "sha512-32PmEsuZV9lz7SZk3gJcm+EfIAoIVu83AJyEzgALpwmSqLvuacdAu0fvCVNMbDbegyk1S0lHUDrMWIfR47Micw==",
|
|
452
|
-
"license": "Apache-2.0",
|
|
453
|
-
"dependencies": {
|
|
454
|
-
"@smithy/core": "^3.29.6",
|
|
455
|
-
"@smithy/types": "^4.16.1",
|
|
456
|
-
"tslib": "^2.6.2"
|
|
457
|
-
},
|
|
458
|
-
"engines": {
|
|
459
|
-
"node": ">=18.0.0"
|
|
460
|
-
}
|
|
461
|
-
},
|
|
462
|
-
"node_modules/@smithy/types": {
|
|
463
|
-
"version": "4.16.1",
|
|
464
|
-
"resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.16.1.tgz",
|
|
465
|
-
"integrity": "sha512-0JFs3V2y2M9tKW5na/qxe69Zv+uxLMO7QBbhxF/FHu/Gp2NFZAAL9tWl9PU02xxo07pb3G9FTyjNc6D5uZrJIg==",
|
|
466
|
-
"license": "Apache-2.0",
|
|
467
|
-
"dependencies": {
|
|
468
|
-
"tslib": "^2.6.2"
|
|
469
|
-
},
|
|
470
|
-
"engines": {
|
|
471
|
-
"node": ">=18.0.0"
|
|
472
|
-
}
|
|
473
|
-
},
|
|
474
|
-
"node_modules/bowser": {
|
|
475
|
-
"version": "2.14.1",
|
|
476
|
-
"resolved": "https://registry.npmjs.org/bowser/-/bowser-2.14.1.tgz",
|
|
477
|
-
"integrity": "sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==",
|
|
478
|
-
"license": "MIT"
|
|
479
|
-
},
|
|
480
|
-
"node_modules/tslib": {
|
|
481
|
-
"version": "2.8.1",
|
|
482
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
483
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
484
|
-
"license": "0BSD"
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
}
|