@ampless/mcp-server 0.2.0-alpha.0 → 0.2.0-alpha.2

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 (37) hide show
  1. package/dist/bowser-WRHMEFK3.js +2822 -0
  2. package/dist/chunk-3NCQATCK.js +1385 -0
  3. package/dist/chunk-5PA6IP7O.js +435 -0
  4. package/dist/{chunk-27JGNXJE.js → chunk-6OXXSXKN.js} +8 -37
  5. package/dist/{chunk-YDYRXGHR.js → chunk-A4YPJIDF.js} +3 -3
  6. package/dist/chunk-CVNCRUML.js +1355 -0
  7. package/dist/chunk-IKXKDSVH.js +1414 -0
  8. package/dist/chunk-ISXSZYT4.js +1375 -0
  9. package/dist/{chunk-GSC7CBT2.js → chunk-IW52OUIR.js} +117 -1025
  10. package/dist/chunk-QBXY5RRO.js +3559 -0
  11. package/dist/chunk-UMEQ5ALV.js +14 -0
  12. package/dist/{chunk-OLRXGK7L.js → chunk-YHHXORQ4.js} +48 -32
  13. package/dist/{dist-es-J7V6TEWZ.js → dist-es-3P7CNKGV.js} +15 -16
  14. package/dist/{dist-es-6QUIY4X7.js → dist-es-NAMW5ZZ4.js} +21 -31
  15. package/dist/{dist-es-MQG4P6NF.js → dist-es-OI6XP2CN.js} +9 -10
  16. package/dist/{dist-es-W5H6GQXM.js → dist-es-OO5RVJZO.js} +10 -11
  17. package/dist/{dist-es-NGSDZSP2.js → dist-es-PRQWND46.js} +4 -3
  18. package/dist/{dist-es-2HK4JUU7.js → dist-es-T6J3WJJK.js} +32 -36
  19. package/dist/{dist-es-OYHIBJO3.js → dist-es-ZP52SD4G.js} +27 -32
  20. package/dist/event-streams-WFL2DK34.js +43 -0
  21. package/dist/index.js +2061 -2633
  22. package/dist/{loadSso-3FWOSWL4.js → loadSso-C2Y2WOQK.js} +56 -58
  23. package/dist/{signin-EATRRDTG.js → signin-IY5CLTYR.js} +59 -63
  24. package/dist/{sso-oidc-5GRHV5HA.js → sso-oidc-KZTDOR7Y.js} +59 -63
  25. package/dist/{sts-IMPWC7YM.js → sts-2UABQZ6D.js} +625 -740
  26. package/package.json +3 -3
  27. package/dist/chunk-44FZZOIP.js +0 -14
  28. package/dist/chunk-72G5HA35.js +0 -62
  29. package/dist/chunk-B57O737J.js +0 -52
  30. package/dist/chunk-E6YHJFDU.js +0 -44
  31. package/dist/chunk-FCBONYCH.js +0 -6008
  32. package/dist/chunk-GBNV7FEX.js +0 -164
  33. package/dist/chunk-MQF5MXOW.js +0 -1040
  34. package/dist/chunk-NZ2AQICN.js +0 -29
  35. package/dist/chunk-YVOTBVHL.js +0 -243
  36. package/dist/chunk-ZB7FTU7J.js +0 -39
  37. package/dist/event-streams-6T3GMAVH.js +0 -253
@@ -0,0 +1,435 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ HttpResponse,
4
+ buildQueryString
5
+ } from "./chunk-QBXY5RRO.js";
6
+
7
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js
8
+ import { Agent as hsAgent, request as hsRequest } from "https";
9
+
10
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js
11
+ function buildAbortError(abortSignal) {
12
+ const reason = abortSignal && typeof abortSignal === "object" && "reason" in abortSignal ? abortSignal.reason : void 0;
13
+ if (reason) {
14
+ if (reason instanceof Error) {
15
+ const abortError3 = new Error("Request aborted");
16
+ abortError3.name = "AbortError";
17
+ abortError3.cause = reason;
18
+ return abortError3;
19
+ }
20
+ const abortError2 = new Error(String(reason));
21
+ abortError2.name = "AbortError";
22
+ return abortError2;
23
+ }
24
+ const abortError = new Error("Request aborted");
25
+ abortError.name = "AbortError";
26
+ return abortError;
27
+ }
28
+
29
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/constants.js
30
+ var NODEJS_TIMEOUT_ERROR_CODES = ["ECONNRESET", "EPIPE", "ETIMEDOUT"];
31
+
32
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js
33
+ var getTransformedHeaders = (headers) => {
34
+ const transformedHeaders = {};
35
+ for (const name in headers) {
36
+ const headerValues = headers[name];
37
+ transformedHeaders[name] = Array.isArray(headerValues) ? headerValues.join(",") : headerValues;
38
+ }
39
+ return transformedHeaders;
40
+ };
41
+
42
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/timing.js
43
+ var timing = {
44
+ setTimeout: (cb, ms) => setTimeout(cb, ms),
45
+ clearTimeout: (timeoutId) => clearTimeout(timeoutId)
46
+ };
47
+
48
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js
49
+ var DEFER_EVENT_LISTENER_TIME = 1e3;
50
+ var setConnectionTimeout = (request, reject, timeoutInMs = 0) => {
51
+ if (!timeoutInMs) {
52
+ return -1;
53
+ }
54
+ const registerTimeout = (offset) => {
55
+ const timeoutId = timing.setTimeout(() => {
56
+ request.destroy();
57
+ reject(Object.assign(new Error(`@smithy/node-http-handler - the request socket did not establish a connection with the server within the configured timeout of ${timeoutInMs} ms.`), {
58
+ name: "TimeoutError"
59
+ }));
60
+ }, timeoutInMs - offset);
61
+ const doWithSocket = (socket) => {
62
+ if (socket?.connecting) {
63
+ socket.on("connect", () => {
64
+ timing.clearTimeout(timeoutId);
65
+ });
66
+ } else {
67
+ timing.clearTimeout(timeoutId);
68
+ }
69
+ };
70
+ if (request.socket) {
71
+ doWithSocket(request.socket);
72
+ } else {
73
+ request.on("socket", doWithSocket);
74
+ }
75
+ };
76
+ if (timeoutInMs < 2e3) {
77
+ registerTimeout(0);
78
+ return 0;
79
+ }
80
+ return timing.setTimeout(registerTimeout.bind(null, DEFER_EVENT_LISTENER_TIME), DEFER_EVENT_LISTENER_TIME);
81
+ };
82
+
83
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js
84
+ var setRequestTimeout = (req, reject, timeoutInMs = 0, throwOnRequestTimeout, logger) => {
85
+ if (timeoutInMs) {
86
+ return timing.setTimeout(() => {
87
+ let msg = `@smithy/node-http-handler - [${throwOnRequestTimeout ? "ERROR" : "WARN"}] a request has exceeded the configured ${timeoutInMs} ms requestTimeout.`;
88
+ if (throwOnRequestTimeout) {
89
+ const error = Object.assign(new Error(msg), {
90
+ name: "TimeoutError",
91
+ code: "ETIMEDOUT"
92
+ });
93
+ req.destroy(error);
94
+ reject(error);
95
+ } else {
96
+ msg += ` Init client requestHandler with throwOnRequestTimeout=true to turn this into an error.`;
97
+ logger?.warn?.(msg);
98
+ }
99
+ }, timeoutInMs);
100
+ }
101
+ return -1;
102
+ };
103
+
104
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js
105
+ var DEFER_EVENT_LISTENER_TIME2 = 3e3;
106
+ var setSocketKeepAlive = (request, { keepAlive, keepAliveMsecs }, deferTimeMs = DEFER_EVENT_LISTENER_TIME2) => {
107
+ if (keepAlive !== true) {
108
+ return -1;
109
+ }
110
+ const registerListener = () => {
111
+ if (request.socket) {
112
+ request.socket.setKeepAlive(keepAlive, keepAliveMsecs || 0);
113
+ } else {
114
+ request.on("socket", (socket) => {
115
+ socket.setKeepAlive(keepAlive, keepAliveMsecs || 0);
116
+ });
117
+ }
118
+ };
119
+ if (deferTimeMs === 0) {
120
+ registerListener();
121
+ return 0;
122
+ }
123
+ return timing.setTimeout(registerListener, deferTimeMs);
124
+ };
125
+
126
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js
127
+ var DEFER_EVENT_LISTENER_TIME3 = 3e3;
128
+ var setSocketTimeout = (request, reject, timeoutInMs = 0) => {
129
+ const registerTimeout = (offset) => {
130
+ const timeout = timeoutInMs - offset;
131
+ const onTimeout = () => {
132
+ request.destroy();
133
+ reject(Object.assign(new Error(`@smithy/node-http-handler - the request socket timed out after ${timeoutInMs} ms of inactivity (configured by client requestHandler).`), { name: "TimeoutError" }));
134
+ };
135
+ if (request.socket) {
136
+ request.socket.setTimeout(timeout, onTimeout);
137
+ request.on("close", () => request.socket?.removeListener("timeout", onTimeout));
138
+ } else {
139
+ request.setTimeout(timeout, onTimeout);
140
+ }
141
+ };
142
+ if (0 < timeoutInMs && timeoutInMs < 6e3) {
143
+ registerTimeout(0);
144
+ return 0;
145
+ }
146
+ return timing.setTimeout(registerTimeout.bind(null, timeoutInMs === 0 ? 0 : DEFER_EVENT_LISTENER_TIME3), DEFER_EVENT_LISTENER_TIME3);
147
+ };
148
+
149
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js
150
+ import { Readable } from "stream";
151
+ var MIN_WAIT_TIME = 6e3;
152
+ async function writeRequestBody(httpRequest, request, maxContinueTimeoutMs = MIN_WAIT_TIME, externalAgent = false) {
153
+ const headers = request.headers;
154
+ const expect = headers ? headers.Expect || headers.expect : void 0;
155
+ let timeoutId = -1;
156
+ let sendBody = true;
157
+ if (!externalAgent && expect === "100-continue") {
158
+ sendBody = await Promise.race([
159
+ new Promise((resolve) => {
160
+ timeoutId = Number(timing.setTimeout(() => resolve(true), Math.max(MIN_WAIT_TIME, maxContinueTimeoutMs)));
161
+ }),
162
+ new Promise((resolve) => {
163
+ httpRequest.on("continue", () => {
164
+ timing.clearTimeout(timeoutId);
165
+ resolve(true);
166
+ });
167
+ httpRequest.on("response", () => {
168
+ timing.clearTimeout(timeoutId);
169
+ resolve(false);
170
+ });
171
+ httpRequest.on("error", () => {
172
+ timing.clearTimeout(timeoutId);
173
+ resolve(false);
174
+ });
175
+ })
176
+ ]);
177
+ }
178
+ if (sendBody) {
179
+ writeBody(httpRequest, request.body);
180
+ }
181
+ }
182
+ function writeBody(httpRequest, body) {
183
+ if (body instanceof Readable) {
184
+ body.pipe(httpRequest);
185
+ return;
186
+ }
187
+ if (body) {
188
+ const isBuffer = Buffer.isBuffer(body);
189
+ const isString = typeof body === "string";
190
+ if (isBuffer || isString) {
191
+ if (isBuffer && body.byteLength === 0) {
192
+ httpRequest.end();
193
+ } else {
194
+ httpRequest.end(body);
195
+ }
196
+ return;
197
+ }
198
+ const uint8 = body;
199
+ if (typeof uint8 === "object" && uint8.buffer && typeof uint8.byteOffset === "number" && typeof uint8.byteLength === "number") {
200
+ httpRequest.end(Buffer.from(uint8.buffer, uint8.byteOffset, uint8.byteLength));
201
+ return;
202
+ }
203
+ httpRequest.end(Buffer.from(body));
204
+ return;
205
+ }
206
+ httpRequest.end();
207
+ }
208
+
209
+ // ../../node_modules/.pnpm/@smithy+node-http-handler@4.7.3/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js
210
+ var hAgent = void 0;
211
+ var hRequest = void 0;
212
+ var NodeHttpHandler = class _NodeHttpHandler {
213
+ config;
214
+ configProvider;
215
+ socketWarningTimestamp = 0;
216
+ externalAgent = false;
217
+ metadata = { handlerProtocol: "http/1.1" };
218
+ static create(instanceOrOptions) {
219
+ if (typeof instanceOrOptions?.handle === "function") {
220
+ return instanceOrOptions;
221
+ }
222
+ return new _NodeHttpHandler(instanceOrOptions);
223
+ }
224
+ static checkSocketUsage(agent, socketWarningTimestamp, logger = console) {
225
+ const { sockets, requests, maxSockets } = agent;
226
+ if (typeof maxSockets !== "number" || maxSockets === Infinity) {
227
+ return socketWarningTimestamp;
228
+ }
229
+ const interval = 15e3;
230
+ if (Date.now() - interval < socketWarningTimestamp) {
231
+ return socketWarningTimestamp;
232
+ }
233
+ if (sockets && requests) {
234
+ for (const origin in sockets) {
235
+ const socketsInUse = sockets[origin]?.length ?? 0;
236
+ const requestsEnqueued = requests[origin]?.length ?? 0;
237
+ if (socketsInUse >= maxSockets && requestsEnqueued >= 2 * maxSockets) {
238
+ logger?.warn?.(`@smithy/node-http-handler:WARN - socket usage at capacity=${socketsInUse} and ${requestsEnqueued} additional requests are enqueued.
239
+ See https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/node-configuring-maxsockets.html
240
+ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler config.`);
241
+ return Date.now();
242
+ }
243
+ }
244
+ }
245
+ return socketWarningTimestamp;
246
+ }
247
+ constructor(options) {
248
+ this.configProvider = new Promise((resolve, reject) => {
249
+ if (typeof options === "function") {
250
+ options().then((_options) => {
251
+ resolve(this.resolveDefaultConfig(_options));
252
+ }).catch(reject);
253
+ } else {
254
+ resolve(this.resolveDefaultConfig(options));
255
+ }
256
+ });
257
+ }
258
+ destroy() {
259
+ this.config?.httpAgent?.destroy();
260
+ this.config?.httpsAgent?.destroy();
261
+ }
262
+ async handle(request, { abortSignal, requestTimeout } = {}) {
263
+ if (!this.config) {
264
+ this.config = await this.configProvider;
265
+ }
266
+ const config = this.config;
267
+ const isSSL = request.protocol === "https:";
268
+ if (!isSSL && !this.config.httpAgent) {
269
+ this.config.httpAgent = await this.config.httpAgentProvider();
270
+ }
271
+ return new Promise((_resolve, _reject) => {
272
+ let writeRequestBodyPromise = void 0;
273
+ let socketWarningTimeoutId = -1;
274
+ let connectionTimeoutId = -1;
275
+ let requestTimeoutId = -1;
276
+ let socketTimeoutId = -1;
277
+ let keepAliveTimeoutId = -1;
278
+ const clearTimeouts = () => {
279
+ timing.clearTimeout(socketWarningTimeoutId);
280
+ timing.clearTimeout(connectionTimeoutId);
281
+ timing.clearTimeout(requestTimeoutId);
282
+ timing.clearTimeout(socketTimeoutId);
283
+ timing.clearTimeout(keepAliveTimeoutId);
284
+ };
285
+ const resolve = async (arg) => {
286
+ await writeRequestBodyPromise;
287
+ clearTimeouts();
288
+ _resolve(arg);
289
+ };
290
+ const reject = async (arg) => {
291
+ await writeRequestBodyPromise;
292
+ clearTimeouts();
293
+ _reject(arg);
294
+ };
295
+ if (abortSignal?.aborted) {
296
+ const abortError = buildAbortError(abortSignal);
297
+ reject(abortError);
298
+ return;
299
+ }
300
+ const headers = request.headers;
301
+ const expectContinue = headers ? (headers.Expect ?? headers.expect) === "100-continue" : false;
302
+ let agent = isSSL ? config.httpsAgent : config.httpAgent;
303
+ if (expectContinue && !this.externalAgent) {
304
+ agent = new (isSSL ? hsAgent : hAgent)({
305
+ keepAlive: false,
306
+ maxSockets: Infinity
307
+ });
308
+ }
309
+ socketWarningTimeoutId = timing.setTimeout(() => {
310
+ this.socketWarningTimestamp = _NodeHttpHandler.checkSocketUsage(agent, this.socketWarningTimestamp, config.logger);
311
+ }, config.socketAcquisitionWarningTimeout ?? (config.requestTimeout ?? 2e3) + (config.connectionTimeout ?? 1e3));
312
+ const queryString = request.query ? buildQueryString(request.query) : "";
313
+ let auth = void 0;
314
+ if (request.username != null || request.password != null) {
315
+ const username = request.username ?? "";
316
+ const password = request.password ?? "";
317
+ auth = `${username}:${password}`;
318
+ }
319
+ let path = request.path;
320
+ if (queryString) {
321
+ path += `?${queryString}`;
322
+ }
323
+ if (request.fragment) {
324
+ path += `#${request.fragment}`;
325
+ }
326
+ let hostname = request.hostname ?? "";
327
+ if (hostname[0] === "[" && hostname.endsWith("]")) {
328
+ hostname = request.hostname.slice(1, -1);
329
+ } else {
330
+ hostname = request.hostname;
331
+ }
332
+ const nodeHttpsOptions = {
333
+ headers: request.headers,
334
+ host: hostname,
335
+ method: request.method,
336
+ path,
337
+ port: request.port,
338
+ agent,
339
+ auth
340
+ };
341
+ const requestFunc = isSSL ? hsRequest : hRequest;
342
+ const req = requestFunc(nodeHttpsOptions, (res) => {
343
+ const httpResponse = new HttpResponse({
344
+ statusCode: res.statusCode || -1,
345
+ reason: res.statusMessage,
346
+ headers: getTransformedHeaders(res.headers),
347
+ body: res
348
+ });
349
+ resolve({ response: httpResponse });
350
+ });
351
+ req.on("error", (err) => {
352
+ if (NODEJS_TIMEOUT_ERROR_CODES.includes(err.code)) {
353
+ reject(Object.assign(err, { name: "TimeoutError" }));
354
+ } else {
355
+ reject(err);
356
+ }
357
+ });
358
+ if (abortSignal) {
359
+ const onAbort = () => {
360
+ req.destroy();
361
+ const abortError = buildAbortError(abortSignal);
362
+ reject(abortError);
363
+ };
364
+ if (typeof abortSignal.addEventListener === "function") {
365
+ const signal = abortSignal;
366
+ signal.addEventListener("abort", onAbort, { once: true });
367
+ req.once("close", () => signal.removeEventListener("abort", onAbort));
368
+ } else {
369
+ abortSignal.onabort = onAbort;
370
+ }
371
+ }
372
+ const effectiveRequestTimeout = requestTimeout ?? config.requestTimeout;
373
+ connectionTimeoutId = setConnectionTimeout(req, reject, config.connectionTimeout);
374
+ requestTimeoutId = setRequestTimeout(req, reject, effectiveRequestTimeout, config.throwOnRequestTimeout, config.logger ?? console);
375
+ socketTimeoutId = setSocketTimeout(req, reject, config.socketTimeout);
376
+ const httpAgent = nodeHttpsOptions.agent;
377
+ if (typeof httpAgent === "object" && "keepAlive" in httpAgent) {
378
+ keepAliveTimeoutId = setSocketKeepAlive(req, {
379
+ keepAlive: httpAgent.keepAlive,
380
+ keepAliveMsecs: httpAgent.keepAliveMsecs
381
+ });
382
+ }
383
+ writeRequestBodyPromise = writeRequestBody(req, request, effectiveRequestTimeout, this.externalAgent).catch((e) => {
384
+ clearTimeouts();
385
+ return _reject(e);
386
+ });
387
+ });
388
+ }
389
+ updateHttpClientConfig(key, value) {
390
+ this.config = void 0;
391
+ this.configProvider = this.configProvider.then((config) => {
392
+ return {
393
+ ...config,
394
+ [key]: value
395
+ };
396
+ });
397
+ }
398
+ httpHandlerConfigs() {
399
+ return this.config ?? {};
400
+ }
401
+ resolveDefaultConfig(options) {
402
+ const { requestTimeout, connectionTimeout, socketTimeout, socketAcquisitionWarningTimeout, httpAgent, httpsAgent, throwOnRequestTimeout, logger } = options || {};
403
+ const keepAlive = true;
404
+ const maxSockets = 50;
405
+ return {
406
+ connectionTimeout,
407
+ requestTimeout,
408
+ socketTimeout,
409
+ socketAcquisitionWarningTimeout,
410
+ throwOnRequestTimeout,
411
+ httpAgentProvider: async () => {
412
+ const { Agent, request } = await import("http");
413
+ hRequest = request;
414
+ hAgent = Agent;
415
+ if (httpAgent instanceof hAgent || typeof httpAgent?.destroy === "function") {
416
+ this.externalAgent = true;
417
+ return httpAgent;
418
+ }
419
+ return new hAgent({ keepAlive, maxSockets, ...httpAgent });
420
+ },
421
+ httpsAgent: (() => {
422
+ if (httpsAgent instanceof hsAgent || typeof httpsAgent?.destroy === "function") {
423
+ this.externalAgent = true;
424
+ return httpsAgent;
425
+ }
426
+ return new hsAgent({ keepAlive, maxSockets, ...httpsAgent });
427
+ })(),
428
+ logger
429
+ };
430
+ }
431
+ };
432
+
433
+ export {
434
+ NodeHttpHandler
435
+ };
@@ -1,16 +1,16 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- // ../../node_modules/.pnpm/@smithy+core@3.23.17/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js
3
+ // ../../node_modules/.pnpm/@smithy+core@3.24.3/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js
4
4
  var NoAuthSigner = class {
5
5
  async sign(httpRequest, identity, signingProperties) {
6
6
  return httpRequest;
7
7
  }
8
8
  };
9
9
 
10
- // ../../node_modules/.pnpm/@aws-sdk+nested-clients@3.997.5/node_modules/@aws-sdk/nested-clients/package.json
10
+ // ../../node_modules/.pnpm/@aws-sdk+nested-clients@3.997.9/node_modules/@aws-sdk/nested-clients/package.json
11
11
  var package_default = {
12
12
  name: "@aws-sdk/nested-clients",
13
- version: "3.997.5",
13
+ version: "3.997.9",
14
14
  description: "Nested clients for AWS SDK packages.",
15
15
  main: "./dist-cjs/index.js",
16
16
  module: "./dist-es/index.js",
@@ -39,42 +39,13 @@ var package_default = {
39
39
  dependencies: {
40
40
  "@aws-crypto/sha256-browser": "5.2.0",
41
41
  "@aws-crypto/sha256-js": "5.2.0",
42
- "@aws-sdk/core": "^3.974.7",
43
- "@aws-sdk/middleware-host-header": "^3.972.10",
44
- "@aws-sdk/middleware-logger": "^3.972.10",
45
- "@aws-sdk/middleware-recursion-detection": "^3.972.11",
46
- "@aws-sdk/middleware-user-agent": "^3.972.37",
47
- "@aws-sdk/region-config-resolver": "^3.972.13",
48
- "@aws-sdk/signature-v4-multi-region": "^3.996.24",
42
+ "@aws-sdk/core": "^3.974.11",
43
+ "@aws-sdk/signature-v4-multi-region": "^3.996.27",
49
44
  "@aws-sdk/types": "^3.973.8",
50
- "@aws-sdk/util-endpoints": "^3.996.8",
51
- "@aws-sdk/util-user-agent-browser": "^3.972.10",
52
- "@aws-sdk/util-user-agent-node": "^3.973.23",
53
- "@smithy/config-resolver": "^4.4.17",
54
- "@smithy/core": "^3.23.17",
55
- "@smithy/fetch-http-handler": "^5.3.17",
56
- "@smithy/hash-node": "^4.2.14",
57
- "@smithy/invalid-dependency": "^4.2.14",
58
- "@smithy/middleware-content-length": "^4.2.14",
59
- "@smithy/middleware-endpoint": "^4.4.32",
60
- "@smithy/middleware-retry": "^4.5.7",
61
- "@smithy/middleware-serde": "^4.2.20",
62
- "@smithy/middleware-stack": "^4.2.14",
63
- "@smithy/node-config-provider": "^4.3.14",
64
- "@smithy/node-http-handler": "^4.6.1",
65
- "@smithy/protocol-http": "^5.3.14",
66
- "@smithy/smithy-client": "^4.12.13",
45
+ "@smithy/core": "^3.24.2",
46
+ "@smithy/fetch-http-handler": "^5.4.2",
47
+ "@smithy/node-http-handler": "^4.7.2",
67
48
  "@smithy/types": "^4.14.1",
68
- "@smithy/url-parser": "^4.2.14",
69
- "@smithy/util-base64": "^4.3.2",
70
- "@smithy/util-body-length-browser": "^4.2.2",
71
- "@smithy/util-body-length-node": "^4.2.3",
72
- "@smithy/util-defaults-mode-browser": "^4.3.49",
73
- "@smithy/util-defaults-mode-node": "^4.2.54",
74
- "@smithy/util-endpoints": "^3.4.2",
75
- "@smithy/util-middleware": "^4.2.14",
76
- "@smithy/util-retry": "^4.3.6",
77
- "@smithy/util-utf8": "^4.2.2",
78
49
  tslib: "^2.6.2"
79
50
  },
80
51
  devDependencies: {
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  setCredentialFeature
4
- } from "./chunk-44FZZOIP.js";
4
+ } from "./chunk-ISXSZYT4.js";
5
5
  import {
6
6
  CredentialsProviderError
7
- } from "./chunk-ZB7FTU7J.js";
7
+ } from "./chunk-QBXY5RRO.js";
8
8
 
9
- // ../../node_modules/.pnpm/@aws-sdk+credential-provider-env@3.972.33/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js
9
+ // ../../node_modules/.pnpm/@aws-sdk+credential-provider-env@3.972.37/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js
10
10
  var ENV_KEY = "AWS_ACCESS_KEY_ID";
11
11
  var ENV_SECRET = "AWS_SECRET_ACCESS_KEY";
12
12
  var ENV_SESSION = "AWS_SESSION_TOKEN";