@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.
Files changed (59) hide show
  1. package/dist-cjs/index.js +442 -283
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AcceptQualificationRequestCommand.js +2 -2
  4. package/dist-es/commands/ApproveAssignmentCommand.js +2 -2
  5. package/dist-es/commands/AssociateQualificationWithWorkerCommand.js +2 -2
  6. package/dist-es/commands/CreateAdditionalAssignmentsForHITCommand.js +2 -2
  7. package/dist-es/commands/CreateHITCommand.js +2 -2
  8. package/dist-es/commands/CreateHITTypeCommand.js +2 -2
  9. package/dist-es/commands/CreateHITWithHITTypeCommand.js +2 -2
  10. package/dist-es/commands/CreateQualificationTypeCommand.js +2 -2
  11. package/dist-es/commands/CreateWorkerBlockCommand.js +2 -2
  12. package/dist-es/commands/DeleteHITCommand.js +2 -2
  13. package/dist-es/commands/DeleteQualificationTypeCommand.js +2 -2
  14. package/dist-es/commands/DeleteWorkerBlockCommand.js +2 -2
  15. package/dist-es/commands/DisassociateQualificationFromWorkerCommand.js +2 -2
  16. package/dist-es/commands/GetAccountBalanceCommand.js +2 -2
  17. package/dist-es/commands/GetAssignmentCommand.js +2 -2
  18. package/dist-es/commands/GetFileUploadURLCommand.js +2 -2
  19. package/dist-es/commands/GetHITCommand.js +2 -2
  20. package/dist-es/commands/GetQualificationScoreCommand.js +2 -2
  21. package/dist-es/commands/GetQualificationTypeCommand.js +2 -2
  22. package/dist-es/commands/ListAssignmentsForHITCommand.js +2 -2
  23. package/dist-es/commands/ListBonusPaymentsCommand.js +2 -2
  24. package/dist-es/commands/ListHITsCommand.js +2 -2
  25. package/dist-es/commands/ListHITsForQualificationTypeCommand.js +2 -2
  26. package/dist-es/commands/ListQualificationRequestsCommand.js +2 -2
  27. package/dist-es/commands/ListQualificationTypesCommand.js +2 -2
  28. package/dist-es/commands/ListReviewPolicyResultsForHITCommand.js +2 -2
  29. package/dist-es/commands/ListReviewableHITsCommand.js +2 -2
  30. package/dist-es/commands/ListWorkerBlocksCommand.js +2 -2
  31. package/dist-es/commands/ListWorkersWithQualificationTypeCommand.js +2 -2
  32. package/dist-es/commands/NotifyWorkersCommand.js +2 -2
  33. package/dist-es/commands/RejectAssignmentCommand.js +2 -2
  34. package/dist-es/commands/RejectQualificationRequestCommand.js +2 -2
  35. package/dist-es/commands/SendBonusCommand.js +2 -2
  36. package/dist-es/commands/SendTestEventNotificationCommand.js +2 -2
  37. package/dist-es/commands/UpdateExpirationForHITCommand.js +2 -2
  38. package/dist-es/commands/UpdateHITReviewStatusCommand.js +2 -2
  39. package/dist-es/commands/UpdateHITTypeOfHITCommand.js +2 -2
  40. package/dist-es/commands/UpdateNotificationSettingsCommand.js +2 -2
  41. package/dist-es/commands/UpdateQualificationTypeCommand.js +2 -2
  42. package/dist-es/index.js +1 -0
  43. package/dist-es/runtimeConfig.shared.js +7 -6
  44. package/dist-es/schemas/schemas_0.js +263 -242
  45. package/dist-types/MTurkClient.d.ts +1 -10
  46. package/dist-types/index.d.ts +1 -0
  47. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  48. package/dist-types/runtimeConfig.d.ts +6 -2
  49. package/dist-types/runtimeConfig.native.d.ts +6 -2
  50. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  51. package/dist-types/schemas/schemas_0.d.ts +139 -160
  52. package/dist-types/ts3.4/MTurkClient.d.ts +0 -4
  53. package/dist-types/ts3.4/index.d.ts +1 -0
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -160
  59. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class MTurkClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let MTurkServiceException$1 = class MTurkServiceException extends smithyClient.ServiceException {
113
+ class MTurkServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, MTurkServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let RequestError$1 = class RequestError extends MTurkServiceException$1 {
120
+ class RequestError extends MTurkServiceException {
121
121
  name = "RequestError";
122
122
  $fault = "client";
123
123
  Message;
@@ -132,8 +132,8 @@ let RequestError$1 = class RequestError extends MTurkServiceException$1 {
132
132
  this.Message = opts.Message;
133
133
  this.TurkErrorCode = opts.TurkErrorCode;
134
134
  }
135
- };
136
- let ServiceFault$1 = class ServiceFault extends MTurkServiceException$1 {
135
+ }
136
+ class ServiceFault extends MTurkServiceException {
137
137
  name = "ServiceFault";
138
138
  $fault = "server";
139
139
  Message;
@@ -148,7 +148,7 @@ let ServiceFault$1 = class ServiceFault extends MTurkServiceException$1 {
148
148
  this.Message = opts.Message;
149
149
  this.TurkErrorCode = opts.TurkErrorCode;
150
150
  }
151
- };
151
+ }
152
152
 
153
153
  const _A = "Assignment";
154
154
  const _AA = "ApproveAssignment";
@@ -431,11 +431,11 @@ const _hE = "httpError";
431
431
  const _s = "server";
432
432
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.mturk";
433
433
  const n0 = "com.amazonaws.mturk";
434
- var AcceptQualificationRequestRequest = [3, n0, _AQRR, 0, [_QRI, _IV], [0, 1]];
435
- var AcceptQualificationRequestResponse = [3, n0, _AQRRc, 0, [], []];
436
- var ApproveAssignmentRequest = [3, n0, _AAR, 0, [_AI, _RF, _OR], [0, 0, 2]];
437
- var ApproveAssignmentResponse = [3, n0, _AARp, 0, [], []];
438
- var Assignment = [
434
+ var AcceptQualificationRequestRequest$ = [3, n0, _AQRR, 0, [_QRI, _IV], [0, 1]];
435
+ var AcceptQualificationRequestResponse$ = [3, n0, _AQRRc, 0, [], []];
436
+ var ApproveAssignmentRequest$ = [3, n0, _AAR, 0, [_AI, _RF, _OR], [0, 0, 2]];
437
+ var ApproveAssignmentResponse$ = [3, n0, _AARp, 0, [], []];
438
+ var Assignment$ = [
439
439
  3,
440
440
  n0,
441
441
  _A,
@@ -443,7 +443,7 @@ var Assignment = [
443
443
  [_AI, _WI, _HITI, _AS, _AAT, _AT, _ST, _ATp, _RT, _D, _An, _RF],
444
444
  [0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0],
445
445
  ];
446
- var AssociateQualificationWithWorkerRequest = [
446
+ var AssociateQualificationWithWorkerRequest$ = [
447
447
  3,
448
448
  n0,
449
449
  _AQWWR,
@@ -451,9 +451,9 @@ var AssociateQualificationWithWorkerRequest = [
451
451
  [_QTI, _WI, _IV, _SN],
452
452
  [0, 0, 1, 2],
453
453
  ];
454
- var AssociateQualificationWithWorkerResponse = [3, n0, _AQWWRs, 0, [], []];
455
- var BonusPayment = [3, n0, _BP, 0, [_WI, _BA, _AI, _R, _GT], [0, 0, 0, 0, 4]];
456
- var CreateAdditionalAssignmentsForHITRequest = [
454
+ var AssociateQualificationWithWorkerResponse$ = [3, n0, _AQWWRs, 0, [], []];
455
+ var BonusPayment$ = [3, n0, _BP, 0, [_WI, _BA, _AI, _R, _GT], [0, 0, 0, 0, 4]];
456
+ var CreateAdditionalAssignmentsForHITRequest$ = [
457
457
  3,
458
458
  n0,
459
459
  _CAAFHITR,
@@ -461,8 +461,8 @@ var CreateAdditionalAssignmentsForHITRequest = [
461
461
  [_HITI, _NOAA, _URT],
462
462
  [0, 1, 0],
463
463
  ];
464
- var CreateAdditionalAssignmentsForHITResponse = [3, n0, _CAAFHITRr, 0, [], []];
465
- var CreateHITRequest = [
464
+ var CreateAdditionalAssignmentsForHITResponse$ = [3, n0, _CAAFHITRr, 0, [], []];
465
+ var CreateHITRequest$ = [
466
466
  3,
467
467
  n0,
468
468
  _CHITR,
@@ -481,14 +481,14 @@ var CreateHITRequest = [
481
481
  0,
482
482
  () => QualificationRequirementList,
483
483
  0,
484
- () => ReviewPolicy,
485
- () => ReviewPolicy,
484
+ () => ReviewPolicy$,
485
+ () => ReviewPolicy$,
486
486
  0,
487
487
  () => HITLayoutParameterList,
488
488
  ],
489
489
  ];
490
- var CreateHITResponse = [3, n0, _CHITRr, 0, [_HIT], [() => HIT]];
491
- var CreateHITTypeRequest = [
490
+ var CreateHITResponse$ = [3, n0, _CHITRr, 0, [_HIT], [() => HIT$]];
491
+ var CreateHITTypeRequest$ = [
492
492
  3,
493
493
  n0,
494
494
  _CHITTR,
@@ -496,17 +496,17 @@ var CreateHITTypeRequest = [
496
496
  [_AADIS, _ADIS, _Re, _T, _K, _De, _QR],
497
497
  [1, 1, 0, 0, 0, 0, () => QualificationRequirementList],
498
498
  ];
499
- var CreateHITTypeResponse = [3, n0, _CHITTRr, 0, [_HITTI], [0]];
500
- var CreateHITWithHITTypeRequest = [
499
+ var CreateHITTypeResponse$ = [3, n0, _CHITTRr, 0, [_HITTI], [0]];
500
+ var CreateHITWithHITTypeRequest$ = [
501
501
  3,
502
502
  n0,
503
503
  _CHITWHITTR,
504
504
  0,
505
505
  [_HITTI, _MA, _LIS, _Q, _RA, _URT, _ARP, _HITRP, _HITLI, _HITLP],
506
- [0, 1, 1, 0, 0, 0, () => ReviewPolicy, () => ReviewPolicy, 0, () => HITLayoutParameterList],
506
+ [0, 1, 1, 0, 0, 0, () => ReviewPolicy$, () => ReviewPolicy$, 0, () => HITLayoutParameterList],
507
507
  ];
508
- var CreateHITWithHITTypeResponse = [3, n0, _CHITWHITTRr, 0, [_HIT], [() => HIT]];
509
- var CreateQualificationTypeRequest = [
508
+ var CreateHITWithHITTypeResponse$ = [3, n0, _CHITWHITTRr, 0, [_HIT], [() => HIT$]];
509
+ var CreateQualificationTypeRequest$ = [
510
510
  3,
511
511
  n0,
512
512
  _CQTR,
@@ -514,23 +514,23 @@ var CreateQualificationTypeRequest = [
514
514
  [_N, _K, _De, _QTS, _RDIS, _Te, _AK, _TDIS, _AG, _AGV],
515
515
  [0, 0, 0, 0, 1, 0, 0, 1, 2, 1],
516
516
  ];
517
- var CreateQualificationTypeResponse = [
517
+ var CreateQualificationTypeResponse$ = [
518
518
  3,
519
519
  n0,
520
520
  _CQTRr,
521
521
  0,
522
522
  [_QT],
523
- [() => QualificationType],
524
- ];
525
- var CreateWorkerBlockRequest = [3, n0, _CWBR, 0, [_WI, _R], [0, 0]];
526
- var CreateWorkerBlockResponse = [3, n0, _CWBRr, 0, [], []];
527
- var DeleteHITRequest = [3, n0, _DHITR, 0, [_HITI], [0]];
528
- var DeleteHITResponse = [3, n0, _DHITRe, 0, [], []];
529
- var DeleteQualificationTypeRequest = [3, n0, _DQTR, 0, [_QTI], [0]];
530
- var DeleteQualificationTypeResponse = [3, n0, _DQTRe, 0, [], []];
531
- var DeleteWorkerBlockRequest = [3, n0, _DWBR, 0, [_WI, _R], [0, 0]];
532
- var DeleteWorkerBlockResponse = [3, n0, _DWBRe, 0, [], []];
533
- var DisassociateQualificationFromWorkerRequest = [
523
+ [() => QualificationType$],
524
+ ];
525
+ var CreateWorkerBlockRequest$ = [3, n0, _CWBR, 0, [_WI, _R], [0, 0]];
526
+ var CreateWorkerBlockResponse$ = [3, n0, _CWBRr, 0, [], []];
527
+ var DeleteHITRequest$ = [3, n0, _DHITR, 0, [_HITI], [0]];
528
+ var DeleteHITResponse$ = [3, n0, _DHITRe, 0, [], []];
529
+ var DeleteQualificationTypeRequest$ = [3, n0, _DQTR, 0, [_QTI], [0]];
530
+ var DeleteQualificationTypeResponse$ = [3, n0, _DQTRe, 0, [], []];
531
+ var DeleteWorkerBlockRequest$ = [3, n0, _DWBR, 0, [_WI, _R], [0, 0]];
532
+ var DeleteWorkerBlockResponse$ = [3, n0, _DWBRe, 0, [], []];
533
+ var DisassociateQualificationFromWorkerRequest$ = [
534
534
  3,
535
535
  n0,
536
536
  _DQFWR,
@@ -538,20 +538,27 @@ var DisassociateQualificationFromWorkerRequest = [
538
538
  [_WI, _QTI, _R],
539
539
  [0, 0, 0],
540
540
  ];
541
- var DisassociateQualificationFromWorkerResponse = [3, n0, _DQFWRi, 0, [], []];
542
- var GetAccountBalanceRequest = [3, n0, _GABR, 0, [], []];
543
- var GetAccountBalanceResponse = [3, n0, _GABRe, 0, [_AB, _OHB], [0, 0]];
544
- var GetAssignmentRequest = [3, n0, _GAR, 0, [_AI], [0]];
545
- var GetAssignmentResponse = [3, n0, _GARe, 0, [_A, _HIT], [() => Assignment, () => HIT]];
546
- var GetFileUploadURLRequest = [3, n0, _GFUURLR, 0, [_AI, _QI], [0, 0]];
547
- var GetFileUploadURLResponse = [3, n0, _GFUURLRe, 0, [_FUURL], [0]];
548
- var GetHITRequest = [3, n0, _GHITR, 0, [_HITI], [0]];
549
- var GetHITResponse = [3, n0, _GHITRe, 0, [_HIT], [() => HIT]];
550
- var GetQualificationScoreRequest = [3, n0, _GQSR, 0, [_QTI, _WI], [0, 0]];
551
- var GetQualificationScoreResponse = [3, n0, _GQSRe, 0, [_Qu], [() => Qualification]];
552
- var GetQualificationTypeRequest = [3, n0, _GQTR, 0, [_QTI], [0]];
553
- var GetQualificationTypeResponse = [3, n0, _GQTRe, 0, [_QT], [() => QualificationType]];
554
- var HIT = [
541
+ var DisassociateQualificationFromWorkerResponse$ = [3, n0, _DQFWRi, 0, [], []];
542
+ var GetAccountBalanceRequest$ = [3, n0, _GABR, 0, [], []];
543
+ var GetAccountBalanceResponse$ = [3, n0, _GABRe, 0, [_AB, _OHB], [0, 0]];
544
+ var GetAssignmentRequest$ = [3, n0, _GAR, 0, [_AI], [0]];
545
+ var GetAssignmentResponse$ = [
546
+ 3,
547
+ n0,
548
+ _GARe,
549
+ 0,
550
+ [_A, _HIT],
551
+ [() => Assignment$, () => HIT$],
552
+ ];
553
+ var GetFileUploadURLRequest$ = [3, n0, _GFUURLR, 0, [_AI, _QI], [0, 0]];
554
+ var GetFileUploadURLResponse$ = [3, n0, _GFUURLRe, 0, [_FUURL], [0]];
555
+ var GetHITRequest$ = [3, n0, _GHITR, 0, [_HITI], [0]];
556
+ var GetHITResponse$ = [3, n0, _GHITRe, 0, [_HIT], [() => HIT$]];
557
+ var GetQualificationScoreRequest$ = [3, n0, _GQSR, 0, [_QTI, _WI], [0, 0]];
558
+ var GetQualificationScoreResponse$ = [3, n0, _GQSRe, 0, [_Qu], [() => Qualification$]];
559
+ var GetQualificationTypeRequest$ = [3, n0, _GQTR, 0, [_QTI], [0]];
560
+ var GetQualificationTypeResponse$ = [3, n0, _GQTRe, 0, [_QT], [() => QualificationType$]];
561
+ var HIT$ = [
555
562
  3,
556
563
  n0,
557
564
  _HIT,
@@ -581,8 +588,8 @@ var HIT = [
581
588
  ],
582
589
  [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 1, 4, 1, 0, () => QualificationRequirementList, 0, 1, 1, 1],
583
590
  ];
584
- var HITLayoutParameter = [3, n0, _HITLPa, 0, [_N, _V], [0, 0]];
585
- var ListAssignmentsForHITRequest = [
591
+ var HITLayoutParameter$ = [3, n0, _HITLPa, 0, [_N, _V], [0, 0]];
592
+ var ListAssignmentsForHITRequest$ = [
586
593
  3,
587
594
  n0,
588
595
  _LAFHITR,
@@ -590,7 +597,7 @@ var ListAssignmentsForHITRequest = [
590
597
  [_HITI, _NT, _MR, _ASs],
591
598
  [0, 0, 1, 64 | 0],
592
599
  ];
593
- var ListAssignmentsForHITResponse = [
600
+ var ListAssignmentsForHITResponse$ = [
594
601
  3,
595
602
  n0,
596
603
  _LAFHITRi,
@@ -598,8 +605,8 @@ var ListAssignmentsForHITResponse = [
598
605
  [_NT, _NR, _As],
599
606
  [0, 1, () => AssignmentList],
600
607
  ];
601
- var ListBonusPaymentsRequest = [3, n0, _LBPR, 0, [_HITI, _AI, _NT, _MR], [0, 0, 0, 1]];
602
- var ListBonusPaymentsResponse = [
608
+ var ListBonusPaymentsRequest$ = [3, n0, _LBPR, 0, [_HITI, _AI, _NT, _MR], [0, 0, 0, 1]];
609
+ var ListBonusPaymentsResponse$ = [
603
610
  3,
604
611
  n0,
605
612
  _LBPRi,
@@ -607,7 +614,7 @@ var ListBonusPaymentsResponse = [
607
614
  [_NR, _NT, _BPo],
608
615
  [1, 0, () => BonusPaymentList],
609
616
  ];
610
- var ListHITsForQualificationTypeRequest = [
617
+ var ListHITsForQualificationTypeRequest$ = [
611
618
  3,
612
619
  n0,
613
620
  _LHITFQTR,
@@ -615,7 +622,7 @@ var ListHITsForQualificationTypeRequest = [
615
622
  [_QTI, _NT, _MR],
616
623
  [0, 0, 1],
617
624
  ];
618
- var ListHITsForQualificationTypeResponse = [
625
+ var ListHITsForQualificationTypeResponse$ = [
619
626
  3,
620
627
  n0,
621
628
  _LHITFQTRi,
@@ -623,10 +630,10 @@ var ListHITsForQualificationTypeResponse = [
623
630
  [_NT, _NR, _HITs],
624
631
  [0, 1, () => HITList],
625
632
  ];
626
- var ListHITsRequest = [3, n0, _LHITR, 0, [_NT, _MR], [0, 1]];
627
- var ListHITsResponse = [3, n0, _LHITRi, 0, [_NT, _NR, _HITs], [0, 1, () => HITList]];
628
- var ListQualificationRequestsRequest = [3, n0, _LQRR, 0, [_QTI, _NT, _MR], [0, 0, 1]];
629
- var ListQualificationRequestsResponse = [
633
+ var ListHITsRequest$ = [3, n0, _LHITR, 0, [_NT, _MR], [0, 1]];
634
+ var ListHITsResponse$ = [3, n0, _LHITRi, 0, [_NT, _NR, _HITs], [0, 1, () => HITList]];
635
+ var ListQualificationRequestsRequest$ = [3, n0, _LQRR, 0, [_QTI, _NT, _MR], [0, 0, 1]];
636
+ var ListQualificationRequestsResponse$ = [
630
637
  3,
631
638
  n0,
632
639
  _LQRRi,
@@ -634,7 +641,7 @@ var ListQualificationRequestsResponse = [
634
641
  [_NR, _NT, _QRu],
635
642
  [1, 0, () => QualificationRequestList],
636
643
  ];
637
- var ListQualificationTypesRequest = [
644
+ var ListQualificationTypesRequest$ = [
638
645
  3,
639
646
  n0,
640
647
  _LQTR,
@@ -642,7 +649,7 @@ var ListQualificationTypesRequest = [
642
649
  [_Que, _MBR, _MBOBC, _NT, _MR],
643
650
  [0, 2, 2, 0, 1],
644
651
  ];
645
- var ListQualificationTypesResponse = [
652
+ var ListQualificationTypesResponse$ = [
646
653
  3,
647
654
  n0,
648
655
  _LQTRi,
@@ -650,8 +657,15 @@ var ListQualificationTypesResponse = [
650
657
  [_NR, _NT, _QTu],
651
658
  [1, 0, () => QualificationTypeList],
652
659
  ];
653
- var ListReviewableHITsRequest = [3, n0, _LRHITR, 0, [_HITTI, _S, _NT, _MR], [0, 0, 0, 1]];
654
- var ListReviewableHITsResponse = [
660
+ var ListReviewableHITsRequest$ = [
661
+ 3,
662
+ n0,
663
+ _LRHITR,
664
+ 0,
665
+ [_HITTI, _S, _NT, _MR],
666
+ [0, 0, 0, 1],
667
+ ];
668
+ var ListReviewableHITsResponse$ = [
655
669
  3,
656
670
  n0,
657
671
  _LRHITRi,
@@ -659,7 +673,7 @@ var ListReviewableHITsResponse = [
659
673
  [_NT, _NR, _HITs],
660
674
  [0, 1, () => HITList],
661
675
  ];
662
- var ListReviewPolicyResultsForHITRequest = [
676
+ var ListReviewPolicyResultsForHITRequest$ = [
663
677
  3,
664
678
  n0,
665
679
  _LRPRFHITR,
@@ -667,16 +681,16 @@ var ListReviewPolicyResultsForHITRequest = [
667
681
  [_HITI, _PL, _RAe, _RR, _NT, _MR],
668
682
  [0, 64 | 0, 2, 2, 0, 1],
669
683
  ];
670
- var ListReviewPolicyResultsForHITResponse = [
684
+ var ListReviewPolicyResultsForHITResponse$ = [
671
685
  3,
672
686
  n0,
673
687
  _LRPRFHITRi,
674
688
  0,
675
689
  [_HITI, _ARP, _HITRP, _ARR, _HITRR, _NT],
676
- [0, () => ReviewPolicy, () => ReviewPolicy, () => ReviewReport, () => ReviewReport, 0],
690
+ [0, () => ReviewPolicy$, () => ReviewPolicy$, () => ReviewReport$, () => ReviewReport$, 0],
677
691
  ];
678
- var ListWorkerBlocksRequest = [3, n0, _LWBR, 0, [_NT, _MR], [0, 1]];
679
- var ListWorkerBlocksResponse = [
692
+ var ListWorkerBlocksRequest$ = [3, n0, _LWBR, 0, [_NT, _MR], [0, 1]];
693
+ var ListWorkerBlocksResponse$ = [
680
694
  3,
681
695
  n0,
682
696
  _LWBRi,
@@ -684,7 +698,7 @@ var ListWorkerBlocksResponse = [
684
698
  [_NT, _NR, _WB],
685
699
  [0, 1, () => WorkerBlockList],
686
700
  ];
687
- var ListWorkersWithQualificationTypeRequest = [
701
+ var ListWorkersWithQualificationTypeRequest$ = [
688
702
  3,
689
703
  n0,
690
704
  _LWWQTR,
@@ -692,7 +706,7 @@ var ListWorkersWithQualificationTypeRequest = [
692
706
  [_QTI, _S, _NT, _MR],
693
707
  [0, 0, 0, 1],
694
708
  ];
695
- var ListWorkersWithQualificationTypeResponse = [
709
+ var ListWorkersWithQualificationTypeResponse$ = [
696
710
  3,
697
711
  n0,
698
712
  _LWWQTRi,
@@ -700,11 +714,18 @@ var ListWorkersWithQualificationTypeResponse = [
700
714
  [_NT, _NR, _Qua],
701
715
  [0, 1, () => QualificationList],
702
716
  ];
703
- var Locale = [3, n0, _L, 0, [_C, _Su], [0, 0]];
704
- var NotificationSpecification = [3, n0, _NS, 0, [_Des, _Tr, _Ve, _ET], [0, 0, 0, 64 | 0]];
705
- var NotifyWorkersFailureStatus = [3, n0, _NWFS, 0, [_NWFC, _NWFM, _WI], [0, 0, 0]];
706
- var NotifyWorkersRequest = [3, n0, _NWR, 0, [_Sub, _MT, _WIo], [0, 0, 64 | 0]];
707
- var NotifyWorkersResponse = [
717
+ var Locale$ = [3, n0, _L, 0, [_C, _Su], [0, 0]];
718
+ var NotificationSpecification$ = [
719
+ 3,
720
+ n0,
721
+ _NS,
722
+ 0,
723
+ [_Des, _Tr, _Ve, _ET],
724
+ [0, 0, 0, 64 | 0],
725
+ ];
726
+ var NotifyWorkersFailureStatus$ = [3, n0, _NWFS, 0, [_NWFC, _NWFM, _WI], [0, 0, 0]];
727
+ var NotifyWorkersRequest$ = [3, n0, _NWR, 0, [_Sub, _MT, _WIo], [0, 0, 64 | 0]];
728
+ var NotifyWorkersResponse$ = [
708
729
  3,
709
730
  n0,
710
731
  _NWRo,
@@ -712,8 +733,8 @@ var NotifyWorkersResponse = [
712
733
  [_NWFSo],
713
734
  [() => NotifyWorkersFailureStatusList],
714
735
  ];
715
- var ParameterMapEntry = [3, n0, _PME, 0, [_Ke, _Va], [0, 64 | 0]];
716
- var PolicyParameter = [
736
+ var ParameterMapEntry$ = [3, n0, _PME, 0, [_Ke, _Va], [0, 64 | 0]];
737
+ var PolicyParameter$ = [
717
738
  3,
718
739
  n0,
719
740
  _PP,
@@ -721,15 +742,15 @@ var PolicyParameter = [
721
742
  [_Ke, _Va, _ME],
722
743
  [0, 64 | 0, () => ParameterMapEntryList],
723
744
  ];
724
- var Qualification = [
745
+ var Qualification$ = [
725
746
  3,
726
747
  n0,
727
748
  _Qu,
728
749
  0,
729
750
  [_QTI, _WI, _GT, _IV, _LV, _S],
730
- [0, 0, 4, 1, () => Locale, 0],
751
+ [0, 0, 4, 1, () => Locale$, 0],
731
752
  ];
732
- var QualificationRequest = [
753
+ var QualificationRequest$ = [
733
754
  3,
734
755
  n0,
735
756
  _QRua,
@@ -737,7 +758,7 @@ var QualificationRequest = [
737
758
  [_QRI, _QTI, _WI, _Te, _An, _ST],
738
759
  [0, 0, 0, 0, 0, 4],
739
760
  ];
740
- var QualificationRequirement = [
761
+ var QualificationRequirement$ = [
741
762
  3,
742
763
  n0,
743
764
  _QRual,
@@ -745,7 +766,7 @@ var QualificationRequirement = [
745
766
  [_QTI, _Co, _IVn, _LVo, _RTP, _AGc],
746
767
  [0, 0, 64 | 1, () => LocaleList, 2, 0],
747
768
  ];
748
- var QualificationType = [
769
+ var QualificationType$ = [
749
770
  3,
750
771
  n0,
751
772
  _QT,
@@ -753,11 +774,11 @@ var QualificationType = [
753
774
  [_QTI, _CT, _N, _De, _K, _QTS, _Te, _TDIS, _AK, _RDIS, _IR, _AG, _AGV],
754
775
  [0, 4, 0, 0, 0, 0, 0, 1, 0, 1, 2, 2, 1],
755
776
  ];
756
- var RejectAssignmentRequest = [3, n0, _RAR, 0, [_AI, _RF], [0, 0]];
757
- var RejectAssignmentResponse = [3, n0, _RARe, 0, [], []];
758
- var RejectQualificationRequestRequest = [3, n0, _RQRR, 0, [_QRI, _R], [0, 0]];
759
- var RejectQualificationRequestResponse = [3, n0, _RQRRe, 0, [], []];
760
- var RequestError = [
777
+ var RejectAssignmentRequest$ = [3, n0, _RAR, 0, [_AI, _RF], [0, 0]];
778
+ var RejectAssignmentResponse$ = [3, n0, _RARe, 0, [], []];
779
+ var RejectQualificationRequestRequest$ = [3, n0, _RQRR, 0, [_QRI, _R], [0, 0]];
780
+ var RejectQualificationRequestResponse$ = [3, n0, _RQRRe, 0, [], []];
781
+ var RequestError$ = [
761
782
  -3,
762
783
  n0,
763
784
  _RE,
@@ -765,8 +786,8 @@ var RequestError = [
765
786
  [_M, _TEC],
766
787
  [0, 0],
767
788
  ];
768
- schema.TypeRegistry.for(n0).registerError(RequestError, RequestError$1);
769
- var ReviewActionDetail = [
789
+ schema.TypeRegistry.for(n0).registerError(RequestError$, RequestError);
790
+ var ReviewActionDetail$ = [
770
791
  3,
771
792
  n0,
772
793
  _RAD,
@@ -774,8 +795,8 @@ var ReviewActionDetail = [
774
795
  [_AIc, _AN, _TI, _TT, _S, _CTo, _Res, _EC],
775
796
  [0, 0, 0, 0, 0, 4, 0, 0],
776
797
  ];
777
- var ReviewPolicy = [3, n0, _RP, 0, [_PN, _P], [0, () => PolicyParameterList]];
778
- var ReviewReport = [
798
+ var ReviewPolicy$ = [3, n0, _RP, 0, [_PN, _P], [0, () => PolicyParameterList]];
799
+ var ReviewReport$ = [
779
800
  3,
780
801
  n0,
781
802
  _RRe,
@@ -783,7 +804,7 @@ var ReviewReport = [
783
804
  [_RRev, _RAev],
784
805
  [() => ReviewResultDetailList, () => ReviewActionDetailList],
785
806
  ];
786
- var ReviewResultDetail = [
807
+ var ReviewResultDetail$ = [
787
808
  3,
788
809
  n0,
789
810
  _RRD,
@@ -791,18 +812,18 @@ var ReviewResultDetail = [
791
812
  [_AIc, _SI, _STu, _QIu, _Ke, _V],
792
813
  [0, 0, 0, 0, 0, 0],
793
814
  ];
794
- var SendBonusRequest = [3, n0, _SBR, 0, [_WI, _BA, _AI, _R, _URT], [0, 0, 0, 0, 0]];
795
- var SendBonusResponse = [3, n0, _SBRe, 0, [], []];
796
- var SendTestEventNotificationRequest = [
815
+ var SendBonusRequest$ = [3, n0, _SBR, 0, [_WI, _BA, _AI, _R, _URT], [0, 0, 0, 0, 0]];
816
+ var SendBonusResponse$ = [3, n0, _SBRe, 0, [], []];
817
+ var SendTestEventNotificationRequest$ = [
797
818
  3,
798
819
  n0,
799
820
  _STENR,
800
821
  0,
801
822
  [_No, _TET],
802
- [() => NotificationSpecification, 0],
823
+ [() => NotificationSpecification$, 0],
803
824
  ];
804
- var SendTestEventNotificationResponse = [3, n0, _STENRe, 0, [], []];
805
- var ServiceFault = [
825
+ var SendTestEventNotificationResponse$ = [3, n0, _STENRe, 0, [], []];
826
+ var ServiceFault$ = [
806
827
  -3,
807
828
  n0,
808
829
  _SF,
@@ -810,23 +831,23 @@ var ServiceFault = [
810
831
  [_M, _TEC],
811
832
  [0, 0],
812
833
  ];
813
- schema.TypeRegistry.for(n0).registerError(ServiceFault, ServiceFault$1);
814
- var UpdateExpirationForHITRequest = [3, n0, _UEFHITR, 0, [_HITI, _EA], [0, 4]];
815
- var UpdateExpirationForHITResponse = [3, n0, _UEFHITRp, 0, [], []];
816
- var UpdateHITReviewStatusRequest = [3, n0, _UHITRSR, 0, [_HITI, _Rev], [0, 2]];
817
- var UpdateHITReviewStatusResponse = [3, n0, _UHITRSRp, 0, [], []];
818
- var UpdateHITTypeOfHITRequest = [3, n0, _UHITTOHITR, 0, [_HITI, _HITTI], [0, 0]];
819
- var UpdateHITTypeOfHITResponse = [3, n0, _UHITTOHITRp, 0, [], []];
820
- var UpdateNotificationSettingsRequest = [
834
+ schema.TypeRegistry.for(n0).registerError(ServiceFault$, ServiceFault);
835
+ var UpdateExpirationForHITRequest$ = [3, n0, _UEFHITR, 0, [_HITI, _EA], [0, 4]];
836
+ var UpdateExpirationForHITResponse$ = [3, n0, _UEFHITRp, 0, [], []];
837
+ var UpdateHITReviewStatusRequest$ = [3, n0, _UHITRSR, 0, [_HITI, _Rev], [0, 2]];
838
+ var UpdateHITReviewStatusResponse$ = [3, n0, _UHITRSRp, 0, [], []];
839
+ var UpdateHITTypeOfHITRequest$ = [3, n0, _UHITTOHITR, 0, [_HITI, _HITTI], [0, 0]];
840
+ var UpdateHITTypeOfHITResponse$ = [3, n0, _UHITTOHITRp, 0, [], []];
841
+ var UpdateNotificationSettingsRequest$ = [
821
842
  3,
822
843
  n0,
823
844
  _UNSR,
824
845
  0,
825
846
  [_HITTI, _No, _Ac],
826
- [0, () => NotificationSpecification, 2],
847
+ [0, () => NotificationSpecification$, 2],
827
848
  ];
828
- var UpdateNotificationSettingsResponse = [3, n0, _UNSRp, 0, [], []];
829
- var UpdateQualificationTypeRequest = [
849
+ var UpdateNotificationSettingsResponse$ = [3, n0, _UNSRp, 0, [], []];
850
+ var UpdateQualificationTypeRequest$ = [
830
851
  3,
831
852
  n0,
832
853
  _UQTR,
@@ -834,308 +855,308 @@ var UpdateQualificationTypeRequest = [
834
855
  [_QTI, _De, _QTS, _Te, _AK, _TDIS, _RDIS, _AG, _AGV],
835
856
  [0, 0, 0, 0, 0, 1, 1, 2, 1],
836
857
  ];
837
- var UpdateQualificationTypeResponse = [
858
+ var UpdateQualificationTypeResponse$ = [
838
859
  3,
839
860
  n0,
840
861
  _UQTRp,
841
862
  0,
842
863
  [_QT],
843
- [() => QualificationType],
844
- ];
845
- var WorkerBlock = [3, n0, _WBo, 0, [_WI, _R], [0, 0]];
846
- var MTurkServiceException = [-3, _sm, "MTurkServiceException", 0, [], []];
847
- schema.TypeRegistry.for(_sm).registerError(MTurkServiceException, MTurkServiceException$1);
848
- var AssignmentList = [1, n0, _AL, 0, () => Assignment];
849
- var BonusPaymentList = [1, n0, _BPL, 0, () => BonusPayment];
850
- var HITLayoutParameterList = [1, n0, _HITLPL, 0, () => HITLayoutParameter];
851
- var HITList = [1, n0, _HITL, 0, () => HIT];
852
- var LocaleList = [1, n0, _LL, 0, () => Locale];
853
- var NotifyWorkersFailureStatusList = [1, n0, _NWFSL, 0, () => NotifyWorkersFailureStatus];
854
- var ParameterMapEntryList = [1, n0, _PMEL, 0, () => ParameterMapEntry];
855
- var PolicyParameterList = [1, n0, _PPL, 0, () => PolicyParameter];
856
- var QualificationList = [1, n0, _QL, 0, () => Qualification];
857
- var QualificationRequestList = [1, n0, _QRL, 0, () => QualificationRequest];
858
- var QualificationRequirementList = [1, n0, _QRLu, 0, () => QualificationRequirement];
859
- var QualificationTypeList = [1, n0, _QTL, 0, () => QualificationType];
860
- var ReviewActionDetailList = [1, n0, _RADL, 0, () => ReviewActionDetail];
861
- var ReviewResultDetailList = [1, n0, _RRDL, 0, () => ReviewResultDetail];
862
- var WorkerBlockList = [1, n0, _WBL, 0, () => WorkerBlock];
863
- var AcceptQualificationRequest = [
864
+ [() => QualificationType$],
865
+ ];
866
+ var WorkerBlock$ = [3, n0, _WBo, 0, [_WI, _R], [0, 0]];
867
+ var MTurkServiceException$ = [-3, _sm, "MTurkServiceException", 0, [], []];
868
+ schema.TypeRegistry.for(_sm).registerError(MTurkServiceException$, MTurkServiceException);
869
+ var AssignmentList = [1, n0, _AL, 0, () => Assignment$];
870
+ var BonusPaymentList = [1, n0, _BPL, 0, () => BonusPayment$];
871
+ var HITLayoutParameterList = [1, n0, _HITLPL, 0, () => HITLayoutParameter$];
872
+ var HITList = [1, n0, _HITL, 0, () => HIT$];
873
+ var LocaleList = [1, n0, _LL, 0, () => Locale$];
874
+ var NotifyWorkersFailureStatusList = [1, n0, _NWFSL, 0, () => NotifyWorkersFailureStatus$];
875
+ var ParameterMapEntryList = [1, n0, _PMEL, 0, () => ParameterMapEntry$];
876
+ var PolicyParameterList = [1, n0, _PPL, 0, () => PolicyParameter$];
877
+ var QualificationList = [1, n0, _QL, 0, () => Qualification$];
878
+ var QualificationRequestList = [1, n0, _QRL, 0, () => QualificationRequest$];
879
+ var QualificationRequirementList = [1, n0, _QRLu, 0, () => QualificationRequirement$];
880
+ var QualificationTypeList = [1, n0, _QTL, 0, () => QualificationType$];
881
+ var ReviewActionDetailList = [1, n0, _RADL, 0, () => ReviewActionDetail$];
882
+ var ReviewResultDetailList = [1, n0, _RRDL, 0, () => ReviewResultDetail$];
883
+ var WorkerBlockList = [1, n0, _WBL, 0, () => WorkerBlock$];
884
+ var AcceptQualificationRequest$ = [
864
885
  9,
865
886
  n0,
866
887
  _AQR,
867
888
  0,
868
- () => AcceptQualificationRequestRequest,
869
- () => AcceptQualificationRequestResponse,
889
+ () => AcceptQualificationRequestRequest$,
890
+ () => AcceptQualificationRequestResponse$,
870
891
  ];
871
- var ApproveAssignment = [
892
+ var ApproveAssignment$ = [
872
893
  9,
873
894
  n0,
874
895
  _AA,
875
896
  2,
876
- () => ApproveAssignmentRequest,
877
- () => ApproveAssignmentResponse,
897
+ () => ApproveAssignmentRequest$,
898
+ () => ApproveAssignmentResponse$,
878
899
  ];
879
- var AssociateQualificationWithWorker = [
900
+ var AssociateQualificationWithWorker$ = [
880
901
  9,
881
902
  n0,
882
903
  _AQWW,
883
904
  0,
884
- () => AssociateQualificationWithWorkerRequest,
885
- () => AssociateQualificationWithWorkerResponse,
905
+ () => AssociateQualificationWithWorkerRequest$,
906
+ () => AssociateQualificationWithWorkerResponse$,
886
907
  ];
887
- var CreateAdditionalAssignmentsForHIT = [
908
+ var CreateAdditionalAssignmentsForHIT$ = [
888
909
  9,
889
910
  n0,
890
911
  _CAAFHIT,
891
912
  0,
892
- () => CreateAdditionalAssignmentsForHITRequest,
893
- () => CreateAdditionalAssignmentsForHITResponse,
913
+ () => CreateAdditionalAssignmentsForHITRequest$,
914
+ () => CreateAdditionalAssignmentsForHITResponse$,
894
915
  ];
895
- var CreateHIT = [9, n0, _CHIT, 0, () => CreateHITRequest, () => CreateHITResponse];
896
- var CreateHITType = [
916
+ var CreateHIT$ = [9, n0, _CHIT, 0, () => CreateHITRequest$, () => CreateHITResponse$];
917
+ var CreateHITType$ = [
897
918
  9,
898
919
  n0,
899
920
  _CHITT,
900
921
  2,
901
- () => CreateHITTypeRequest,
902
- () => CreateHITTypeResponse,
922
+ () => CreateHITTypeRequest$,
923
+ () => CreateHITTypeResponse$,
903
924
  ];
904
- var CreateHITWithHITType = [
925
+ var CreateHITWithHITType$ = [
905
926
  9,
906
927
  n0,
907
928
  _CHITWHITT,
908
929
  0,
909
- () => CreateHITWithHITTypeRequest,
910
- () => CreateHITWithHITTypeResponse,
930
+ () => CreateHITWithHITTypeRequest$,
931
+ () => CreateHITWithHITTypeResponse$,
911
932
  ];
912
- var CreateQualificationType = [
933
+ var CreateQualificationType$ = [
913
934
  9,
914
935
  n0,
915
936
  _CQT,
916
937
  0,
917
- () => CreateQualificationTypeRequest,
918
- () => CreateQualificationTypeResponse,
938
+ () => CreateQualificationTypeRequest$,
939
+ () => CreateQualificationTypeResponse$,
919
940
  ];
920
- var CreateWorkerBlock = [
941
+ var CreateWorkerBlock$ = [
921
942
  9,
922
943
  n0,
923
944
  _CWB,
924
945
  0,
925
- () => CreateWorkerBlockRequest,
926
- () => CreateWorkerBlockResponse,
946
+ () => CreateWorkerBlockRequest$,
947
+ () => CreateWorkerBlockResponse$,
927
948
  ];
928
- var DeleteHIT = [9, n0, _DHIT, 2, () => DeleteHITRequest, () => DeleteHITResponse];
929
- var DeleteQualificationType = [
949
+ var DeleteHIT$ = [9, n0, _DHIT, 2, () => DeleteHITRequest$, () => DeleteHITResponse$];
950
+ var DeleteQualificationType$ = [
930
951
  9,
931
952
  n0,
932
953
  _DQT,
933
954
  2,
934
- () => DeleteQualificationTypeRequest,
935
- () => DeleteQualificationTypeResponse,
955
+ () => DeleteQualificationTypeRequest$,
956
+ () => DeleteQualificationTypeResponse$,
936
957
  ];
937
- var DeleteWorkerBlock = [
958
+ var DeleteWorkerBlock$ = [
938
959
  9,
939
960
  n0,
940
961
  _DWB,
941
962
  2,
942
- () => DeleteWorkerBlockRequest,
943
- () => DeleteWorkerBlockResponse,
963
+ () => DeleteWorkerBlockRequest$,
964
+ () => DeleteWorkerBlockResponse$,
944
965
  ];
945
- var DisassociateQualificationFromWorker = [
966
+ var DisassociateQualificationFromWorker$ = [
946
967
  9,
947
968
  n0,
948
969
  _DQFW,
949
970
  0,
950
- () => DisassociateQualificationFromWorkerRequest,
951
- () => DisassociateQualificationFromWorkerResponse,
971
+ () => DisassociateQualificationFromWorkerRequest$,
972
+ () => DisassociateQualificationFromWorkerResponse$,
952
973
  ];
953
- var GetAccountBalance = [
974
+ var GetAccountBalance$ = [
954
975
  9,
955
976
  n0,
956
977
  _GAB,
957
978
  2,
958
- () => GetAccountBalanceRequest,
959
- () => GetAccountBalanceResponse,
979
+ () => GetAccountBalanceRequest$,
980
+ () => GetAccountBalanceResponse$,
960
981
  ];
961
- var GetAssignment = [
982
+ var GetAssignment$ = [
962
983
  9,
963
984
  n0,
964
985
  _GA,
965
986
  2,
966
- () => GetAssignmentRequest,
967
- () => GetAssignmentResponse,
987
+ () => GetAssignmentRequest$,
988
+ () => GetAssignmentResponse$,
968
989
  ];
969
- var GetFileUploadURL = [
990
+ var GetFileUploadURL$ = [
970
991
  9,
971
992
  n0,
972
993
  _GFUURL,
973
994
  2,
974
- () => GetFileUploadURLRequest,
975
- () => GetFileUploadURLResponse,
995
+ () => GetFileUploadURLRequest$,
996
+ () => GetFileUploadURLResponse$,
976
997
  ];
977
- var GetHIT = [9, n0, _GHIT, 2, () => GetHITRequest, () => GetHITResponse];
978
- var GetQualificationScore = [
998
+ var GetHIT$ = [9, n0, _GHIT, 2, () => GetHITRequest$, () => GetHITResponse$];
999
+ var GetQualificationScore$ = [
979
1000
  9,
980
1001
  n0,
981
1002
  _GQS,
982
1003
  2,
983
- () => GetQualificationScoreRequest,
984
- () => GetQualificationScoreResponse,
1004
+ () => GetQualificationScoreRequest$,
1005
+ () => GetQualificationScoreResponse$,
985
1006
  ];
986
- var GetQualificationType = [
1007
+ var GetQualificationType$ = [
987
1008
  9,
988
1009
  n0,
989
1010
  _GQT,
990
1011
  2,
991
- () => GetQualificationTypeRequest,
992
- () => GetQualificationTypeResponse,
1012
+ () => GetQualificationTypeRequest$,
1013
+ () => GetQualificationTypeResponse$,
993
1014
  ];
994
- var ListAssignmentsForHIT = [
1015
+ var ListAssignmentsForHIT$ = [
995
1016
  9,
996
1017
  n0,
997
1018
  _LAFHIT,
998
1019
  2,
999
- () => ListAssignmentsForHITRequest,
1000
- () => ListAssignmentsForHITResponse,
1020
+ () => ListAssignmentsForHITRequest$,
1021
+ () => ListAssignmentsForHITResponse$,
1001
1022
  ];
1002
- var ListBonusPayments = [
1023
+ var ListBonusPayments$ = [
1003
1024
  9,
1004
1025
  n0,
1005
1026
  _LBP,
1006
1027
  2,
1007
- () => ListBonusPaymentsRequest,
1008
- () => ListBonusPaymentsResponse,
1028
+ () => ListBonusPaymentsRequest$,
1029
+ () => ListBonusPaymentsResponse$,
1009
1030
  ];
1010
- var ListHITs = [9, n0, _LHIT, 2, () => ListHITsRequest, () => ListHITsResponse];
1011
- var ListHITsForQualificationType = [
1031
+ var ListHITs$ = [9, n0, _LHIT, 2, () => ListHITsRequest$, () => ListHITsResponse$];
1032
+ var ListHITsForQualificationType$ = [
1012
1033
  9,
1013
1034
  n0,
1014
1035
  _LHITFQT,
1015
1036
  2,
1016
- () => ListHITsForQualificationTypeRequest,
1017
- () => ListHITsForQualificationTypeResponse,
1037
+ () => ListHITsForQualificationTypeRequest$,
1038
+ () => ListHITsForQualificationTypeResponse$,
1018
1039
  ];
1019
- var ListQualificationRequests = [
1040
+ var ListQualificationRequests$ = [
1020
1041
  9,
1021
1042
  n0,
1022
1043
  _LQR,
1023
1044
  2,
1024
- () => ListQualificationRequestsRequest,
1025
- () => ListQualificationRequestsResponse,
1045
+ () => ListQualificationRequestsRequest$,
1046
+ () => ListQualificationRequestsResponse$,
1026
1047
  ];
1027
- var ListQualificationTypes = [
1048
+ var ListQualificationTypes$ = [
1028
1049
  9,
1029
1050
  n0,
1030
1051
  _LQT,
1031
1052
  2,
1032
- () => ListQualificationTypesRequest,
1033
- () => ListQualificationTypesResponse,
1053
+ () => ListQualificationTypesRequest$,
1054
+ () => ListQualificationTypesResponse$,
1034
1055
  ];
1035
- var ListReviewableHITs = [
1056
+ var ListReviewableHITs$ = [
1036
1057
  9,
1037
1058
  n0,
1038
1059
  _LRHIT,
1039
1060
  2,
1040
- () => ListReviewableHITsRequest,
1041
- () => ListReviewableHITsResponse,
1061
+ () => ListReviewableHITsRequest$,
1062
+ () => ListReviewableHITsResponse$,
1042
1063
  ];
1043
- var ListReviewPolicyResultsForHIT = [
1064
+ var ListReviewPolicyResultsForHIT$ = [
1044
1065
  9,
1045
1066
  n0,
1046
1067
  _LRPRFHIT,
1047
1068
  2,
1048
- () => ListReviewPolicyResultsForHITRequest,
1049
- () => ListReviewPolicyResultsForHITResponse,
1069
+ () => ListReviewPolicyResultsForHITRequest$,
1070
+ () => ListReviewPolicyResultsForHITResponse$,
1050
1071
  ];
1051
- var ListWorkerBlocks = [
1072
+ var ListWorkerBlocks$ = [
1052
1073
  9,
1053
1074
  n0,
1054
1075
  _LWB,
1055
1076
  2,
1056
- () => ListWorkerBlocksRequest,
1057
- () => ListWorkerBlocksResponse,
1077
+ () => ListWorkerBlocksRequest$,
1078
+ () => ListWorkerBlocksResponse$,
1058
1079
  ];
1059
- var ListWorkersWithQualificationType = [
1080
+ var ListWorkersWithQualificationType$ = [
1060
1081
  9,
1061
1082
  n0,
1062
1083
  _LWWQT,
1063
1084
  2,
1064
- () => ListWorkersWithQualificationTypeRequest,
1065
- () => ListWorkersWithQualificationTypeResponse,
1085
+ () => ListWorkersWithQualificationTypeRequest$,
1086
+ () => ListWorkersWithQualificationTypeResponse$,
1066
1087
  ];
1067
- var NotifyWorkers = [
1088
+ var NotifyWorkers$ = [
1068
1089
  9,
1069
1090
  n0,
1070
1091
  _NW,
1071
1092
  0,
1072
- () => NotifyWorkersRequest,
1073
- () => NotifyWorkersResponse,
1093
+ () => NotifyWorkersRequest$,
1094
+ () => NotifyWorkersResponse$,
1074
1095
  ];
1075
- var RejectAssignment = [
1096
+ var RejectAssignment$ = [
1076
1097
  9,
1077
1098
  n0,
1078
1099
  _RAej,
1079
1100
  2,
1080
- () => RejectAssignmentRequest,
1081
- () => RejectAssignmentResponse,
1101
+ () => RejectAssignmentRequest$,
1102
+ () => RejectAssignmentResponse$,
1082
1103
  ];
1083
- var RejectQualificationRequest = [
1104
+ var RejectQualificationRequest$ = [
1084
1105
  9,
1085
1106
  n0,
1086
1107
  _RQR,
1087
1108
  0,
1088
- () => RejectQualificationRequestRequest,
1089
- () => RejectQualificationRequestResponse,
1109
+ () => RejectQualificationRequestRequest$,
1110
+ () => RejectQualificationRequestResponse$,
1090
1111
  ];
1091
- var SendBonus = [9, n0, _SB, 0, () => SendBonusRequest, () => SendBonusResponse];
1092
- var SendTestEventNotification = [
1112
+ var SendBonus$ = [9, n0, _SB, 0, () => SendBonusRequest$, () => SendBonusResponse$];
1113
+ var SendTestEventNotification$ = [
1093
1114
  9,
1094
1115
  n0,
1095
1116
  _STEN,
1096
1117
  0,
1097
- () => SendTestEventNotificationRequest,
1098
- () => SendTestEventNotificationResponse,
1118
+ () => SendTestEventNotificationRequest$,
1119
+ () => SendTestEventNotificationResponse$,
1099
1120
  ];
1100
- var UpdateExpirationForHIT = [
1121
+ var UpdateExpirationForHIT$ = [
1101
1122
  9,
1102
1123
  n0,
1103
1124
  _UEFHIT,
1104
1125
  2,
1105
- () => UpdateExpirationForHITRequest,
1106
- () => UpdateExpirationForHITResponse,
1126
+ () => UpdateExpirationForHITRequest$,
1127
+ () => UpdateExpirationForHITResponse$,
1107
1128
  ];
1108
- var UpdateHITReviewStatus = [
1129
+ var UpdateHITReviewStatus$ = [
1109
1130
  9,
1110
1131
  n0,
1111
1132
  _UHITRS,
1112
1133
  2,
1113
- () => UpdateHITReviewStatusRequest,
1114
- () => UpdateHITReviewStatusResponse,
1134
+ () => UpdateHITReviewStatusRequest$,
1135
+ () => UpdateHITReviewStatusResponse$,
1115
1136
  ];
1116
- var UpdateHITTypeOfHIT = [
1137
+ var UpdateHITTypeOfHIT$ = [
1117
1138
  9,
1118
1139
  n0,
1119
1140
  _UHITTOHIT,
1120
1141
  2,
1121
- () => UpdateHITTypeOfHITRequest,
1122
- () => UpdateHITTypeOfHITResponse,
1142
+ () => UpdateHITTypeOfHITRequest$,
1143
+ () => UpdateHITTypeOfHITResponse$,
1123
1144
  ];
1124
- var UpdateNotificationSettings = [
1145
+ var UpdateNotificationSettings$ = [
1125
1146
  9,
1126
1147
  n0,
1127
1148
  _UNS,
1128
1149
  2,
1129
- () => UpdateNotificationSettingsRequest,
1130
- () => UpdateNotificationSettingsResponse,
1150
+ () => UpdateNotificationSettingsRequest$,
1151
+ () => UpdateNotificationSettingsResponse$,
1131
1152
  ];
1132
- var UpdateQualificationType = [
1153
+ var UpdateQualificationType$ = [
1133
1154
  9,
1134
1155
  n0,
1135
1156
  _UQT,
1136
1157
  0,
1137
- () => UpdateQualificationTypeRequest,
1138
- () => UpdateQualificationTypeResponse,
1158
+ () => UpdateQualificationTypeRequest$,
1159
+ () => UpdateQualificationTypeResponse$,
1139
1160
  ];
1140
1161
 
1141
1162
  class AcceptQualificationRequestCommand extends smithyClient.Command
@@ -1146,7 +1167,7 @@ class AcceptQualificationRequestCommand extends smithyClient.Command
1146
1167
  })
1147
1168
  .s("MTurkRequesterServiceV20170117", "AcceptQualificationRequest", {})
1148
1169
  .n("MTurkClient", "AcceptQualificationRequestCommand")
1149
- .sc(AcceptQualificationRequest)
1170
+ .sc(AcceptQualificationRequest$)
1150
1171
  .build() {
1151
1172
  }
1152
1173
 
@@ -1158,7 +1179,7 @@ class ApproveAssignmentCommand extends smithyClient.Command
1158
1179
  })
1159
1180
  .s("MTurkRequesterServiceV20170117", "ApproveAssignment", {})
1160
1181
  .n("MTurkClient", "ApproveAssignmentCommand")
1161
- .sc(ApproveAssignment)
1182
+ .sc(ApproveAssignment$)
1162
1183
  .build() {
1163
1184
  }
1164
1185
 
@@ -1170,7 +1191,7 @@ class AssociateQualificationWithWorkerCommand extends smithyClient.Command
1170
1191
  })
1171
1192
  .s("MTurkRequesterServiceV20170117", "AssociateQualificationWithWorker", {})
1172
1193
  .n("MTurkClient", "AssociateQualificationWithWorkerCommand")
1173
- .sc(AssociateQualificationWithWorker)
1194
+ .sc(AssociateQualificationWithWorker$)
1174
1195
  .build() {
1175
1196
  }
1176
1197
 
@@ -1182,7 +1203,7 @@ class CreateAdditionalAssignmentsForHITCommand extends smithyClient.Command
1182
1203
  })
1183
1204
  .s("MTurkRequesterServiceV20170117", "CreateAdditionalAssignmentsForHIT", {})
1184
1205
  .n("MTurkClient", "CreateAdditionalAssignmentsForHITCommand")
1185
- .sc(CreateAdditionalAssignmentsForHIT)
1206
+ .sc(CreateAdditionalAssignmentsForHIT$)
1186
1207
  .build() {
1187
1208
  }
1188
1209
 
@@ -1194,7 +1215,7 @@ class CreateHITCommand extends smithyClient.Command
1194
1215
  })
1195
1216
  .s("MTurkRequesterServiceV20170117", "CreateHIT", {})
1196
1217
  .n("MTurkClient", "CreateHITCommand")
1197
- .sc(CreateHIT)
1218
+ .sc(CreateHIT$)
1198
1219
  .build() {
1199
1220
  }
1200
1221
 
@@ -1206,7 +1227,7 @@ class CreateHITTypeCommand extends smithyClient.Command
1206
1227
  })
1207
1228
  .s("MTurkRequesterServiceV20170117", "CreateHITType", {})
1208
1229
  .n("MTurkClient", "CreateHITTypeCommand")
1209
- .sc(CreateHITType)
1230
+ .sc(CreateHITType$)
1210
1231
  .build() {
1211
1232
  }
1212
1233
 
@@ -1218,7 +1239,7 @@ class CreateHITWithHITTypeCommand extends smithyClient.Command
1218
1239
  })
1219
1240
  .s("MTurkRequesterServiceV20170117", "CreateHITWithHITType", {})
1220
1241
  .n("MTurkClient", "CreateHITWithHITTypeCommand")
1221
- .sc(CreateHITWithHITType)
1242
+ .sc(CreateHITWithHITType$)
1222
1243
  .build() {
1223
1244
  }
1224
1245
 
@@ -1230,7 +1251,7 @@ class CreateQualificationTypeCommand extends smithyClient.Command
1230
1251
  })
1231
1252
  .s("MTurkRequesterServiceV20170117", "CreateQualificationType", {})
1232
1253
  .n("MTurkClient", "CreateQualificationTypeCommand")
1233
- .sc(CreateQualificationType)
1254
+ .sc(CreateQualificationType$)
1234
1255
  .build() {
1235
1256
  }
1236
1257
 
@@ -1242,7 +1263,7 @@ class CreateWorkerBlockCommand extends smithyClient.Command
1242
1263
  })
1243
1264
  .s("MTurkRequesterServiceV20170117", "CreateWorkerBlock", {})
1244
1265
  .n("MTurkClient", "CreateWorkerBlockCommand")
1245
- .sc(CreateWorkerBlock)
1266
+ .sc(CreateWorkerBlock$)
1246
1267
  .build() {
1247
1268
  }
1248
1269
 
@@ -1254,7 +1275,7 @@ class DeleteHITCommand extends smithyClient.Command
1254
1275
  })
1255
1276
  .s("MTurkRequesterServiceV20170117", "DeleteHIT", {})
1256
1277
  .n("MTurkClient", "DeleteHITCommand")
1257
- .sc(DeleteHIT)
1278
+ .sc(DeleteHIT$)
1258
1279
  .build() {
1259
1280
  }
1260
1281
 
@@ -1266,7 +1287,7 @@ class DeleteQualificationTypeCommand extends smithyClient.Command
1266
1287
  })
1267
1288
  .s("MTurkRequesterServiceV20170117", "DeleteQualificationType", {})
1268
1289
  .n("MTurkClient", "DeleteQualificationTypeCommand")
1269
- .sc(DeleteQualificationType)
1290
+ .sc(DeleteQualificationType$)
1270
1291
  .build() {
1271
1292
  }
1272
1293
 
@@ -1278,7 +1299,7 @@ class DeleteWorkerBlockCommand extends smithyClient.Command
1278
1299
  })
1279
1300
  .s("MTurkRequesterServiceV20170117", "DeleteWorkerBlock", {})
1280
1301
  .n("MTurkClient", "DeleteWorkerBlockCommand")
1281
- .sc(DeleteWorkerBlock)
1302
+ .sc(DeleteWorkerBlock$)
1282
1303
  .build() {
1283
1304
  }
1284
1305
 
@@ -1290,7 +1311,7 @@ class DisassociateQualificationFromWorkerCommand extends smithyClient.Command
1290
1311
  })
1291
1312
  .s("MTurkRequesterServiceV20170117", "DisassociateQualificationFromWorker", {})
1292
1313
  .n("MTurkClient", "DisassociateQualificationFromWorkerCommand")
1293
- .sc(DisassociateQualificationFromWorker)
1314
+ .sc(DisassociateQualificationFromWorker$)
1294
1315
  .build() {
1295
1316
  }
1296
1317
 
@@ -1302,7 +1323,7 @@ class GetAccountBalanceCommand extends smithyClient.Command
1302
1323
  })
1303
1324
  .s("MTurkRequesterServiceV20170117", "GetAccountBalance", {})
1304
1325
  .n("MTurkClient", "GetAccountBalanceCommand")
1305
- .sc(GetAccountBalance)
1326
+ .sc(GetAccountBalance$)
1306
1327
  .build() {
1307
1328
  }
1308
1329
 
@@ -1314,7 +1335,7 @@ class GetAssignmentCommand extends smithyClient.Command
1314
1335
  })
1315
1336
  .s("MTurkRequesterServiceV20170117", "GetAssignment", {})
1316
1337
  .n("MTurkClient", "GetAssignmentCommand")
1317
- .sc(GetAssignment)
1338
+ .sc(GetAssignment$)
1318
1339
  .build() {
1319
1340
  }
1320
1341
 
@@ -1326,7 +1347,7 @@ class GetFileUploadURLCommand extends smithyClient.Command
1326
1347
  })
1327
1348
  .s("MTurkRequesterServiceV20170117", "GetFileUploadURL", {})
1328
1349
  .n("MTurkClient", "GetFileUploadURLCommand")
1329
- .sc(GetFileUploadURL)
1350
+ .sc(GetFileUploadURL$)
1330
1351
  .build() {
1331
1352
  }
1332
1353
 
@@ -1338,7 +1359,7 @@ class GetHITCommand extends smithyClient.Command
1338
1359
  })
1339
1360
  .s("MTurkRequesterServiceV20170117", "GetHIT", {})
1340
1361
  .n("MTurkClient", "GetHITCommand")
1341
- .sc(GetHIT)
1362
+ .sc(GetHIT$)
1342
1363
  .build() {
1343
1364
  }
1344
1365
 
@@ -1350,7 +1371,7 @@ class GetQualificationScoreCommand extends smithyClient.Command
1350
1371
  })
1351
1372
  .s("MTurkRequesterServiceV20170117", "GetQualificationScore", {})
1352
1373
  .n("MTurkClient", "GetQualificationScoreCommand")
1353
- .sc(GetQualificationScore)
1374
+ .sc(GetQualificationScore$)
1354
1375
  .build() {
1355
1376
  }
1356
1377
 
@@ -1362,7 +1383,7 @@ class GetQualificationTypeCommand extends smithyClient.Command
1362
1383
  })
1363
1384
  .s("MTurkRequesterServiceV20170117", "GetQualificationType", {})
1364
1385
  .n("MTurkClient", "GetQualificationTypeCommand")
1365
- .sc(GetQualificationType)
1386
+ .sc(GetQualificationType$)
1366
1387
  .build() {
1367
1388
  }
1368
1389
 
@@ -1374,7 +1395,7 @@ class ListAssignmentsForHITCommand extends smithyClient.Command
1374
1395
  })
1375
1396
  .s("MTurkRequesterServiceV20170117", "ListAssignmentsForHIT", {})
1376
1397
  .n("MTurkClient", "ListAssignmentsForHITCommand")
1377
- .sc(ListAssignmentsForHIT)
1398
+ .sc(ListAssignmentsForHIT$)
1378
1399
  .build() {
1379
1400
  }
1380
1401
 
@@ -1386,7 +1407,7 @@ class ListBonusPaymentsCommand extends smithyClient.Command
1386
1407
  })
1387
1408
  .s("MTurkRequesterServiceV20170117", "ListBonusPayments", {})
1388
1409
  .n("MTurkClient", "ListBonusPaymentsCommand")
1389
- .sc(ListBonusPayments)
1410
+ .sc(ListBonusPayments$)
1390
1411
  .build() {
1391
1412
  }
1392
1413
 
@@ -1398,7 +1419,7 @@ class ListHITsCommand extends smithyClient.Command
1398
1419
  })
1399
1420
  .s("MTurkRequesterServiceV20170117", "ListHITs", {})
1400
1421
  .n("MTurkClient", "ListHITsCommand")
1401
- .sc(ListHITs)
1422
+ .sc(ListHITs$)
1402
1423
  .build() {
1403
1424
  }
1404
1425
 
@@ -1410,7 +1431,7 @@ class ListHITsForQualificationTypeCommand extends smithyClient.Command
1410
1431
  })
1411
1432
  .s("MTurkRequesterServiceV20170117", "ListHITsForQualificationType", {})
1412
1433
  .n("MTurkClient", "ListHITsForQualificationTypeCommand")
1413
- .sc(ListHITsForQualificationType)
1434
+ .sc(ListHITsForQualificationType$)
1414
1435
  .build() {
1415
1436
  }
1416
1437
 
@@ -1422,7 +1443,7 @@ class ListQualificationRequestsCommand extends smithyClient.Command
1422
1443
  })
1423
1444
  .s("MTurkRequesterServiceV20170117", "ListQualificationRequests", {})
1424
1445
  .n("MTurkClient", "ListQualificationRequestsCommand")
1425
- .sc(ListQualificationRequests)
1446
+ .sc(ListQualificationRequests$)
1426
1447
  .build() {
1427
1448
  }
1428
1449
 
@@ -1434,7 +1455,7 @@ class ListQualificationTypesCommand extends smithyClient.Command
1434
1455
  })
1435
1456
  .s("MTurkRequesterServiceV20170117", "ListQualificationTypes", {})
1436
1457
  .n("MTurkClient", "ListQualificationTypesCommand")
1437
- .sc(ListQualificationTypes)
1458
+ .sc(ListQualificationTypes$)
1438
1459
  .build() {
1439
1460
  }
1440
1461
 
@@ -1446,7 +1467,7 @@ class ListReviewableHITsCommand extends smithyClient.Command
1446
1467
  })
1447
1468
  .s("MTurkRequesterServiceV20170117", "ListReviewableHITs", {})
1448
1469
  .n("MTurkClient", "ListReviewableHITsCommand")
1449
- .sc(ListReviewableHITs)
1470
+ .sc(ListReviewableHITs$)
1450
1471
  .build() {
1451
1472
  }
1452
1473
 
@@ -1458,7 +1479,7 @@ class ListReviewPolicyResultsForHITCommand extends smithyClient.Command
1458
1479
  })
1459
1480
  .s("MTurkRequesterServiceV20170117", "ListReviewPolicyResultsForHIT", {})
1460
1481
  .n("MTurkClient", "ListReviewPolicyResultsForHITCommand")
1461
- .sc(ListReviewPolicyResultsForHIT)
1482
+ .sc(ListReviewPolicyResultsForHIT$)
1462
1483
  .build() {
1463
1484
  }
1464
1485
 
@@ -1470,7 +1491,7 @@ class ListWorkerBlocksCommand extends smithyClient.Command
1470
1491
  })
1471
1492
  .s("MTurkRequesterServiceV20170117", "ListWorkerBlocks", {})
1472
1493
  .n("MTurkClient", "ListWorkerBlocksCommand")
1473
- .sc(ListWorkerBlocks)
1494
+ .sc(ListWorkerBlocks$)
1474
1495
  .build() {
1475
1496
  }
1476
1497
 
@@ -1482,7 +1503,7 @@ class ListWorkersWithQualificationTypeCommand extends smithyClient.Command
1482
1503
  })
1483
1504
  .s("MTurkRequesterServiceV20170117", "ListWorkersWithQualificationType", {})
1484
1505
  .n("MTurkClient", "ListWorkersWithQualificationTypeCommand")
1485
- .sc(ListWorkersWithQualificationType)
1506
+ .sc(ListWorkersWithQualificationType$)
1486
1507
  .build() {
1487
1508
  }
1488
1509
 
@@ -1494,7 +1515,7 @@ class NotifyWorkersCommand extends smithyClient.Command
1494
1515
  })
1495
1516
  .s("MTurkRequesterServiceV20170117", "NotifyWorkers", {})
1496
1517
  .n("MTurkClient", "NotifyWorkersCommand")
1497
- .sc(NotifyWorkers)
1518
+ .sc(NotifyWorkers$)
1498
1519
  .build() {
1499
1520
  }
1500
1521
 
@@ -1506,7 +1527,7 @@ class RejectAssignmentCommand extends smithyClient.Command
1506
1527
  })
1507
1528
  .s("MTurkRequesterServiceV20170117", "RejectAssignment", {})
1508
1529
  .n("MTurkClient", "RejectAssignmentCommand")
1509
- .sc(RejectAssignment)
1530
+ .sc(RejectAssignment$)
1510
1531
  .build() {
1511
1532
  }
1512
1533
 
@@ -1518,7 +1539,7 @@ class RejectQualificationRequestCommand extends smithyClient.Command
1518
1539
  })
1519
1540
  .s("MTurkRequesterServiceV20170117", "RejectQualificationRequest", {})
1520
1541
  .n("MTurkClient", "RejectQualificationRequestCommand")
1521
- .sc(RejectQualificationRequest)
1542
+ .sc(RejectQualificationRequest$)
1522
1543
  .build() {
1523
1544
  }
1524
1545
 
@@ -1530,7 +1551,7 @@ class SendBonusCommand extends smithyClient.Command
1530
1551
  })
1531
1552
  .s("MTurkRequesterServiceV20170117", "SendBonus", {})
1532
1553
  .n("MTurkClient", "SendBonusCommand")
1533
- .sc(SendBonus)
1554
+ .sc(SendBonus$)
1534
1555
  .build() {
1535
1556
  }
1536
1557
 
@@ -1542,7 +1563,7 @@ class SendTestEventNotificationCommand extends smithyClient.Command
1542
1563
  })
1543
1564
  .s("MTurkRequesterServiceV20170117", "SendTestEventNotification", {})
1544
1565
  .n("MTurkClient", "SendTestEventNotificationCommand")
1545
- .sc(SendTestEventNotification)
1566
+ .sc(SendTestEventNotification$)
1546
1567
  .build() {
1547
1568
  }
1548
1569
 
@@ -1554,7 +1575,7 @@ class UpdateExpirationForHITCommand extends smithyClient.Command
1554
1575
  })
1555
1576
  .s("MTurkRequesterServiceV20170117", "UpdateExpirationForHIT", {})
1556
1577
  .n("MTurkClient", "UpdateExpirationForHITCommand")
1557
- .sc(UpdateExpirationForHIT)
1578
+ .sc(UpdateExpirationForHIT$)
1558
1579
  .build() {
1559
1580
  }
1560
1581
 
@@ -1566,7 +1587,7 @@ class UpdateHITReviewStatusCommand extends smithyClient.Command
1566
1587
  })
1567
1588
  .s("MTurkRequesterServiceV20170117", "UpdateHITReviewStatus", {})
1568
1589
  .n("MTurkClient", "UpdateHITReviewStatusCommand")
1569
- .sc(UpdateHITReviewStatus)
1590
+ .sc(UpdateHITReviewStatus$)
1570
1591
  .build() {
1571
1592
  }
1572
1593
 
@@ -1578,7 +1599,7 @@ class UpdateHITTypeOfHITCommand extends smithyClient.Command
1578
1599
  })
1579
1600
  .s("MTurkRequesterServiceV20170117", "UpdateHITTypeOfHIT", {})
1580
1601
  .n("MTurkClient", "UpdateHITTypeOfHITCommand")
1581
- .sc(UpdateHITTypeOfHIT)
1602
+ .sc(UpdateHITTypeOfHIT$)
1582
1603
  .build() {
1583
1604
  }
1584
1605
 
@@ -1590,7 +1611,7 @@ class UpdateNotificationSettingsCommand extends smithyClient.Command
1590
1611
  })
1591
1612
  .s("MTurkRequesterServiceV20170117", "UpdateNotificationSettings", {})
1592
1613
  .n("MTurkClient", "UpdateNotificationSettingsCommand")
1593
- .sc(UpdateNotificationSettings)
1614
+ .sc(UpdateNotificationSettings$)
1594
1615
  .build() {
1595
1616
  }
1596
1617
 
@@ -1602,7 +1623,7 @@ class UpdateQualificationTypeCommand extends smithyClient.Command
1602
1623
  })
1603
1624
  .s("MTurkRequesterServiceV20170117", "UpdateQualificationType", {})
1604
1625
  .n("MTurkClient", "UpdateQualificationTypeCommand")
1605
- .sc(UpdateQualificationType)
1626
+ .sc(UpdateQualificationType$)
1606
1627
  .build() {
1607
1628
  }
1608
1629
 
@@ -1760,63 +1781,201 @@ Object.defineProperty(exports, "__Client", {
1760
1781
  enumerable: true,
1761
1782
  get: function () { return smithyClient.Client; }
1762
1783
  });
1784
+ exports.AcceptQualificationRequest$ = AcceptQualificationRequest$;
1763
1785
  exports.AcceptQualificationRequestCommand = AcceptQualificationRequestCommand;
1786
+ exports.AcceptQualificationRequestRequest$ = AcceptQualificationRequestRequest$;
1787
+ exports.AcceptQualificationRequestResponse$ = AcceptQualificationRequestResponse$;
1788
+ exports.ApproveAssignment$ = ApproveAssignment$;
1764
1789
  exports.ApproveAssignmentCommand = ApproveAssignmentCommand;
1790
+ exports.ApproveAssignmentRequest$ = ApproveAssignmentRequest$;
1791
+ exports.ApproveAssignmentResponse$ = ApproveAssignmentResponse$;
1792
+ exports.Assignment$ = Assignment$;
1765
1793
  exports.AssignmentStatus = AssignmentStatus;
1794
+ exports.AssociateQualificationWithWorker$ = AssociateQualificationWithWorker$;
1766
1795
  exports.AssociateQualificationWithWorkerCommand = AssociateQualificationWithWorkerCommand;
1796
+ exports.AssociateQualificationWithWorkerRequest$ = AssociateQualificationWithWorkerRequest$;
1797
+ exports.AssociateQualificationWithWorkerResponse$ = AssociateQualificationWithWorkerResponse$;
1798
+ exports.BonusPayment$ = BonusPayment$;
1767
1799
  exports.Comparator = Comparator;
1800
+ exports.CreateAdditionalAssignmentsForHIT$ = CreateAdditionalAssignmentsForHIT$;
1768
1801
  exports.CreateAdditionalAssignmentsForHITCommand = CreateAdditionalAssignmentsForHITCommand;
1802
+ exports.CreateAdditionalAssignmentsForHITRequest$ = CreateAdditionalAssignmentsForHITRequest$;
1803
+ exports.CreateAdditionalAssignmentsForHITResponse$ = CreateAdditionalAssignmentsForHITResponse$;
1804
+ exports.CreateHIT$ = CreateHIT$;
1769
1805
  exports.CreateHITCommand = CreateHITCommand;
1806
+ exports.CreateHITRequest$ = CreateHITRequest$;
1807
+ exports.CreateHITResponse$ = CreateHITResponse$;
1808
+ exports.CreateHITType$ = CreateHITType$;
1770
1809
  exports.CreateHITTypeCommand = CreateHITTypeCommand;
1810
+ exports.CreateHITTypeRequest$ = CreateHITTypeRequest$;
1811
+ exports.CreateHITTypeResponse$ = CreateHITTypeResponse$;
1812
+ exports.CreateHITWithHITType$ = CreateHITWithHITType$;
1771
1813
  exports.CreateHITWithHITTypeCommand = CreateHITWithHITTypeCommand;
1814
+ exports.CreateHITWithHITTypeRequest$ = CreateHITWithHITTypeRequest$;
1815
+ exports.CreateHITWithHITTypeResponse$ = CreateHITWithHITTypeResponse$;
1816
+ exports.CreateQualificationType$ = CreateQualificationType$;
1772
1817
  exports.CreateQualificationTypeCommand = CreateQualificationTypeCommand;
1818
+ exports.CreateQualificationTypeRequest$ = CreateQualificationTypeRequest$;
1819
+ exports.CreateQualificationTypeResponse$ = CreateQualificationTypeResponse$;
1820
+ exports.CreateWorkerBlock$ = CreateWorkerBlock$;
1773
1821
  exports.CreateWorkerBlockCommand = CreateWorkerBlockCommand;
1822
+ exports.CreateWorkerBlockRequest$ = CreateWorkerBlockRequest$;
1823
+ exports.CreateWorkerBlockResponse$ = CreateWorkerBlockResponse$;
1824
+ exports.DeleteHIT$ = DeleteHIT$;
1774
1825
  exports.DeleteHITCommand = DeleteHITCommand;
1826
+ exports.DeleteHITRequest$ = DeleteHITRequest$;
1827
+ exports.DeleteHITResponse$ = DeleteHITResponse$;
1828
+ exports.DeleteQualificationType$ = DeleteQualificationType$;
1775
1829
  exports.DeleteQualificationTypeCommand = DeleteQualificationTypeCommand;
1830
+ exports.DeleteQualificationTypeRequest$ = DeleteQualificationTypeRequest$;
1831
+ exports.DeleteQualificationTypeResponse$ = DeleteQualificationTypeResponse$;
1832
+ exports.DeleteWorkerBlock$ = DeleteWorkerBlock$;
1776
1833
  exports.DeleteWorkerBlockCommand = DeleteWorkerBlockCommand;
1834
+ exports.DeleteWorkerBlockRequest$ = DeleteWorkerBlockRequest$;
1835
+ exports.DeleteWorkerBlockResponse$ = DeleteWorkerBlockResponse$;
1836
+ exports.DisassociateQualificationFromWorker$ = DisassociateQualificationFromWorker$;
1777
1837
  exports.DisassociateQualificationFromWorkerCommand = DisassociateQualificationFromWorkerCommand;
1838
+ exports.DisassociateQualificationFromWorkerRequest$ = DisassociateQualificationFromWorkerRequest$;
1839
+ exports.DisassociateQualificationFromWorkerResponse$ = DisassociateQualificationFromWorkerResponse$;
1778
1840
  exports.EventType = EventType;
1841
+ exports.GetAccountBalance$ = GetAccountBalance$;
1779
1842
  exports.GetAccountBalanceCommand = GetAccountBalanceCommand;
1843
+ exports.GetAccountBalanceRequest$ = GetAccountBalanceRequest$;
1844
+ exports.GetAccountBalanceResponse$ = GetAccountBalanceResponse$;
1845
+ exports.GetAssignment$ = GetAssignment$;
1780
1846
  exports.GetAssignmentCommand = GetAssignmentCommand;
1847
+ exports.GetAssignmentRequest$ = GetAssignmentRequest$;
1848
+ exports.GetAssignmentResponse$ = GetAssignmentResponse$;
1849
+ exports.GetFileUploadURL$ = GetFileUploadURL$;
1781
1850
  exports.GetFileUploadURLCommand = GetFileUploadURLCommand;
1851
+ exports.GetFileUploadURLRequest$ = GetFileUploadURLRequest$;
1852
+ exports.GetFileUploadURLResponse$ = GetFileUploadURLResponse$;
1853
+ exports.GetHIT$ = GetHIT$;
1782
1854
  exports.GetHITCommand = GetHITCommand;
1855
+ exports.GetHITRequest$ = GetHITRequest$;
1856
+ exports.GetHITResponse$ = GetHITResponse$;
1857
+ exports.GetQualificationScore$ = GetQualificationScore$;
1783
1858
  exports.GetQualificationScoreCommand = GetQualificationScoreCommand;
1859
+ exports.GetQualificationScoreRequest$ = GetQualificationScoreRequest$;
1860
+ exports.GetQualificationScoreResponse$ = GetQualificationScoreResponse$;
1861
+ exports.GetQualificationType$ = GetQualificationType$;
1784
1862
  exports.GetQualificationTypeCommand = GetQualificationTypeCommand;
1863
+ exports.GetQualificationTypeRequest$ = GetQualificationTypeRequest$;
1864
+ exports.GetQualificationTypeResponse$ = GetQualificationTypeResponse$;
1865
+ exports.HIT$ = HIT$;
1785
1866
  exports.HITAccessActions = HITAccessActions;
1867
+ exports.HITLayoutParameter$ = HITLayoutParameter$;
1786
1868
  exports.HITReviewStatus = HITReviewStatus;
1787
1869
  exports.HITStatus = HITStatus;
1870
+ exports.ListAssignmentsForHIT$ = ListAssignmentsForHIT$;
1788
1871
  exports.ListAssignmentsForHITCommand = ListAssignmentsForHITCommand;
1872
+ exports.ListAssignmentsForHITRequest$ = ListAssignmentsForHITRequest$;
1873
+ exports.ListAssignmentsForHITResponse$ = ListAssignmentsForHITResponse$;
1874
+ exports.ListBonusPayments$ = ListBonusPayments$;
1789
1875
  exports.ListBonusPaymentsCommand = ListBonusPaymentsCommand;
1876
+ exports.ListBonusPaymentsRequest$ = ListBonusPaymentsRequest$;
1877
+ exports.ListBonusPaymentsResponse$ = ListBonusPaymentsResponse$;
1878
+ exports.ListHITs$ = ListHITs$;
1790
1879
  exports.ListHITsCommand = ListHITsCommand;
1880
+ exports.ListHITsForQualificationType$ = ListHITsForQualificationType$;
1791
1881
  exports.ListHITsForQualificationTypeCommand = ListHITsForQualificationTypeCommand;
1882
+ exports.ListHITsForQualificationTypeRequest$ = ListHITsForQualificationTypeRequest$;
1883
+ exports.ListHITsForQualificationTypeResponse$ = ListHITsForQualificationTypeResponse$;
1884
+ exports.ListHITsRequest$ = ListHITsRequest$;
1885
+ exports.ListHITsResponse$ = ListHITsResponse$;
1886
+ exports.ListQualificationRequests$ = ListQualificationRequests$;
1792
1887
  exports.ListQualificationRequestsCommand = ListQualificationRequestsCommand;
1888
+ exports.ListQualificationRequestsRequest$ = ListQualificationRequestsRequest$;
1889
+ exports.ListQualificationRequestsResponse$ = ListQualificationRequestsResponse$;
1890
+ exports.ListQualificationTypes$ = ListQualificationTypes$;
1793
1891
  exports.ListQualificationTypesCommand = ListQualificationTypesCommand;
1892
+ exports.ListQualificationTypesRequest$ = ListQualificationTypesRequest$;
1893
+ exports.ListQualificationTypesResponse$ = ListQualificationTypesResponse$;
1894
+ exports.ListReviewPolicyResultsForHIT$ = ListReviewPolicyResultsForHIT$;
1794
1895
  exports.ListReviewPolicyResultsForHITCommand = ListReviewPolicyResultsForHITCommand;
1896
+ exports.ListReviewPolicyResultsForHITRequest$ = ListReviewPolicyResultsForHITRequest$;
1897
+ exports.ListReviewPolicyResultsForHITResponse$ = ListReviewPolicyResultsForHITResponse$;
1898
+ exports.ListReviewableHITs$ = ListReviewableHITs$;
1795
1899
  exports.ListReviewableHITsCommand = ListReviewableHITsCommand;
1900
+ exports.ListReviewableHITsRequest$ = ListReviewableHITsRequest$;
1901
+ exports.ListReviewableHITsResponse$ = ListReviewableHITsResponse$;
1902
+ exports.ListWorkerBlocks$ = ListWorkerBlocks$;
1796
1903
  exports.ListWorkerBlocksCommand = ListWorkerBlocksCommand;
1904
+ exports.ListWorkerBlocksRequest$ = ListWorkerBlocksRequest$;
1905
+ exports.ListWorkerBlocksResponse$ = ListWorkerBlocksResponse$;
1906
+ exports.ListWorkersWithQualificationType$ = ListWorkersWithQualificationType$;
1797
1907
  exports.ListWorkersWithQualificationTypeCommand = ListWorkersWithQualificationTypeCommand;
1908
+ exports.ListWorkersWithQualificationTypeRequest$ = ListWorkersWithQualificationTypeRequest$;
1909
+ exports.ListWorkersWithQualificationTypeResponse$ = ListWorkersWithQualificationTypeResponse$;
1910
+ exports.Locale$ = Locale$;
1798
1911
  exports.MTurk = MTurk;
1799
1912
  exports.MTurkClient = MTurkClient;
1800
- exports.MTurkServiceException = MTurkServiceException$1;
1913
+ exports.MTurkServiceException = MTurkServiceException;
1914
+ exports.MTurkServiceException$ = MTurkServiceException$;
1915
+ exports.NotificationSpecification$ = NotificationSpecification$;
1801
1916
  exports.NotificationTransport = NotificationTransport;
1917
+ exports.NotifyWorkers$ = NotifyWorkers$;
1802
1918
  exports.NotifyWorkersCommand = NotifyWorkersCommand;
1803
1919
  exports.NotifyWorkersFailureCode = NotifyWorkersFailureCode;
1920
+ exports.NotifyWorkersFailureStatus$ = NotifyWorkersFailureStatus$;
1921
+ exports.NotifyWorkersRequest$ = NotifyWorkersRequest$;
1922
+ exports.NotifyWorkersResponse$ = NotifyWorkersResponse$;
1923
+ exports.ParameterMapEntry$ = ParameterMapEntry$;
1924
+ exports.PolicyParameter$ = PolicyParameter$;
1925
+ exports.Qualification$ = Qualification$;
1926
+ exports.QualificationRequest$ = QualificationRequest$;
1927
+ exports.QualificationRequirement$ = QualificationRequirement$;
1804
1928
  exports.QualificationStatus = QualificationStatus;
1929
+ exports.QualificationType$ = QualificationType$;
1805
1930
  exports.QualificationTypeStatus = QualificationTypeStatus;
1931
+ exports.RejectAssignment$ = RejectAssignment$;
1806
1932
  exports.RejectAssignmentCommand = RejectAssignmentCommand;
1933
+ exports.RejectAssignmentRequest$ = RejectAssignmentRequest$;
1934
+ exports.RejectAssignmentResponse$ = RejectAssignmentResponse$;
1935
+ exports.RejectQualificationRequest$ = RejectQualificationRequest$;
1807
1936
  exports.RejectQualificationRequestCommand = RejectQualificationRequestCommand;
1808
- exports.RequestError = RequestError$1;
1937
+ exports.RejectQualificationRequestRequest$ = RejectQualificationRequestRequest$;
1938
+ exports.RejectQualificationRequestResponse$ = RejectQualificationRequestResponse$;
1939
+ exports.RequestError = RequestError;
1940
+ exports.RequestError$ = RequestError$;
1941
+ exports.ReviewActionDetail$ = ReviewActionDetail$;
1809
1942
  exports.ReviewActionStatus = ReviewActionStatus;
1943
+ exports.ReviewPolicy$ = ReviewPolicy$;
1810
1944
  exports.ReviewPolicyLevel = ReviewPolicyLevel;
1945
+ exports.ReviewReport$ = ReviewReport$;
1946
+ exports.ReviewResultDetail$ = ReviewResultDetail$;
1811
1947
  exports.ReviewableHITStatus = ReviewableHITStatus;
1948
+ exports.SendBonus$ = SendBonus$;
1812
1949
  exports.SendBonusCommand = SendBonusCommand;
1950
+ exports.SendBonusRequest$ = SendBonusRequest$;
1951
+ exports.SendBonusResponse$ = SendBonusResponse$;
1952
+ exports.SendTestEventNotification$ = SendTestEventNotification$;
1813
1953
  exports.SendTestEventNotificationCommand = SendTestEventNotificationCommand;
1814
- exports.ServiceFault = ServiceFault$1;
1954
+ exports.SendTestEventNotificationRequest$ = SendTestEventNotificationRequest$;
1955
+ exports.SendTestEventNotificationResponse$ = SendTestEventNotificationResponse$;
1956
+ exports.ServiceFault = ServiceFault;
1957
+ exports.ServiceFault$ = ServiceFault$;
1958
+ exports.UpdateExpirationForHIT$ = UpdateExpirationForHIT$;
1815
1959
  exports.UpdateExpirationForHITCommand = UpdateExpirationForHITCommand;
1960
+ exports.UpdateExpirationForHITRequest$ = UpdateExpirationForHITRequest$;
1961
+ exports.UpdateExpirationForHITResponse$ = UpdateExpirationForHITResponse$;
1962
+ exports.UpdateHITReviewStatus$ = UpdateHITReviewStatus$;
1816
1963
  exports.UpdateHITReviewStatusCommand = UpdateHITReviewStatusCommand;
1964
+ exports.UpdateHITReviewStatusRequest$ = UpdateHITReviewStatusRequest$;
1965
+ exports.UpdateHITReviewStatusResponse$ = UpdateHITReviewStatusResponse$;
1966
+ exports.UpdateHITTypeOfHIT$ = UpdateHITTypeOfHIT$;
1817
1967
  exports.UpdateHITTypeOfHITCommand = UpdateHITTypeOfHITCommand;
1968
+ exports.UpdateHITTypeOfHITRequest$ = UpdateHITTypeOfHITRequest$;
1969
+ exports.UpdateHITTypeOfHITResponse$ = UpdateHITTypeOfHITResponse$;
1970
+ exports.UpdateNotificationSettings$ = UpdateNotificationSettings$;
1818
1971
  exports.UpdateNotificationSettingsCommand = UpdateNotificationSettingsCommand;
1972
+ exports.UpdateNotificationSettingsRequest$ = UpdateNotificationSettingsRequest$;
1973
+ exports.UpdateNotificationSettingsResponse$ = UpdateNotificationSettingsResponse$;
1974
+ exports.UpdateQualificationType$ = UpdateQualificationType$;
1819
1975
  exports.UpdateQualificationTypeCommand = UpdateQualificationTypeCommand;
1976
+ exports.UpdateQualificationTypeRequest$ = UpdateQualificationTypeRequest$;
1977
+ exports.UpdateQualificationTypeResponse$ = UpdateQualificationTypeResponse$;
1978
+ exports.WorkerBlock$ = WorkerBlock$;
1820
1979
  exports.paginateListAssignmentsForHIT = paginateListAssignmentsForHIT;
1821
1980
  exports.paginateListBonusPayments = paginateListBonusPayments;
1822
1981
  exports.paginateListHITs = paginateListHITs;