@aws-sdk/client-mturk 3.490.0 → 3.495.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/MTurk.js +1 -89
- package/dist-cjs/MTurkClient.js +1 -43
- package/dist-cjs/commands/AcceptQualificationRequestCommand.js +1 -28
- package/dist-cjs/commands/ApproveAssignmentCommand.js +1 -28
- package/dist-cjs/commands/AssociateQualificationWithWorkerCommand.js +1 -28
- package/dist-cjs/commands/CreateAdditionalAssignmentsForHITCommand.js +1 -28
- package/dist-cjs/commands/CreateHITCommand.js +1 -28
- package/dist-cjs/commands/CreateHITTypeCommand.js +1 -28
- package/dist-cjs/commands/CreateHITWithHITTypeCommand.js +1 -28
- package/dist-cjs/commands/CreateQualificationTypeCommand.js +1 -28
- package/dist-cjs/commands/CreateWorkerBlockCommand.js +1 -28
- package/dist-cjs/commands/DeleteHITCommand.js +1 -28
- package/dist-cjs/commands/DeleteQualificationTypeCommand.js +1 -28
- package/dist-cjs/commands/DeleteWorkerBlockCommand.js +1 -28
- package/dist-cjs/commands/DisassociateQualificationFromWorkerCommand.js +1 -28
- package/dist-cjs/commands/GetAccountBalanceCommand.js +1 -28
- package/dist-cjs/commands/GetAssignmentCommand.js +1 -28
- package/dist-cjs/commands/GetFileUploadURLCommand.js +1 -28
- package/dist-cjs/commands/GetHITCommand.js +1 -28
- package/dist-cjs/commands/GetQualificationScoreCommand.js +1 -28
- package/dist-cjs/commands/GetQualificationTypeCommand.js +1 -28
- package/dist-cjs/commands/ListAssignmentsForHITCommand.js +1 -28
- package/dist-cjs/commands/ListBonusPaymentsCommand.js +1 -28
- package/dist-cjs/commands/ListHITsCommand.js +1 -28
- package/dist-cjs/commands/ListHITsForQualificationTypeCommand.js +1 -28
- package/dist-cjs/commands/ListQualificationRequestsCommand.js +1 -28
- package/dist-cjs/commands/ListQualificationTypesCommand.js +1 -28
- package/dist-cjs/commands/ListReviewPolicyResultsForHITCommand.js +1 -28
- package/dist-cjs/commands/ListReviewableHITsCommand.js +1 -28
- package/dist-cjs/commands/ListWorkerBlocksCommand.js +1 -28
- package/dist-cjs/commands/ListWorkersWithQualificationTypeCommand.js +1 -28
- package/dist-cjs/commands/NotifyWorkersCommand.js +1 -28
- package/dist-cjs/commands/RejectAssignmentCommand.js +1 -28
- package/dist-cjs/commands/RejectQualificationRequestCommand.js +1 -28
- package/dist-cjs/commands/SendBonusCommand.js +1 -28
- package/dist-cjs/commands/SendTestEventNotificationCommand.js +1 -28
- package/dist-cjs/commands/UpdateExpirationForHITCommand.js +1 -28
- package/dist-cjs/commands/UpdateHITReviewStatusCommand.js +1 -28
- package/dist-cjs/commands/UpdateHITTypeOfHITCommand.js +1 -28
- package/dist-cjs/commands/UpdateNotificationSettingsCommand.js +1 -28
- package/dist-cjs/commands/UpdateQualificationTypeCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -42
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3097 -11
- package/dist-cjs/models/MTurkServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -114
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListAssignmentsForHITPaginator.js +1 -7
- package/dist-cjs/pagination/ListBonusPaymentsPaginator.js +1 -7
- package/dist-cjs/pagination/ListHITsForQualificationTypePaginator.js +1 -7
- package/dist-cjs/pagination/ListHITsPaginator.js +1 -7
- package/dist-cjs/pagination/ListQualificationRequestsPaginator.js +1 -7
- package/dist-cjs/pagination/ListQualificationTypesPaginator.js +1 -7
- package/dist-cjs/pagination/ListReviewPolicyResultsForHITPaginator.js +1 -7
- package/dist-cjs/pagination/ListReviewableHITsPaginator.js +1 -7
- package/dist-cjs/pagination/ListWorkerBlocksPaginator.js +1 -7
- package/dist-cjs/pagination/ListWorkersWithQualificationTypePaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -14
- package/dist-cjs/protocols/Aws_json1_1.js +1 -2049
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateNotificationSettingsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateNotificationSettingsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("MTurkRequesterServiceV20170117", "UpdateNotificationSettings", {})
|
|
22
|
-
.n("MTurkClient", "UpdateNotificationSettingsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_UpdateNotificationSettingsCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_UpdateNotificationSettingsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateNotificationSettingsCommand = UpdateNotificationSettingsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateQualificationTypeCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateQualificationTypeCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("MTurkRequesterServiceV20170117", "UpdateQualificationType", {})
|
|
22
|
-
.n("MTurkClient", "UpdateQualificationTypeCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_UpdateQualificationTypeCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_UpdateQualificationTypeCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateQualificationTypeCommand = UpdateQualificationTypeCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,42 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./AcceptQualificationRequestCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ApproveAssignmentCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./AssociateQualificationWithWorkerCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./CreateAdditionalAssignmentsForHITCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./CreateHITCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./CreateHITTypeCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./CreateHITWithHITTypeCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./CreateQualificationTypeCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./CreateWorkerBlockCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./DeleteHITCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./DeleteQualificationTypeCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./DeleteWorkerBlockCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./DisassociateQualificationFromWorkerCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./GetAccountBalanceCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./GetAssignmentCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./GetFileUploadURLCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./GetHITCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./GetQualificationScoreCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./GetQualificationTypeCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./ListAssignmentsForHITCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./ListBonusPaymentsCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./ListHITsCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./ListHITsForQualificationTypeCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./ListQualificationRequestsCommand"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./ListQualificationTypesCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./ListReviewPolicyResultsForHITCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./ListReviewableHITsCommand"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./ListWorkerBlocksCommand"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./ListWorkersWithQualificationTypeCommand"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./NotifyWorkersCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./RejectAssignmentCommand"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./RejectQualificationRequestCommand"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./SendBonusCommand"), exports);
|
|
37
|
-
tslib_1.__exportStar(require("./SendTestEventNotificationCommand"), exports);
|
|
38
|
-
tslib_1.__exportStar(require("./UpdateExpirationForHITCommand"), exports);
|
|
39
|
-
tslib_1.__exportStar(require("./UpdateHITReviewStatusCommand"), exports);
|
|
40
|
-
tslib_1.__exportStar(require("./UpdateHITTypeOfHITCommand"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./UpdateNotificationSettingsCommand"), exports);
|
|
42
|
-
tslib_1.__exportStar(require("./UpdateQualificationTypeCommand"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
-
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
return {
|
|
6
|
-
...options,
|
|
7
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
-
defaultSigningName: "mturk-requester",
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
-
exports.commonParams = {
|
|
14
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
-
Region: { type: "builtInParams", name: "region" },
|
|
17
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("./index.js");
|