@aws-sdk/client-qapps 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 (55) hide show
  1. package/dist-cjs/index.js +458 -318
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AssociateLibraryItemReviewCommand.js +2 -2
  4. package/dist-es/commands/AssociateQAppWithUserCommand.js +2 -2
  5. package/dist-es/commands/BatchCreateCategoryCommand.js +2 -2
  6. package/dist-es/commands/BatchDeleteCategoryCommand.js +2 -2
  7. package/dist-es/commands/BatchUpdateCategoryCommand.js +2 -2
  8. package/dist-es/commands/CreateLibraryItemCommand.js +2 -2
  9. package/dist-es/commands/CreatePresignedUrlCommand.js +2 -2
  10. package/dist-es/commands/CreateQAppCommand.js +2 -2
  11. package/dist-es/commands/DeleteLibraryItemCommand.js +2 -2
  12. package/dist-es/commands/DeleteQAppCommand.js +2 -2
  13. package/dist-es/commands/DescribeQAppPermissionsCommand.js +2 -2
  14. package/dist-es/commands/DisassociateLibraryItemReviewCommand.js +2 -2
  15. package/dist-es/commands/DisassociateQAppFromUserCommand.js +2 -2
  16. package/dist-es/commands/ExportQAppSessionDataCommand.js +2 -2
  17. package/dist-es/commands/GetLibraryItemCommand.js +2 -2
  18. package/dist-es/commands/GetQAppCommand.js +2 -2
  19. package/dist-es/commands/GetQAppSessionCommand.js +2 -2
  20. package/dist-es/commands/GetQAppSessionMetadataCommand.js +2 -2
  21. package/dist-es/commands/ImportDocumentCommand.js +2 -2
  22. package/dist-es/commands/ListCategoriesCommand.js +2 -2
  23. package/dist-es/commands/ListLibraryItemsCommand.js +2 -2
  24. package/dist-es/commands/ListQAppSessionDataCommand.js +2 -2
  25. package/dist-es/commands/ListQAppsCommand.js +2 -2
  26. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  27. package/dist-es/commands/PredictQAppCommand.js +2 -2
  28. package/dist-es/commands/StartQAppSessionCommand.js +2 -2
  29. package/dist-es/commands/StopQAppSessionCommand.js +2 -2
  30. package/dist-es/commands/TagResourceCommand.js +2 -2
  31. package/dist-es/commands/UntagResourceCommand.js +2 -2
  32. package/dist-es/commands/UpdateLibraryItemCommand.js +2 -2
  33. package/dist-es/commands/UpdateLibraryItemMetadataCommand.js +2 -2
  34. package/dist-es/commands/UpdateQAppCommand.js +2 -2
  35. package/dist-es/commands/UpdateQAppPermissionsCommand.js +2 -2
  36. package/dist-es/commands/UpdateQAppSessionCommand.js +2 -2
  37. package/dist-es/commands/UpdateQAppSessionMetadataCommand.js +2 -2
  38. package/dist-es/index.js +1 -0
  39. package/dist-es/runtimeConfig.shared.js +6 -1
  40. package/dist-es/schemas/schemas_0.js +267 -267
  41. package/dist-types/QAppsClient.d.ts +1 -10
  42. package/dist-types/index.d.ts +1 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  44. package/dist-types/runtimeConfig.d.ts +6 -2
  45. package/dist-types/runtimeConfig.native.d.ts +6 -2
  46. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  47. package/dist-types/schemas/schemas_0.d.ts +141 -168
  48. package/dist-types/ts3.4/QAppsClient.d.ts +0 -4
  49. package/dist-types/ts3.4/index.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +140 -169
  55. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class QAppsClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let QAppsServiceException$1 = class QAppsServiceException extends smithyClient.ServiceException {
113
+ class QAppsServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, QAppsServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends QAppsServiceException$1 {
120
+ class AccessDeniedException extends QAppsServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends QAppsServiceEx
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends QAppsServiceException$1 {
131
+ }
132
+ class ConflictException extends QAppsServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  resourceId;
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends QAppsServiceException$
144
144
  this.resourceId = opts.resourceId;
145
145
  this.resourceType = opts.resourceType;
146
146
  }
147
- };
148
- let InternalServerException$1 = class InternalServerException extends QAppsServiceException$1 {
147
+ }
148
+ class InternalServerException extends QAppsServiceException {
149
149
  name = "InternalServerException";
150
150
  $fault = "server";
151
151
  $retryable = {};
@@ -159,8 +159,8 @@ let InternalServerException$1 = class InternalServerException extends QAppsServi
159
159
  Object.setPrototypeOf(this, InternalServerException.prototype);
160
160
  this.retryAfterSeconds = opts.retryAfterSeconds;
161
161
  }
162
- };
163
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends QAppsServiceException$1 {
162
+ }
163
+ class ResourceNotFoundException extends QAppsServiceException {
164
164
  name = "ResourceNotFoundException";
165
165
  $fault = "client";
166
166
  resourceId;
@@ -175,8 +175,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends QAppsS
175
175
  this.resourceId = opts.resourceId;
176
176
  this.resourceType = opts.resourceType;
177
177
  }
178
- };
179
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends QAppsServiceException$1 {
178
+ }
179
+ class ServiceQuotaExceededException extends QAppsServiceException {
180
180
  name = "ServiceQuotaExceededException";
181
181
  $fault = "client";
182
182
  resourceId;
@@ -195,8 +195,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
195
195
  this.serviceCode = opts.serviceCode;
196
196
  this.quotaCode = opts.quotaCode;
197
197
  }
198
- };
199
- let ThrottlingException$1 = class ThrottlingException extends QAppsServiceException$1 {
198
+ }
199
+ class ThrottlingException extends QAppsServiceException {
200
200
  name = "ThrottlingException";
201
201
  $fault = "client";
202
202
  $retryable = {
@@ -216,8 +216,8 @@ let ThrottlingException$1 = class ThrottlingException extends QAppsServiceExcept
216
216
  this.quotaCode = opts.quotaCode;
217
217
  this.retryAfterSeconds = opts.retryAfterSeconds;
218
218
  }
219
- };
220
- let UnauthorizedException$1 = class UnauthorizedException extends QAppsServiceException$1 {
219
+ }
220
+ class UnauthorizedException extends QAppsServiceException {
221
221
  name = "UnauthorizedException";
222
222
  $fault = "client";
223
223
  constructor(opts) {
@@ -228,8 +228,8 @@ let UnauthorizedException$1 = class UnauthorizedException extends QAppsServiceEx
228
228
  });
229
229
  Object.setPrototypeOf(this, UnauthorizedException.prototype);
230
230
  }
231
- };
232
- let ValidationException$1 = class ValidationException extends QAppsServiceException$1 {
231
+ }
232
+ class ValidationException extends QAppsServiceException {
233
233
  name = "ValidationException";
234
234
  $fault = "client";
235
235
  constructor(opts) {
@@ -240,8 +240,8 @@ let ValidationException$1 = class ValidationException extends QAppsServiceExcept
240
240
  });
241
241
  Object.setPrototypeOf(this, ValidationException.prototype);
242
242
  }
243
- };
244
- let ContentTooLargeException$1 = class ContentTooLargeException extends QAppsServiceException$1 {
243
+ }
244
+ class ContentTooLargeException extends QAppsServiceException {
245
245
  name = "ContentTooLargeException";
246
246
  $fault = "client";
247
247
  resourceId;
@@ -256,7 +256,7 @@ let ContentTooLargeException$1 = class ContentTooLargeException extends QAppsSer
256
256
  this.resourceId = opts.resourceId;
257
257
  this.resourceType = opts.resourceType;
258
258
  }
259
- };
259
+ }
260
260
 
261
261
  const _AD = "AppDefinition";
262
262
  const _ADE = "AccessDeniedException";
@@ -548,11 +548,11 @@ const _uT = "userType";
548
548
  const _v = "value";
549
549
  const _va = "values";
550
550
  const n0 = "com.amazonaws.qapps";
551
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
552
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
553
- var AppDefinition = [3, n0, _AD, 0, [_aDV, _ca, _cE], [0, () => CardModelList, 2]];
554
- var AppDefinitionInput = [3, n0, _ADI, 0, [_ca, _iP], [() => CardList, 0]];
555
- var AssociateLibraryItemReviewInput = [
551
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
552
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
553
+ var AppDefinition$ = [3, n0, _AD, 0, [_aDV, _ca, _cE], [0, () => CardModelList, 2]];
554
+ var AppDefinitionInput$ = [3, n0, _ADI, 0, [_ca, _iP], [() => CardList, 0]];
555
+ var AssociateLibraryItemReviewInput$ = [
556
556
  3,
557
557
  n0,
558
558
  _ALIRI,
@@ -560,7 +560,7 @@ var AssociateLibraryItemReviewInput = [
560
560
  [_iI, _lII],
561
561
  [[0, { [_hH]: _ii }], 0],
562
562
  ];
563
- var AssociateQAppWithUserInput = [
563
+ var AssociateQAppWithUserInput$ = [
564
564
  3,
565
565
  n0,
566
566
  _AQAWUI,
@@ -568,7 +568,7 @@ var AssociateQAppWithUserInput = [
568
568
  [_iI, _aI],
569
569
  [[0, { [_hH]: _ii }], 0],
570
570
  ];
571
- var AttributeFilter = [
571
+ var AttributeFilter$ = [
572
572
  3,
573
573
  n0,
574
574
  _AF,
@@ -577,17 +577,17 @@ var AttributeFilter = [
577
577
  [
578
578
  () => AttributeFilters,
579
579
  () => AttributeFilters,
580
- () => AttributeFilter,
581
- () => DocumentAttribute,
582
- () => DocumentAttribute,
583
- () => DocumentAttribute,
584
- () => DocumentAttribute,
585
- () => DocumentAttribute,
586
- () => DocumentAttribute,
587
- () => DocumentAttribute,
580
+ () => AttributeFilter$,
581
+ () => DocumentAttribute$,
582
+ () => DocumentAttribute$,
583
+ () => DocumentAttribute$,
584
+ () => DocumentAttribute$,
585
+ () => DocumentAttribute$,
586
+ () => DocumentAttribute$,
587
+ () => DocumentAttribute$,
588
588
  ],
589
589
  ];
590
- var BatchCreateCategoryInput = [
590
+ var BatchCreateCategoryInput$ = [
591
591
  3,
592
592
  n0,
593
593
  _BCCI,
@@ -595,8 +595,8 @@ var BatchCreateCategoryInput = [
595
595
  [_iI, _cat],
596
596
  [[0, { [_hH]: _ii }], () => BatchCreateCategoryInputCategoryList],
597
597
  ];
598
- var BatchCreateCategoryInputCategory = [3, n0, _BCCIC, 0, [_i, _t, _co], [0, 0, 0]];
599
- var BatchDeleteCategoryInput = [
598
+ var BatchCreateCategoryInputCategory$ = [3, n0, _BCCIC, 0, [_i, _t, _co], [0, 0, 0]];
599
+ var BatchDeleteCategoryInput$ = [
600
600
  3,
601
601
  n0,
602
602
  _BDCI,
@@ -604,7 +604,7 @@ var BatchDeleteCategoryInput = [
604
604
  [_iI, _cat],
605
605
  [[0, { [_hH]: _ii }], 64 | 0],
606
606
  ];
607
- var BatchUpdateCategoryInput = [
607
+ var BatchUpdateCategoryInput$ = [
608
608
  3,
609
609
  n0,
610
610
  _BUCI,
@@ -612,13 +612,13 @@ var BatchUpdateCategoryInput = [
612
612
  [_iI, _cat],
613
613
  [[0, { [_hH]: _ii }], () => CategoryListInput],
614
614
  ];
615
- var CardStatus = [3, n0, _CS, 0, [_cS, _cV, _s], [0, 0, () => SubmissionList]];
616
- var CardValue = [3, n0, _CV, 0, [_cI, _v, _sM], [0, 0, () => SubmissionMutation]];
617
- var Category = [3, n0, _C, 0, [_i, _t, _co, _aC], [0, 0, 0, 1]];
618
- var CategoryInput = [3, n0, _CI, 0, [_i, _t, _co], [0, 0, 0]];
619
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
620
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
621
- var ContentTooLargeException = [
615
+ var CardStatus$ = [3, n0, _CS, 0, [_cS, _cV, _s], [0, 0, () => SubmissionList]];
616
+ var CardValue$ = [3, n0, _CV, 0, [_cI, _v, _sM], [0, 0, () => SubmissionMutation$]];
617
+ var Category$ = [3, n0, _C, 0, [_i, _t, _co, _aC], [0, 0, 0, 1]];
618
+ var CategoryInput$ = [3, n0, _CI, 0, [_i, _t, _co], [0, 0, 0]];
619
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
620
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
621
+ var ContentTooLargeException$ = [
622
622
  -3,
623
623
  n0,
624
624
  _CTLE,
@@ -626,9 +626,9 @@ var ContentTooLargeException = [
626
626
  [_m, _rI, _rT],
627
627
  [0, 0, 0],
628
628
  ];
629
- schema.TypeRegistry.for(n0).registerError(ContentTooLargeException, ContentTooLargeException$1);
630
- var ConversationMessage = [3, n0, _CM, 0, [_b, _ty], [0, 0]];
631
- var CreateLibraryItemInput = [
629
+ schema.TypeRegistry.for(n0).registerError(ContentTooLargeException$, ContentTooLargeException);
630
+ var ConversationMessage$ = [3, n0, _CM, 0, [_b, _ty], [0, 0]];
631
+ var CreateLibraryItemInput$ = [
632
632
  3,
633
633
  n0,
634
634
  _CLII,
@@ -636,7 +636,7 @@ var CreateLibraryItemInput = [
636
636
  [_iI, _aI, _aV, _cat],
637
637
  [[0, { [_hH]: _ii }], 0, 1, 64 | 0],
638
638
  ];
639
- var CreateLibraryItemOutput = [
639
+ var CreateLibraryItemOutput$ = [
640
640
  3,
641
641
  n0,
642
642
  _CLIO,
@@ -644,7 +644,7 @@ var CreateLibraryItemOutput = [
644
644
  [_lII, _st, _cAr, _cB, _uA, _uB, _rC, _iV],
645
645
  [0, 0, 5, 0, 5, 0, 1, 2],
646
646
  ];
647
- var CreatePresignedUrlInput = [
647
+ var CreatePresignedUrlInput$ = [
648
648
  3,
649
649
  n0,
650
650
  _CPUI,
@@ -652,7 +652,7 @@ var CreatePresignedUrlInput = [
652
652
  [_iI, _cI, _aI, _fCS, _fN, _sc, _sI],
653
653
  [[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0],
654
654
  ];
655
- var CreatePresignedUrlOutput = [
655
+ var CreatePresignedUrlOutput$ = [
656
656
  3,
657
657
  n0,
658
658
  _CPUO,
@@ -660,15 +660,15 @@ var CreatePresignedUrlOutput = [
660
660
  [_fI, _pU, _pUF, _pUE],
661
661
  [0, 0, 128 | 0, 5],
662
662
  ];
663
- var CreateQAppInput = [
663
+ var CreateQAppInput$ = [
664
664
  3,
665
665
  n0,
666
666
  _CQAI,
667
667
  0,
668
668
  [_iI, _t, _d, _aD, _ta],
669
- [[0, { [_hH]: _ii }], 0, 0, () => AppDefinitionInput, 128 | 0],
669
+ [[0, { [_hH]: _ii }], 0, 0, () => AppDefinitionInput$, 128 | 0],
670
670
  ];
671
- var CreateQAppOutput = [
671
+ var CreateQAppOutput$ = [
672
672
  3,
673
673
  n0,
674
674
  _CQAO,
@@ -676,9 +676,9 @@ var CreateQAppOutput = [
676
676
  [_aI, _aA, _t, _d, _iP, _aV, _st, _cAr, _cB, _uA, _uB, _rCe],
677
677
  [0, 0, 0, 0, 0, 1, 0, 5, 0, 5, 0, 64 | 0],
678
678
  ];
679
- var DeleteLibraryItemInput = [3, n0, _DLII, 0, [_iI, _lII], [[0, { [_hH]: _ii }], 0]];
680
- var DeleteQAppInput = [3, n0, _DQAI, 0, [_iI, _aI], [[0, { [_hH]: _ii }], 0]];
681
- var DescribeQAppPermissionsInput = [
679
+ var DeleteLibraryItemInput$ = [3, n0, _DLII, 0, [_iI, _lII], [[0, { [_hH]: _ii }], 0]];
680
+ var DeleteQAppInput$ = [3, n0, _DQAI, 0, [_iI, _aI], [[0, { [_hH]: _ii }], 0]];
681
+ var DescribeQAppPermissionsInput$ = [
682
682
  3,
683
683
  n0,
684
684
  _DQAPI,
@@ -689,7 +689,7 @@ var DescribeQAppPermissionsInput = [
689
689
  [0, { [_hQ]: _aI }],
690
690
  ],
691
691
  ];
692
- var DescribeQAppPermissionsOutput = [
692
+ var DescribeQAppPermissionsOutput$ = [
693
693
  3,
694
694
  n0,
695
695
  _DQAPO,
@@ -697,7 +697,7 @@ var DescribeQAppPermissionsOutput = [
697
697
  [_rA, _aI, _p],
698
698
  [0, 0, () => PermissionsOutputList],
699
699
  ];
700
- var DisassociateLibraryItemReviewInput = [
700
+ var DisassociateLibraryItemReviewInput$ = [
701
701
  3,
702
702
  n0,
703
703
  _DLIRI,
@@ -705,7 +705,7 @@ var DisassociateLibraryItemReviewInput = [
705
705
  [_iI, _lII],
706
706
  [[0, { [_hH]: _ii }], 0],
707
707
  ];
708
- var DisassociateQAppFromUserInput = [
708
+ var DisassociateQAppFromUserInput$ = [
709
709
  3,
710
710
  n0,
711
711
  _DQAFUI,
@@ -713,8 +713,8 @@ var DisassociateQAppFromUserInput = [
713
713
  [_iI, _aI],
714
714
  [[0, { [_hH]: _ii }], 0],
715
715
  ];
716
- var DocumentAttribute = [3, n0, _DA, 0, [_n, _v], [0, () => DocumentAttributeValue]];
717
- var ExportQAppSessionDataInput = [
716
+ var DocumentAttribute$ = [3, n0, _DA, 0, [_n, _v], [0, () => DocumentAttributeValue$]];
717
+ var ExportQAppSessionDataInput$ = [
718
718
  3,
719
719
  n0,
720
720
  _EQASDI,
@@ -722,8 +722,8 @@ var ExportQAppSessionDataInput = [
722
722
  [_iI, _sI],
723
723
  [[0, { [_hH]: _ii }], 0],
724
724
  ];
725
- var ExportQAppSessionDataOutput = [3, n0, _EQASDO, 0, [_cFL, _eA, _sA], [0, 5, 0]];
726
- var FileUploadCard = [
725
+ var ExportQAppSessionDataOutput$ = [3, n0, _EQASDO, 0, [_cFL, _eA, _sA], [0, 5, 0]];
726
+ var FileUploadCard$ = [
727
727
  3,
728
728
  n0,
729
729
  _FUC,
@@ -731,7 +731,7 @@ var FileUploadCard = [
731
731
  [_i, _t, _de, _ty, _f, _fI, _aO],
732
732
  [0, 0, 64 | 0, 0, 0, 0, 2],
733
733
  ];
734
- var FileUploadCardInput = [
734
+ var FileUploadCardInput$ = [
735
735
  3,
736
736
  n0,
737
737
  _FUCI,
@@ -739,24 +739,24 @@ var FileUploadCardInput = [
739
739
  [_t, _i, _ty, _f, _fI, _aO],
740
740
  [0, 0, 0, 0, 0, 2],
741
741
  ];
742
- var FormInputCard = [
742
+ var FormInputCard$ = [
743
743
  3,
744
744
  n0,
745
745
  _FIC,
746
746
  0,
747
747
  [_i, _t, _de, _ty, _me, _cM],
748
- [0, 0, 64 | 0, 0, () => FormInputCardMetadata, 0],
748
+ [0, 0, 64 | 0, 0, () => FormInputCardMetadata$, 0],
749
749
  ];
750
- var FormInputCardInput = [
750
+ var FormInputCardInput$ = [
751
751
  3,
752
752
  n0,
753
753
  _FICI,
754
754
  0,
755
755
  [_t, _i, _ty, _me, _cM],
756
- [0, 0, 0, () => FormInputCardMetadata, 0],
756
+ [0, 0, 0, () => FormInputCardMetadata$, 0],
757
757
  ];
758
- var FormInputCardMetadata = [3, n0, _FICM, 0, [_sch], [15]];
759
- var GetLibraryItemInput = [
758
+ var FormInputCardMetadata$ = [3, n0, _FICM, 0, [_sch], [15]];
759
+ var GetLibraryItemInput$ = [
760
760
  3,
761
761
  n0,
762
762
  _GLII,
@@ -768,7 +768,7 @@ var GetLibraryItemInput = [
768
768
  [0, { [_hQ]: _aI }],
769
769
  ],
770
770
  ];
771
- var GetLibraryItemOutput = [
771
+ var GetLibraryItemOutput$ = [
772
772
  3,
773
773
  n0,
774
774
  _GLIO,
@@ -776,7 +776,7 @@ var GetLibraryItemOutput = [
776
776
  [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _uA, _uB, _rC, _iRBU, _uC, _iV],
777
777
  [0, 0, 1, () => CategoryList, 0, 5, 0, 5, 0, 1, 2, 1, 2],
778
778
  ];
779
- var GetQAppInput = [
779
+ var GetQAppInput$ = [
780
780
  3,
781
781
  n0,
782
782
  _GQAI,
@@ -788,15 +788,15 @@ var GetQAppInput = [
788
788
  [1, { [_hQ]: _aV }],
789
789
  ],
790
790
  ];
791
- var GetQAppOutput = [
791
+ var GetQAppOutput$ = [
792
792
  3,
793
793
  n0,
794
794
  _GQAO,
795
795
  0,
796
796
  [_aI, _aA, _t, _d, _iP, _aV, _st, _cAr, _cB, _uA, _uB, _rCe, _aD],
797
- [0, 0, 0, 0, 0, 1, 0, 5, 0, 5, 0, 64 | 0, () => AppDefinition],
797
+ [0, 0, 0, 0, 0, 1, 0, 5, 0, 5, 0, 64 | 0, () => AppDefinition$],
798
798
  ];
799
- var GetQAppSessionInput = [
799
+ var GetQAppSessionInput$ = [
800
800
  3,
801
801
  n0,
802
802
  _GQASI,
@@ -807,7 +807,7 @@ var GetQAppSessionInput = [
807
807
  [0, { [_hQ]: _sI }],
808
808
  ],
809
809
  ];
810
- var GetQAppSessionMetadataInput = [
810
+ var GetQAppSessionMetadataInput$ = [
811
811
  3,
812
812
  n0,
813
813
  _GQASMI,
@@ -818,15 +818,15 @@ var GetQAppSessionMetadataInput = [
818
818
  [0, { [_hQ]: _sI }],
819
819
  ],
820
820
  ];
821
- var GetQAppSessionMetadataOutput = [
821
+ var GetQAppSessionMetadataOutput$ = [
822
822
  3,
823
823
  n0,
824
824
  _GQASMO,
825
825
  0,
826
826
  [_sI, _sA, _sN, _sC, _sO],
827
- [0, 0, 0, () => SessionSharingConfiguration, 2],
827
+ [0, 0, 0, () => SessionSharingConfiguration$, 2],
828
828
  ];
829
- var GetQAppSessionOutput = [
829
+ var GetQAppSessionOutput$ = [
830
830
  3,
831
831
  n0,
832
832
  _GQASO,
@@ -834,7 +834,7 @@ var GetQAppSessionOutput = [
834
834
  [_sI, _sA, _sN, _aV, _lPAV, _st, _cSa, _uIH],
835
835
  [0, 0, 0, 1, 1, 0, () => CardStatusMap, 2],
836
836
  ];
837
- var ImportDocumentInput = [
837
+ var ImportDocumentInput$ = [
838
838
  3,
839
839
  n0,
840
840
  _IDI,
@@ -842,8 +842,8 @@ var ImportDocumentInput = [
842
842
  [_iI, _cI, _aI, _fCB, _fN, _sc, _sI],
843
843
  [[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0],
844
844
  ];
845
- var ImportDocumentOutput = [3, n0, _IDO, 0, [_fI], [0]];
846
- var InternalServerException = [
845
+ var ImportDocumentOutput$ = [3, n0, _IDO, 0, [_fI], [0]];
846
+ var InternalServerException$ = [
847
847
  -3,
848
848
  n0,
849
849
  _ISE,
@@ -851,8 +851,8 @@ var InternalServerException = [
851
851
  [_m, _rAS],
852
852
  [0, [1, { [_hH]: _RA }]],
853
853
  ];
854
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
855
- var LibraryItemMember = [
854
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
855
+ var LibraryItemMember$ = [
856
856
  3,
857
857
  n0,
858
858
  _LIM,
@@ -860,9 +860,9 @@ var LibraryItemMember = [
860
860
  [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _uA, _uB, _rC, _iRBU, _uC, _iV],
861
861
  [0, 0, 1, () => CategoryList, 0, 5, 0, 5, 0, 1, 2, 1, 2],
862
862
  ];
863
- var ListCategoriesInput = [3, n0, _LCI, 0, [_iI], [[0, { [_hH]: _ii }]]];
864
- var ListCategoriesOutput = [3, n0, _LCO, 0, [_cat], [() => CategoriesList]];
865
- var ListLibraryItemsInput = [
863
+ var ListCategoriesInput$ = [3, n0, _LCI, 0, [_iI], [[0, { [_hH]: _ii }]]];
864
+ var ListCategoriesOutput$ = [3, n0, _LCO, 0, [_cat], [() => CategoriesList]];
865
+ var ListLibraryItemsInput$ = [
866
866
  3,
867
867
  n0,
868
868
  _LLII,
@@ -875,8 +875,8 @@ var ListLibraryItemsInput = [
875
875
  [0, { [_hQ]: _cIa }],
876
876
  ],
877
877
  ];
878
- var ListLibraryItemsOutput = [3, n0, _LLIO, 0, [_lI, _nT], [() => LibraryItemList, 0]];
879
- var ListQAppSessionDataInput = [
878
+ var ListLibraryItemsOutput$ = [3, n0, _LLIO, 0, [_lI, _nT], [() => LibraryItemList, 0]];
879
+ var ListQAppSessionDataInput$ = [
880
880
  3,
881
881
  n0,
882
882
  _LQASDI,
@@ -887,7 +887,7 @@ var ListQAppSessionDataInput = [
887
887
  [0, { [_hQ]: _sI }],
888
888
  ],
889
889
  ];
890
- var ListQAppSessionDataOutput = [
890
+ var ListQAppSessionDataOutput$ = [
891
891
  3,
892
892
  n0,
893
893
  _LQASDO,
@@ -895,7 +895,7 @@ var ListQAppSessionDataOutput = [
895
895
  [_sI, _sA, _sD, _nT],
896
896
  [0, 0, () => QAppSessionDataList, 0],
897
897
  ];
898
- var ListQAppsInput = [
898
+ var ListQAppsInput$ = [
899
899
  3,
900
900
  n0,
901
901
  _LQAI,
@@ -907,38 +907,38 @@ var ListQAppsInput = [
907
907
  [0, { [_hQ]: _nT }],
908
908
  ],
909
909
  ];
910
- var ListQAppsOutput = [3, n0, _LQAO, 0, [_a, _nT], [() => UserAppsList, 0]];
911
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rARN], [[0, 1]]];
912
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
913
- var PermissionInput = [3, n0, _PI, 0, [_ac, _pr], [0, 0]];
914
- var PermissionOutput = [3, n0, _PO, 0, [_ac, _pr], [0, () => PrincipalOutput]];
915
- var PredictAppDefinition = [
910
+ var ListQAppsOutput$ = [3, n0, _LQAO, 0, [_a, _nT], [() => UserAppsList, 0]];
911
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rARN], [[0, 1]]];
912
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
913
+ var PermissionInput$ = [3, n0, _PI, 0, [_ac, _pr], [0, 0]];
914
+ var PermissionOutput$ = [3, n0, _PO, 0, [_ac, _pr], [0, () => PrincipalOutput$]];
915
+ var PredictAppDefinition$ = [
916
916
  3,
917
917
  n0,
918
918
  _PAD,
919
919
  0,
920
920
  [_t, _d, _aD],
921
- [0, 0, () => AppDefinitionInput],
921
+ [0, 0, () => AppDefinitionInput$],
922
922
  ];
923
- var PredictQAppInput = [
923
+ var PredictQAppInput$ = [
924
924
  3,
925
925
  n0,
926
926
  _PQAI,
927
927
  0,
928
928
  [_iI, _o],
929
- [[0, { [_hH]: _ii }], () => PredictQAppInputOptions],
929
+ [[0, { [_hH]: _ii }], () => PredictQAppInputOptions$],
930
930
  ];
931
- var PredictQAppOutput = [3, n0, _PQAO, 0, [_ap, _pS], [() => PredictAppDefinition, 0]];
932
- var PrincipalOutput = [3, n0, _POr, 0, [_uI, _uT, _em], [0, 0, 0]];
933
- var QAppSessionData = [
931
+ var PredictQAppOutput$ = [3, n0, _PQAO, 0, [_ap, _pS], [() => PredictAppDefinition$, 0]];
932
+ var PrincipalOutput$ = [3, n0, _POr, 0, [_uI, _uT, _em], [0, 0, 0]];
933
+ var QAppSessionData$ = [
934
934
  3,
935
935
  n0,
936
936
  _QASD,
937
937
  0,
938
938
  [_cI, _v, _u, _sIu, _ti],
939
- [0, 15, () => User, 0, 5],
939
+ [0, 15, () => User$, 0, 5],
940
940
  ];
941
- var QPluginCard = [
941
+ var QPluginCard$ = [
942
942
  3,
943
943
  n0,
944
944
  _QPC,
@@ -946,7 +946,7 @@ var QPluginCard = [
946
946
  [_i, _t, _de, _ty, _pro, _pT, _pI, _aIc],
947
947
  [0, 0, 64 | 0, 0, 0, 0, 0, 0],
948
948
  ];
949
- var QPluginCardInput = [
949
+ var QPluginCardInput$ = [
950
950
  3,
951
951
  n0,
952
952
  _QPCI,
@@ -954,23 +954,23 @@ var QPluginCardInput = [
954
954
  [_t, _i, _ty, _pro, _pI, _aIc],
955
955
  [0, 0, 0, 0, 0, 0],
956
956
  ];
957
- var QQueryCard = [
957
+ var QQueryCard$ = [
958
958
  3,
959
959
  n0,
960
960
  _QQC,
961
961
  0,
962
962
  [_i, _t, _de, _ty, _pro, _oS, _aF, _mR],
963
- [0, 0, 64 | 0, 0, 0, 0, () => AttributeFilter, 64 | 0],
963
+ [0, 0, 64 | 0, 0, 0, 0, () => AttributeFilter$, 64 | 0],
964
964
  ];
965
- var QQueryCardInput = [
965
+ var QQueryCardInput$ = [
966
966
  3,
967
967
  n0,
968
968
  _QQCI,
969
969
  0,
970
970
  [_t, _i, _ty, _pro, _oS, _aF],
971
- [0, 0, 0, 0, 0, () => AttributeFilter],
971
+ [0, 0, 0, 0, 0, () => AttributeFilter$],
972
972
  ];
973
- var ResourceNotFoundException = [
973
+ var ResourceNotFoundException$ = [
974
974
  -3,
975
975
  n0,
976
976
  _RNFE,
@@ -978,8 +978,8 @@ var ResourceNotFoundException = [
978
978
  [_m, _rI, _rT],
979
979
  [0, 0, 0],
980
980
  ];
981
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
982
- var ServiceQuotaExceededException = [
981
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
982
+ var ServiceQuotaExceededException$ = [
983
983
  -3,
984
984
  n0,
985
985
  _SQEE,
@@ -987,9 +987,9 @@ var ServiceQuotaExceededException = [
987
987
  [_m, _rI, _rT, _sCe, _qC],
988
988
  [0, 0, 0, 0, 0],
989
989
  ];
990
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
991
- var SessionSharingConfiguration = [3, n0, _SSC, 0, [_en, _aR, _rCev], [2, 2, 2]];
992
- var StartQAppSessionInput = [
990
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
991
+ var SessionSharingConfiguration$ = [3, n0, _SSC, 0, [_en, _aR, _rCev], [2, 2, 2]];
992
+ var StartQAppSessionInput$ = [
993
993
  3,
994
994
  n0,
995
995
  _SQASI,
@@ -997,13 +997,13 @@ var StartQAppSessionInput = [
997
997
  [_iI, _aI, _aV, _iVn, _sI, _ta],
998
998
  [[0, { [_hH]: _ii }], 0, 1, () => CardValueList, 0, 128 | 0],
999
999
  ];
1000
- var StartQAppSessionOutput = [3, n0, _SQASO, 0, [_sI, _sA], [0, 0]];
1001
- var StopQAppSessionInput = [3, n0, _SQASIt, 0, [_iI, _sI], [[0, { [_hH]: _ii }], 0]];
1002
- var Submission = [3, n0, _S, 0, [_v, _sIu, _ti], [15, 0, 5]];
1003
- var SubmissionMutation = [3, n0, _SM, 0, [_sIu, _mT], [0, 0]];
1004
- var TagResourceRequest = [3, n0, _TRR, 0, [_rARN, _ta], [[0, 1], 128 | 0]];
1005
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1006
- var TextInputCard = [
1000
+ var StartQAppSessionOutput$ = [3, n0, _SQASO, 0, [_sI, _sA], [0, 0]];
1001
+ var StopQAppSessionInput$ = [3, n0, _SQASIt, 0, [_iI, _sI], [[0, { [_hH]: _ii }], 0]];
1002
+ var Submission$ = [3, n0, _S, 0, [_v, _sIu, _ti], [15, 0, 5]];
1003
+ var SubmissionMutation$ = [3, n0, _SM, 0, [_sIu, _mT], [0, 0]];
1004
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rARN, _ta], [[0, 1], 128 | 0]];
1005
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1006
+ var TextInputCard$ = [
1007
1007
  3,
1008
1008
  n0,
1009
1009
  _TIC,
@@ -1011,8 +1011,8 @@ var TextInputCard = [
1011
1011
  [_i, _t, _de, _ty, _pl, _dV],
1012
1012
  [0, 0, 64 | 0, 0, 0, 0],
1013
1013
  ];
1014
- var TextInputCardInput = [3, n0, _TICI, 0, [_t, _i, _ty, _pl, _dV], [0, 0, 0, 0, 0]];
1015
- var ThrottlingException = [
1014
+ var TextInputCardInput$ = [3, n0, _TICI, 0, [_t, _i, _ty, _pl, _dV], [0, 0, 0, 0, 0]];
1015
+ var ThrottlingException$ = [
1016
1016
  -3,
1017
1017
  n0,
1018
1018
  _TE,
@@ -1020,10 +1020,10 @@ var ThrottlingException = [
1020
1020
  [_m, _sCe, _qC, _rAS],
1021
1021
  [0, 0, 0, [1, { [_hH]: _RA }]],
1022
1022
  ];
1023
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1024
- var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
1025
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
1026
- var UntagResourceRequest = [
1023
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1024
+ var UnauthorizedException$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
1025
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
1026
+ var UntagResourceRequest$ = [
1027
1027
  3,
1028
1028
  n0,
1029
1029
  _URR,
@@ -1034,8 +1034,8 @@ var UntagResourceRequest = [
1034
1034
  [64 | 0, { [_hQ]: _tK }],
1035
1035
  ],
1036
1036
  ];
1037
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1038
- var UpdateLibraryItemInput = [
1037
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1038
+ var UpdateLibraryItemInput$ = [
1039
1039
  3,
1040
1040
  n0,
1041
1041
  _ULII,
@@ -1043,7 +1043,7 @@ var UpdateLibraryItemInput = [
1043
1043
  [_iI, _lII, _st, _cat],
1044
1044
  [[0, { [_hH]: _ii }], 0, 0, 64 | 0],
1045
1045
  ];
1046
- var UpdateLibraryItemMetadataInput = [
1046
+ var UpdateLibraryItemMetadataInput$ = [
1047
1047
  3,
1048
1048
  n0,
1049
1049
  _ULIMI,
@@ -1051,7 +1051,7 @@ var UpdateLibraryItemMetadataInput = [
1051
1051
  [_iI, _lII, _iV],
1052
1052
  [[0, { [_hH]: _ii }], 0, 2],
1053
1053
  ];
1054
- var UpdateLibraryItemOutput = [
1054
+ var UpdateLibraryItemOutput$ = [
1055
1055
  3,
1056
1056
  n0,
1057
1057
  _ULIO,
@@ -1059,15 +1059,15 @@ var UpdateLibraryItemOutput = [
1059
1059
  [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _uA, _uB, _rC, _iRBU, _uC, _iV],
1060
1060
  [0, 0, 1, () => CategoryList, 0, 5, 0, 5, 0, 1, 2, 1, 2],
1061
1061
  ];
1062
- var UpdateQAppInput = [
1062
+ var UpdateQAppInput$ = [
1063
1063
  3,
1064
1064
  n0,
1065
1065
  _UQAI,
1066
1066
  0,
1067
1067
  [_iI, _aI, _t, _d, _aD],
1068
- [[0, { [_hH]: _ii }], 0, 0, 0, () => AppDefinitionInput],
1068
+ [[0, { [_hH]: _ii }], 0, 0, 0, () => AppDefinitionInput$],
1069
1069
  ];
1070
- var UpdateQAppOutput = [
1070
+ var UpdateQAppOutput$ = [
1071
1071
  3,
1072
1072
  n0,
1073
1073
  _UQAO,
@@ -1075,7 +1075,7 @@ var UpdateQAppOutput = [
1075
1075
  [_aI, _aA, _t, _d, _iP, _aV, _st, _cAr, _cB, _uA, _uB, _rCe],
1076
1076
  [0, 0, 0, 0, 0, 1, 0, 5, 0, 5, 0, 64 | 0],
1077
1077
  ];
1078
- var UpdateQAppPermissionsInput = [
1078
+ var UpdateQAppPermissionsInput$ = [
1079
1079
  3,
1080
1080
  n0,
1081
1081
  _UQAPI,
@@ -1083,7 +1083,7 @@ var UpdateQAppPermissionsInput = [
1083
1083
  [_iI, _aI, _gP, _rP],
1084
1084
  [[0, { [_hH]: _ii }], 0, () => PermissionsInputList, () => PermissionsInputList],
1085
1085
  ];
1086
- var UpdateQAppPermissionsOutput = [
1086
+ var UpdateQAppPermissionsOutput$ = [
1087
1087
  3,
1088
1088
  n0,
1089
1089
  _UQAPO,
@@ -1091,7 +1091,7 @@ var UpdateQAppPermissionsOutput = [
1091
1091
  [_rA, _aI, _p],
1092
1092
  [0, 0, () => PermissionsOutputList],
1093
1093
  ];
1094
- var UpdateQAppSessionInput = [
1094
+ var UpdateQAppSessionInput$ = [
1095
1095
  3,
1096
1096
  n0,
1097
1097
  _UQASI,
@@ -1099,25 +1099,25 @@ var UpdateQAppSessionInput = [
1099
1099
  [_iI, _sI, _va],
1100
1100
  [[0, { [_hH]: _ii }], 0, () => CardValueList],
1101
1101
  ];
1102
- var UpdateQAppSessionMetadataInput = [
1102
+ var UpdateQAppSessionMetadataInput$ = [
1103
1103
  3,
1104
1104
  n0,
1105
1105
  _UQASMI,
1106
1106
  0,
1107
1107
  [_iI, _sI, _sN, _sC],
1108
- [[0, { [_hH]: _ii }], 0, 0, () => SessionSharingConfiguration],
1108
+ [[0, { [_hH]: _ii }], 0, 0, () => SessionSharingConfiguration$],
1109
1109
  ];
1110
- var UpdateQAppSessionMetadataOutput = [
1110
+ var UpdateQAppSessionMetadataOutput$ = [
1111
1111
  3,
1112
1112
  n0,
1113
1113
  _UQASMO,
1114
1114
  0,
1115
1115
  [_sI, _sA, _sN, _sC],
1116
- [0, 0, 0, () => SessionSharingConfiguration],
1116
+ [0, 0, 0, () => SessionSharingConfiguration$],
1117
1117
  ];
1118
- var UpdateQAppSessionOutput = [3, n0, _UQASO, 0, [_sI, _sA], [0, 0]];
1119
- var User = [3, n0, _U, 0, [_uI], [0]];
1120
- var UserAppItem = [
1118
+ var UpdateQAppSessionOutput$ = [3, n0, _UQASO, 0, [_sI, _sA], [0, 0]];
1119
+ var User$ = [3, n0, _U, 0, [_uI], [0]];
1120
+ var UserAppItem$ = [
1121
1121
  3,
1122
1122
  n0,
1123
1123
  _UAI,
@@ -1125,336 +1125,336 @@ var UserAppItem = [
1125
1125
  [_aI, _aA, _t, _d, _cAr, _cE, _st, _iV],
1126
1126
  [0, 0, 0, 0, 5, 2, 0, 2],
1127
1127
  ];
1128
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1129
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1128
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1129
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1130
1130
  var __Unit = "unit";
1131
- var QAppsServiceException = [-3, _sm, "QAppsServiceException", 0, [], []];
1132
- schema.TypeRegistry.for(_sm).registerError(QAppsServiceException, QAppsServiceException$1);
1133
- var AttributeFilters = [1, n0, _AFt, 0, () => AttributeFilter];
1131
+ var QAppsServiceException$ = [-3, _sm, "QAppsServiceException", 0, [], []];
1132
+ schema.TypeRegistry.for(_sm).registerError(QAppsServiceException$, QAppsServiceException);
1133
+ var AttributeFilters = [1, n0, _AFt, 0, () => AttributeFilter$];
1134
1134
  var BatchCreateCategoryInputCategoryList = [
1135
1135
  1,
1136
1136
  n0,
1137
1137
  _BCCICL,
1138
1138
  0,
1139
- () => BatchCreateCategoryInputCategory,
1140
- ];
1141
- var CardList = [1, n0, _CL, 0, () => CardInput];
1142
- var CardModelList = [1, n0, _CML, 0, () => Card];
1143
- var CardValueList = [1, n0, _CVL, 0, () => CardValue];
1144
- var CategoriesList = [1, n0, _CLa, 0, () => Category];
1145
- var CategoryList = [1, n0, _CLat, 0, () => Category];
1146
- var CategoryListInput = [1, n0, _CLI, 0, () => CategoryInput];
1147
- var LibraryItemList = [1, n0, _LIL, 0, () => LibraryItemMember];
1148
- var MessageList = [1, n0, _ML, 0, () => ConversationMessage];
1149
- var PermissionsInputList = [1, n0, _PIL, 0, () => PermissionInput];
1150
- var PermissionsOutputList = [1, n0, _POL, 0, () => PermissionOutput];
1151
- var QAppSessionDataList = [1, n0, _QASDL, 0, () => QAppSessionData];
1152
- var SubmissionList = [1, n0, _SL, 0, () => Submission];
1153
- var UserAppsList = [1, n0, _UAL, 0, () => UserAppItem];
1154
- var CardStatusMap = [2, n0, _CSM, 0, 0, () => CardStatus];
1155
- var Card = [
1139
+ () => BatchCreateCategoryInputCategory$,
1140
+ ];
1141
+ var CardList = [1, n0, _CL, 0, () => CardInput$];
1142
+ var CardModelList = [1, n0, _CML, 0, () => Card$];
1143
+ var CardValueList = [1, n0, _CVL, 0, () => CardValue$];
1144
+ var CategoriesList = [1, n0, _CLa, 0, () => Category$];
1145
+ var CategoryList = [1, n0, _CLat, 0, () => Category$];
1146
+ var CategoryListInput = [1, n0, _CLI, 0, () => CategoryInput$];
1147
+ var LibraryItemList = [1, n0, _LIL, 0, () => LibraryItemMember$];
1148
+ var MessageList = [1, n0, _ML, 0, () => ConversationMessage$];
1149
+ var PermissionsInputList = [1, n0, _PIL, 0, () => PermissionInput$];
1150
+ var PermissionsOutputList = [1, n0, _POL, 0, () => PermissionOutput$];
1151
+ var QAppSessionDataList = [1, n0, _QASDL, 0, () => QAppSessionData$];
1152
+ var SubmissionList = [1, n0, _SL, 0, () => Submission$];
1153
+ var UserAppsList = [1, n0, _UAL, 0, () => UserAppItem$];
1154
+ var CardStatusMap = [2, n0, _CSM, 0, 0, () => CardStatus$];
1155
+ var Card$ = [
1156
1156
  3,
1157
1157
  n0,
1158
1158
  _Ca,
1159
1159
  0,
1160
1160
  [_tI, _qQ, _qP, _fU, _fIo],
1161
- [() => TextInputCard, () => QQueryCard, () => QPluginCard, () => FileUploadCard, () => FormInputCard],
1161
+ [() => TextInputCard$, () => QQueryCard$, () => QPluginCard$, () => FileUploadCard$, () => FormInputCard$],
1162
1162
  ];
1163
- var CardInput = [
1163
+ var CardInput$ = [
1164
1164
  3,
1165
1165
  n0,
1166
1166
  _CIa,
1167
1167
  0,
1168
1168
  [_tI, _qQ, _qP, _fU, _fIo],
1169
1169
  [
1170
- () => TextInputCardInput,
1171
- () => QQueryCardInput,
1172
- () => QPluginCardInput,
1173
- () => FileUploadCardInput,
1174
- () => FormInputCardInput,
1170
+ () => TextInputCardInput$,
1171
+ () => QQueryCardInput$,
1172
+ () => QPluginCardInput$,
1173
+ () => FileUploadCardInput$,
1174
+ () => FormInputCardInput$,
1175
1175
  ],
1176
1176
  ];
1177
- var DocumentAttributeValue = [3, n0, _DAV, 0, [_sV, _sLV, _lV, _dVa], [0, 64 | 0, 1, 4]];
1178
- var PredictQAppInputOptions = [3, n0, _PQAIO, 0, [_con, _pS], [() => MessageList, 0]];
1179
- var AssociateLibraryItemReview = [
1177
+ var DocumentAttributeValue$ = [3, n0, _DAV, 0, [_sV, _sLV, _lV, _dVa], [0, 64 | 0, 1, 4]];
1178
+ var PredictQAppInputOptions$ = [3, n0, _PQAIO, 0, [_con, _pS], [() => MessageList, 0]];
1179
+ var AssociateLibraryItemReview$ = [
1180
1180
  9,
1181
1181
  n0,
1182
1182
  _ALIR,
1183
1183
  { [_h]: ["POST", "/catalog.associateItemRating", 200] },
1184
- () => AssociateLibraryItemReviewInput,
1184
+ () => AssociateLibraryItemReviewInput$,
1185
1185
  () => __Unit,
1186
1186
  ];
1187
- var AssociateQAppWithUser = [
1187
+ var AssociateQAppWithUser$ = [
1188
1188
  9,
1189
1189
  n0,
1190
1190
  _AQAWU,
1191
1191
  { [_h]: ["POST", "/apps.install", 200] },
1192
- () => AssociateQAppWithUserInput,
1192
+ () => AssociateQAppWithUserInput$,
1193
1193
  () => __Unit,
1194
1194
  ];
1195
- var BatchCreateCategory = [
1195
+ var BatchCreateCategory$ = [
1196
1196
  9,
1197
1197
  n0,
1198
1198
  _BCC,
1199
1199
  { [_h]: ["POST", "/catalog.createCategories", 200] },
1200
- () => BatchCreateCategoryInput,
1200
+ () => BatchCreateCategoryInput$,
1201
1201
  () => __Unit,
1202
1202
  ];
1203
- var BatchDeleteCategory = [
1203
+ var BatchDeleteCategory$ = [
1204
1204
  9,
1205
1205
  n0,
1206
1206
  _BDC,
1207
1207
  { [_h]: ["POST", "/catalog.deleteCategories", 200] },
1208
- () => BatchDeleteCategoryInput,
1208
+ () => BatchDeleteCategoryInput$,
1209
1209
  () => __Unit,
1210
1210
  ];
1211
- var BatchUpdateCategory = [
1211
+ var BatchUpdateCategory$ = [
1212
1212
  9,
1213
1213
  n0,
1214
1214
  _BUC,
1215
1215
  { [_h]: ["POST", "/catalog.updateCategories", 200] },
1216
- () => BatchUpdateCategoryInput,
1216
+ () => BatchUpdateCategoryInput$,
1217
1217
  () => __Unit,
1218
1218
  ];
1219
- var CreateLibraryItem = [
1219
+ var CreateLibraryItem$ = [
1220
1220
  9,
1221
1221
  n0,
1222
1222
  _CLIr,
1223
1223
  { [_h]: ["POST", "/catalog.createItem", 200] },
1224
- () => CreateLibraryItemInput,
1225
- () => CreateLibraryItemOutput,
1224
+ () => CreateLibraryItemInput$,
1225
+ () => CreateLibraryItemOutput$,
1226
1226
  ];
1227
- var CreatePresignedUrl = [
1227
+ var CreatePresignedUrl$ = [
1228
1228
  9,
1229
1229
  n0,
1230
1230
  _CPU,
1231
1231
  { [_h]: ["POST", "/apps.createPresignedUrl", 200] },
1232
- () => CreatePresignedUrlInput,
1233
- () => CreatePresignedUrlOutput,
1232
+ () => CreatePresignedUrlInput$,
1233
+ () => CreatePresignedUrlOutput$,
1234
1234
  ];
1235
- var CreateQApp = [
1235
+ var CreateQApp$ = [
1236
1236
  9,
1237
1237
  n0,
1238
1238
  _CQA,
1239
1239
  { [_h]: ["POST", "/apps.create", 200] },
1240
- () => CreateQAppInput,
1241
- () => CreateQAppOutput,
1240
+ () => CreateQAppInput$,
1241
+ () => CreateQAppOutput$,
1242
1242
  ];
1243
- var DeleteLibraryItem = [
1243
+ var DeleteLibraryItem$ = [
1244
1244
  9,
1245
1245
  n0,
1246
1246
  _DLI,
1247
1247
  { [_h]: ["POST", "/catalog.deleteItem", 200] },
1248
- () => DeleteLibraryItemInput,
1248
+ () => DeleteLibraryItemInput$,
1249
1249
  () => __Unit,
1250
1250
  ];
1251
- var DeleteQApp = [
1251
+ var DeleteQApp$ = [
1252
1252
  9,
1253
1253
  n0,
1254
1254
  _DQA,
1255
1255
  { [_h]: ["POST", "/apps.delete", 200] },
1256
- () => DeleteQAppInput,
1256
+ () => DeleteQAppInput$,
1257
1257
  () => __Unit,
1258
1258
  ];
1259
- var DescribeQAppPermissions = [
1259
+ var DescribeQAppPermissions$ = [
1260
1260
  9,
1261
1261
  n0,
1262
1262
  _DQAP,
1263
1263
  { [_h]: ["GET", "/apps.describeQAppPermissions", 200] },
1264
- () => DescribeQAppPermissionsInput,
1265
- () => DescribeQAppPermissionsOutput,
1264
+ () => DescribeQAppPermissionsInput$,
1265
+ () => DescribeQAppPermissionsOutput$,
1266
1266
  ];
1267
- var DisassociateLibraryItemReview = [
1267
+ var DisassociateLibraryItemReview$ = [
1268
1268
  9,
1269
1269
  n0,
1270
1270
  _DLIR,
1271
1271
  { [_h]: ["POST", "/catalog.disassociateItemRating", 200] },
1272
- () => DisassociateLibraryItemReviewInput,
1272
+ () => DisassociateLibraryItemReviewInput$,
1273
1273
  () => __Unit,
1274
1274
  ];
1275
- var DisassociateQAppFromUser = [
1275
+ var DisassociateQAppFromUser$ = [
1276
1276
  9,
1277
1277
  n0,
1278
1278
  _DQAFU,
1279
1279
  { [_h]: ["POST", "/apps.uninstall", 200] },
1280
- () => DisassociateQAppFromUserInput,
1280
+ () => DisassociateQAppFromUserInput$,
1281
1281
  () => __Unit,
1282
1282
  ];
1283
- var ExportQAppSessionData = [
1283
+ var ExportQAppSessionData$ = [
1284
1284
  9,
1285
1285
  n0,
1286
1286
  _EQASD,
1287
1287
  { [_h]: ["POST", "/runtime.exportQAppSessionData", 200] },
1288
- () => ExportQAppSessionDataInput,
1289
- () => ExportQAppSessionDataOutput,
1288
+ () => ExportQAppSessionDataInput$,
1289
+ () => ExportQAppSessionDataOutput$,
1290
1290
  ];
1291
- var GetLibraryItem = [
1291
+ var GetLibraryItem$ = [
1292
1292
  9,
1293
1293
  n0,
1294
1294
  _GLI,
1295
1295
  { [_h]: ["GET", "/catalog.getItem", 200] },
1296
- () => GetLibraryItemInput,
1297
- () => GetLibraryItemOutput,
1296
+ () => GetLibraryItemInput$,
1297
+ () => GetLibraryItemOutput$,
1298
1298
  ];
1299
- var GetQApp = [
1299
+ var GetQApp$ = [
1300
1300
  9,
1301
1301
  n0,
1302
1302
  _GQA,
1303
1303
  { [_h]: ["GET", "/apps.get", 200] },
1304
- () => GetQAppInput,
1305
- () => GetQAppOutput,
1304
+ () => GetQAppInput$,
1305
+ () => GetQAppOutput$,
1306
1306
  ];
1307
- var GetQAppSession = [
1307
+ var GetQAppSession$ = [
1308
1308
  9,
1309
1309
  n0,
1310
1310
  _GQAS,
1311
1311
  { [_h]: ["GET", "/runtime.getQAppSession", 200] },
1312
- () => GetQAppSessionInput,
1313
- () => GetQAppSessionOutput,
1312
+ () => GetQAppSessionInput$,
1313
+ () => GetQAppSessionOutput$,
1314
1314
  ];
1315
- var GetQAppSessionMetadata = [
1315
+ var GetQAppSessionMetadata$ = [
1316
1316
  9,
1317
1317
  n0,
1318
1318
  _GQASM,
1319
1319
  { [_h]: ["GET", "/runtime.getQAppSessionMetadata", 200] },
1320
- () => GetQAppSessionMetadataInput,
1321
- () => GetQAppSessionMetadataOutput,
1320
+ () => GetQAppSessionMetadataInput$,
1321
+ () => GetQAppSessionMetadataOutput$,
1322
1322
  ];
1323
- var ImportDocument = [
1323
+ var ImportDocument$ = [
1324
1324
  9,
1325
1325
  n0,
1326
1326
  _ID,
1327
1327
  { [_h]: ["POST", "/apps.importDocument", 200] },
1328
- () => ImportDocumentInput,
1329
- () => ImportDocumentOutput,
1328
+ () => ImportDocumentInput$,
1329
+ () => ImportDocumentOutput$,
1330
1330
  ];
1331
- var ListCategories = [
1331
+ var ListCategories$ = [
1332
1332
  9,
1333
1333
  n0,
1334
1334
  _LC,
1335
1335
  { [_h]: ["GET", "/catalog.listCategories", 200] },
1336
- () => ListCategoriesInput,
1337
- () => ListCategoriesOutput,
1336
+ () => ListCategoriesInput$,
1337
+ () => ListCategoriesOutput$,
1338
1338
  ];
1339
- var ListLibraryItems = [
1339
+ var ListLibraryItems$ = [
1340
1340
  9,
1341
1341
  n0,
1342
1342
  _LLI,
1343
1343
  { [_h]: ["GET", "/catalog.list", 200] },
1344
- () => ListLibraryItemsInput,
1345
- () => ListLibraryItemsOutput,
1344
+ () => ListLibraryItemsInput$,
1345
+ () => ListLibraryItemsOutput$,
1346
1346
  ];
1347
- var ListQApps = [
1347
+ var ListQApps$ = [
1348
1348
  9,
1349
1349
  n0,
1350
1350
  _LQA,
1351
1351
  { [_h]: ["GET", "/apps.list", 200] },
1352
- () => ListQAppsInput,
1353
- () => ListQAppsOutput,
1352
+ () => ListQAppsInput$,
1353
+ () => ListQAppsOutput$,
1354
1354
  ];
1355
- var ListQAppSessionData = [
1355
+ var ListQAppSessionData$ = [
1356
1356
  9,
1357
1357
  n0,
1358
1358
  _LQASD,
1359
1359
  { [_h]: ["GET", "/runtime.listQAppSessionData", 200] },
1360
- () => ListQAppSessionDataInput,
1361
- () => ListQAppSessionDataOutput,
1360
+ () => ListQAppSessionDataInput$,
1361
+ () => ListQAppSessionDataOutput$,
1362
1362
  ];
1363
- var ListTagsForResource = [
1363
+ var ListTagsForResource$ = [
1364
1364
  9,
1365
1365
  n0,
1366
1366
  _LTFR,
1367
1367
  { [_h]: ["GET", "/tags/{resourceARN}", 200] },
1368
- () => ListTagsForResourceRequest,
1369
- () => ListTagsForResourceResponse,
1368
+ () => ListTagsForResourceRequest$,
1369
+ () => ListTagsForResourceResponse$,
1370
1370
  ];
1371
- var PredictQApp = [
1371
+ var PredictQApp$ = [
1372
1372
  9,
1373
1373
  n0,
1374
1374
  _PQA,
1375
1375
  { [_h]: ["POST", "/apps.predictQApp", 200] },
1376
- () => PredictQAppInput,
1377
- () => PredictQAppOutput,
1376
+ () => PredictQAppInput$,
1377
+ () => PredictQAppOutput$,
1378
1378
  ];
1379
- var StartQAppSession = [
1379
+ var StartQAppSession$ = [
1380
1380
  9,
1381
1381
  n0,
1382
1382
  _SQAS,
1383
1383
  { [_h]: ["POST", "/runtime.startQAppSession", 200] },
1384
- () => StartQAppSessionInput,
1385
- () => StartQAppSessionOutput,
1384
+ () => StartQAppSessionInput$,
1385
+ () => StartQAppSessionOutput$,
1386
1386
  ];
1387
- var StopQAppSession = [
1387
+ var StopQAppSession$ = [
1388
1388
  9,
1389
1389
  n0,
1390
1390
  _SQASt,
1391
1391
  { [_h]: ["POST", "/runtime.deleteMiniAppRun", 200] },
1392
- () => StopQAppSessionInput,
1392
+ () => StopQAppSessionInput$,
1393
1393
  () => __Unit,
1394
1394
  ];
1395
- var TagResource = [
1395
+ var TagResource$ = [
1396
1396
  9,
1397
1397
  n0,
1398
1398
  _TR,
1399
1399
  { [_h]: ["POST", "/tags/{resourceARN}", 200] },
1400
- () => TagResourceRequest,
1401
- () => TagResourceResponse,
1400
+ () => TagResourceRequest$,
1401
+ () => TagResourceResponse$,
1402
1402
  ];
1403
- var UntagResource = [
1403
+ var UntagResource$ = [
1404
1404
  9,
1405
1405
  n0,
1406
1406
  _UR,
1407
1407
  { [_h]: ["DELETE", "/tags/{resourceARN}", 200] },
1408
- () => UntagResourceRequest,
1409
- () => UntagResourceResponse,
1408
+ () => UntagResourceRequest$,
1409
+ () => UntagResourceResponse$,
1410
1410
  ];
1411
- var UpdateLibraryItem = [
1411
+ var UpdateLibraryItem$ = [
1412
1412
  9,
1413
1413
  n0,
1414
1414
  _ULI,
1415
1415
  { [_h]: ["POST", "/catalog.updateItem", 200] },
1416
- () => UpdateLibraryItemInput,
1417
- () => UpdateLibraryItemOutput,
1416
+ () => UpdateLibraryItemInput$,
1417
+ () => UpdateLibraryItemOutput$,
1418
1418
  ];
1419
- var UpdateLibraryItemMetadata = [
1419
+ var UpdateLibraryItemMetadata$ = [
1420
1420
  9,
1421
1421
  n0,
1422
1422
  _ULIM,
1423
1423
  { [_h]: ["POST", "/catalog.updateItemMetadata", 200] },
1424
- () => UpdateLibraryItemMetadataInput,
1424
+ () => UpdateLibraryItemMetadataInput$,
1425
1425
  () => __Unit,
1426
1426
  ];
1427
- var UpdateQApp = [
1427
+ var UpdateQApp$ = [
1428
1428
  9,
1429
1429
  n0,
1430
1430
  _UQA,
1431
1431
  { [_h]: ["POST", "/apps.update", 200] },
1432
- () => UpdateQAppInput,
1433
- () => UpdateQAppOutput,
1432
+ () => UpdateQAppInput$,
1433
+ () => UpdateQAppOutput$,
1434
1434
  ];
1435
- var UpdateQAppPermissions = [
1435
+ var UpdateQAppPermissions$ = [
1436
1436
  9,
1437
1437
  n0,
1438
1438
  _UQAP,
1439
1439
  { [_h]: ["POST", "/apps.updateQAppPermissions", 200] },
1440
- () => UpdateQAppPermissionsInput,
1441
- () => UpdateQAppPermissionsOutput,
1440
+ () => UpdateQAppPermissionsInput$,
1441
+ () => UpdateQAppPermissionsOutput$,
1442
1442
  ];
1443
- var UpdateQAppSession = [
1443
+ var UpdateQAppSession$ = [
1444
1444
  9,
1445
1445
  n0,
1446
1446
  _UQAS,
1447
1447
  { [_h]: ["POST", "/runtime.updateQAppSession", 200] },
1448
- () => UpdateQAppSessionInput,
1449
- () => UpdateQAppSessionOutput,
1448
+ () => UpdateQAppSessionInput$,
1449
+ () => UpdateQAppSessionOutput$,
1450
1450
  ];
1451
- var UpdateQAppSessionMetadata = [
1451
+ var UpdateQAppSessionMetadata$ = [
1452
1452
  9,
1453
1453
  n0,
1454
1454
  _UQASM,
1455
1455
  { [_h]: ["POST", "/runtime.updateQAppSessionMetadata", 200] },
1456
- () => UpdateQAppSessionMetadataInput,
1457
- () => UpdateQAppSessionMetadataOutput,
1456
+ () => UpdateQAppSessionMetadataInput$,
1457
+ () => UpdateQAppSessionMetadataOutput$,
1458
1458
  ];
1459
1459
 
1460
1460
  class AssociateLibraryItemReviewCommand extends smithyClient.Command
@@ -1465,7 +1465,7 @@ class AssociateLibraryItemReviewCommand extends smithyClient.Command
1465
1465
  })
1466
1466
  .s("QAppsService", "AssociateLibraryItemReview", {})
1467
1467
  .n("QAppsClient", "AssociateLibraryItemReviewCommand")
1468
- .sc(AssociateLibraryItemReview)
1468
+ .sc(AssociateLibraryItemReview$)
1469
1469
  .build() {
1470
1470
  }
1471
1471
 
@@ -1477,7 +1477,7 @@ class AssociateQAppWithUserCommand extends smithyClient.Command
1477
1477
  })
1478
1478
  .s("QAppsService", "AssociateQAppWithUser", {})
1479
1479
  .n("QAppsClient", "AssociateQAppWithUserCommand")
1480
- .sc(AssociateQAppWithUser)
1480
+ .sc(AssociateQAppWithUser$)
1481
1481
  .build() {
1482
1482
  }
1483
1483
 
@@ -1489,7 +1489,7 @@ class BatchCreateCategoryCommand extends smithyClient.Command
1489
1489
  })
1490
1490
  .s("QAppsService", "BatchCreateCategory", {})
1491
1491
  .n("QAppsClient", "BatchCreateCategoryCommand")
1492
- .sc(BatchCreateCategory)
1492
+ .sc(BatchCreateCategory$)
1493
1493
  .build() {
1494
1494
  }
1495
1495
 
@@ -1501,7 +1501,7 @@ class BatchDeleteCategoryCommand extends smithyClient.Command
1501
1501
  })
1502
1502
  .s("QAppsService", "BatchDeleteCategory", {})
1503
1503
  .n("QAppsClient", "BatchDeleteCategoryCommand")
1504
- .sc(BatchDeleteCategory)
1504
+ .sc(BatchDeleteCategory$)
1505
1505
  .build() {
1506
1506
  }
1507
1507
 
@@ -1513,7 +1513,7 @@ class BatchUpdateCategoryCommand extends smithyClient.Command
1513
1513
  })
1514
1514
  .s("QAppsService", "BatchUpdateCategory", {})
1515
1515
  .n("QAppsClient", "BatchUpdateCategoryCommand")
1516
- .sc(BatchUpdateCategory)
1516
+ .sc(BatchUpdateCategory$)
1517
1517
  .build() {
1518
1518
  }
1519
1519
 
@@ -1525,7 +1525,7 @@ class CreateLibraryItemCommand extends smithyClient.Command
1525
1525
  })
1526
1526
  .s("QAppsService", "CreateLibraryItem", {})
1527
1527
  .n("QAppsClient", "CreateLibraryItemCommand")
1528
- .sc(CreateLibraryItem)
1528
+ .sc(CreateLibraryItem$)
1529
1529
  .build() {
1530
1530
  }
1531
1531
 
@@ -1537,7 +1537,7 @@ class CreatePresignedUrlCommand extends smithyClient.Command
1537
1537
  })
1538
1538
  .s("QAppsService", "CreatePresignedUrl", {})
1539
1539
  .n("QAppsClient", "CreatePresignedUrlCommand")
1540
- .sc(CreatePresignedUrl)
1540
+ .sc(CreatePresignedUrl$)
1541
1541
  .build() {
1542
1542
  }
1543
1543
 
@@ -1549,7 +1549,7 @@ class CreateQAppCommand extends smithyClient.Command
1549
1549
  })
1550
1550
  .s("QAppsService", "CreateQApp", {})
1551
1551
  .n("QAppsClient", "CreateQAppCommand")
1552
- .sc(CreateQApp)
1552
+ .sc(CreateQApp$)
1553
1553
  .build() {
1554
1554
  }
1555
1555
 
@@ -1561,7 +1561,7 @@ class DeleteLibraryItemCommand extends smithyClient.Command
1561
1561
  })
1562
1562
  .s("QAppsService", "DeleteLibraryItem", {})
1563
1563
  .n("QAppsClient", "DeleteLibraryItemCommand")
1564
- .sc(DeleteLibraryItem)
1564
+ .sc(DeleteLibraryItem$)
1565
1565
  .build() {
1566
1566
  }
1567
1567
 
@@ -1573,7 +1573,7 @@ class DeleteQAppCommand extends smithyClient.Command
1573
1573
  })
1574
1574
  .s("QAppsService", "DeleteQApp", {})
1575
1575
  .n("QAppsClient", "DeleteQAppCommand")
1576
- .sc(DeleteQApp)
1576
+ .sc(DeleteQApp$)
1577
1577
  .build() {
1578
1578
  }
1579
1579
 
@@ -1585,7 +1585,7 @@ class DescribeQAppPermissionsCommand extends smithyClient.Command
1585
1585
  })
1586
1586
  .s("QAppsService", "DescribeQAppPermissions", {})
1587
1587
  .n("QAppsClient", "DescribeQAppPermissionsCommand")
1588
- .sc(DescribeQAppPermissions)
1588
+ .sc(DescribeQAppPermissions$)
1589
1589
  .build() {
1590
1590
  }
1591
1591
 
@@ -1597,7 +1597,7 @@ class DisassociateLibraryItemReviewCommand extends smithyClient.Command
1597
1597
  })
1598
1598
  .s("QAppsService", "DisassociateLibraryItemReview", {})
1599
1599
  .n("QAppsClient", "DisassociateLibraryItemReviewCommand")
1600
- .sc(DisassociateLibraryItemReview)
1600
+ .sc(DisassociateLibraryItemReview$)
1601
1601
  .build() {
1602
1602
  }
1603
1603
 
@@ -1609,7 +1609,7 @@ class DisassociateQAppFromUserCommand extends smithyClient.Command
1609
1609
  })
1610
1610
  .s("QAppsService", "DisassociateQAppFromUser", {})
1611
1611
  .n("QAppsClient", "DisassociateQAppFromUserCommand")
1612
- .sc(DisassociateQAppFromUser)
1612
+ .sc(DisassociateQAppFromUser$)
1613
1613
  .build() {
1614
1614
  }
1615
1615
 
@@ -1621,7 +1621,7 @@ class ExportQAppSessionDataCommand extends smithyClient.Command
1621
1621
  })
1622
1622
  .s("QAppsService", "ExportQAppSessionData", {})
1623
1623
  .n("QAppsClient", "ExportQAppSessionDataCommand")
1624
- .sc(ExportQAppSessionData)
1624
+ .sc(ExportQAppSessionData$)
1625
1625
  .build() {
1626
1626
  }
1627
1627
 
@@ -1633,7 +1633,7 @@ class GetLibraryItemCommand extends smithyClient.Command
1633
1633
  })
1634
1634
  .s("QAppsService", "GetLibraryItem", {})
1635
1635
  .n("QAppsClient", "GetLibraryItemCommand")
1636
- .sc(GetLibraryItem)
1636
+ .sc(GetLibraryItem$)
1637
1637
  .build() {
1638
1638
  }
1639
1639
 
@@ -1645,7 +1645,7 @@ class GetQAppCommand extends smithyClient.Command
1645
1645
  })
1646
1646
  .s("QAppsService", "GetQApp", {})
1647
1647
  .n("QAppsClient", "GetQAppCommand")
1648
- .sc(GetQApp)
1648
+ .sc(GetQApp$)
1649
1649
  .build() {
1650
1650
  }
1651
1651
 
@@ -1657,7 +1657,7 @@ class GetQAppSessionCommand extends smithyClient.Command
1657
1657
  })
1658
1658
  .s("QAppsService", "GetQAppSession", {})
1659
1659
  .n("QAppsClient", "GetQAppSessionCommand")
1660
- .sc(GetQAppSession)
1660
+ .sc(GetQAppSession$)
1661
1661
  .build() {
1662
1662
  }
1663
1663
 
@@ -1669,7 +1669,7 @@ class GetQAppSessionMetadataCommand extends smithyClient.Command
1669
1669
  })
1670
1670
  .s("QAppsService", "GetQAppSessionMetadata", {})
1671
1671
  .n("QAppsClient", "GetQAppSessionMetadataCommand")
1672
- .sc(GetQAppSessionMetadata)
1672
+ .sc(GetQAppSessionMetadata$)
1673
1673
  .build() {
1674
1674
  }
1675
1675
 
@@ -1681,7 +1681,7 @@ class ImportDocumentCommand extends smithyClient.Command
1681
1681
  })
1682
1682
  .s("QAppsService", "ImportDocument", {})
1683
1683
  .n("QAppsClient", "ImportDocumentCommand")
1684
- .sc(ImportDocument)
1684
+ .sc(ImportDocument$)
1685
1685
  .build() {
1686
1686
  }
1687
1687
 
@@ -1693,7 +1693,7 @@ class ListCategoriesCommand extends smithyClient.Command
1693
1693
  })
1694
1694
  .s("QAppsService", "ListCategories", {})
1695
1695
  .n("QAppsClient", "ListCategoriesCommand")
1696
- .sc(ListCategories)
1696
+ .sc(ListCategories$)
1697
1697
  .build() {
1698
1698
  }
1699
1699
 
@@ -1705,7 +1705,7 @@ class ListLibraryItemsCommand extends smithyClient.Command
1705
1705
  })
1706
1706
  .s("QAppsService", "ListLibraryItems", {})
1707
1707
  .n("QAppsClient", "ListLibraryItemsCommand")
1708
- .sc(ListLibraryItems)
1708
+ .sc(ListLibraryItems$)
1709
1709
  .build() {
1710
1710
  }
1711
1711
 
@@ -1717,7 +1717,7 @@ class ListQAppsCommand extends smithyClient.Command
1717
1717
  })
1718
1718
  .s("QAppsService", "ListQApps", {})
1719
1719
  .n("QAppsClient", "ListQAppsCommand")
1720
- .sc(ListQApps)
1720
+ .sc(ListQApps$)
1721
1721
  .build() {
1722
1722
  }
1723
1723
 
@@ -1729,7 +1729,7 @@ class ListQAppSessionDataCommand extends smithyClient.Command
1729
1729
  })
1730
1730
  .s("QAppsService", "ListQAppSessionData", {})
1731
1731
  .n("QAppsClient", "ListQAppSessionDataCommand")
1732
- .sc(ListQAppSessionData)
1732
+ .sc(ListQAppSessionData$)
1733
1733
  .build() {
1734
1734
  }
1735
1735
 
@@ -1741,7 +1741,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1741
1741
  })
1742
1742
  .s("QAppsService", "ListTagsForResource", {})
1743
1743
  .n("QAppsClient", "ListTagsForResourceCommand")
1744
- .sc(ListTagsForResource)
1744
+ .sc(ListTagsForResource$)
1745
1745
  .build() {
1746
1746
  }
1747
1747
 
@@ -1753,7 +1753,7 @@ class PredictQAppCommand extends smithyClient.Command
1753
1753
  })
1754
1754
  .s("QAppsService", "PredictQApp", {})
1755
1755
  .n("QAppsClient", "PredictQAppCommand")
1756
- .sc(PredictQApp)
1756
+ .sc(PredictQApp$)
1757
1757
  .build() {
1758
1758
  }
1759
1759
 
@@ -1765,7 +1765,7 @@ class StartQAppSessionCommand extends smithyClient.Command
1765
1765
  })
1766
1766
  .s("QAppsService", "StartQAppSession", {})
1767
1767
  .n("QAppsClient", "StartQAppSessionCommand")
1768
- .sc(StartQAppSession)
1768
+ .sc(StartQAppSession$)
1769
1769
  .build() {
1770
1770
  }
1771
1771
 
@@ -1777,7 +1777,7 @@ class StopQAppSessionCommand extends smithyClient.Command
1777
1777
  })
1778
1778
  .s("QAppsService", "StopQAppSession", {})
1779
1779
  .n("QAppsClient", "StopQAppSessionCommand")
1780
- .sc(StopQAppSession)
1780
+ .sc(StopQAppSession$)
1781
1781
  .build() {
1782
1782
  }
1783
1783
 
@@ -1789,7 +1789,7 @@ class TagResourceCommand extends smithyClient.Command
1789
1789
  })
1790
1790
  .s("QAppsService", "TagResource", {})
1791
1791
  .n("QAppsClient", "TagResourceCommand")
1792
- .sc(TagResource)
1792
+ .sc(TagResource$)
1793
1793
  .build() {
1794
1794
  }
1795
1795
 
@@ -1801,7 +1801,7 @@ class UntagResourceCommand extends smithyClient.Command
1801
1801
  })
1802
1802
  .s("QAppsService", "UntagResource", {})
1803
1803
  .n("QAppsClient", "UntagResourceCommand")
1804
- .sc(UntagResource)
1804
+ .sc(UntagResource$)
1805
1805
  .build() {
1806
1806
  }
1807
1807
 
@@ -1813,7 +1813,7 @@ class UpdateLibraryItemCommand extends smithyClient.Command
1813
1813
  })
1814
1814
  .s("QAppsService", "UpdateLibraryItem", {})
1815
1815
  .n("QAppsClient", "UpdateLibraryItemCommand")
1816
- .sc(UpdateLibraryItem)
1816
+ .sc(UpdateLibraryItem$)
1817
1817
  .build() {
1818
1818
  }
1819
1819
 
@@ -1825,7 +1825,7 @@ class UpdateLibraryItemMetadataCommand extends smithyClient.Command
1825
1825
  })
1826
1826
  .s("QAppsService", "UpdateLibraryItemMetadata", {})
1827
1827
  .n("QAppsClient", "UpdateLibraryItemMetadataCommand")
1828
- .sc(UpdateLibraryItemMetadata)
1828
+ .sc(UpdateLibraryItemMetadata$)
1829
1829
  .build() {
1830
1830
  }
1831
1831
 
@@ -1837,7 +1837,7 @@ class UpdateQAppCommand extends smithyClient.Command
1837
1837
  })
1838
1838
  .s("QAppsService", "UpdateQApp", {})
1839
1839
  .n("QAppsClient", "UpdateQAppCommand")
1840
- .sc(UpdateQApp)
1840
+ .sc(UpdateQApp$)
1841
1841
  .build() {
1842
1842
  }
1843
1843
 
@@ -1849,7 +1849,7 @@ class UpdateQAppPermissionsCommand extends smithyClient.Command
1849
1849
  })
1850
1850
  .s("QAppsService", "UpdateQAppPermissions", {})
1851
1851
  .n("QAppsClient", "UpdateQAppPermissionsCommand")
1852
- .sc(UpdateQAppPermissions)
1852
+ .sc(UpdateQAppPermissions$)
1853
1853
  .build() {
1854
1854
  }
1855
1855
 
@@ -1861,7 +1861,7 @@ class UpdateQAppSessionCommand extends smithyClient.Command
1861
1861
  })
1862
1862
  .s("QAppsService", "UpdateQAppSession", {})
1863
1863
  .n("QAppsClient", "UpdateQAppSessionCommand")
1864
- .sc(UpdateQAppSession)
1864
+ .sc(UpdateQAppSession$)
1865
1865
  .build() {
1866
1866
  }
1867
1867
 
@@ -1873,7 +1873,7 @@ class UpdateQAppSessionMetadataCommand extends smithyClient.Command
1873
1873
  })
1874
1874
  .s("QAppsService", "UpdateQAppSessionMetadata", {})
1875
1875
  .n("QAppsClient", "UpdateQAppSessionMetadataCommand")
1876
- .sc(UpdateQAppSessionMetadata)
1876
+ .sc(UpdateQAppSessionMetadata$)
1877
1877
  .build() {
1878
1878
  }
1879
1879
 
@@ -2006,65 +2006,205 @@ Object.defineProperty(exports, "__Client", {
2006
2006
  enumerable: true,
2007
2007
  get: function () { return smithyClient.Client; }
2008
2008
  });
2009
- exports.AccessDeniedException = AccessDeniedException$1;
2009
+ exports.AccessDeniedException = AccessDeniedException;
2010
+ exports.AccessDeniedException$ = AccessDeniedException$;
2010
2011
  exports.Action = Action;
2012
+ exports.AppDefinition$ = AppDefinition$;
2013
+ exports.AppDefinitionInput$ = AppDefinitionInput$;
2011
2014
  exports.AppRequiredCapability = AppRequiredCapability;
2012
2015
  exports.AppStatus = AppStatus;
2016
+ exports.AssociateLibraryItemReview$ = AssociateLibraryItemReview$;
2013
2017
  exports.AssociateLibraryItemReviewCommand = AssociateLibraryItemReviewCommand;
2018
+ exports.AssociateLibraryItemReviewInput$ = AssociateLibraryItemReviewInput$;
2019
+ exports.AssociateQAppWithUser$ = AssociateQAppWithUser$;
2014
2020
  exports.AssociateQAppWithUserCommand = AssociateQAppWithUserCommand;
2021
+ exports.AssociateQAppWithUserInput$ = AssociateQAppWithUserInput$;
2022
+ exports.AttributeFilter$ = AttributeFilter$;
2023
+ exports.BatchCreateCategory$ = BatchCreateCategory$;
2015
2024
  exports.BatchCreateCategoryCommand = BatchCreateCategoryCommand;
2025
+ exports.BatchCreateCategoryInput$ = BatchCreateCategoryInput$;
2026
+ exports.BatchCreateCategoryInputCategory$ = BatchCreateCategoryInputCategory$;
2027
+ exports.BatchDeleteCategory$ = BatchDeleteCategory$;
2016
2028
  exports.BatchDeleteCategoryCommand = BatchDeleteCategoryCommand;
2029
+ exports.BatchDeleteCategoryInput$ = BatchDeleteCategoryInput$;
2030
+ exports.BatchUpdateCategory$ = BatchUpdateCategory$;
2017
2031
  exports.BatchUpdateCategoryCommand = BatchUpdateCategoryCommand;
2032
+ exports.BatchUpdateCategoryInput$ = BatchUpdateCategoryInput$;
2033
+ exports.Card$ = Card$;
2034
+ exports.CardInput$ = CardInput$;
2018
2035
  exports.CardOutputSource = CardOutputSource;
2036
+ exports.CardStatus$ = CardStatus$;
2019
2037
  exports.CardType = CardType;
2020
- exports.ConflictException = ConflictException$1;
2021
- exports.ContentTooLargeException = ContentTooLargeException$1;
2038
+ exports.CardValue$ = CardValue$;
2039
+ exports.Category$ = Category$;
2040
+ exports.CategoryInput$ = CategoryInput$;
2041
+ exports.ConflictException = ConflictException;
2042
+ exports.ConflictException$ = ConflictException$;
2043
+ exports.ContentTooLargeException = ContentTooLargeException;
2044
+ exports.ContentTooLargeException$ = ContentTooLargeException$;
2045
+ exports.ConversationMessage$ = ConversationMessage$;
2046
+ exports.CreateLibraryItem$ = CreateLibraryItem$;
2022
2047
  exports.CreateLibraryItemCommand = CreateLibraryItemCommand;
2048
+ exports.CreateLibraryItemInput$ = CreateLibraryItemInput$;
2049
+ exports.CreateLibraryItemOutput$ = CreateLibraryItemOutput$;
2050
+ exports.CreatePresignedUrl$ = CreatePresignedUrl$;
2023
2051
  exports.CreatePresignedUrlCommand = CreatePresignedUrlCommand;
2052
+ exports.CreatePresignedUrlInput$ = CreatePresignedUrlInput$;
2053
+ exports.CreatePresignedUrlOutput$ = CreatePresignedUrlOutput$;
2054
+ exports.CreateQApp$ = CreateQApp$;
2024
2055
  exports.CreateQAppCommand = CreateQAppCommand;
2056
+ exports.CreateQAppInput$ = CreateQAppInput$;
2057
+ exports.CreateQAppOutput$ = CreateQAppOutput$;
2058
+ exports.DeleteLibraryItem$ = DeleteLibraryItem$;
2025
2059
  exports.DeleteLibraryItemCommand = DeleteLibraryItemCommand;
2060
+ exports.DeleteLibraryItemInput$ = DeleteLibraryItemInput$;
2061
+ exports.DeleteQApp$ = DeleteQApp$;
2026
2062
  exports.DeleteQAppCommand = DeleteQAppCommand;
2063
+ exports.DeleteQAppInput$ = DeleteQAppInput$;
2064
+ exports.DescribeQAppPermissions$ = DescribeQAppPermissions$;
2027
2065
  exports.DescribeQAppPermissionsCommand = DescribeQAppPermissionsCommand;
2066
+ exports.DescribeQAppPermissionsInput$ = DescribeQAppPermissionsInput$;
2067
+ exports.DescribeQAppPermissionsOutput$ = DescribeQAppPermissionsOutput$;
2068
+ exports.DisassociateLibraryItemReview$ = DisassociateLibraryItemReview$;
2028
2069
  exports.DisassociateLibraryItemReviewCommand = DisassociateLibraryItemReviewCommand;
2070
+ exports.DisassociateLibraryItemReviewInput$ = DisassociateLibraryItemReviewInput$;
2071
+ exports.DisassociateQAppFromUser$ = DisassociateQAppFromUser$;
2029
2072
  exports.DisassociateQAppFromUserCommand = DisassociateQAppFromUserCommand;
2073
+ exports.DisassociateQAppFromUserInput$ = DisassociateQAppFromUserInput$;
2074
+ exports.DocumentAttribute$ = DocumentAttribute$;
2075
+ exports.DocumentAttributeValue$ = DocumentAttributeValue$;
2030
2076
  exports.DocumentScope = DocumentScope;
2031
2077
  exports.ExecutionStatus = ExecutionStatus;
2078
+ exports.ExportQAppSessionData$ = ExportQAppSessionData$;
2032
2079
  exports.ExportQAppSessionDataCommand = ExportQAppSessionDataCommand;
2080
+ exports.ExportQAppSessionDataInput$ = ExportQAppSessionDataInput$;
2081
+ exports.ExportQAppSessionDataOutput$ = ExportQAppSessionDataOutput$;
2082
+ exports.FileUploadCard$ = FileUploadCard$;
2083
+ exports.FileUploadCardInput$ = FileUploadCardInput$;
2084
+ exports.FormInputCard$ = FormInputCard$;
2085
+ exports.FormInputCardInput$ = FormInputCardInput$;
2086
+ exports.FormInputCardMetadata$ = FormInputCardMetadata$;
2087
+ exports.GetLibraryItem$ = GetLibraryItem$;
2033
2088
  exports.GetLibraryItemCommand = GetLibraryItemCommand;
2089
+ exports.GetLibraryItemInput$ = GetLibraryItemInput$;
2090
+ exports.GetLibraryItemOutput$ = GetLibraryItemOutput$;
2091
+ exports.GetQApp$ = GetQApp$;
2034
2092
  exports.GetQAppCommand = GetQAppCommand;
2093
+ exports.GetQAppInput$ = GetQAppInput$;
2094
+ exports.GetQAppOutput$ = GetQAppOutput$;
2095
+ exports.GetQAppSession$ = GetQAppSession$;
2035
2096
  exports.GetQAppSessionCommand = GetQAppSessionCommand;
2097
+ exports.GetQAppSessionInput$ = GetQAppSessionInput$;
2098
+ exports.GetQAppSessionMetadata$ = GetQAppSessionMetadata$;
2036
2099
  exports.GetQAppSessionMetadataCommand = GetQAppSessionMetadataCommand;
2100
+ exports.GetQAppSessionMetadataInput$ = GetQAppSessionMetadataInput$;
2101
+ exports.GetQAppSessionMetadataOutput$ = GetQAppSessionMetadataOutput$;
2102
+ exports.GetQAppSessionOutput$ = GetQAppSessionOutput$;
2103
+ exports.ImportDocument$ = ImportDocument$;
2037
2104
  exports.ImportDocumentCommand = ImportDocumentCommand;
2105
+ exports.ImportDocumentInput$ = ImportDocumentInput$;
2106
+ exports.ImportDocumentOutput$ = ImportDocumentOutput$;
2038
2107
  exports.InputCardComputeMode = InputCardComputeMode;
2039
- exports.InternalServerException = InternalServerException$1;
2108
+ exports.InternalServerException = InternalServerException;
2109
+ exports.InternalServerException$ = InternalServerException$;
2110
+ exports.LibraryItemMember$ = LibraryItemMember$;
2040
2111
  exports.LibraryItemStatus = LibraryItemStatus;
2112
+ exports.ListCategories$ = ListCategories$;
2041
2113
  exports.ListCategoriesCommand = ListCategoriesCommand;
2114
+ exports.ListCategoriesInput$ = ListCategoriesInput$;
2115
+ exports.ListCategoriesOutput$ = ListCategoriesOutput$;
2116
+ exports.ListLibraryItems$ = ListLibraryItems$;
2042
2117
  exports.ListLibraryItemsCommand = ListLibraryItemsCommand;
2118
+ exports.ListLibraryItemsInput$ = ListLibraryItemsInput$;
2119
+ exports.ListLibraryItemsOutput$ = ListLibraryItemsOutput$;
2120
+ exports.ListQAppSessionData$ = ListQAppSessionData$;
2043
2121
  exports.ListQAppSessionDataCommand = ListQAppSessionDataCommand;
2122
+ exports.ListQAppSessionDataInput$ = ListQAppSessionDataInput$;
2123
+ exports.ListQAppSessionDataOutput$ = ListQAppSessionDataOutput$;
2124
+ exports.ListQApps$ = ListQApps$;
2044
2125
  exports.ListQAppsCommand = ListQAppsCommand;
2126
+ exports.ListQAppsInput$ = ListQAppsInput$;
2127
+ exports.ListQAppsOutput$ = ListQAppsOutput$;
2128
+ exports.ListTagsForResource$ = ListTagsForResource$;
2045
2129
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2130
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2131
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2132
+ exports.PermissionInput$ = PermissionInput$;
2133
+ exports.PermissionOutput$ = PermissionOutput$;
2046
2134
  exports.PluginType = PluginType;
2135
+ exports.PredictAppDefinition$ = PredictAppDefinition$;
2136
+ exports.PredictQApp$ = PredictQApp$;
2047
2137
  exports.PredictQAppCommand = PredictQAppCommand;
2138
+ exports.PredictQAppInput$ = PredictQAppInput$;
2139
+ exports.PredictQAppInputOptions$ = PredictQAppInputOptions$;
2140
+ exports.PredictQAppOutput$ = PredictQAppOutput$;
2141
+ exports.PrincipalOutput$ = PrincipalOutput$;
2142
+ exports.QAppSessionData$ = QAppSessionData$;
2048
2143
  exports.QApps = QApps;
2049
2144
  exports.QAppsClient = QAppsClient;
2050
- exports.QAppsServiceException = QAppsServiceException$1;
2051
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2145
+ exports.QAppsServiceException = QAppsServiceException;
2146
+ exports.QAppsServiceException$ = QAppsServiceException$;
2147
+ exports.QPluginCard$ = QPluginCard$;
2148
+ exports.QPluginCardInput$ = QPluginCardInput$;
2149
+ exports.QQueryCard$ = QQueryCard$;
2150
+ exports.QQueryCardInput$ = QQueryCardInput$;
2151
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2152
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2052
2153
  exports.Sender = Sender;
2053
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2154
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2155
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2156
+ exports.SessionSharingConfiguration$ = SessionSharingConfiguration$;
2157
+ exports.StartQAppSession$ = StartQAppSession$;
2054
2158
  exports.StartQAppSessionCommand = StartQAppSessionCommand;
2159
+ exports.StartQAppSessionInput$ = StartQAppSessionInput$;
2160
+ exports.StartQAppSessionOutput$ = StartQAppSessionOutput$;
2161
+ exports.StopQAppSession$ = StopQAppSession$;
2055
2162
  exports.StopQAppSessionCommand = StopQAppSessionCommand;
2163
+ exports.StopQAppSessionInput$ = StopQAppSessionInput$;
2164
+ exports.Submission$ = Submission$;
2165
+ exports.SubmissionMutation$ = SubmissionMutation$;
2056
2166
  exports.SubmissionMutationKind = SubmissionMutationKind;
2167
+ exports.TagResource$ = TagResource$;
2057
2168
  exports.TagResourceCommand = TagResourceCommand;
2058
- exports.ThrottlingException = ThrottlingException$1;
2059
- exports.UnauthorizedException = UnauthorizedException$1;
2169
+ exports.TagResourceRequest$ = TagResourceRequest$;
2170
+ exports.TagResourceResponse$ = TagResourceResponse$;
2171
+ exports.TextInputCard$ = TextInputCard$;
2172
+ exports.TextInputCardInput$ = TextInputCardInput$;
2173
+ exports.ThrottlingException = ThrottlingException;
2174
+ exports.ThrottlingException$ = ThrottlingException$;
2175
+ exports.UnauthorizedException = UnauthorizedException;
2176
+ exports.UnauthorizedException$ = UnauthorizedException$;
2177
+ exports.UntagResource$ = UntagResource$;
2060
2178
  exports.UntagResourceCommand = UntagResourceCommand;
2179
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2180
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2181
+ exports.UpdateLibraryItem$ = UpdateLibraryItem$;
2061
2182
  exports.UpdateLibraryItemCommand = UpdateLibraryItemCommand;
2183
+ exports.UpdateLibraryItemInput$ = UpdateLibraryItemInput$;
2184
+ exports.UpdateLibraryItemMetadata$ = UpdateLibraryItemMetadata$;
2062
2185
  exports.UpdateLibraryItemMetadataCommand = UpdateLibraryItemMetadataCommand;
2186
+ exports.UpdateLibraryItemMetadataInput$ = UpdateLibraryItemMetadataInput$;
2187
+ exports.UpdateLibraryItemOutput$ = UpdateLibraryItemOutput$;
2188
+ exports.UpdateQApp$ = UpdateQApp$;
2063
2189
  exports.UpdateQAppCommand = UpdateQAppCommand;
2190
+ exports.UpdateQAppInput$ = UpdateQAppInput$;
2191
+ exports.UpdateQAppOutput$ = UpdateQAppOutput$;
2192
+ exports.UpdateQAppPermissions$ = UpdateQAppPermissions$;
2064
2193
  exports.UpdateQAppPermissionsCommand = UpdateQAppPermissionsCommand;
2194
+ exports.UpdateQAppPermissionsInput$ = UpdateQAppPermissionsInput$;
2195
+ exports.UpdateQAppPermissionsOutput$ = UpdateQAppPermissionsOutput$;
2196
+ exports.UpdateQAppSession$ = UpdateQAppSession$;
2065
2197
  exports.UpdateQAppSessionCommand = UpdateQAppSessionCommand;
2198
+ exports.UpdateQAppSessionInput$ = UpdateQAppSessionInput$;
2199
+ exports.UpdateQAppSessionMetadata$ = UpdateQAppSessionMetadata$;
2066
2200
  exports.UpdateQAppSessionMetadataCommand = UpdateQAppSessionMetadataCommand;
2201
+ exports.UpdateQAppSessionMetadataInput$ = UpdateQAppSessionMetadataInput$;
2202
+ exports.UpdateQAppSessionMetadataOutput$ = UpdateQAppSessionMetadataOutput$;
2203
+ exports.UpdateQAppSessionOutput$ = UpdateQAppSessionOutput$;
2204
+ exports.User$ = User$;
2205
+ exports.UserAppItem$ = UserAppItem$;
2067
2206
  exports.UserType = UserType;
2068
- exports.ValidationException = ValidationException$1;
2207
+ exports.ValidationException = ValidationException;
2208
+ exports.ValidationException$ = ValidationException$;
2069
2209
  exports.paginateListLibraryItems = paginateListLibraryItems;
2070
2210
  exports.paginateListQApps = paginateListQApps;