@aws-sdk/client-mturk 3.975.0 → 3.978.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 +33 -21
- package/dist-es/MTurk.js +23 -1
- package/dist-types/MTurk.d.ts +71 -1
- package/dist-types/ts3.4/MTurk.d.ts +75 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1556,6 +1556,26 @@ class UpdateQualificationTypeCommand extends smithyClient.Command
|
|
|
1556
1556
|
.build() {
|
|
1557
1557
|
}
|
|
1558
1558
|
|
|
1559
|
+
const paginateListAssignmentsForHIT = core.createPaginator(MTurkClient, ListAssignmentsForHITCommand, "NextToken", "NextToken", "MaxResults");
|
|
1560
|
+
|
|
1561
|
+
const paginateListBonusPayments = core.createPaginator(MTurkClient, ListBonusPaymentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1562
|
+
|
|
1563
|
+
const paginateListHITsForQualificationType = core.createPaginator(MTurkClient, ListHITsForQualificationTypeCommand, "NextToken", "NextToken", "MaxResults");
|
|
1564
|
+
|
|
1565
|
+
const paginateListHITs = core.createPaginator(MTurkClient, ListHITsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1566
|
+
|
|
1567
|
+
const paginateListQualificationRequests = core.createPaginator(MTurkClient, ListQualificationRequestsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1568
|
+
|
|
1569
|
+
const paginateListQualificationTypes = core.createPaginator(MTurkClient, ListQualificationTypesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1570
|
+
|
|
1571
|
+
const paginateListReviewableHITs = core.createPaginator(MTurkClient, ListReviewableHITsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1572
|
+
|
|
1573
|
+
const paginateListReviewPolicyResultsForHIT = core.createPaginator(MTurkClient, ListReviewPolicyResultsForHITCommand, "NextToken", "NextToken", "MaxResults");
|
|
1574
|
+
|
|
1575
|
+
const paginateListWorkerBlocks = core.createPaginator(MTurkClient, ListWorkerBlocksCommand, "NextToken", "NextToken", "MaxResults");
|
|
1576
|
+
|
|
1577
|
+
const paginateListWorkersWithQualificationType = core.createPaginator(MTurkClient, ListWorkersWithQualificationTypeCommand, "NextToken", "NextToken", "MaxResults");
|
|
1578
|
+
|
|
1559
1579
|
const commands = {
|
|
1560
1580
|
AcceptQualificationRequestCommand,
|
|
1561
1581
|
ApproveAssignmentCommand,
|
|
@@ -1597,29 +1617,21 @@ const commands = {
|
|
|
1597
1617
|
UpdateNotificationSettingsCommand,
|
|
1598
1618
|
UpdateQualificationTypeCommand,
|
|
1599
1619
|
};
|
|
1620
|
+
const paginators = {
|
|
1621
|
+
paginateListAssignmentsForHIT,
|
|
1622
|
+
paginateListBonusPayments,
|
|
1623
|
+
paginateListHITs,
|
|
1624
|
+
paginateListHITsForQualificationType,
|
|
1625
|
+
paginateListQualificationRequests,
|
|
1626
|
+
paginateListQualificationTypes,
|
|
1627
|
+
paginateListReviewableHITs,
|
|
1628
|
+
paginateListReviewPolicyResultsForHIT,
|
|
1629
|
+
paginateListWorkerBlocks,
|
|
1630
|
+
paginateListWorkersWithQualificationType,
|
|
1631
|
+
};
|
|
1600
1632
|
class MTurk extends MTurkClient {
|
|
1601
1633
|
}
|
|
1602
|
-
smithyClient.createAggregatedClient(commands, MTurk);
|
|
1603
|
-
|
|
1604
|
-
const paginateListAssignmentsForHIT = core.createPaginator(MTurkClient, ListAssignmentsForHITCommand, "NextToken", "NextToken", "MaxResults");
|
|
1605
|
-
|
|
1606
|
-
const paginateListBonusPayments = core.createPaginator(MTurkClient, ListBonusPaymentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1607
|
-
|
|
1608
|
-
const paginateListHITs = core.createPaginator(MTurkClient, ListHITsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1609
|
-
|
|
1610
|
-
const paginateListHITsForQualificationType = core.createPaginator(MTurkClient, ListHITsForQualificationTypeCommand, "NextToken", "NextToken", "MaxResults");
|
|
1611
|
-
|
|
1612
|
-
const paginateListQualificationRequests = core.createPaginator(MTurkClient, ListQualificationRequestsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1613
|
-
|
|
1614
|
-
const paginateListQualificationTypes = core.createPaginator(MTurkClient, ListQualificationTypesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1615
|
-
|
|
1616
|
-
const paginateListReviewableHITs = core.createPaginator(MTurkClient, ListReviewableHITsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1617
|
-
|
|
1618
|
-
const paginateListReviewPolicyResultsForHIT = core.createPaginator(MTurkClient, ListReviewPolicyResultsForHITCommand, "NextToken", "NextToken", "MaxResults");
|
|
1619
|
-
|
|
1620
|
-
const paginateListWorkerBlocks = core.createPaginator(MTurkClient, ListWorkerBlocksCommand, "NextToken", "NextToken", "MaxResults");
|
|
1621
|
-
|
|
1622
|
-
const paginateListWorkersWithQualificationType = core.createPaginator(MTurkClient, ListWorkersWithQualificationTypeCommand, "NextToken", "NextToken", "MaxResults");
|
|
1634
|
+
smithyClient.createAggregatedClient(commands, MTurk, { paginators });
|
|
1623
1635
|
|
|
1624
1636
|
const AssignmentStatus = {
|
|
1625
1637
|
Approved: "Approved",
|
package/dist-es/MTurk.js
CHANGED
|
@@ -39,6 +39,16 @@ import { UpdateHITTypeOfHITCommand, } from "./commands/UpdateHITTypeOfHITCommand
|
|
|
39
39
|
import { UpdateNotificationSettingsCommand, } from "./commands/UpdateNotificationSettingsCommand";
|
|
40
40
|
import { UpdateQualificationTypeCommand, } from "./commands/UpdateQualificationTypeCommand";
|
|
41
41
|
import { MTurkClient } from "./MTurkClient";
|
|
42
|
+
import { paginateListAssignmentsForHIT } from "./pagination/ListAssignmentsForHITPaginator";
|
|
43
|
+
import { paginateListBonusPayments } from "./pagination/ListBonusPaymentsPaginator";
|
|
44
|
+
import { paginateListHITsForQualificationType } from "./pagination/ListHITsForQualificationTypePaginator";
|
|
45
|
+
import { paginateListHITs } from "./pagination/ListHITsPaginator";
|
|
46
|
+
import { paginateListQualificationRequests } from "./pagination/ListQualificationRequestsPaginator";
|
|
47
|
+
import { paginateListQualificationTypes } from "./pagination/ListQualificationTypesPaginator";
|
|
48
|
+
import { paginateListReviewableHITs } from "./pagination/ListReviewableHITsPaginator";
|
|
49
|
+
import { paginateListReviewPolicyResultsForHIT } from "./pagination/ListReviewPolicyResultsForHITPaginator";
|
|
50
|
+
import { paginateListWorkerBlocks } from "./pagination/ListWorkerBlocksPaginator";
|
|
51
|
+
import { paginateListWorkersWithQualificationType } from "./pagination/ListWorkersWithQualificationTypePaginator";
|
|
42
52
|
const commands = {
|
|
43
53
|
AcceptQualificationRequestCommand,
|
|
44
54
|
ApproveAssignmentCommand,
|
|
@@ -80,6 +90,18 @@ const commands = {
|
|
|
80
90
|
UpdateNotificationSettingsCommand,
|
|
81
91
|
UpdateQualificationTypeCommand,
|
|
82
92
|
};
|
|
93
|
+
const paginators = {
|
|
94
|
+
paginateListAssignmentsForHIT,
|
|
95
|
+
paginateListBonusPayments,
|
|
96
|
+
paginateListHITs,
|
|
97
|
+
paginateListHITsForQualificationType,
|
|
98
|
+
paginateListQualificationRequests,
|
|
99
|
+
paginateListQualificationTypes,
|
|
100
|
+
paginateListReviewableHITs,
|
|
101
|
+
paginateListReviewPolicyResultsForHIT,
|
|
102
|
+
paginateListWorkerBlocks,
|
|
103
|
+
paginateListWorkersWithQualificationType,
|
|
104
|
+
};
|
|
83
105
|
export class MTurk extends MTurkClient {
|
|
84
106
|
}
|
|
85
|
-
createAggregatedClient(commands, MTurk);
|
|
107
|
+
createAggregatedClient(commands, MTurk, { paginators });
|
package/dist-types/MTurk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AcceptQualificationRequestCommandInput, AcceptQualificationRequestCommandOutput } from "./commands/AcceptQualificationRequestCommand";
|
|
3
3
|
import { ApproveAssignmentCommandInput, ApproveAssignmentCommandOutput } from "./commands/ApproveAssignmentCommand";
|
|
4
4
|
import { AssociateQualificationWithWorkerCommandInput, AssociateQualificationWithWorkerCommandOutput } from "./commands/AssociateQualificationWithWorkerCommand";
|
|
@@ -280,6 +280,76 @@ export interface MTurk {
|
|
|
280
280
|
updateQualificationType(args: UpdateQualificationTypeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateQualificationTypeCommandOutput>;
|
|
281
281
|
updateQualificationType(args: UpdateQualificationTypeCommandInput, cb: (err: any, data?: UpdateQualificationTypeCommandOutput) => void): void;
|
|
282
282
|
updateQualificationType(args: UpdateQualificationTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQualificationTypeCommandOutput) => void): void;
|
|
283
|
+
/**
|
|
284
|
+
* @see {@link ListAssignmentsForHITCommand}
|
|
285
|
+
* @param args - command input.
|
|
286
|
+
* @param paginationConfig - optional pagination config.
|
|
287
|
+
* @returns AsyncIterable of {@link ListAssignmentsForHITCommandOutput}.
|
|
288
|
+
*/
|
|
289
|
+
paginateListAssignmentsForHIT(args: ListAssignmentsForHITCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssignmentsForHITCommandOutput>;
|
|
290
|
+
/**
|
|
291
|
+
* @see {@link ListBonusPaymentsCommand}
|
|
292
|
+
* @param args - command input.
|
|
293
|
+
* @param paginationConfig - optional pagination config.
|
|
294
|
+
* @returns AsyncIterable of {@link ListBonusPaymentsCommandOutput}.
|
|
295
|
+
*/
|
|
296
|
+
paginateListBonusPayments(args?: ListBonusPaymentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBonusPaymentsCommandOutput>;
|
|
297
|
+
/**
|
|
298
|
+
* @see {@link ListHITsCommand}
|
|
299
|
+
* @param args - command input.
|
|
300
|
+
* @param paginationConfig - optional pagination config.
|
|
301
|
+
* @returns AsyncIterable of {@link ListHITsCommandOutput}.
|
|
302
|
+
*/
|
|
303
|
+
paginateListHITs(args?: ListHITsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListHITsCommandOutput>;
|
|
304
|
+
/**
|
|
305
|
+
* @see {@link ListHITsForQualificationTypeCommand}
|
|
306
|
+
* @param args - command input.
|
|
307
|
+
* @param paginationConfig - optional pagination config.
|
|
308
|
+
* @returns AsyncIterable of {@link ListHITsForQualificationTypeCommandOutput}.
|
|
309
|
+
*/
|
|
310
|
+
paginateListHITsForQualificationType(args: ListHITsForQualificationTypeCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListHITsForQualificationTypeCommandOutput>;
|
|
311
|
+
/**
|
|
312
|
+
* @see {@link ListQualificationRequestsCommand}
|
|
313
|
+
* @param args - command input.
|
|
314
|
+
* @param paginationConfig - optional pagination config.
|
|
315
|
+
* @returns AsyncIterable of {@link ListQualificationRequestsCommandOutput}.
|
|
316
|
+
*/
|
|
317
|
+
paginateListQualificationRequests(args?: ListQualificationRequestsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQualificationRequestsCommandOutput>;
|
|
318
|
+
/**
|
|
319
|
+
* @see {@link ListQualificationTypesCommand}
|
|
320
|
+
* @param args - command input.
|
|
321
|
+
* @param paginationConfig - optional pagination config.
|
|
322
|
+
* @returns AsyncIterable of {@link ListQualificationTypesCommandOutput}.
|
|
323
|
+
*/
|
|
324
|
+
paginateListQualificationTypes(args: ListQualificationTypesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQualificationTypesCommandOutput>;
|
|
325
|
+
/**
|
|
326
|
+
* @see {@link ListReviewableHITsCommand}
|
|
327
|
+
* @param args - command input.
|
|
328
|
+
* @param paginationConfig - optional pagination config.
|
|
329
|
+
* @returns AsyncIterable of {@link ListReviewableHITsCommandOutput}.
|
|
330
|
+
*/
|
|
331
|
+
paginateListReviewableHITs(args?: ListReviewableHITsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReviewableHITsCommandOutput>;
|
|
332
|
+
/**
|
|
333
|
+
* @see {@link ListReviewPolicyResultsForHITCommand}
|
|
334
|
+
* @param args - command input.
|
|
335
|
+
* @param paginationConfig - optional pagination config.
|
|
336
|
+
* @returns AsyncIterable of {@link ListReviewPolicyResultsForHITCommandOutput}.
|
|
337
|
+
*/
|
|
338
|
+
paginateListReviewPolicyResultsForHIT(args: ListReviewPolicyResultsForHITCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReviewPolicyResultsForHITCommandOutput>;
|
|
339
|
+
/**
|
|
340
|
+
* @see {@link ListWorkerBlocksCommand}
|
|
341
|
+
* @param args - command input.
|
|
342
|
+
* @param paginationConfig - optional pagination config.
|
|
343
|
+
* @returns AsyncIterable of {@link ListWorkerBlocksCommandOutput}.
|
|
344
|
+
*/
|
|
345
|
+
paginateListWorkerBlocks(args?: ListWorkerBlocksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkerBlocksCommandOutput>;
|
|
346
|
+
/**
|
|
347
|
+
* @see {@link ListWorkersWithQualificationTypeCommand}
|
|
348
|
+
* @param args - command input.
|
|
349
|
+
* @param paginationConfig - optional pagination config.
|
|
350
|
+
* @returns AsyncIterable of {@link ListWorkersWithQualificationTypeCommandOutput}.
|
|
351
|
+
*/
|
|
352
|
+
paginateListWorkersWithQualificationType(args: ListWorkersWithQualificationTypeCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkersWithQualificationTypeCommandOutput>;
|
|
283
353
|
}
|
|
284
354
|
/**
|
|
285
355
|
* <fullname>Amazon Mechanical Turk API Reference</fullname>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AcceptQualificationRequestCommandInput,
|
|
4
8
|
AcceptQualificationRequestCommandOutput,
|
|
@@ -682,5 +686,75 @@ export interface MTurk {
|
|
|
682
686
|
options: __HttpHandlerOptions,
|
|
683
687
|
cb: (err: any, data?: UpdateQualificationTypeCommandOutput) => void
|
|
684
688
|
): void;
|
|
689
|
+
paginateListAssignmentsForHIT(
|
|
690
|
+
args: ListAssignmentsForHITCommandInput,
|
|
691
|
+
paginationConfig?: Pick<
|
|
692
|
+
PaginationConfiguration,
|
|
693
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
694
|
+
>
|
|
695
|
+
): Paginator<ListAssignmentsForHITCommandOutput>;
|
|
696
|
+
paginateListBonusPayments(
|
|
697
|
+
args?: ListBonusPaymentsCommandInput,
|
|
698
|
+
paginationConfig?: Pick<
|
|
699
|
+
PaginationConfiguration,
|
|
700
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
701
|
+
>
|
|
702
|
+
): Paginator<ListBonusPaymentsCommandOutput>;
|
|
703
|
+
paginateListHITs(
|
|
704
|
+
args?: ListHITsCommandInput,
|
|
705
|
+
paginationConfig?: Pick<
|
|
706
|
+
PaginationConfiguration,
|
|
707
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
708
|
+
>
|
|
709
|
+
): Paginator<ListHITsCommandOutput>;
|
|
710
|
+
paginateListHITsForQualificationType(
|
|
711
|
+
args: ListHITsForQualificationTypeCommandInput,
|
|
712
|
+
paginationConfig?: Pick<
|
|
713
|
+
PaginationConfiguration,
|
|
714
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
715
|
+
>
|
|
716
|
+
): Paginator<ListHITsForQualificationTypeCommandOutput>;
|
|
717
|
+
paginateListQualificationRequests(
|
|
718
|
+
args?: ListQualificationRequestsCommandInput,
|
|
719
|
+
paginationConfig?: Pick<
|
|
720
|
+
PaginationConfiguration,
|
|
721
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
722
|
+
>
|
|
723
|
+
): Paginator<ListQualificationRequestsCommandOutput>;
|
|
724
|
+
paginateListQualificationTypes(
|
|
725
|
+
args: ListQualificationTypesCommandInput,
|
|
726
|
+
paginationConfig?: Pick<
|
|
727
|
+
PaginationConfiguration,
|
|
728
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
729
|
+
>
|
|
730
|
+
): Paginator<ListQualificationTypesCommandOutput>;
|
|
731
|
+
paginateListReviewableHITs(
|
|
732
|
+
args?: ListReviewableHITsCommandInput,
|
|
733
|
+
paginationConfig?: Pick<
|
|
734
|
+
PaginationConfiguration,
|
|
735
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
736
|
+
>
|
|
737
|
+
): Paginator<ListReviewableHITsCommandOutput>;
|
|
738
|
+
paginateListReviewPolicyResultsForHIT(
|
|
739
|
+
args: ListReviewPolicyResultsForHITCommandInput,
|
|
740
|
+
paginationConfig?: Pick<
|
|
741
|
+
PaginationConfiguration,
|
|
742
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
743
|
+
>
|
|
744
|
+
): Paginator<ListReviewPolicyResultsForHITCommandOutput>;
|
|
745
|
+
paginateListWorkerBlocks(
|
|
746
|
+
args?: ListWorkerBlocksCommandInput,
|
|
747
|
+
paginationConfig?: Pick<
|
|
748
|
+
PaginationConfiguration,
|
|
749
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
750
|
+
>
|
|
751
|
+
): Paginator<ListWorkerBlocksCommandOutput>;
|
|
752
|
+
paginateListWorkersWithQualificationType(
|
|
753
|
+
args: ListWorkersWithQualificationTypeCommandInput,
|
|
754
|
+
paginationConfig?: Pick<
|
|
755
|
+
PaginationConfiguration,
|
|
756
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
757
|
+
>
|
|
758
|
+
): Paginator<ListWorkersWithQualificationTypeCommandOutput>;
|
|
685
759
|
}
|
|
686
760
|
export declare class MTurk extends MTurkClient implements MTurk {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mturk",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mturk Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.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-mturk",
|
|
@@ -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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
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",
|