@aws-sdk/client-qapps 3.1075.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultQAppsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateLibraryItemReview$, AssociateQAppWithUser$, BatchCreateCategory$, BatchDeleteCategory$, BatchUpdateCategory$, CreateLibraryItem$, CreatePresignedUrl$, CreateQApp$, DeleteLibraryItem$, DeleteQApp$, DescribeQAppPermissions$, DisassociateLibraryItemReview$, DisassociateQAppFromUser$, ExportQAppSessionData$, GetLibraryItem$, GetQApp$, GetQAppSession$, GetQAppSessionMetadata$, ImportDocument$, ListCategories$, ListLibraryItems$, ListQApps$, ListQAppSessionData$, ListTagsForResource$, PredictQApp$, StartQAppSession$, StopQAppSession$, TagResource$, UntagResource$, UpdateLibraryItem$, UpdateLibraryItemMetadata$, UpdateQApp$, UpdateQAppPermissions$, UpdateQAppSession$, UpdateQAppSessionMetadata$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { QAppsServiceException } = require("./models/QAppsServiceException");
18
- exports.QAppsServiceException = QAppsServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultQAppsHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "qapps",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultQAppsHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1264 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://data.qapps-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://data.qapps-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://data.qapps.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://data.qapps.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class QAppsServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, QAppsServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends QAppsServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ constructor(opts) {
143
+ super({
144
+ name: "AccessDeniedException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
149
+ }
150
+ }
151
+ class ConflictException extends QAppsServiceException {
152
+ name = "ConflictException";
153
+ $fault = "client";
154
+ resourceId;
155
+ resourceType;
156
+ constructor(opts) {
157
+ super({
158
+ name: "ConflictException",
159
+ $fault: "client",
160
+ ...opts,
161
+ });
162
+ Object.setPrototypeOf(this, ConflictException.prototype);
163
+ this.resourceId = opts.resourceId;
164
+ this.resourceType = opts.resourceType;
165
+ }
166
+ }
167
+ class InternalServerException extends QAppsServiceException {
168
+ name = "InternalServerException";
169
+ $fault = "server";
170
+ $retryable = {};
171
+ retryAfterSeconds;
172
+ constructor(opts) {
173
+ super({
174
+ name: "InternalServerException",
175
+ $fault: "server",
176
+ ...opts,
177
+ });
178
+ Object.setPrototypeOf(this, InternalServerException.prototype);
179
+ this.retryAfterSeconds = opts.retryAfterSeconds;
180
+ }
181
+ }
182
+ class ResourceNotFoundException extends QAppsServiceException {
183
+ name = "ResourceNotFoundException";
184
+ $fault = "client";
185
+ resourceId;
186
+ resourceType;
187
+ constructor(opts) {
188
+ super({
189
+ name: "ResourceNotFoundException",
190
+ $fault: "client",
191
+ ...opts,
192
+ });
193
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
194
+ this.resourceId = opts.resourceId;
195
+ this.resourceType = opts.resourceType;
196
+ }
197
+ }
198
+ class ServiceQuotaExceededException extends QAppsServiceException {
199
+ name = "ServiceQuotaExceededException";
200
+ $fault = "client";
201
+ resourceId;
202
+ resourceType;
203
+ serviceCode;
204
+ quotaCode;
205
+ constructor(opts) {
206
+ super({
207
+ name: "ServiceQuotaExceededException",
208
+ $fault: "client",
209
+ ...opts,
210
+ });
211
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
212
+ this.resourceId = opts.resourceId;
213
+ this.resourceType = opts.resourceType;
214
+ this.serviceCode = opts.serviceCode;
215
+ this.quotaCode = opts.quotaCode;
216
+ }
217
+ }
218
+ class ThrottlingException extends QAppsServiceException {
219
+ name = "ThrottlingException";
220
+ $fault = "client";
221
+ $retryable = {
222
+ throttling: true,
223
+ };
224
+ serviceCode;
225
+ quotaCode;
226
+ retryAfterSeconds;
227
+ constructor(opts) {
228
+ super({
229
+ name: "ThrottlingException",
230
+ $fault: "client",
231
+ ...opts,
232
+ });
233
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
234
+ this.serviceCode = opts.serviceCode;
235
+ this.quotaCode = opts.quotaCode;
236
+ this.retryAfterSeconds = opts.retryAfterSeconds;
237
+ }
238
+ }
239
+ class UnauthorizedException extends QAppsServiceException {
240
+ name = "UnauthorizedException";
241
+ $fault = "client";
242
+ constructor(opts) {
243
+ super({
244
+ name: "UnauthorizedException",
245
+ $fault: "client",
246
+ ...opts,
247
+ });
248
+ Object.setPrototypeOf(this, UnauthorizedException.prototype);
249
+ }
250
+ }
251
+ class ValidationException extends QAppsServiceException {
252
+ name = "ValidationException";
253
+ $fault = "client";
254
+ constructor(opts) {
255
+ super({
256
+ name: "ValidationException",
257
+ $fault: "client",
258
+ ...opts,
259
+ });
260
+ Object.setPrototypeOf(this, ValidationException.prototype);
261
+ }
262
+ }
263
+ class ContentTooLargeException extends QAppsServiceException {
264
+ name = "ContentTooLargeException";
265
+ $fault = "client";
266
+ resourceId;
267
+ resourceType;
268
+ constructor(opts) {
269
+ super({
270
+ name: "ContentTooLargeException",
271
+ $fault: "client",
272
+ ...opts,
273
+ });
274
+ Object.setPrototypeOf(this, ContentTooLargeException.prototype);
275
+ this.resourceId = opts.resourceId;
276
+ this.resourceType = opts.resourceType;
277
+ }
278
+ }
279
+
280
+ const _AD = "AppDefinition";
281
+ const _ADE = "AccessDeniedException";
282
+ const _ADI = "AppDefinitionInput";
283
+ const _AF = "AttributeFilter";
284
+ const _AFt = "AttributeFilters";
285
+ const _ALIR = "AssociateLibraryItemReview";
286
+ const _ALIRI = "AssociateLibraryItemReviewInput";
287
+ const _AQAWU = "AssociateQAppWithUser";
288
+ const _AQAWUI = "AssociateQAppWithUserInput";
289
+ const _BCC = "BatchCreateCategory";
290
+ const _BCCI = "BatchCreateCategoryInput";
291
+ const _BCCIC = "BatchCreateCategoryInputCategory";
292
+ const _BCCICL = "BatchCreateCategoryInputCategoryList";
293
+ const _BDC = "BatchDeleteCategory";
294
+ const _BDCI = "BatchDeleteCategoryInput";
295
+ const _BUC = "BatchUpdateCategory";
296
+ const _BUCI = "BatchUpdateCategoryInput";
297
+ const _C = "Category";
298
+ const _CE = "ConflictException";
299
+ const _CI = "CategoryInput";
300
+ const _CIa = "CardInput";
301
+ const _CL = "CardList";
302
+ const _CLI = "CategoryListInput";
303
+ const _CLII = "CreateLibraryItemInput";
304
+ const _CLIO = "CreateLibraryItemOutput";
305
+ const _CLIr = "CreateLibraryItem";
306
+ const _CLa = "CategoriesList";
307
+ const _CLat = "CategoryList";
308
+ const _CM = "ConversationMessage";
309
+ const _CML = "CardModelList";
310
+ const _CPU = "CreatePresignedUrl";
311
+ const _CPUI = "CreatePresignedUrlInput";
312
+ const _CPUO = "CreatePresignedUrlOutput";
313
+ const _CQA = "CreateQApp";
314
+ const _CQAI = "CreateQAppInput";
315
+ const _CQAO = "CreateQAppOutput";
316
+ const _CS = "CardStatus";
317
+ const _CSM = "CardStatusMap";
318
+ const _CTLE = "ContentTooLargeException";
319
+ const _CV = "CardValue";
320
+ const _CVL = "CardValueList";
321
+ const _Ca = "Card";
322
+ const _DA = "DocumentAttribute";
323
+ const _DAV = "DocumentAttributeValue";
324
+ const _DLI = "DeleteLibraryItem";
325
+ const _DLII = "DeleteLibraryItemInput";
326
+ const _DLIR = "DisassociateLibraryItemReview";
327
+ const _DLIRI = "DisassociateLibraryItemReviewInput";
328
+ const _DQA = "DeleteQApp";
329
+ const _DQAFU = "DisassociateQAppFromUser";
330
+ const _DQAFUI = "DisassociateQAppFromUserInput";
331
+ const _DQAI = "DeleteQAppInput";
332
+ const _DQAP = "DescribeQAppPermissions";
333
+ const _DQAPI = "DescribeQAppPermissionsInput";
334
+ const _DQAPO = "DescribeQAppPermissionsOutput";
335
+ const _EQASD = "ExportQAppSessionData";
336
+ const _EQASDI = "ExportQAppSessionDataInput";
337
+ const _EQASDO = "ExportQAppSessionDataOutput";
338
+ const _FIC = "FormInputCard";
339
+ const _FICI = "FormInputCardInput";
340
+ const _FICM = "FormInputCardMetadata";
341
+ const _FUC = "FileUploadCard";
342
+ const _FUCI = "FileUploadCardInput";
343
+ const _GLI = "GetLibraryItem";
344
+ const _GLII = "GetLibraryItemInput";
345
+ const _GLIO = "GetLibraryItemOutput";
346
+ const _GQA = "GetQApp";
347
+ const _GQAI = "GetQAppInput";
348
+ const _GQAO = "GetQAppOutput";
349
+ const _GQAS = "GetQAppSession";
350
+ const _GQASI = "GetQAppSessionInput";
351
+ const _GQASM = "GetQAppSessionMetadata";
352
+ const _GQASMI = "GetQAppSessionMetadataInput";
353
+ const _GQASMO = "GetQAppSessionMetadataOutput";
354
+ const _GQASO = "GetQAppSessionOutput";
355
+ const _ID = "ImportDocument";
356
+ const _IDI = "ImportDocumentInput";
357
+ const _IDO = "ImportDocumentOutput";
358
+ const _ISE = "InternalServerException";
359
+ const _LC = "ListCategories";
360
+ const _LCI = "ListCategoriesInput";
361
+ const _LCO = "ListCategoriesOutput";
362
+ const _LIL = "LibraryItemList";
363
+ const _LIM = "LibraryItemMember";
364
+ const _LLI = "ListLibraryItems";
365
+ const _LLII = "ListLibraryItemsInput";
366
+ const _LLIO = "ListLibraryItemsOutput";
367
+ const _LQA = "ListQApps";
368
+ const _LQAI = "ListQAppsInput";
369
+ const _LQAO = "ListQAppsOutput";
370
+ const _LQASD = "ListQAppSessionData";
371
+ const _LQASDI = "ListQAppSessionDataInput";
372
+ const _LQASDO = "ListQAppSessionDataOutput";
373
+ const _LTFR = "ListTagsForResource";
374
+ const _LTFRR = "ListTagsForResourceRequest";
375
+ const _LTFRRi = "ListTagsForResourceResponse";
376
+ const _ML = "MessageList";
377
+ const _PAD = "PredictAppDefinition";
378
+ const _PI = "PermissionInput";
379
+ const _PIL = "PermissionsInputList";
380
+ const _PO = "PermissionOutput";
381
+ const _POL = "PermissionsOutputList";
382
+ const _POr = "PrincipalOutput";
383
+ const _PQA = "PredictQApp";
384
+ const _PQAI = "PredictQAppInput";
385
+ const _PQAIO = "PredictQAppInputOptions";
386
+ const _PQAO = "PredictQAppOutput";
387
+ const _QASD = "QAppSessionData";
388
+ const _QASDL = "QAppSessionDataList";
389
+ const _QPC = "QPluginCard";
390
+ const _QPCI = "QPluginCardInput";
391
+ const _QQC = "QQueryCard";
392
+ const _QQCI = "QQueryCardInput";
393
+ const _RA = "Retry-After";
394
+ const _RNFE = "ResourceNotFoundException";
395
+ const _S = "Submission";
396
+ const _SL = "SubmissionList";
397
+ const _SM = "SubmissionMutation";
398
+ const _SQAS = "StartQAppSession";
399
+ const _SQASI = "StartQAppSessionInput";
400
+ const _SQASIt = "StopQAppSessionInput";
401
+ const _SQASO = "StartQAppSessionOutput";
402
+ const _SQASt = "StopQAppSession";
403
+ const _SQEE = "ServiceQuotaExceededException";
404
+ const _SSC = "SessionSharingConfiguration";
405
+ const _TE = "ThrottlingException";
406
+ const _TIC = "TextInputCard";
407
+ const _TICI = "TextInputCardInput";
408
+ const _TR = "TagResource";
409
+ const _TRR = "TagResourceRequest";
410
+ const _TRRa = "TagResourceResponse";
411
+ const _U = "User";
412
+ const _UAI = "UserAppItem";
413
+ const _UAL = "UserAppsList";
414
+ const _UE = "UnauthorizedException";
415
+ const _ULI = "UpdateLibraryItem";
416
+ const _ULII = "UpdateLibraryItemInput";
417
+ const _ULIM = "UpdateLibraryItemMetadata";
418
+ const _ULIMI = "UpdateLibraryItemMetadataInput";
419
+ const _ULIO = "UpdateLibraryItemOutput";
420
+ const _UQA = "UpdateQApp";
421
+ const _UQAI = "UpdateQAppInput";
422
+ const _UQAO = "UpdateQAppOutput";
423
+ const _UQAP = "UpdateQAppPermissions";
424
+ const _UQAPI = "UpdateQAppPermissionsInput";
425
+ const _UQAPO = "UpdateQAppPermissionsOutput";
426
+ const _UQAS = "UpdateQAppSession";
427
+ const _UQASI = "UpdateQAppSessionInput";
428
+ const _UQASM = "UpdateQAppSessionMetadata";
429
+ const _UQASMI = "UpdateQAppSessionMetadataInput";
430
+ const _UQASMO = "UpdateQAppSessionMetadataOutput";
431
+ const _UQASO = "UpdateQAppSessionOutput";
432
+ const _UR = "UntagResource";
433
+ const _URR = "UntagResourceRequest";
434
+ const _URRn = "UntagResourceResponse";
435
+ const _VE = "ValidationException";
436
+ const _a = "apps";
437
+ const _aA = "appArn";
438
+ const _aAF = "andAllFilters";
439
+ const _aC = "appCount";
440
+ const _aD = "appDefinition";
441
+ const _aDV = "appDefinitionVersion";
442
+ const _aF = "attributeFilter";
443
+ const _aI = "appId";
444
+ const _aIc = "actionIdentifier";
445
+ const _aO = "allowOverride";
446
+ const _aR = "acceptResponses";
447
+ const _aV = "appVersion";
448
+ const _ac = "action";
449
+ const _ap = "app";
450
+ const _b = "body";
451
+ const _c = "client";
452
+ const _cA = "containsAll";
453
+ const _cAo = "containsAny";
454
+ const _cAr = "createdAt";
455
+ const _cB = "createdBy";
456
+ const _cE = "canEdit";
457
+ const _cFL = "csvFileLink";
458
+ const _cI = "cardId";
459
+ const _cIa = "categoryId";
460
+ const _cM = "computeMode";
461
+ const _cS = "currentState";
462
+ const _cSa = "cardStatus";
463
+ const _cV = "currentValue";
464
+ const _ca = "cards";
465
+ const _cat = "categories";
466
+ const _co = "color";
467
+ const _con = "conversation";
468
+ const _d = "description";
469
+ const _dV = "defaultValue";
470
+ const _dVa = "dateValue";
471
+ const _de = "dependencies";
472
+ const _e = "error";
473
+ const _eA = "expiresAt";
474
+ const _eT = "equalsTo";
475
+ const _em = "email";
476
+ const _en = "enabled";
477
+ const _f = "filename";
478
+ const _fCB = "fileContentsBase64";
479
+ const _fCS = "fileContentsSha256";
480
+ const _fI = "fileId";
481
+ const _fIo = "formInput";
482
+ const _fN = "fileName";
483
+ const _fU = "fileUpload";
484
+ const _gP = "grantPermissions";
485
+ const _gT = "greaterThan";
486
+ const _gTOE = "greaterThanOrEquals";
487
+ const _h = "http";
488
+ const _hE = "httpError";
489
+ const _hH = "httpHeader";
490
+ const _hQ = "httpQuery";
491
+ const _i = "id";
492
+ const _iI = "instanceId";
493
+ const _iP = "initialPrompt";
494
+ const _iRBU = "isRatedByUser";
495
+ const _iV = "isVerified";
496
+ const _iVn = "initialValues";
497
+ const _ii = "instance-id";
498
+ const _l = "limit";
499
+ const _lI = "libraryItems";
500
+ const _lII = "libraryItemId";
501
+ const _lPAV = "latestPublishedAppVersion";
502
+ const _lT = "lessThan";
503
+ const _lTOE = "lessThanOrEquals";
504
+ const _lV = "longValue";
505
+ const _m = "message";
506
+ const _mR = "memoryReferences";
507
+ const _mT = "mutationType";
508
+ const _me = "metadata";
509
+ const _n = "name";
510
+ const _nF = "notFilter";
511
+ const _nT = "nextToken";
512
+ const _o = "options";
513
+ const _oAF = "orAllFilters";
514
+ const _oS = "outputSource";
515
+ const _p = "permissions";
516
+ const _pI = "pluginId";
517
+ const _pS = "problemStatement";
518
+ const _pT = "pluginType";
519
+ const _pU = "presignedUrl";
520
+ const _pUE = "presignedUrlExpiration";
521
+ const _pUF = "presignedUrlFields";
522
+ const _pl = "placeholder";
523
+ const _pr = "principal";
524
+ const _pro = "prompt";
525
+ const _qC = "quotaCode";
526
+ const _qP = "qPlugin";
527
+ const _qQ = "qQuery";
528
+ const _rA = "resourceArn";
529
+ const _rARN = "resourceARN";
530
+ const _rAS = "retryAfterSeconds";
531
+ const _rC = "ratingCount";
532
+ const _rCe = "requiredCapabilities";
533
+ const _rCev = "revealCards";
534
+ const _rI = "resourceId";
535
+ const _rP = "revokePermissions";
536
+ const _rT = "resourceType";
537
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.qapps";
538
+ const _sA = "sessionArn";
539
+ const _sC = "serviceCode";
540
+ const _sCh = "sharingConfiguration";
541
+ const _sD = "sessionData";
542
+ const _sI = "sessionId";
543
+ const _sIu = "submissionId";
544
+ const _sLV = "stringListValue";
545
+ const _sM = "submissionMutation";
546
+ const _sN = "sessionName";
547
+ const _sO = "sessionOwner";
548
+ const _sV = "stringValue";
549
+ const _sc = "scope";
550
+ const _sch = "schema";
551
+ const _se = "server";
552
+ const _st = "status";
553
+ const _su = "submissions";
554
+ const _t = "title";
555
+ const _tI = "textInput";
556
+ const _tK = "tagKeys";
557
+ const _ta = "tags";
558
+ const _ti = "timestamp";
559
+ const _ty = "type";
560
+ const _u = "user";
561
+ const _uA = "updatedAt";
562
+ const _uB = "updatedBy";
563
+ const _uC = "userCount";
564
+ const _uI = "userId";
565
+ const _uIH = "userIsHost";
566
+ const _uT = "userType";
567
+ const _v = "value";
568
+ const _va = "values";
569
+ const n0 = "com.amazonaws.qapps";
570
+ const _s_registry = TypeRegistry.for(_s);
571
+ var QAppsServiceException$ = [-3, _s, "QAppsServiceException", 0, [], []];
572
+ _s_registry.registerError(QAppsServiceException$, QAppsServiceException);
573
+ const n0_registry = TypeRegistry.for(n0);
574
+ var AccessDeniedException$ = [-3, n0, _ADE,
575
+ { [_e]: _c, [_hE]: 403 },
576
+ [_m],
577
+ [0], 1
578
+ ];
579
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
580
+ var ConflictException$ = [-3, n0, _CE,
581
+ { [_e]: _c, [_hE]: 409 },
582
+ [_m, _rI, _rT],
583
+ [0, 0, 0], 3
584
+ ];
585
+ n0_registry.registerError(ConflictException$, ConflictException);
586
+ var ContentTooLargeException$ = [-3, n0, _CTLE,
587
+ { [_e]: _c, [_hE]: 413 },
588
+ [_m, _rI, _rT],
589
+ [0, 0, 0], 3
590
+ ];
591
+ n0_registry.registerError(ContentTooLargeException$, ContentTooLargeException);
592
+ var InternalServerException$ = [-3, n0, _ISE,
593
+ { [_e]: _se, [_hE]: 500 },
594
+ [_m, _rAS],
595
+ [0, [1, { [_hH]: _RA }]], 1
596
+ ];
597
+ n0_registry.registerError(InternalServerException$, InternalServerException);
598
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
599
+ { [_e]: _c, [_hE]: 404 },
600
+ [_m, _rI, _rT],
601
+ [0, 0, 0], 3
602
+ ];
603
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
604
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
605
+ { [_e]: _c, [_hE]: 402 },
606
+ [_m, _rI, _rT, _sC, _qC],
607
+ [0, 0, 0, 0, 0], 5
608
+ ];
609
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
610
+ var ThrottlingException$ = [-3, n0, _TE,
611
+ { [_e]: _c, [_hE]: 429 },
612
+ [_m, _sC, _qC, _rAS],
613
+ [0, 0, 0, [1, { [_hH]: _RA }]], 3
614
+ ];
615
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
616
+ var UnauthorizedException$ = [-3, n0, _UE,
617
+ { [_e]: _c, [_hE]: 401 },
618
+ [_m],
619
+ [0], 1
620
+ ];
621
+ n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
622
+ var ValidationException$ = [-3, n0, _VE,
623
+ { [_e]: _c, [_hE]: 400 },
624
+ [_m],
625
+ [0], 1
626
+ ];
627
+ n0_registry.registerError(ValidationException$, ValidationException);
628
+ const errorTypeRegistries = [
629
+ _s_registry,
630
+ n0_registry,
631
+ ];
632
+ var AppDefinition$ = [3, n0, _AD,
633
+ 0,
634
+ [_aDV, _ca, _cE],
635
+ [0, () => CardModelList, 2], 2
636
+ ];
637
+ var AppDefinitionInput$ = [3, n0, _ADI,
638
+ 0,
639
+ [_ca, _iP],
640
+ [() => CardList, 0], 1
641
+ ];
642
+ var AssociateLibraryItemReviewInput$ = [3, n0, _ALIRI,
643
+ 0,
644
+ [_iI, _lII],
645
+ [[0, { [_hH]: _ii }], 0], 2
646
+ ];
647
+ var AssociateQAppWithUserInput$ = [3, n0, _AQAWUI,
648
+ 0,
649
+ [_iI, _aI],
650
+ [[0, { [_hH]: _ii }], 0], 2
651
+ ];
652
+ var AttributeFilter$ = [3, n0, _AF,
653
+ 0,
654
+ [_aAF, _oAF, _nF, _eT, _cA, _cAo, _gT, _gTOE, _lT, _lTOE],
655
+ [() => AttributeFilters, () => AttributeFilters, () => AttributeFilter$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$, () => DocumentAttribute$]
656
+ ];
657
+ var BatchCreateCategoryInput$ = [3, n0, _BCCI,
658
+ 0,
659
+ [_iI, _cat],
660
+ [[0, { [_hH]: _ii }], () => BatchCreateCategoryInputCategoryList], 2
661
+ ];
662
+ var BatchCreateCategoryInputCategory$ = [3, n0, _BCCIC,
663
+ 0,
664
+ [_t, _i, _co],
665
+ [0, 0, 0], 1
666
+ ];
667
+ var BatchDeleteCategoryInput$ = [3, n0, _BDCI,
668
+ 0,
669
+ [_iI, _cat],
670
+ [[0, { [_hH]: _ii }], 64 | 0], 2
671
+ ];
672
+ var BatchUpdateCategoryInput$ = [3, n0, _BUCI,
673
+ 0,
674
+ [_iI, _cat],
675
+ [[0, { [_hH]: _ii }], () => CategoryListInput], 2
676
+ ];
677
+ var CardStatus$ = [3, n0, _CS,
678
+ 0,
679
+ [_cS, _cV, _su],
680
+ [0, 0, () => SubmissionList], 2
681
+ ];
682
+ var CardValue$ = [3, n0, _CV,
683
+ 0,
684
+ [_cI, _v, _sM],
685
+ [0, 0, () => SubmissionMutation$], 2
686
+ ];
687
+ var Category$ = [3, n0, _C,
688
+ 0,
689
+ [_i, _t, _co, _aC],
690
+ [0, 0, 0, 1], 2
691
+ ];
692
+ var CategoryInput$ = [3, n0, _CI,
693
+ 0,
694
+ [_i, _t, _co],
695
+ [0, 0, 0], 2
696
+ ];
697
+ var ConversationMessage$ = [3, n0, _CM,
698
+ 0,
699
+ [_b, _ty],
700
+ [0, 0], 2
701
+ ];
702
+ var CreateLibraryItemInput$ = [3, n0, _CLII,
703
+ 0,
704
+ [_iI, _aI, _aV, _cat],
705
+ [[0, { [_hH]: _ii }], 0, 1, 64 | 0], 4
706
+ ];
707
+ var CreateLibraryItemOutput$ = [3, n0, _CLIO,
708
+ 0,
709
+ [_lII, _st, _cAr, _cB, _rC, _uA, _uB, _iV],
710
+ [0, 0, 5, 0, 1, 5, 0, 2], 5
711
+ ];
712
+ var CreatePresignedUrlInput$ = [3, n0, _CPUI,
713
+ 0,
714
+ [_iI, _cI, _aI, _fCS, _fN, _sc, _sI],
715
+ [[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0], 6
716
+ ];
717
+ var CreatePresignedUrlOutput$ = [3, n0, _CPUO,
718
+ 0,
719
+ [_fI, _pU, _pUF, _pUE],
720
+ [0, 0, 128 | 0, 5], 4
721
+ ];
722
+ var CreateQAppInput$ = [3, n0, _CQAI,
723
+ 0,
724
+ [_iI, _t, _aD, _d, _ta],
725
+ [[0, { [_hH]: _ii }], 0, () => AppDefinitionInput$, 0, 128 | 0], 3
726
+ ];
727
+ var CreateQAppOutput$ = [3, n0, _CQAO,
728
+ 0,
729
+ [_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _d, _iP, _rCe],
730
+ [0, 0, 0, 1, 0, 5, 0, 5, 0, 0, 0, 64 | 0], 9
731
+ ];
732
+ var DeleteLibraryItemInput$ = [3, n0, _DLII,
733
+ 0,
734
+ [_iI, _lII],
735
+ [[0, { [_hH]: _ii }], 0], 2
736
+ ];
737
+ var DeleteQAppInput$ = [3, n0, _DQAI,
738
+ 0,
739
+ [_iI, _aI],
740
+ [[0, { [_hH]: _ii }], 0], 2
741
+ ];
742
+ var DescribeQAppPermissionsInput$ = [3, n0, _DQAPI,
743
+ 0,
744
+ [_iI, _aI],
745
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _aI }]], 2
746
+ ];
747
+ var DescribeQAppPermissionsOutput$ = [3, n0, _DQAPO,
748
+ 0,
749
+ [_rA, _aI, _p],
750
+ [0, 0, () => PermissionsOutputList]
751
+ ];
752
+ var DisassociateLibraryItemReviewInput$ = [3, n0, _DLIRI,
753
+ 0,
754
+ [_iI, _lII],
755
+ [[0, { [_hH]: _ii }], 0], 2
756
+ ];
757
+ var DisassociateQAppFromUserInput$ = [3, n0, _DQAFUI,
758
+ 0,
759
+ [_iI, _aI],
760
+ [[0, { [_hH]: _ii }], 0], 2
761
+ ];
762
+ var DocumentAttribute$ = [3, n0, _DA,
763
+ 0,
764
+ [_n, _v],
765
+ [0, () => DocumentAttributeValue$], 2
766
+ ];
767
+ var ExportQAppSessionDataInput$ = [3, n0, _EQASDI,
768
+ 0,
769
+ [_iI, _sI],
770
+ [[0, { [_hH]: _ii }], 0], 2
771
+ ];
772
+ var ExportQAppSessionDataOutput$ = [3, n0, _EQASDO,
773
+ 0,
774
+ [_cFL, _eA, _sA],
775
+ [0, 5, 0], 3
776
+ ];
777
+ var FileUploadCard$ = [3, n0, _FUC,
778
+ 0,
779
+ [_i, _t, _de, _ty, _f, _fI, _aO],
780
+ [0, 0, 64 | 0, 0, 0, 0, 2], 4
781
+ ];
782
+ var FileUploadCardInput$ = [3, n0, _FUCI,
783
+ 0,
784
+ [_t, _i, _ty, _f, _fI, _aO],
785
+ [0, 0, 0, 0, 0, 2], 3
786
+ ];
787
+ var FormInputCard$ = [3, n0, _FIC,
788
+ 0,
789
+ [_i, _t, _de, _ty, _me, _cM],
790
+ [0, 0, 64 | 0, 0, () => FormInputCardMetadata$, 0], 5
791
+ ];
792
+ var FormInputCardInput$ = [3, n0, _FICI,
793
+ 0,
794
+ [_t, _i, _ty, _me, _cM],
795
+ [0, 0, 0, () => FormInputCardMetadata$, 0], 4
796
+ ];
797
+ var FormInputCardMetadata$ = [3, n0, _FICM,
798
+ 0,
799
+ [_sch],
800
+ [15], 1
801
+ ];
802
+ var GetLibraryItemInput$ = [3, n0, _GLII,
803
+ 0,
804
+ [_iI, _lII, _aI],
805
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _lII }], [0, { [_hQ]: _aI }]], 2
806
+ ];
807
+ var GetLibraryItemOutput$ = [3, n0, _GLIO,
808
+ 0,
809
+ [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
810
+ [0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
811
+ ];
812
+ var GetQAppInput$ = [3, n0, _GQAI,
813
+ 0,
814
+ [_iI, _aI, _aV],
815
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _aI }], [1, { [_hQ]: _aV }]], 2
816
+ ];
817
+ var GetQAppOutput$ = [3, n0, _GQAO,
818
+ 0,
819
+ [_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _aD, _d, _iP, _rCe],
820
+ [0, 0, 0, 1, 0, 5, 0, 5, 0, () => AppDefinition$, 0, 0, 64 | 0], 10
821
+ ];
822
+ var GetQAppSessionInput$ = [3, n0, _GQASI,
823
+ 0,
824
+ [_iI, _sI],
825
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
826
+ ];
827
+ var GetQAppSessionMetadataInput$ = [3, n0, _GQASMI,
828
+ 0,
829
+ [_iI, _sI],
830
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
831
+ ];
832
+ var GetQAppSessionMetadataOutput$ = [3, n0, _GQASMO,
833
+ 0,
834
+ [_sI, _sA, _sCh, _sN, _sO],
835
+ [0, 0, () => SessionSharingConfiguration$, 0, 2], 3
836
+ ];
837
+ var GetQAppSessionOutput$ = [3, n0, _GQASO,
838
+ 0,
839
+ [_sI, _sA, _st, _cSa, _sN, _aV, _lPAV, _uIH],
840
+ [0, 0, 0, () => CardStatusMap, 0, 1, 1, 2], 4
841
+ ];
842
+ var ImportDocumentInput$ = [3, n0, _IDI,
843
+ 0,
844
+ [_iI, _cI, _aI, _fCB, _fN, _sc, _sI],
845
+ [[0, { [_hH]: _ii }], 0, 0, 0, 0, 0, 0], 6
846
+ ];
847
+ var ImportDocumentOutput$ = [3, n0, _IDO,
848
+ 0,
849
+ [_fI],
850
+ [0]
851
+ ];
852
+ var LibraryItemMember$ = [3, n0, _LIM,
853
+ 0,
854
+ [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
855
+ [0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
856
+ ];
857
+ var ListCategoriesInput$ = [3, n0, _LCI,
858
+ 0,
859
+ [_iI],
860
+ [[0, { [_hH]: _ii }]], 1
861
+ ];
862
+ var ListCategoriesOutput$ = [3, n0, _LCO,
863
+ 0,
864
+ [_cat],
865
+ [() => CategoriesList]
866
+ ];
867
+ var ListLibraryItemsInput$ = [3, n0, _LLII,
868
+ 0,
869
+ [_iI, _l, _nT, _cIa],
870
+ [[0, { [_hH]: _ii }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _cIa }]], 1
871
+ ];
872
+ var ListLibraryItemsOutput$ = [3, n0, _LLIO,
873
+ 0,
874
+ [_lI, _nT],
875
+ [() => LibraryItemList, 0]
876
+ ];
877
+ var ListQAppSessionDataInput$ = [3, n0, _LQASDI,
878
+ 0,
879
+ [_iI, _sI],
880
+ [[0, { [_hH]: _ii }], [0, { [_hQ]: _sI }]], 2
881
+ ];
882
+ var ListQAppSessionDataOutput$ = [3, n0, _LQASDO,
883
+ 0,
884
+ [_sI, _sA, _sD, _nT],
885
+ [0, 0, () => QAppSessionDataList, 0], 2
886
+ ];
887
+ var ListQAppsInput$ = [3, n0, _LQAI,
888
+ 0,
889
+ [_iI, _l, _nT],
890
+ [[0, { [_hH]: _ii }], [1, { [_hQ]: _l }], [0, { [_hQ]: _nT }]], 1
891
+ ];
892
+ var ListQAppsOutput$ = [3, n0, _LQAO,
893
+ 0,
894
+ [_a, _nT],
895
+ [() => UserAppsList, 0], 1
896
+ ];
897
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
898
+ 0,
899
+ [_rARN],
900
+ [[0, 1]], 1
901
+ ];
902
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
903
+ 0,
904
+ [_ta],
905
+ [128 | 0]
906
+ ];
907
+ var PermissionInput$ = [3, n0, _PI,
908
+ 0,
909
+ [_ac, _pr],
910
+ [0, 0], 2
911
+ ];
912
+ var PermissionOutput$ = [3, n0, _PO,
913
+ 0,
914
+ [_ac, _pr],
915
+ [0, () => PrincipalOutput$], 2
916
+ ];
917
+ var PredictAppDefinition$ = [3, n0, _PAD,
918
+ 0,
919
+ [_t, _aD, _d],
920
+ [0, () => AppDefinitionInput$, 0], 2
921
+ ];
922
+ var PredictQAppInput$ = [3, n0, _PQAI,
923
+ 0,
924
+ [_iI, _o],
925
+ [[0, { [_hH]: _ii }], () => PredictQAppInputOptions$], 1
926
+ ];
927
+ var PredictQAppOutput$ = [3, n0, _PQAO,
928
+ 0,
929
+ [_ap, _pS],
930
+ [() => PredictAppDefinition$, 0], 2
931
+ ];
932
+ var PrincipalOutput$ = [3, n0, _POr,
933
+ 0,
934
+ [_uI, _uT, _em],
935
+ [0, 0, 0]
936
+ ];
937
+ var QAppSessionData$ = [3, n0, _QASD,
938
+ 0,
939
+ [_cI, _u, _v, _sIu, _ti],
940
+ [0, () => User$, 15, 0, 5], 2
941
+ ];
942
+ var QPluginCard$ = [3, n0, _QPC,
943
+ 0,
944
+ [_i, _t, _de, _ty, _pro, _pT, _pI, _aIc],
945
+ [0, 0, 64 | 0, 0, 0, 0, 0, 0], 7
946
+ ];
947
+ var QPluginCardInput$ = [3, n0, _QPCI,
948
+ 0,
949
+ [_t, _i, _ty, _pro, _pI, _aIc],
950
+ [0, 0, 0, 0, 0, 0], 5
951
+ ];
952
+ var QQueryCard$ = [3, n0, _QQC,
953
+ 0,
954
+ [_i, _t, _de, _ty, _pro, _oS, _aF, _mR],
955
+ [0, 0, 64 | 0, 0, 0, 0, () => AttributeFilter$, 64 | 0], 6
956
+ ];
957
+ var QQueryCardInput$ = [3, n0, _QQCI,
958
+ 0,
959
+ [_t, _i, _ty, _pro, _oS, _aF],
960
+ [0, 0, 0, 0, 0, () => AttributeFilter$], 4
961
+ ];
962
+ var SessionSharingConfiguration$ = [3, n0, _SSC,
963
+ 0,
964
+ [_en, _aR, _rCev],
965
+ [2, 2, 2], 1
966
+ ];
967
+ var StartQAppSessionInput$ = [3, n0, _SQASI,
968
+ 0,
969
+ [_iI, _aI, _aV, _iVn, _sI, _ta],
970
+ [[0, { [_hH]: _ii }], 0, 1, () => CardValueList, 0, 128 | 0], 3
971
+ ];
972
+ var StartQAppSessionOutput$ = [3, n0, _SQASO,
973
+ 0,
974
+ [_sI, _sA],
975
+ [0, 0], 2
976
+ ];
977
+ var StopQAppSessionInput$ = [3, n0, _SQASIt,
978
+ 0,
979
+ [_iI, _sI],
980
+ [[0, { [_hH]: _ii }], 0], 2
981
+ ];
982
+ var Submission$ = [3, n0, _S,
983
+ 0,
984
+ [_v, _sIu, _ti],
985
+ [15, 0, 5]
986
+ ];
987
+ var SubmissionMutation$ = [3, n0, _SM,
988
+ 0,
989
+ [_sIu, _mT],
990
+ [0, 0], 2
991
+ ];
992
+ var TagResourceRequest$ = [3, n0, _TRR,
993
+ 0,
994
+ [_rARN, _ta],
995
+ [[0, 1], 128 | 0], 2
996
+ ];
997
+ var TagResourceResponse$ = [3, n0, _TRRa,
998
+ 0,
999
+ [],
1000
+ []
1001
+ ];
1002
+ var TextInputCard$ = [3, n0, _TIC,
1003
+ 0,
1004
+ [_i, _t, _de, _ty, _pl, _dV],
1005
+ [0, 0, 64 | 0, 0, 0, 0], 4
1006
+ ];
1007
+ var TextInputCardInput$ = [3, n0, _TICI,
1008
+ 0,
1009
+ [_t, _i, _ty, _pl, _dV],
1010
+ [0, 0, 0, 0, 0], 3
1011
+ ];
1012
+ var UntagResourceRequest$ = [3, n0, _URR,
1013
+ 0,
1014
+ [_rARN, _tK],
1015
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1016
+ ];
1017
+ var UntagResourceResponse$ = [3, n0, _URRn,
1018
+ 0,
1019
+ [],
1020
+ []
1021
+ ];
1022
+ var UpdateLibraryItemInput$ = [3, n0, _ULII,
1023
+ 0,
1024
+ [_iI, _lII, _st, _cat],
1025
+ [[0, { [_hH]: _ii }], 0, 0, 64 | 0], 2
1026
+ ];
1027
+ var UpdateLibraryItemMetadataInput$ = [3, n0, _ULIMI,
1028
+ 0,
1029
+ [_iI, _lII, _iV],
1030
+ [[0, { [_hH]: _ii }], 0, 2], 2
1031
+ ];
1032
+ var UpdateLibraryItemOutput$ = [3, n0, _ULIO,
1033
+ 0,
1034
+ [_lII, _aI, _aV, _cat, _st, _cAr, _cB, _rC, _uA, _uB, _iRBU, _uC, _iV],
1035
+ [0, 0, 1, () => CategoryList, 0, 5, 0, 1, 5, 0, 2, 1, 2], 8
1036
+ ];
1037
+ var UpdateQAppInput$ = [3, n0, _UQAI,
1038
+ 0,
1039
+ [_iI, _aI, _t, _d, _aD],
1040
+ [[0, { [_hH]: _ii }], 0, 0, 0, () => AppDefinitionInput$], 2
1041
+ ];
1042
+ var UpdateQAppOutput$ = [3, n0, _UQAO,
1043
+ 0,
1044
+ [_aI, _aA, _t, _aV, _st, _cAr, _cB, _uA, _uB, _d, _iP, _rCe],
1045
+ [0, 0, 0, 1, 0, 5, 0, 5, 0, 0, 0, 64 | 0], 9
1046
+ ];
1047
+ var UpdateQAppPermissionsInput$ = [3, n0, _UQAPI,
1048
+ 0,
1049
+ [_iI, _aI, _gP, _rP],
1050
+ [[0, { [_hH]: _ii }], 0, () => PermissionsInputList, () => PermissionsInputList], 2
1051
+ ];
1052
+ var UpdateQAppPermissionsOutput$ = [3, n0, _UQAPO,
1053
+ 0,
1054
+ [_rA, _aI, _p],
1055
+ [0, 0, () => PermissionsOutputList]
1056
+ ];
1057
+ var UpdateQAppSessionInput$ = [3, n0, _UQASI,
1058
+ 0,
1059
+ [_iI, _sI, _va],
1060
+ [[0, { [_hH]: _ii }], 0, () => CardValueList], 2
1061
+ ];
1062
+ var UpdateQAppSessionMetadataInput$ = [3, n0, _UQASMI,
1063
+ 0,
1064
+ [_iI, _sI, _sCh, _sN],
1065
+ [[0, { [_hH]: _ii }], 0, () => SessionSharingConfiguration$, 0], 3
1066
+ ];
1067
+ var UpdateQAppSessionMetadataOutput$ = [3, n0, _UQASMO,
1068
+ 0,
1069
+ [_sI, _sA, _sCh, _sN],
1070
+ [0, 0, () => SessionSharingConfiguration$, 0], 3
1071
+ ];
1072
+ var UpdateQAppSessionOutput$ = [3, n0, _UQASO,
1073
+ 0,
1074
+ [_sI, _sA],
1075
+ [0, 0], 2
1076
+ ];
1077
+ var User$ = [3, n0, _U,
1078
+ 0,
1079
+ [_uI],
1080
+ [0]
1081
+ ];
1082
+ var UserAppItem$ = [3, n0, _UAI,
1083
+ 0,
1084
+ [_aI, _aA, _t, _cAr, _d, _cE, _st, _iV],
1085
+ [0, 0, 0, 5, 0, 2, 0, 2], 4
1086
+ ];
1087
+ var __Unit = "unit";
1088
+ var AttributeFilters = [1, n0, _AFt,
1089
+ 0, () => AttributeFilter$
1090
+ ];
1091
+ var BatchCreateCategoryInputCategoryList = [1, n0, _BCCICL,
1092
+ 0, () => BatchCreateCategoryInputCategory$
1093
+ ];
1094
+ var CardList = [1, n0, _CL,
1095
+ 0, () => CardInput$
1096
+ ];
1097
+ var CardModelList = [1, n0, _CML,
1098
+ 0, () => Card$
1099
+ ];
1100
+ var CardValueList = [1, n0, _CVL,
1101
+ 0, () => CardValue$
1102
+ ];
1103
+ var CategoriesList = [1, n0, _CLa,
1104
+ 0, () => Category$
1105
+ ];
1106
+ var CategoryList = [1, n0, _CLat,
1107
+ 0, () => Category$
1108
+ ];
1109
+ var CategoryListInput = [1, n0, _CLI,
1110
+ 0, () => CategoryInput$
1111
+ ];
1112
+ var LibraryItemList = [1, n0, _LIL,
1113
+ 0, () => LibraryItemMember$
1114
+ ];
1115
+ var MessageList = [1, n0, _ML,
1116
+ 0, () => ConversationMessage$
1117
+ ];
1118
+ var PermissionsInputList = [1, n0, _PIL,
1119
+ 0, () => PermissionInput$
1120
+ ];
1121
+ var PermissionsOutputList = [1, n0, _POL,
1122
+ 0, () => PermissionOutput$
1123
+ ];
1124
+ var QAppSessionDataList = [1, n0, _QASDL,
1125
+ 0, () => QAppSessionData$
1126
+ ];
1127
+ var SubmissionList = [1, n0, _SL,
1128
+ 0, () => Submission$
1129
+ ];
1130
+ var UserAppsList = [1, n0, _UAL,
1131
+ 0, () => UserAppItem$
1132
+ ];
1133
+ var CardStatusMap = [2, n0, _CSM,
1134
+ 0, 0, () => CardStatus$
1135
+ ];
1136
+ var Card$ = [4, n0, _Ca,
1137
+ 0,
1138
+ [_tI, _qQ, _qP, _fU, _fIo],
1139
+ [() => TextInputCard$, () => QQueryCard$, () => QPluginCard$, () => FileUploadCard$, () => FormInputCard$]
1140
+ ];
1141
+ var CardInput$ = [4, n0, _CIa,
1142
+ 0,
1143
+ [_tI, _qQ, _qP, _fU, _fIo],
1144
+ [() => TextInputCardInput$, () => QQueryCardInput$, () => QPluginCardInput$, () => FileUploadCardInput$, () => FormInputCardInput$]
1145
+ ];
1146
+ var DocumentAttributeValue$ = [4, n0, _DAV,
1147
+ 0,
1148
+ [_sV, _sLV, _lV, _dVa],
1149
+ [0, 64 | 0, 1, 4]
1150
+ ];
1151
+ var PredictQAppInputOptions$ = [4, n0, _PQAIO,
1152
+ 0,
1153
+ [_con, _pS],
1154
+ [() => MessageList, 0]
1155
+ ];
1156
+ var AssociateLibraryItemReview$ = [9, n0, _ALIR,
1157
+ { [_h]: ["POST", "/catalog.associateItemRating", 200] }, () => AssociateLibraryItemReviewInput$, () => __Unit
1158
+ ];
1159
+ var AssociateQAppWithUser$ = [9, n0, _AQAWU,
1160
+ { [_h]: ["POST", "/apps.install", 200] }, () => AssociateQAppWithUserInput$, () => __Unit
1161
+ ];
1162
+ var BatchCreateCategory$ = [9, n0, _BCC,
1163
+ { [_h]: ["POST", "/catalog.createCategories", 200] }, () => BatchCreateCategoryInput$, () => __Unit
1164
+ ];
1165
+ var BatchDeleteCategory$ = [9, n0, _BDC,
1166
+ { [_h]: ["POST", "/catalog.deleteCategories", 200] }, () => BatchDeleteCategoryInput$, () => __Unit
1167
+ ];
1168
+ var BatchUpdateCategory$ = [9, n0, _BUC,
1169
+ { [_h]: ["POST", "/catalog.updateCategories", 200] }, () => BatchUpdateCategoryInput$, () => __Unit
1170
+ ];
1171
+ var CreateLibraryItem$ = [9, n0, _CLIr,
1172
+ { [_h]: ["POST", "/catalog.createItem", 200] }, () => CreateLibraryItemInput$, () => CreateLibraryItemOutput$
1173
+ ];
1174
+ var CreatePresignedUrl$ = [9, n0, _CPU,
1175
+ { [_h]: ["POST", "/apps.createPresignedUrl", 200] }, () => CreatePresignedUrlInput$, () => CreatePresignedUrlOutput$
1176
+ ];
1177
+ var CreateQApp$ = [9, n0, _CQA,
1178
+ { [_h]: ["POST", "/apps.create", 200] }, () => CreateQAppInput$, () => CreateQAppOutput$
1179
+ ];
1180
+ var DeleteLibraryItem$ = [9, n0, _DLI,
1181
+ { [_h]: ["POST", "/catalog.deleteItem", 200] }, () => DeleteLibraryItemInput$, () => __Unit
1182
+ ];
1183
+ var DeleteQApp$ = [9, n0, _DQA,
1184
+ { [_h]: ["POST", "/apps.delete", 200] }, () => DeleteQAppInput$, () => __Unit
1185
+ ];
1186
+ var DescribeQAppPermissions$ = [9, n0, _DQAP,
1187
+ { [_h]: ["GET", "/apps.describeQAppPermissions", 200] }, () => DescribeQAppPermissionsInput$, () => DescribeQAppPermissionsOutput$
1188
+ ];
1189
+ var DisassociateLibraryItemReview$ = [9, n0, _DLIR,
1190
+ { [_h]: ["POST", "/catalog.disassociateItemRating", 200] }, () => DisassociateLibraryItemReviewInput$, () => __Unit
1191
+ ];
1192
+ var DisassociateQAppFromUser$ = [9, n0, _DQAFU,
1193
+ { [_h]: ["POST", "/apps.uninstall", 200] }, () => DisassociateQAppFromUserInput$, () => __Unit
1194
+ ];
1195
+ var ExportQAppSessionData$ = [9, n0, _EQASD,
1196
+ { [_h]: ["POST", "/runtime.exportQAppSessionData", 200] }, () => ExportQAppSessionDataInput$, () => ExportQAppSessionDataOutput$
1197
+ ];
1198
+ var GetLibraryItem$ = [9, n0, _GLI,
1199
+ { [_h]: ["GET", "/catalog.getItem", 200] }, () => GetLibraryItemInput$, () => GetLibraryItemOutput$
1200
+ ];
1201
+ var GetQApp$ = [9, n0, _GQA,
1202
+ { [_h]: ["GET", "/apps.get", 200] }, () => GetQAppInput$, () => GetQAppOutput$
1203
+ ];
1204
+ var GetQAppSession$ = [9, n0, _GQAS,
1205
+ { [_h]: ["GET", "/runtime.getQAppSession", 200] }, () => GetQAppSessionInput$, () => GetQAppSessionOutput$
1206
+ ];
1207
+ var GetQAppSessionMetadata$ = [9, n0, _GQASM,
1208
+ { [_h]: ["GET", "/runtime.getQAppSessionMetadata", 200] }, () => GetQAppSessionMetadataInput$, () => GetQAppSessionMetadataOutput$
1209
+ ];
1210
+ var ImportDocument$ = [9, n0, _ID,
1211
+ { [_h]: ["POST", "/apps.importDocument", 200] }, () => ImportDocumentInput$, () => ImportDocumentOutput$
1212
+ ];
1213
+ var ListCategories$ = [9, n0, _LC,
1214
+ { [_h]: ["GET", "/catalog.listCategories", 200] }, () => ListCategoriesInput$, () => ListCategoriesOutput$
1215
+ ];
1216
+ var ListLibraryItems$ = [9, n0, _LLI,
1217
+ { [_h]: ["GET", "/catalog.list", 200] }, () => ListLibraryItemsInput$, () => ListLibraryItemsOutput$
1218
+ ];
1219
+ var ListQApps$ = [9, n0, _LQA,
1220
+ { [_h]: ["GET", "/apps.list", 200] }, () => ListQAppsInput$, () => ListQAppsOutput$
1221
+ ];
1222
+ var ListQAppSessionData$ = [9, n0, _LQASD,
1223
+ { [_h]: ["GET", "/runtime.listQAppSessionData", 200] }, () => ListQAppSessionDataInput$, () => ListQAppSessionDataOutput$
1224
+ ];
1225
+ var ListTagsForResource$ = [9, n0, _LTFR,
1226
+ { [_h]: ["GET", "/tags/{resourceARN}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1227
+ ];
1228
+ var PredictQApp$ = [9, n0, _PQA,
1229
+ { [_h]: ["POST", "/apps.predictQApp", 200] }, () => PredictQAppInput$, () => PredictQAppOutput$
1230
+ ];
1231
+ var StartQAppSession$ = [9, n0, _SQAS,
1232
+ { [_h]: ["POST", "/runtime.startQAppSession", 200] }, () => StartQAppSessionInput$, () => StartQAppSessionOutput$
1233
+ ];
1234
+ var StopQAppSession$ = [9, n0, _SQASt,
1235
+ { [_h]: ["POST", "/runtime.deleteMiniAppRun", 200] }, () => StopQAppSessionInput$, () => __Unit
1236
+ ];
1237
+ var TagResource$ = [9, n0, _TR,
1238
+ { [_h]: ["POST", "/tags/{resourceARN}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1239
+ ];
1240
+ var UntagResource$ = [9, n0, _UR,
1241
+ { [_h]: ["DELETE", "/tags/{resourceARN}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1242
+ ];
1243
+ var UpdateLibraryItem$ = [9, n0, _ULI,
1244
+ { [_h]: ["POST", "/catalog.updateItem", 200] }, () => UpdateLibraryItemInput$, () => UpdateLibraryItemOutput$
1245
+ ];
1246
+ var UpdateLibraryItemMetadata$ = [9, n0, _ULIM,
1247
+ { [_h]: ["POST", "/catalog.updateItemMetadata", 200] }, () => UpdateLibraryItemMetadataInput$, () => __Unit
1248
+ ];
1249
+ var UpdateQApp$ = [9, n0, _UQA,
1250
+ { [_h]: ["POST", "/apps.update", 200] }, () => UpdateQAppInput$, () => UpdateQAppOutput$
1251
+ ];
1252
+ var UpdateQAppPermissions$ = [9, n0, _UQAP,
1253
+ { [_h]: ["POST", "/apps.updateQAppPermissions", 200] }, () => UpdateQAppPermissionsInput$, () => UpdateQAppPermissionsOutput$
1254
+ ];
1255
+ var UpdateQAppSession$ = [9, n0, _UQAS,
1256
+ { [_h]: ["POST", "/runtime.updateQAppSession", 200] }, () => UpdateQAppSessionInput$, () => UpdateQAppSessionOutput$
1257
+ ];
1258
+ var UpdateQAppSessionMetadata$ = [9, n0, _UQASM,
1259
+ { [_h]: ["POST", "/runtime.updateQAppSessionMetadata", 200] }, () => UpdateQAppSessionMetadataInput$, () => UpdateQAppSessionMetadataOutput$
1260
+ ];
1261
+
1262
+ const getRuntimeConfig$1 = (config) => {
1263
+ return {
1264
+ apiVersion: "2023-11-27",
1265
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1266
+ base64Encoder: config?.base64Encoder ?? toBase64,
1267
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1268
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1269
+ extensions: config?.extensions ?? [],
1270
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultQAppsHttpAuthSchemeProvider,
1271
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1272
+ {
1273
+ schemeId: "aws.auth#sigv4",
1274
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1275
+ signer: new AwsSdkSigV4Signer(),
1276
+ },
1277
+ ],
1278
+ logger: config?.logger ?? new NoOpLogger(),
1279
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1280
+ protocolSettings: config?.protocolSettings ?? {
1281
+ defaultNamespace: "com.amazonaws.qapps",
1282
+ errorTypeRegistries,
1283
+ version: "2023-11-27",
1284
+ serviceTarget: "QAppsService",
1285
+ },
1286
+ serviceId: config?.serviceId ?? "QApps",
1287
+ urlParser: config?.urlParser ?? parseUrl,
1288
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1289
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1290
+ };
1291
+ };
1292
+
1293
+ const getRuntimeConfig = (config) => {
1294
+ emitWarningIfUnsupportedVersion(process.version);
1295
+ const defaultsMode = resolveDefaultsModeConfig(config);
1296
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1297
+ const clientSharedValues = getRuntimeConfig$1(config);
1298
+ emitWarningIfUnsupportedVersion$1(process.version);
1299
+ const loaderConfig = {
1300
+ profile: config?.profile,
1301
+ logger: clientSharedValues.logger,
1302
+ };
1303
+ return {
1304
+ ...clientSharedValues,
1305
+ ...config,
1306
+ runtime: "node",
1307
+ defaultsMode,
1308
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1309
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1310
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1311
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1312
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1313
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1314
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1315
+ retryMode: config?.retryMode ??
1316
+ loadConfig({
1317
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1318
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1319
+ }, config),
1320
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1321
+ streamCollector: config?.streamCollector ?? streamCollector,
1322
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1323
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1324
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1325
+ };
1326
+ };
1327
+
34
1328
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1329
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1330
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -656,55 +1950,206 @@ const LibraryItemStatus = {
656
1950
  PUBLISHED: "PUBLISHED",
657
1951
  };
658
1952
 
1953
+ exports.AccessDeniedException = AccessDeniedException;
1954
+ exports.AccessDeniedException$ = AccessDeniedException$;
659
1955
  exports.Action = Action;
1956
+ exports.AppDefinition$ = AppDefinition$;
1957
+ exports.AppDefinitionInput$ = AppDefinitionInput$;
660
1958
  exports.AppRequiredCapability = AppRequiredCapability;
661
1959
  exports.AppStatus = AppStatus;
1960
+ exports.AssociateLibraryItemReview$ = AssociateLibraryItemReview$;
662
1961
  exports.AssociateLibraryItemReviewCommand = AssociateLibraryItemReviewCommand;
1962
+ exports.AssociateLibraryItemReviewInput$ = AssociateLibraryItemReviewInput$;
1963
+ exports.AssociateQAppWithUser$ = AssociateQAppWithUser$;
663
1964
  exports.AssociateQAppWithUserCommand = AssociateQAppWithUserCommand;
1965
+ exports.AssociateQAppWithUserInput$ = AssociateQAppWithUserInput$;
1966
+ exports.AttributeFilter$ = AttributeFilter$;
1967
+ exports.BatchCreateCategory$ = BatchCreateCategory$;
664
1968
  exports.BatchCreateCategoryCommand = BatchCreateCategoryCommand;
1969
+ exports.BatchCreateCategoryInput$ = BatchCreateCategoryInput$;
1970
+ exports.BatchCreateCategoryInputCategory$ = BatchCreateCategoryInputCategory$;
1971
+ exports.BatchDeleteCategory$ = BatchDeleteCategory$;
665
1972
  exports.BatchDeleteCategoryCommand = BatchDeleteCategoryCommand;
1973
+ exports.BatchDeleteCategoryInput$ = BatchDeleteCategoryInput$;
1974
+ exports.BatchUpdateCategory$ = BatchUpdateCategory$;
666
1975
  exports.BatchUpdateCategoryCommand = BatchUpdateCategoryCommand;
1976
+ exports.BatchUpdateCategoryInput$ = BatchUpdateCategoryInput$;
1977
+ exports.Card$ = Card$;
1978
+ exports.CardInput$ = CardInput$;
667
1979
  exports.CardOutputSource = CardOutputSource;
1980
+ exports.CardStatus$ = CardStatus$;
668
1981
  exports.CardType = CardType;
1982
+ exports.CardValue$ = CardValue$;
1983
+ exports.Category$ = Category$;
1984
+ exports.CategoryInput$ = CategoryInput$;
1985
+ exports.ConflictException = ConflictException;
1986
+ exports.ConflictException$ = ConflictException$;
1987
+ exports.ContentTooLargeException = ContentTooLargeException;
1988
+ exports.ContentTooLargeException$ = ContentTooLargeException$;
1989
+ exports.ConversationMessage$ = ConversationMessage$;
1990
+ exports.CreateLibraryItem$ = CreateLibraryItem$;
669
1991
  exports.CreateLibraryItemCommand = CreateLibraryItemCommand;
1992
+ exports.CreateLibraryItemInput$ = CreateLibraryItemInput$;
1993
+ exports.CreateLibraryItemOutput$ = CreateLibraryItemOutput$;
1994
+ exports.CreatePresignedUrl$ = CreatePresignedUrl$;
670
1995
  exports.CreatePresignedUrlCommand = CreatePresignedUrlCommand;
1996
+ exports.CreatePresignedUrlInput$ = CreatePresignedUrlInput$;
1997
+ exports.CreatePresignedUrlOutput$ = CreatePresignedUrlOutput$;
1998
+ exports.CreateQApp$ = CreateQApp$;
671
1999
  exports.CreateQAppCommand = CreateQAppCommand;
2000
+ exports.CreateQAppInput$ = CreateQAppInput$;
2001
+ exports.CreateQAppOutput$ = CreateQAppOutput$;
2002
+ exports.DeleteLibraryItem$ = DeleteLibraryItem$;
672
2003
  exports.DeleteLibraryItemCommand = DeleteLibraryItemCommand;
2004
+ exports.DeleteLibraryItemInput$ = DeleteLibraryItemInput$;
2005
+ exports.DeleteQApp$ = DeleteQApp$;
673
2006
  exports.DeleteQAppCommand = DeleteQAppCommand;
2007
+ exports.DeleteQAppInput$ = DeleteQAppInput$;
2008
+ exports.DescribeQAppPermissions$ = DescribeQAppPermissions$;
674
2009
  exports.DescribeQAppPermissionsCommand = DescribeQAppPermissionsCommand;
2010
+ exports.DescribeQAppPermissionsInput$ = DescribeQAppPermissionsInput$;
2011
+ exports.DescribeQAppPermissionsOutput$ = DescribeQAppPermissionsOutput$;
2012
+ exports.DisassociateLibraryItemReview$ = DisassociateLibraryItemReview$;
675
2013
  exports.DisassociateLibraryItemReviewCommand = DisassociateLibraryItemReviewCommand;
2014
+ exports.DisassociateLibraryItemReviewInput$ = DisassociateLibraryItemReviewInput$;
2015
+ exports.DisassociateQAppFromUser$ = DisassociateQAppFromUser$;
676
2016
  exports.DisassociateQAppFromUserCommand = DisassociateQAppFromUserCommand;
2017
+ exports.DisassociateQAppFromUserInput$ = DisassociateQAppFromUserInput$;
2018
+ exports.DocumentAttribute$ = DocumentAttribute$;
2019
+ exports.DocumentAttributeValue$ = DocumentAttributeValue$;
677
2020
  exports.DocumentScope = DocumentScope;
678
2021
  exports.ExecutionStatus = ExecutionStatus;
2022
+ exports.ExportQAppSessionData$ = ExportQAppSessionData$;
679
2023
  exports.ExportQAppSessionDataCommand = ExportQAppSessionDataCommand;
2024
+ exports.ExportQAppSessionDataInput$ = ExportQAppSessionDataInput$;
2025
+ exports.ExportQAppSessionDataOutput$ = ExportQAppSessionDataOutput$;
2026
+ exports.FileUploadCard$ = FileUploadCard$;
2027
+ exports.FileUploadCardInput$ = FileUploadCardInput$;
2028
+ exports.FormInputCard$ = FormInputCard$;
2029
+ exports.FormInputCardInput$ = FormInputCardInput$;
2030
+ exports.FormInputCardMetadata$ = FormInputCardMetadata$;
2031
+ exports.GetLibraryItem$ = GetLibraryItem$;
680
2032
  exports.GetLibraryItemCommand = GetLibraryItemCommand;
2033
+ exports.GetLibraryItemInput$ = GetLibraryItemInput$;
2034
+ exports.GetLibraryItemOutput$ = GetLibraryItemOutput$;
2035
+ exports.GetQApp$ = GetQApp$;
681
2036
  exports.GetQAppCommand = GetQAppCommand;
2037
+ exports.GetQAppInput$ = GetQAppInput$;
2038
+ exports.GetQAppOutput$ = GetQAppOutput$;
2039
+ exports.GetQAppSession$ = GetQAppSession$;
682
2040
  exports.GetQAppSessionCommand = GetQAppSessionCommand;
2041
+ exports.GetQAppSessionInput$ = GetQAppSessionInput$;
2042
+ exports.GetQAppSessionMetadata$ = GetQAppSessionMetadata$;
683
2043
  exports.GetQAppSessionMetadataCommand = GetQAppSessionMetadataCommand;
2044
+ exports.GetQAppSessionMetadataInput$ = GetQAppSessionMetadataInput$;
2045
+ exports.GetQAppSessionMetadataOutput$ = GetQAppSessionMetadataOutput$;
2046
+ exports.GetQAppSessionOutput$ = GetQAppSessionOutput$;
2047
+ exports.ImportDocument$ = ImportDocument$;
684
2048
  exports.ImportDocumentCommand = ImportDocumentCommand;
2049
+ exports.ImportDocumentInput$ = ImportDocumentInput$;
2050
+ exports.ImportDocumentOutput$ = ImportDocumentOutput$;
685
2051
  exports.InputCardComputeMode = InputCardComputeMode;
2052
+ exports.InternalServerException = InternalServerException;
2053
+ exports.InternalServerException$ = InternalServerException$;
2054
+ exports.LibraryItemMember$ = LibraryItemMember$;
686
2055
  exports.LibraryItemStatus = LibraryItemStatus;
2056
+ exports.ListCategories$ = ListCategories$;
687
2057
  exports.ListCategoriesCommand = ListCategoriesCommand;
2058
+ exports.ListCategoriesInput$ = ListCategoriesInput$;
2059
+ exports.ListCategoriesOutput$ = ListCategoriesOutput$;
2060
+ exports.ListLibraryItems$ = ListLibraryItems$;
688
2061
  exports.ListLibraryItemsCommand = ListLibraryItemsCommand;
2062
+ exports.ListLibraryItemsInput$ = ListLibraryItemsInput$;
2063
+ exports.ListLibraryItemsOutput$ = ListLibraryItemsOutput$;
2064
+ exports.ListQAppSessionData$ = ListQAppSessionData$;
689
2065
  exports.ListQAppSessionDataCommand = ListQAppSessionDataCommand;
2066
+ exports.ListQAppSessionDataInput$ = ListQAppSessionDataInput$;
2067
+ exports.ListQAppSessionDataOutput$ = ListQAppSessionDataOutput$;
2068
+ exports.ListQApps$ = ListQApps$;
690
2069
  exports.ListQAppsCommand = ListQAppsCommand;
2070
+ exports.ListQAppsInput$ = ListQAppsInput$;
2071
+ exports.ListQAppsOutput$ = ListQAppsOutput$;
2072
+ exports.ListTagsForResource$ = ListTagsForResource$;
691
2073
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2074
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2075
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2076
+ exports.PermissionInput$ = PermissionInput$;
2077
+ exports.PermissionOutput$ = PermissionOutput$;
692
2078
  exports.PluginType = PluginType;
2079
+ exports.PredictAppDefinition$ = PredictAppDefinition$;
2080
+ exports.PredictQApp$ = PredictQApp$;
693
2081
  exports.PredictQAppCommand = PredictQAppCommand;
2082
+ exports.PredictQAppInput$ = PredictQAppInput$;
2083
+ exports.PredictQAppInputOptions$ = PredictQAppInputOptions$;
2084
+ exports.PredictQAppOutput$ = PredictQAppOutput$;
2085
+ exports.PrincipalOutput$ = PrincipalOutput$;
2086
+ exports.QAppSessionData$ = QAppSessionData$;
694
2087
  exports.QApps = QApps;
695
2088
  exports.QAppsClient = QAppsClient;
2089
+ exports.QAppsServiceException = QAppsServiceException;
2090
+ exports.QAppsServiceException$ = QAppsServiceException$;
2091
+ exports.QPluginCard$ = QPluginCard$;
2092
+ exports.QPluginCardInput$ = QPluginCardInput$;
2093
+ exports.QQueryCard$ = QQueryCard$;
2094
+ exports.QQueryCardInput$ = QQueryCardInput$;
2095
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2096
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
696
2097
  exports.Sender = Sender;
2098
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2099
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2100
+ exports.SessionSharingConfiguration$ = SessionSharingConfiguration$;
2101
+ exports.StartQAppSession$ = StartQAppSession$;
697
2102
  exports.StartQAppSessionCommand = StartQAppSessionCommand;
2103
+ exports.StartQAppSessionInput$ = StartQAppSessionInput$;
2104
+ exports.StartQAppSessionOutput$ = StartQAppSessionOutput$;
2105
+ exports.StopQAppSession$ = StopQAppSession$;
698
2106
  exports.StopQAppSessionCommand = StopQAppSessionCommand;
2107
+ exports.StopQAppSessionInput$ = StopQAppSessionInput$;
2108
+ exports.Submission$ = Submission$;
2109
+ exports.SubmissionMutation$ = SubmissionMutation$;
699
2110
  exports.SubmissionMutationKind = SubmissionMutationKind;
2111
+ exports.TagResource$ = TagResource$;
700
2112
  exports.TagResourceCommand = TagResourceCommand;
2113
+ exports.TagResourceRequest$ = TagResourceRequest$;
2114
+ exports.TagResourceResponse$ = TagResourceResponse$;
2115
+ exports.TextInputCard$ = TextInputCard$;
2116
+ exports.TextInputCardInput$ = TextInputCardInput$;
2117
+ exports.ThrottlingException = ThrottlingException;
2118
+ exports.ThrottlingException$ = ThrottlingException$;
2119
+ exports.UnauthorizedException = UnauthorizedException;
2120
+ exports.UnauthorizedException$ = UnauthorizedException$;
2121
+ exports.UntagResource$ = UntagResource$;
701
2122
  exports.UntagResourceCommand = UntagResourceCommand;
2123
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2124
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2125
+ exports.UpdateLibraryItem$ = UpdateLibraryItem$;
702
2126
  exports.UpdateLibraryItemCommand = UpdateLibraryItemCommand;
2127
+ exports.UpdateLibraryItemInput$ = UpdateLibraryItemInput$;
2128
+ exports.UpdateLibraryItemMetadata$ = UpdateLibraryItemMetadata$;
703
2129
  exports.UpdateLibraryItemMetadataCommand = UpdateLibraryItemMetadataCommand;
2130
+ exports.UpdateLibraryItemMetadataInput$ = UpdateLibraryItemMetadataInput$;
2131
+ exports.UpdateLibraryItemOutput$ = UpdateLibraryItemOutput$;
2132
+ exports.UpdateQApp$ = UpdateQApp$;
704
2133
  exports.UpdateQAppCommand = UpdateQAppCommand;
2134
+ exports.UpdateQAppInput$ = UpdateQAppInput$;
2135
+ exports.UpdateQAppOutput$ = UpdateQAppOutput$;
2136
+ exports.UpdateQAppPermissions$ = UpdateQAppPermissions$;
705
2137
  exports.UpdateQAppPermissionsCommand = UpdateQAppPermissionsCommand;
2138
+ exports.UpdateQAppPermissionsInput$ = UpdateQAppPermissionsInput$;
2139
+ exports.UpdateQAppPermissionsOutput$ = UpdateQAppPermissionsOutput$;
2140
+ exports.UpdateQAppSession$ = UpdateQAppSession$;
706
2141
  exports.UpdateQAppSessionCommand = UpdateQAppSessionCommand;
2142
+ exports.UpdateQAppSessionInput$ = UpdateQAppSessionInput$;
2143
+ exports.UpdateQAppSessionMetadata$ = UpdateQAppSessionMetadata$;
707
2144
  exports.UpdateQAppSessionMetadataCommand = UpdateQAppSessionMetadataCommand;
2145
+ exports.UpdateQAppSessionMetadataInput$ = UpdateQAppSessionMetadataInput$;
2146
+ exports.UpdateQAppSessionMetadataOutput$ = UpdateQAppSessionMetadataOutput$;
2147
+ exports.UpdateQAppSessionOutput$ = UpdateQAppSessionOutput$;
2148
+ exports.User$ = User$;
2149
+ exports.UserAppItem$ = UserAppItem$;
708
2150
  exports.UserType = UserType;
2151
+ exports.ValidationException = ValidationException;
2152
+ exports.ValidationException$ = ValidationException$;
2153
+ exports.errorTypeRegistries = errorTypeRegistries;
709
2154
  exports.paginateListLibraryItems = paginateListLibraryItems;
710
2155
  exports.paginateListQApps = paginateListQApps;