@aws-sdk/client-mturk 3.952.0 → 3.953.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 +442 -283
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AcceptQualificationRequestCommand.js +2 -2
- package/dist-es/commands/ApproveAssignmentCommand.js +2 -2
- package/dist-es/commands/AssociateQualificationWithWorkerCommand.js +2 -2
- package/dist-es/commands/CreateAdditionalAssignmentsForHITCommand.js +2 -2
- package/dist-es/commands/CreateHITCommand.js +2 -2
- package/dist-es/commands/CreateHITTypeCommand.js +2 -2
- package/dist-es/commands/CreateHITWithHITTypeCommand.js +2 -2
- package/dist-es/commands/CreateQualificationTypeCommand.js +2 -2
- package/dist-es/commands/CreateWorkerBlockCommand.js +2 -2
- package/dist-es/commands/DeleteHITCommand.js +2 -2
- package/dist-es/commands/DeleteQualificationTypeCommand.js +2 -2
- package/dist-es/commands/DeleteWorkerBlockCommand.js +2 -2
- package/dist-es/commands/DisassociateQualificationFromWorkerCommand.js +2 -2
- package/dist-es/commands/GetAccountBalanceCommand.js +2 -2
- package/dist-es/commands/GetAssignmentCommand.js +2 -2
- package/dist-es/commands/GetFileUploadURLCommand.js +2 -2
- package/dist-es/commands/GetHITCommand.js +2 -2
- package/dist-es/commands/GetQualificationScoreCommand.js +2 -2
- package/dist-es/commands/GetQualificationTypeCommand.js +2 -2
- package/dist-es/commands/ListAssignmentsForHITCommand.js +2 -2
- package/dist-es/commands/ListBonusPaymentsCommand.js +2 -2
- package/dist-es/commands/ListHITsCommand.js +2 -2
- package/dist-es/commands/ListHITsForQualificationTypeCommand.js +2 -2
- package/dist-es/commands/ListQualificationRequestsCommand.js +2 -2
- package/dist-es/commands/ListQualificationTypesCommand.js +2 -2
- package/dist-es/commands/ListReviewPolicyResultsForHITCommand.js +2 -2
- package/dist-es/commands/ListReviewableHITsCommand.js +2 -2
- package/dist-es/commands/ListWorkerBlocksCommand.js +2 -2
- package/dist-es/commands/ListWorkersWithQualificationTypeCommand.js +2 -2
- package/dist-es/commands/NotifyWorkersCommand.js +2 -2
- package/dist-es/commands/RejectAssignmentCommand.js +2 -2
- package/dist-es/commands/RejectQualificationRequestCommand.js +2 -2
- package/dist-es/commands/SendBonusCommand.js +2 -2
- package/dist-es/commands/SendTestEventNotificationCommand.js +2 -2
- package/dist-es/commands/UpdateExpirationForHITCommand.js +2 -2
- package/dist-es/commands/UpdateHITReviewStatusCommand.js +2 -2
- package/dist-es/commands/UpdateHITTypeOfHITCommand.js +2 -2
- package/dist-es/commands/UpdateNotificationSettingsCommand.js +2 -2
- package/dist-es/commands/UpdateQualificationTypeCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +263 -242
- package/dist-types/MTurkClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +139 -160
- package/dist-types/ts3.4/MTurkClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -160
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.mturk",
|
|
32
|
+
xmlNamespace: "http://requester.mturk.com/2017-01-17/",
|
|
33
|
+
version: "2017-01-17",
|
|
34
|
+
serviceTarget: "MTurkRequesterServiceV20170117",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "MTurk",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AcceptQualificationRequest } from "../schemas/schemas_0";
|
|
4
|
+
import { AcceptQualificationRequest$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AcceptQualificationRequestCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AcceptQualificationRequestCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "AcceptQualificationRequest", {})
|
|
13
13
|
.n("MTurkClient", "AcceptQualificationRequestCommand")
|
|
14
|
-
.sc(AcceptQualificationRequest)
|
|
14
|
+
.sc(AcceptQualificationRequest$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ApproveAssignment } from "../schemas/schemas_0";
|
|
4
|
+
import { ApproveAssignment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ApproveAssignmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ApproveAssignmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ApproveAssignment", {})
|
|
13
13
|
.n("MTurkClient", "ApproveAssignmentCommand")
|
|
14
|
-
.sc(ApproveAssignment)
|
|
14
|
+
.sc(ApproveAssignment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateQualificationWithWorker } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateQualificationWithWorker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateQualificationWithWorkerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateQualificationWithWorkerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "AssociateQualificationWithWorker", {})
|
|
13
13
|
.n("MTurkClient", "AssociateQualificationWithWorkerCommand")
|
|
14
|
-
.sc(AssociateQualificationWithWorker)
|
|
14
|
+
.sc(AssociateQualificationWithWorker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAdditionalAssignmentsForHIT } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAdditionalAssignmentsForHIT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAdditionalAssignmentsForHITCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAdditionalAssignmentsForHITCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "CreateAdditionalAssignmentsForHIT", {})
|
|
13
13
|
.n("MTurkClient", "CreateAdditionalAssignmentsForHITCommand")
|
|
14
|
-
.sc(CreateAdditionalAssignmentsForHIT)
|
|
14
|
+
.sc(CreateAdditionalAssignmentsForHIT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateHIT } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateHIT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateHITCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateHITCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "CreateHIT", {})
|
|
13
13
|
.n("MTurkClient", "CreateHITCommand")
|
|
14
|
-
.sc(CreateHIT)
|
|
14
|
+
.sc(CreateHIT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateHITType } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateHITType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateHITTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateHITTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "CreateHITType", {})
|
|
13
13
|
.n("MTurkClient", "CreateHITTypeCommand")
|
|
14
|
-
.sc(CreateHITType)
|
|
14
|
+
.sc(CreateHITType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateHITWithHITType } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateHITWithHITType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateHITWithHITTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateHITWithHITTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "CreateHITWithHITType", {})
|
|
13
13
|
.n("MTurkClient", "CreateHITWithHITTypeCommand")
|
|
14
|
-
.sc(CreateHITWithHITType)
|
|
14
|
+
.sc(CreateHITWithHITType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateQualificationType } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateQualificationType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateQualificationTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateQualificationTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "CreateQualificationType", {})
|
|
13
13
|
.n("MTurkClient", "CreateQualificationTypeCommand")
|
|
14
|
-
.sc(CreateQualificationType)
|
|
14
|
+
.sc(CreateQualificationType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateWorkerBlock } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateWorkerBlock$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateWorkerBlockCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateWorkerBlockCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "CreateWorkerBlock", {})
|
|
13
13
|
.n("MTurkClient", "CreateWorkerBlockCommand")
|
|
14
|
-
.sc(CreateWorkerBlock)
|
|
14
|
+
.sc(CreateWorkerBlock$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteHIT } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteHIT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteHITCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteHITCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "DeleteHIT", {})
|
|
13
13
|
.n("MTurkClient", "DeleteHITCommand")
|
|
14
|
-
.sc(DeleteHIT)
|
|
14
|
+
.sc(DeleteHIT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteQualificationType } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteQualificationType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteQualificationTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteQualificationTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "DeleteQualificationType", {})
|
|
13
13
|
.n("MTurkClient", "DeleteQualificationTypeCommand")
|
|
14
|
-
.sc(DeleteQualificationType)
|
|
14
|
+
.sc(DeleteQualificationType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteWorkerBlock } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteWorkerBlock$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteWorkerBlockCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteWorkerBlockCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "DeleteWorkerBlock", {})
|
|
13
13
|
.n("MTurkClient", "DeleteWorkerBlockCommand")
|
|
14
|
-
.sc(DeleteWorkerBlock)
|
|
14
|
+
.sc(DeleteWorkerBlock$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateQualificationFromWorker } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateQualificationFromWorker$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateQualificationFromWorkerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateQualificationFromWorkerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "DisassociateQualificationFromWorker", {})
|
|
13
13
|
.n("MTurkClient", "DisassociateQualificationFromWorkerCommand")
|
|
14
|
-
.sc(DisassociateQualificationFromWorker)
|
|
14
|
+
.sc(DisassociateQualificationFromWorker$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAccountBalance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAccountBalance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAccountBalanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAccountBalanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "GetAccountBalance", {})
|
|
13
13
|
.n("MTurkClient", "GetAccountBalanceCommand")
|
|
14
|
-
.sc(GetAccountBalance)
|
|
14
|
+
.sc(GetAccountBalance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAssignment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAssignment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAssignmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAssignmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "GetAssignment", {})
|
|
13
13
|
.n("MTurkClient", "GetAssignmentCommand")
|
|
14
|
-
.sc(GetAssignment)
|
|
14
|
+
.sc(GetAssignment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetFileUploadURL } from "../schemas/schemas_0";
|
|
4
|
+
import { GetFileUploadURL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetFileUploadURLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetFileUploadURLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "GetFileUploadURL", {})
|
|
13
13
|
.n("MTurkClient", "GetFileUploadURLCommand")
|
|
14
|
-
.sc(GetFileUploadURL)
|
|
14
|
+
.sc(GetFileUploadURL$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetHIT } from "../schemas/schemas_0";
|
|
4
|
+
import { GetHIT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetHITCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetHITCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "GetHIT", {})
|
|
13
13
|
.n("MTurkClient", "GetHITCommand")
|
|
14
|
-
.sc(GetHIT)
|
|
14
|
+
.sc(GetHIT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetQualificationScore } from "../schemas/schemas_0";
|
|
4
|
+
import { GetQualificationScore$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetQualificationScoreCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetQualificationScoreCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "GetQualificationScore", {})
|
|
13
13
|
.n("MTurkClient", "GetQualificationScoreCommand")
|
|
14
|
-
.sc(GetQualificationScore)
|
|
14
|
+
.sc(GetQualificationScore$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetQualificationType } from "../schemas/schemas_0";
|
|
4
|
+
import { GetQualificationType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetQualificationTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetQualificationTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "GetQualificationType", {})
|
|
13
13
|
.n("MTurkClient", "GetQualificationTypeCommand")
|
|
14
|
-
.sc(GetQualificationType)
|
|
14
|
+
.sc(GetQualificationType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssignmentsForHIT } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssignmentsForHIT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssignmentsForHITCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssignmentsForHITCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListAssignmentsForHIT", {})
|
|
13
13
|
.n("MTurkClient", "ListAssignmentsForHITCommand")
|
|
14
|
-
.sc(ListAssignmentsForHIT)
|
|
14
|
+
.sc(ListAssignmentsForHIT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBonusPayments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBonusPayments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBonusPaymentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBonusPaymentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListBonusPayments", {})
|
|
13
13
|
.n("MTurkClient", "ListBonusPaymentsCommand")
|
|
14
|
-
.sc(ListBonusPayments)
|
|
14
|
+
.sc(ListBonusPayments$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListHITs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListHITs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListHITsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListHITsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListHITs", {})
|
|
13
13
|
.n("MTurkClient", "ListHITsCommand")
|
|
14
|
-
.sc(ListHITs)
|
|
14
|
+
.sc(ListHITs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListHITsForQualificationType } from "../schemas/schemas_0";
|
|
4
|
+
import { ListHITsForQualificationType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListHITsForQualificationTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListHITsForQualificationTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListHITsForQualificationType", {})
|
|
13
13
|
.n("MTurkClient", "ListHITsForQualificationTypeCommand")
|
|
14
|
-
.sc(ListHITsForQualificationType)
|
|
14
|
+
.sc(ListHITsForQualificationType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListQualificationRequests } from "../schemas/schemas_0";
|
|
4
|
+
import { ListQualificationRequests$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListQualificationRequestsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListQualificationRequestsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListQualificationRequests", {})
|
|
13
13
|
.n("MTurkClient", "ListQualificationRequestsCommand")
|
|
14
|
-
.sc(ListQualificationRequests)
|
|
14
|
+
.sc(ListQualificationRequests$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListQualificationTypes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListQualificationTypes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListQualificationTypesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListQualificationTypesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListQualificationTypes", {})
|
|
13
13
|
.n("MTurkClient", "ListQualificationTypesCommand")
|
|
14
|
-
.sc(ListQualificationTypes)
|
|
14
|
+
.sc(ListQualificationTypes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReviewPolicyResultsForHIT } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReviewPolicyResultsForHIT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReviewPolicyResultsForHITCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReviewPolicyResultsForHITCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListReviewPolicyResultsForHIT", {})
|
|
13
13
|
.n("MTurkClient", "ListReviewPolicyResultsForHITCommand")
|
|
14
|
-
.sc(ListReviewPolicyResultsForHIT)
|
|
14
|
+
.sc(ListReviewPolicyResultsForHIT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReviewableHITs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReviewableHITs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReviewableHITsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReviewableHITsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListReviewableHITs", {})
|
|
13
13
|
.n("MTurkClient", "ListReviewableHITsCommand")
|
|
14
|
-
.sc(ListReviewableHITs)
|
|
14
|
+
.sc(ListReviewableHITs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListWorkerBlocks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWorkerBlocks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWorkerBlocksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWorkerBlocksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListWorkerBlocks", {})
|
|
13
13
|
.n("MTurkClient", "ListWorkerBlocksCommand")
|
|
14
|
-
.sc(ListWorkerBlocks)
|
|
14
|
+
.sc(ListWorkerBlocks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListWorkersWithQualificationType } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWorkersWithQualificationType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWorkersWithQualificationTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWorkersWithQualificationTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "ListWorkersWithQualificationType", {})
|
|
13
13
|
.n("MTurkClient", "ListWorkersWithQualificationTypeCommand")
|
|
14
|
-
.sc(ListWorkersWithQualificationType)
|
|
14
|
+
.sc(ListWorkersWithQualificationType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { NotifyWorkers } from "../schemas/schemas_0";
|
|
4
|
+
import { NotifyWorkers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class NotifyWorkersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class NotifyWorkersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "NotifyWorkers", {})
|
|
13
13
|
.n("MTurkClient", "NotifyWorkersCommand")
|
|
14
|
-
.sc(NotifyWorkers)
|
|
14
|
+
.sc(NotifyWorkers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RejectAssignment } from "../schemas/schemas_0";
|
|
4
|
+
import { RejectAssignment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RejectAssignmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RejectAssignmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "RejectAssignment", {})
|
|
13
13
|
.n("MTurkClient", "RejectAssignmentCommand")
|
|
14
|
-
.sc(RejectAssignment)
|
|
14
|
+
.sc(RejectAssignment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RejectQualificationRequest } from "../schemas/schemas_0";
|
|
4
|
+
import { RejectQualificationRequest$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RejectQualificationRequestCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RejectQualificationRequestCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "RejectQualificationRequest", {})
|
|
13
13
|
.n("MTurkClient", "RejectQualificationRequestCommand")
|
|
14
|
-
.sc(RejectQualificationRequest)
|
|
14
|
+
.sc(RejectQualificationRequest$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendBonus } from "../schemas/schemas_0";
|
|
4
|
+
import { SendBonus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendBonusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendBonusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "SendBonus", {})
|
|
13
13
|
.n("MTurkClient", "SendBonusCommand")
|
|
14
|
-
.sc(SendBonus)
|
|
14
|
+
.sc(SendBonus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendTestEventNotification } from "../schemas/schemas_0";
|
|
4
|
+
import { SendTestEventNotification$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendTestEventNotificationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendTestEventNotificationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "SendTestEventNotification", {})
|
|
13
13
|
.n("MTurkClient", "SendTestEventNotificationCommand")
|
|
14
|
-
.sc(SendTestEventNotification)
|
|
14
|
+
.sc(SendTestEventNotification$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateExpirationForHIT } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateExpirationForHIT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateExpirationForHITCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateExpirationForHITCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MTurkRequesterServiceV20170117", "UpdateExpirationForHIT", {})
|
|
13
13
|
.n("MTurkClient", "UpdateExpirationForHITCommand")
|
|
14
|
-
.sc(UpdateExpirationForHIT)
|
|
14
|
+
.sc(UpdateExpirationForHIT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|