@aws-sdk/client-rtbfabric 3.975.0 → 3.980.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 +48 -33
- package/dist-es/RTBFabric.js +27 -1
- package/dist-types/RTBFabric.d.ts +71 -1
- package/dist-types/ts3.4/RTBFabric.d.ts +100 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -1243,39 +1243,6 @@ class UpdateResponderGatewayCommand extends smithyClient.Command
|
|
|
1243
1243
|
.build() {
|
|
1244
1244
|
}
|
|
1245
1245
|
|
|
1246
|
-
const commands = {
|
|
1247
|
-
AcceptLinkCommand,
|
|
1248
|
-
CreateInboundExternalLinkCommand,
|
|
1249
|
-
CreateLinkCommand,
|
|
1250
|
-
CreateOutboundExternalLinkCommand,
|
|
1251
|
-
CreateRequesterGatewayCommand,
|
|
1252
|
-
CreateResponderGatewayCommand,
|
|
1253
|
-
DeleteInboundExternalLinkCommand,
|
|
1254
|
-
DeleteLinkCommand,
|
|
1255
|
-
DeleteOutboundExternalLinkCommand,
|
|
1256
|
-
DeleteRequesterGatewayCommand,
|
|
1257
|
-
DeleteResponderGatewayCommand,
|
|
1258
|
-
GetInboundExternalLinkCommand,
|
|
1259
|
-
GetLinkCommand,
|
|
1260
|
-
GetOutboundExternalLinkCommand,
|
|
1261
|
-
GetRequesterGatewayCommand,
|
|
1262
|
-
GetResponderGatewayCommand,
|
|
1263
|
-
ListLinksCommand,
|
|
1264
|
-
ListRequesterGatewaysCommand,
|
|
1265
|
-
ListResponderGatewaysCommand,
|
|
1266
|
-
ListTagsForResourceCommand,
|
|
1267
|
-
RejectLinkCommand,
|
|
1268
|
-
TagResourceCommand,
|
|
1269
|
-
UntagResourceCommand,
|
|
1270
|
-
UpdateLinkCommand,
|
|
1271
|
-
UpdateLinkModuleFlowCommand,
|
|
1272
|
-
UpdateRequesterGatewayCommand,
|
|
1273
|
-
UpdateResponderGatewayCommand,
|
|
1274
|
-
};
|
|
1275
|
-
class RTBFabric extends RTBFabricClient {
|
|
1276
|
-
}
|
|
1277
|
-
smithyClient.createAggregatedClient(commands, RTBFabric);
|
|
1278
|
-
|
|
1279
1246
|
const paginateListLinks = core.createPaginator(RTBFabricClient, ListLinksCommand, "nextToken", "nextToken", "maxResults");
|
|
1280
1247
|
|
|
1281
1248
|
const paginateListRequesterGateways = core.createPaginator(RTBFabricClient, ListRequesterGatewaysCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1702,6 +1669,54 @@ const waitUntilResponderGatewayDeleted = async (params, input) => {
|
|
|
1702
1669
|
return utilWaiter.checkExceptions(result);
|
|
1703
1670
|
};
|
|
1704
1671
|
|
|
1672
|
+
const commands = {
|
|
1673
|
+
AcceptLinkCommand,
|
|
1674
|
+
CreateInboundExternalLinkCommand,
|
|
1675
|
+
CreateLinkCommand,
|
|
1676
|
+
CreateOutboundExternalLinkCommand,
|
|
1677
|
+
CreateRequesterGatewayCommand,
|
|
1678
|
+
CreateResponderGatewayCommand,
|
|
1679
|
+
DeleteInboundExternalLinkCommand,
|
|
1680
|
+
DeleteLinkCommand,
|
|
1681
|
+
DeleteOutboundExternalLinkCommand,
|
|
1682
|
+
DeleteRequesterGatewayCommand,
|
|
1683
|
+
DeleteResponderGatewayCommand,
|
|
1684
|
+
GetInboundExternalLinkCommand,
|
|
1685
|
+
GetLinkCommand,
|
|
1686
|
+
GetOutboundExternalLinkCommand,
|
|
1687
|
+
GetRequesterGatewayCommand,
|
|
1688
|
+
GetResponderGatewayCommand,
|
|
1689
|
+
ListLinksCommand,
|
|
1690
|
+
ListRequesterGatewaysCommand,
|
|
1691
|
+
ListResponderGatewaysCommand,
|
|
1692
|
+
ListTagsForResourceCommand,
|
|
1693
|
+
RejectLinkCommand,
|
|
1694
|
+
TagResourceCommand,
|
|
1695
|
+
UntagResourceCommand,
|
|
1696
|
+
UpdateLinkCommand,
|
|
1697
|
+
UpdateLinkModuleFlowCommand,
|
|
1698
|
+
UpdateRequesterGatewayCommand,
|
|
1699
|
+
UpdateResponderGatewayCommand,
|
|
1700
|
+
};
|
|
1701
|
+
const paginators = {
|
|
1702
|
+
paginateListLinks,
|
|
1703
|
+
paginateListRequesterGateways,
|
|
1704
|
+
paginateListResponderGateways,
|
|
1705
|
+
};
|
|
1706
|
+
const waiters = {
|
|
1707
|
+
waitUntilInboundExternalLinkActive,
|
|
1708
|
+
waitUntilLinkAccepted,
|
|
1709
|
+
waitUntilLinkActive,
|
|
1710
|
+
waitUntilOutboundExternalLinkActive,
|
|
1711
|
+
waitUntilRequesterGatewayActive,
|
|
1712
|
+
waitUntilRequesterGatewayDeleted,
|
|
1713
|
+
waitUntilResponderGatewayActive,
|
|
1714
|
+
waitUntilResponderGatewayDeleted,
|
|
1715
|
+
};
|
|
1716
|
+
class RTBFabric extends RTBFabricClient {
|
|
1717
|
+
}
|
|
1718
|
+
smithyClient.createAggregatedClient(commands, RTBFabric, { paginators, waiters });
|
|
1719
|
+
|
|
1705
1720
|
const ResponderErrorMaskingAction = {
|
|
1706
1721
|
NO_BID: "NO_BID",
|
|
1707
1722
|
PASSTHROUGH: "PASSTHROUGH",
|
package/dist-es/RTBFabric.js
CHANGED
|
@@ -26,7 +26,18 @@ import { UpdateLinkCommand } from "./commands/UpdateLinkCommand";
|
|
|
26
26
|
import { UpdateLinkModuleFlowCommand, } from "./commands/UpdateLinkModuleFlowCommand";
|
|
27
27
|
import { UpdateRequesterGatewayCommand, } from "./commands/UpdateRequesterGatewayCommand";
|
|
28
28
|
import { UpdateResponderGatewayCommand, } from "./commands/UpdateResponderGatewayCommand";
|
|
29
|
+
import { paginateListLinks } from "./pagination/ListLinksPaginator";
|
|
30
|
+
import { paginateListRequesterGateways } from "./pagination/ListRequesterGatewaysPaginator";
|
|
31
|
+
import { paginateListResponderGateways } from "./pagination/ListResponderGatewaysPaginator";
|
|
29
32
|
import { RTBFabricClient } from "./RTBFabricClient";
|
|
33
|
+
import { waitUntilInboundExternalLinkActive } from "./waiters/waitForInboundExternalLinkActive";
|
|
34
|
+
import { waitUntilLinkAccepted } from "./waiters/waitForLinkAccepted";
|
|
35
|
+
import { waitUntilLinkActive } from "./waiters/waitForLinkActive";
|
|
36
|
+
import { waitUntilOutboundExternalLinkActive } from "./waiters/waitForOutboundExternalLinkActive";
|
|
37
|
+
import { waitUntilRequesterGatewayActive } from "./waiters/waitForRequesterGatewayActive";
|
|
38
|
+
import { waitUntilRequesterGatewayDeleted } from "./waiters/waitForRequesterGatewayDeleted";
|
|
39
|
+
import { waitUntilResponderGatewayActive } from "./waiters/waitForResponderGatewayActive";
|
|
40
|
+
import { waitUntilResponderGatewayDeleted } from "./waiters/waitForResponderGatewayDeleted";
|
|
30
41
|
const commands = {
|
|
31
42
|
AcceptLinkCommand,
|
|
32
43
|
CreateInboundExternalLinkCommand,
|
|
@@ -56,6 +67,21 @@ const commands = {
|
|
|
56
67
|
UpdateRequesterGatewayCommand,
|
|
57
68
|
UpdateResponderGatewayCommand,
|
|
58
69
|
};
|
|
70
|
+
const paginators = {
|
|
71
|
+
paginateListLinks,
|
|
72
|
+
paginateListRequesterGateways,
|
|
73
|
+
paginateListResponderGateways,
|
|
74
|
+
};
|
|
75
|
+
const waiters = {
|
|
76
|
+
waitUntilInboundExternalLinkActive,
|
|
77
|
+
waitUntilLinkAccepted,
|
|
78
|
+
waitUntilLinkActive,
|
|
79
|
+
waitUntilOutboundExternalLinkActive,
|
|
80
|
+
waitUntilRequesterGatewayActive,
|
|
81
|
+
waitUntilRequesterGatewayDeleted,
|
|
82
|
+
waitUntilResponderGatewayActive,
|
|
83
|
+
waitUntilResponderGatewayDeleted,
|
|
84
|
+
};
|
|
59
85
|
export class RTBFabric extends RTBFabricClient {
|
|
60
86
|
}
|
|
61
|
-
createAggregatedClient(commands, RTBFabric);
|
|
87
|
+
createAggregatedClient(commands, RTBFabric, { paginators, waiters });
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { AcceptLinkCommandInput, AcceptLinkCommandOutput } from "./commands/AcceptLinkCommand";
|
|
3
4
|
import { CreateInboundExternalLinkCommandInput, CreateInboundExternalLinkCommandOutput } from "./commands/CreateInboundExternalLinkCommand";
|
|
4
5
|
import { CreateLinkCommandInput, CreateLinkCommandOutput } from "./commands/CreateLinkCommand";
|
|
@@ -192,6 +193,75 @@ export interface RTBFabric {
|
|
|
192
193
|
updateResponderGateway(args: UpdateResponderGatewayCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResponderGatewayCommandOutput>;
|
|
193
194
|
updateResponderGateway(args: UpdateResponderGatewayCommandInput, cb: (err: any, data?: UpdateResponderGatewayCommandOutput) => void): void;
|
|
194
195
|
updateResponderGateway(args: UpdateResponderGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResponderGatewayCommandOutput) => void): void;
|
|
196
|
+
/**
|
|
197
|
+
* @see {@link ListLinksCommand}
|
|
198
|
+
* @param args - command input.
|
|
199
|
+
* @param paginationConfig - optional pagination config.
|
|
200
|
+
* @returns AsyncIterable of {@link ListLinksCommandOutput}.
|
|
201
|
+
*/
|
|
202
|
+
paginateListLinks(args: ListLinksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLinksCommandOutput>;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link ListRequesterGatewaysCommand}
|
|
205
|
+
* @param args - command input.
|
|
206
|
+
* @param paginationConfig - optional pagination config.
|
|
207
|
+
* @returns AsyncIterable of {@link ListRequesterGatewaysCommandOutput}.
|
|
208
|
+
*/
|
|
209
|
+
paginateListRequesterGateways(args?: ListRequesterGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRequesterGatewaysCommandOutput>;
|
|
210
|
+
/**
|
|
211
|
+
* @see {@link ListResponderGatewaysCommand}
|
|
212
|
+
* @param args - command input.
|
|
213
|
+
* @param paginationConfig - optional pagination config.
|
|
214
|
+
* @returns AsyncIterable of {@link ListResponderGatewaysCommandOutput}.
|
|
215
|
+
*/
|
|
216
|
+
paginateListResponderGateways(args?: ListResponderGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResponderGatewaysCommandOutput>;
|
|
217
|
+
/**
|
|
218
|
+
* @see {@link GetInboundExternalLinkCommand}
|
|
219
|
+
* @param args - command input.
|
|
220
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
221
|
+
*/
|
|
222
|
+
waitUntilInboundExternalLinkActive(args: GetInboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link GetLinkCommand}
|
|
225
|
+
* @param args - command input.
|
|
226
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
227
|
+
*/
|
|
228
|
+
waitUntilLinkAccepted(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
229
|
+
/**
|
|
230
|
+
* @see {@link GetLinkCommand}
|
|
231
|
+
* @param args - command input.
|
|
232
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
233
|
+
*/
|
|
234
|
+
waitUntilLinkActive(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
235
|
+
/**
|
|
236
|
+
* @see {@link GetOutboundExternalLinkCommand}
|
|
237
|
+
* @param args - command input.
|
|
238
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
239
|
+
*/
|
|
240
|
+
waitUntilOutboundExternalLinkActive(args: GetOutboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
241
|
+
/**
|
|
242
|
+
* @see {@link GetRequesterGatewayCommand}
|
|
243
|
+
* @param args - command input.
|
|
244
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
245
|
+
*/
|
|
246
|
+
waitUntilRequesterGatewayActive(args: GetRequesterGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
247
|
+
/**
|
|
248
|
+
* @see {@link GetRequesterGatewayCommand}
|
|
249
|
+
* @param args - command input.
|
|
250
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
251
|
+
*/
|
|
252
|
+
waitUntilRequesterGatewayDeleted(args: GetRequesterGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
253
|
+
/**
|
|
254
|
+
* @see {@link GetResponderGatewayCommand}
|
|
255
|
+
* @param args - command input.
|
|
256
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
257
|
+
*/
|
|
258
|
+
waitUntilResponderGatewayActive(args: GetResponderGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link GetResponderGatewayCommand}
|
|
261
|
+
* @param args - command input.
|
|
262
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
263
|
+
*/
|
|
264
|
+
waitUntilResponderGatewayDeleted(args: GetResponderGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
|
|
195
265
|
}
|
|
196
266
|
/**
|
|
197
267
|
* <p>Amazon Web Services RTB Fabric provides secure, low-latency infrastructure for connecting real-time bidding (RTB) applications. Rather than hosting applications directly, RTB Fabric acts as the connecting fabric that enables your applications to communicate efficiently over private networks instead of the public internet. You maintain complete control over your applications, data, and bidding decisions, while RTB Fabric provides the underlying infrastructure for secure, reliable connectivity.</p> <p>You can use these APIs to complete RTB Fabric tasks, such as setting up audit log ingestions or viewing user access. For more information about RTB Fabric, including the required permissions to use the service, see the <a href="https://docs.aws.amazon.com/rtb-fabric/latest/userguide/">Amazon Web Services RTB Fabric User Guide</a>.</p>
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
AcceptLinkCommandInput,
|
|
4
10
|
AcceptLinkCommandOutput,
|
|
@@ -462,5 +468,98 @@ export interface RTBFabric {
|
|
|
462
468
|
options: __HttpHandlerOptions,
|
|
463
469
|
cb: (err: any, data?: UpdateResponderGatewayCommandOutput) => void
|
|
464
470
|
): void;
|
|
471
|
+
paginateListLinks(
|
|
472
|
+
args: ListLinksCommandInput,
|
|
473
|
+
paginationConfig?: Pick<
|
|
474
|
+
PaginationConfiguration,
|
|
475
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
476
|
+
>
|
|
477
|
+
): Paginator<ListLinksCommandOutput>;
|
|
478
|
+
paginateListRequesterGateways(
|
|
479
|
+
args?: ListRequesterGatewaysCommandInput,
|
|
480
|
+
paginationConfig?: Pick<
|
|
481
|
+
PaginationConfiguration,
|
|
482
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
483
|
+
>
|
|
484
|
+
): Paginator<ListRequesterGatewaysCommandOutput>;
|
|
485
|
+
paginateListResponderGateways(
|
|
486
|
+
args?: ListResponderGatewaysCommandInput,
|
|
487
|
+
paginationConfig?: Pick<
|
|
488
|
+
PaginationConfiguration,
|
|
489
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
490
|
+
>
|
|
491
|
+
): Paginator<ListResponderGatewaysCommandOutput>;
|
|
492
|
+
waitUntilInboundExternalLinkActive(
|
|
493
|
+
args: GetInboundExternalLinkCommandInput,
|
|
494
|
+
waiterConfig:
|
|
495
|
+
| number
|
|
496
|
+
| Pick<
|
|
497
|
+
WaiterConfiguration<RTBFabric>,
|
|
498
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
499
|
+
>
|
|
500
|
+
): Promise<WaiterResult>;
|
|
501
|
+
waitUntilLinkAccepted(
|
|
502
|
+
args: GetLinkCommandInput,
|
|
503
|
+
waiterConfig:
|
|
504
|
+
| number
|
|
505
|
+
| Pick<
|
|
506
|
+
WaiterConfiguration<RTBFabric>,
|
|
507
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
508
|
+
>
|
|
509
|
+
): Promise<WaiterResult>;
|
|
510
|
+
waitUntilLinkActive(
|
|
511
|
+
args: GetLinkCommandInput,
|
|
512
|
+
waiterConfig:
|
|
513
|
+
| number
|
|
514
|
+
| Pick<
|
|
515
|
+
WaiterConfiguration<RTBFabric>,
|
|
516
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
517
|
+
>
|
|
518
|
+
): Promise<WaiterResult>;
|
|
519
|
+
waitUntilOutboundExternalLinkActive(
|
|
520
|
+
args: GetOutboundExternalLinkCommandInput,
|
|
521
|
+
waiterConfig:
|
|
522
|
+
| number
|
|
523
|
+
| Pick<
|
|
524
|
+
WaiterConfiguration<RTBFabric>,
|
|
525
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
526
|
+
>
|
|
527
|
+
): Promise<WaiterResult>;
|
|
528
|
+
waitUntilRequesterGatewayActive(
|
|
529
|
+
args: GetRequesterGatewayCommandInput,
|
|
530
|
+
waiterConfig:
|
|
531
|
+
| number
|
|
532
|
+
| Pick<
|
|
533
|
+
WaiterConfiguration<RTBFabric>,
|
|
534
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
535
|
+
>
|
|
536
|
+
): Promise<WaiterResult>;
|
|
537
|
+
waitUntilRequesterGatewayDeleted(
|
|
538
|
+
args: GetRequesterGatewayCommandInput,
|
|
539
|
+
waiterConfig:
|
|
540
|
+
| number
|
|
541
|
+
| Pick<
|
|
542
|
+
WaiterConfiguration<RTBFabric>,
|
|
543
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
544
|
+
>
|
|
545
|
+
): Promise<WaiterResult>;
|
|
546
|
+
waitUntilResponderGatewayActive(
|
|
547
|
+
args: GetResponderGatewayCommandInput,
|
|
548
|
+
waiterConfig:
|
|
549
|
+
| number
|
|
550
|
+
| Pick<
|
|
551
|
+
WaiterConfiguration<RTBFabric>,
|
|
552
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
553
|
+
>
|
|
554
|
+
): Promise<WaiterResult>;
|
|
555
|
+
waitUntilResponderGatewayDeleted(
|
|
556
|
+
args: GetResponderGatewayCommandInput,
|
|
557
|
+
waiterConfig:
|
|
558
|
+
| number
|
|
559
|
+
| Pick<
|
|
560
|
+
WaiterConfiguration<RTBFabric>,
|
|
561
|
+
Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
|
|
562
|
+
>
|
|
563
|
+
): Promise<WaiterResult>;
|
|
465
564
|
}
|
|
466
565
|
export declare class RTBFabric extends RTBFabricClient implements RTBFabric {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rtbfabric",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rtbfabric Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rtbfabric",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|