@aws-sdk/client-appsync 3.987.0 → 3.988.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
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
19
+ var errors = require('./models/errors');
20
+ var AppSyncServiceException = require('./models/AppSyncServiceException');
18
21
 
19
22
  const resolveClientEndpointParameters = (options) => {
20
23
  return Object.assign(options, {
@@ -110,2076 +113,6 @@ class AppSyncClient extends smithyClient.Client {
110
113
  }
111
114
  }
112
115
 
113
- class AppSyncServiceException extends smithyClient.ServiceException {
114
- constructor(options) {
115
- super(options);
116
- Object.setPrototypeOf(this, AppSyncServiceException.prototype);
117
- }
118
- }
119
-
120
- class AccessDeniedException extends AppSyncServiceException {
121
- name = "AccessDeniedException";
122
- $fault = "client";
123
- constructor(opts) {
124
- super({
125
- name: "AccessDeniedException",
126
- $fault: "client",
127
- ...opts,
128
- });
129
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
- }
131
- }
132
- class ApiKeyLimitExceededException extends AppSyncServiceException {
133
- name = "ApiKeyLimitExceededException";
134
- $fault = "client";
135
- constructor(opts) {
136
- super({
137
- name: "ApiKeyLimitExceededException",
138
- $fault: "client",
139
- ...opts,
140
- });
141
- Object.setPrototypeOf(this, ApiKeyLimitExceededException.prototype);
142
- }
143
- }
144
- class ApiKeyValidityOutOfBoundsException extends AppSyncServiceException {
145
- name = "ApiKeyValidityOutOfBoundsException";
146
- $fault = "client";
147
- constructor(opts) {
148
- super({
149
- name: "ApiKeyValidityOutOfBoundsException",
150
- $fault: "client",
151
- ...opts,
152
- });
153
- Object.setPrototypeOf(this, ApiKeyValidityOutOfBoundsException.prototype);
154
- }
155
- }
156
- class ApiLimitExceededException extends AppSyncServiceException {
157
- name = "ApiLimitExceededException";
158
- $fault = "client";
159
- constructor(opts) {
160
- super({
161
- name: "ApiLimitExceededException",
162
- $fault: "client",
163
- ...opts,
164
- });
165
- Object.setPrototypeOf(this, ApiLimitExceededException.prototype);
166
- }
167
- }
168
- class BadRequestException extends AppSyncServiceException {
169
- name = "BadRequestException";
170
- $fault = "client";
171
- reason;
172
- detail;
173
- constructor(opts) {
174
- super({
175
- name: "BadRequestException",
176
- $fault: "client",
177
- ...opts,
178
- });
179
- Object.setPrototypeOf(this, BadRequestException.prototype);
180
- this.reason = opts.reason;
181
- this.detail = opts.detail;
182
- }
183
- }
184
- class InternalFailureException extends AppSyncServiceException {
185
- name = "InternalFailureException";
186
- $fault = "server";
187
- constructor(opts) {
188
- super({
189
- name: "InternalFailureException",
190
- $fault: "server",
191
- ...opts,
192
- });
193
- Object.setPrototypeOf(this, InternalFailureException.prototype);
194
- }
195
- }
196
- class NotFoundException extends AppSyncServiceException {
197
- name = "NotFoundException";
198
- $fault = "client";
199
- constructor(opts) {
200
- super({
201
- name: "NotFoundException",
202
- $fault: "client",
203
- ...opts,
204
- });
205
- Object.setPrototypeOf(this, NotFoundException.prototype);
206
- }
207
- }
208
- class ConcurrentModificationException extends AppSyncServiceException {
209
- name = "ConcurrentModificationException";
210
- $fault = "client";
211
- constructor(opts) {
212
- super({
213
- name: "ConcurrentModificationException",
214
- $fault: "client",
215
- ...opts,
216
- });
217
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
218
- }
219
- }
220
- class LimitExceededException extends AppSyncServiceException {
221
- name = "LimitExceededException";
222
- $fault = "client";
223
- constructor(opts) {
224
- super({
225
- name: "LimitExceededException",
226
- $fault: "client",
227
- ...opts,
228
- });
229
- Object.setPrototypeOf(this, LimitExceededException.prototype);
230
- }
231
- }
232
- class UnauthorizedException extends AppSyncServiceException {
233
- name = "UnauthorizedException";
234
- $fault = "client";
235
- constructor(opts) {
236
- super({
237
- name: "UnauthorizedException",
238
- $fault: "client",
239
- ...opts,
240
- });
241
- Object.setPrototypeOf(this, UnauthorizedException.prototype);
242
- }
243
- }
244
- class ServiceQuotaExceededException extends AppSyncServiceException {
245
- name = "ServiceQuotaExceededException";
246
- $fault = "client";
247
- constructor(opts) {
248
- super({
249
- name: "ServiceQuotaExceededException",
250
- $fault: "client",
251
- ...opts,
252
- });
253
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
254
- }
255
- }
256
- class ConflictException extends AppSyncServiceException {
257
- name = "ConflictException";
258
- $fault = "client";
259
- constructor(opts) {
260
- super({
261
- name: "ConflictException",
262
- $fault: "client",
263
- ...opts,
264
- });
265
- Object.setPrototypeOf(this, ConflictException.prototype);
266
- }
267
- }
268
- class GraphQLSchemaException extends AppSyncServiceException {
269
- name = "GraphQLSchemaException";
270
- $fault = "client";
271
- constructor(opts) {
272
- super({
273
- name: "GraphQLSchemaException",
274
- $fault: "client",
275
- ...opts,
276
- });
277
- Object.setPrototypeOf(this, GraphQLSchemaException.prototype);
278
- }
279
- }
280
-
281
- const _A = "Api";
282
- const _AA = "ApiAssociation";
283
- const _AAP = "AdditionalAuthenticationProvider";
284
- const _AAPd = "AdditionalAuthenticationProviders";
285
- const _AAR = "AssociateApiRequest";
286
- const _AARs = "AssociateApiResponse";
287
- const _AAs = "AssociateApi";
288
- const _AC = "ApiCache";
289
- const _ACu = "AuthorizationConfig";
290
- const _ADE = "AccessDeniedException";
291
- const _AIC = "AwsIamConfig";
292
- const _AK = "ApiKey";
293
- const _AKLEE = "ApiKeyLimitExceededException";
294
- const _AKVOOBE = "ApiKeyValidityOutOfBoundsException";
295
- const _AKp = "ApiKeys";
296
- const _ALEE = "ApiLimitExceededException";
297
- const _AM = "AuthMode";
298
- const _AMGA = "AssociateMergedGraphqlApi";
299
- const _AMGAR = "AssociateMergedGraphqlApiRequest";
300
- const _AMGARs = "AssociateMergedGraphqlApiResponse";
301
- const _AMu = "AuthModes";
302
- const _AP = "AuthProvider";
303
- const _APu = "AuthProviders";
304
- const _ASGA = "AssociateSourceGraphqlApi";
305
- const _ASGAR = "AssociateSourceGraphqlApiRequest";
306
- const _ASGARs = "AssociateSourceGraphqlApiResponse";
307
- const _ASR = "AppSyncRuntime";
308
- const _Ap = "Apis";
309
- const _BRD = "BadRequestDetail";
310
- const _BRE = "BadRequestException";
311
- const _CA = "CreateApi";
312
- const _CAC = "CreateApiCache";
313
- const _CACR = "CreateApiCacheRequest";
314
- const _CACRr = "CreateApiCacheResponse";
315
- const _CAK = "CreateApiKey";
316
- const _CAKR = "CreateApiKeyRequest";
317
- const _CAKRr = "CreateApiKeyResponse";
318
- const _CAR = "CreateApiRequest";
319
- const _CARr = "CreateApiResponse";
320
- const _CC = "CachingConfig";
321
- const _CCN = "CreateChannelNamespace";
322
- const _CCNR = "CreateChannelNamespaceRequest";
323
- const _CCNRr = "CreateChannelNamespaceResponse";
324
- const _CCo = "CognitoConfig";
325
- const _CDN = "CreateDomainName";
326
- const _CDNR = "CreateDomainNameRequest";
327
- const _CDNRr = "CreateDomainNameResponse";
328
- const _CDS = "CreateDataSource";
329
- const _CDSR = "CreateDataSourceRequest";
330
- const _CDSRr = "CreateDataSourceResponse";
331
- const _CE = "CodeError";
332
- const _CEL = "CodeErrorLocation";
333
- const _CEo = "ConflictException";
334
- const _CEod = "CodeErrors";
335
- const _CF = "CreateFunction";
336
- const _CFR = "CreateFunctionRequest";
337
- const _CFRr = "CreateFunctionResponse";
338
- const _CGA = "CreateGraphqlApi";
339
- const _CGAR = "CreateGraphqlApiRequest";
340
- const _CGARr = "CreateGraphqlApiResponse";
341
- const _CME = "ConcurrentModificationException";
342
- const _CN = "ChannelNamespace";
343
- const _CNh = "ChannelNamespaces";
344
- const _CR = "CreateResolver";
345
- const _CRR = "CreateResolverRequest";
346
- const _CRRr = "CreateResolverResponse";
347
- const _CT = "CreateType";
348
- const _CTR = "CreateTypeRequest";
349
- const _CTRr = "CreateTypeResponse";
350
- const _CUPC = "CognitoUserPoolConfig";
351
- const _DA = "DeleteApi";
352
- const _DAC = "DeleteApiCache";
353
- const _DACR = "DeleteApiCacheRequest";
354
- const _DACRe = "DeleteApiCacheResponse";
355
- const _DAK = "DeleteApiKey";
356
- const _DAKR = "DeleteApiKeyRequest";
357
- const _DAKRe = "DeleteApiKeyResponse";
358
- const _DAR = "DeleteApiRequest";
359
- const _DARe = "DeleteApiResponse";
360
- const _DARi = "DisassociateApiRequest";
361
- const _DARis = "DisassociateApiResponse";
362
- const _DAi = "DisassociateApi";
363
- const _DCN = "DeleteChannelNamespace";
364
- const _DCNR = "DeleteChannelNamespaceRequest";
365
- const _DCNRe = "DeleteChannelNamespaceResponse";
366
- const _DDN = "DeleteDomainName";
367
- const _DDNR = "DeleteDomainNameRequest";
368
- const _DDNRe = "DeleteDomainNameResponse";
369
- const _DDS = "DeleteDataSource";
370
- const _DDSC = "DynamodbDataSourceConfig";
371
- const _DDSR = "DeleteDataSourceRequest";
372
- const _DDSRe = "DeleteDataSourceResponse";
373
- const _DF = "DeleteFunction";
374
- const _DFR = "DeleteFunctionRequest";
375
- const _DFRe = "DeleteFunctionResponse";
376
- const _DGA = "DeleteGraphqlApi";
377
- const _DGAR = "DeleteGraphqlApiRequest";
378
- const _DGARe = "DeleteGraphqlApiResponse";
379
- const _DMGA = "DisassociateMergedGraphqlApi";
380
- const _DMGAR = "DisassociateMergedGraphqlApiRequest";
381
- const _DMGARi = "DisassociateMergedGraphqlApiResponse";
382
- const _DNC = "DomainNameConfig";
383
- const _DNCo = "DomainNameConfigs";
384
- const _DR = "DeleteResolver";
385
- const _DRR = "DeleteResolverRequest";
386
- const _DRRe = "DeleteResolverResponse";
387
- const _DS = "DataSource";
388
- const _DSC = "DeltaSyncConfig";
389
- const _DSGA = "DisassociateSourceGraphqlApi";
390
- const _DSGAR = "DisassociateSourceGraphqlApiRequest";
391
- const _DSGARi = "DisassociateSourceGraphqlApiResponse";
392
- const _DSIM = "DataSourceIntrospectionModel";
393
- const _DSIMF = "DataSourceIntrospectionModelField";
394
- const _DSIMFT = "DataSourceIntrospectionModelFieldType";
395
- const _DSIMFa = "DataSourceIntrospectionModelFields";
396
- const _DSIMI = "DataSourceIntrospectionModelIndex";
397
- const _DSIMIa = "DataSourceIntrospectionModelIndexes";
398
- const _DSIMa = "DataSourceIntrospectionModels";
399
- const _DSIR = "DataSourceIntrospectionResult";
400
- const _DSa = "DataSources";
401
- const _DT = "DeleteType";
402
- const _DTR = "DeleteTypeRequest";
403
- const _DTRe = "DeleteTypeResponse";
404
- const _EBDSC = "EventBridgeDataSourceConfig";
405
- const _EC = "EventConfig";
406
- const _ECED = "EvaluateCodeErrorDetail";
407
- const _ECR = "EvaluateCodeRequest";
408
- const _ECRv = "EvaluateCodeResponse";
409
- const _ECv = "EvaluateCode";
410
- const _ED = "ErrorDetail";
411
- const _EDSC = "ElasticsearchDataSourceConfig";
412
- const _ELC = "EventLogConfig";
413
- const _EMC = "EnhancedMetricsConfig";
414
- const _EMT = "EvaluateMappingTemplate";
415
- const _EMTR = "EvaluateMappingTemplateRequest";
416
- const _EMTRv = "EvaluateMappingTemplateResponse";
417
- const _F = "Functions";
418
- const _FAC = "FlushApiCache";
419
- const _FACR = "FlushApiCacheRequest";
420
- const _FACRl = "FlushApiCacheResponse";
421
- const _FC = "FunctionConfiguration";
422
- const _GA = "GraphqlApi";
423
- const _GAA = "GetApiAssociation";
424
- const _GAAR = "GetApiAssociationRequest";
425
- const _GAARe = "GetApiAssociationResponse";
426
- const _GAC = "GetApiCache";
427
- const _GACR = "GetApiCacheRequest";
428
- const _GACRe = "GetApiCacheResponse";
429
- const _GAR = "GetApiRequest";
430
- const _GARe = "GetApiResponse";
431
- const _GAe = "GetApi";
432
- const _GAr = "GraphqlApis";
433
- const _GCN = "GetChannelNamespace";
434
- const _GCNR = "GetChannelNamespaceRequest";
435
- const _GCNRe = "GetChannelNamespaceResponse";
436
- const _GDN = "GetDomainName";
437
- const _GDNR = "GetDomainNameRequest";
438
- const _GDNRe = "GetDomainNameResponse";
439
- const _GDS = "GetDataSource";
440
- const _GDSI = "GetDataSourceIntrospection";
441
- const _GDSIR = "GetDataSourceIntrospectionRequest";
442
- const _GDSIRe = "GetDataSourceIntrospectionResponse";
443
- const _GDSR = "GetDataSourceRequest";
444
- const _GDSRe = "GetDataSourceResponse";
445
- const _GF = "GetFunction";
446
- const _GFR = "GetFunctionRequest";
447
- const _GFRe = "GetFunctionResponse";
448
- const _GGA = "GetGraphqlApi";
449
- const _GGAEV = "GetGraphqlApiEnvironmentVariables";
450
- const _GGAEVR = "GetGraphqlApiEnvironmentVariablesRequest";
451
- const _GGAEVRe = "GetGraphqlApiEnvironmentVariablesResponse";
452
- const _GGAR = "GetGraphqlApiRequest";
453
- const _GGARe = "GetGraphqlApiResponse";
454
- const _GIS = "GetIntrospectionSchema";
455
- const _GISR = "GetIntrospectionSchemaRequest";
456
- const _GISRe = "GetIntrospectionSchemaResponse";
457
- const _GQLSE = "GraphQLSchemaException";
458
- const _GR = "GetResolver";
459
- const _GRR = "GetResolverRequest";
460
- const _GRRe = "GetResolverResponse";
461
- const _GSAA = "GetSourceApiAssociation";
462
- const _GSAAR = "GetSourceApiAssociationRequest";
463
- const _GSAARe = "GetSourceApiAssociationResponse";
464
- const _GSCS = "GetSchemaCreationStatus";
465
- const _GSCSR = "GetSchemaCreationStatusRequest";
466
- const _GSCSRe = "GetSchemaCreationStatusResponse";
467
- const _GT = "GetType";
468
- const _GTR = "GetTypeRequest";
469
- const _GTRe = "GetTypeResponse";
470
- const _HC = "HandlerConfig";
471
- const _HCa = "HandlerConfigs";
472
- const _HDSC = "HttpDataSourceConfig";
473
- const _I = "Integration";
474
- const _IFE = "InternalFailureException";
475
- const _LA = "ListApis";
476
- const _LAC = "LambdaAuthorizerConfig";
477
- const _LAK = "ListApiKeys";
478
- const _LAKR = "ListApiKeysRequest";
479
- const _LAKRi = "ListApiKeysResponse";
480
- const _LAR = "ListApisRequest";
481
- const _LARi = "ListApisResponse";
482
- const _LC = "LambdaConfig";
483
- const _LCHC = "LambdaConflictHandlerConfig";
484
- const _LCN = "ListChannelNamespaces";
485
- const _LCNR = "ListChannelNamespacesRequest";
486
- const _LCNRi = "ListChannelNamespacesResponse";
487
- const _LCo = "LogConfig";
488
- const _LDN = "ListDomainNames";
489
- const _LDNR = "ListDomainNamesRequest";
490
- const _LDNRi = "ListDomainNamesResponse";
491
- const _LDS = "ListDataSources";
492
- const _LDSC = "LambdaDataSourceConfig";
493
- const _LDSR = "ListDataSourcesRequest";
494
- const _LDSRi = "ListDataSourcesResponse";
495
- const _LEE = "LimitExceededException";
496
- const _LF = "ListFunctions";
497
- const _LFR = "ListFunctionsRequest";
498
- const _LFRi = "ListFunctionsResponse";
499
- const _LGA = "ListGraphqlApis";
500
- const _LGAR = "ListGraphqlApisRequest";
501
- const _LGARi = "ListGraphqlApisResponse";
502
- const _LR = "ListResolvers";
503
- const _LRBF = "ListResolversByFunction";
504
- const _LRBFR = "ListResolversByFunctionRequest";
505
- const _LRBFRi = "ListResolversByFunctionResponse";
506
- const _LRR = "ListResolversRequest";
507
- const _LRRi = "ListResolversResponse";
508
- const _LSAA = "ListSourceApiAssociations";
509
- const _LSAAR = "ListSourceApiAssociationsRequest";
510
- const _LSAARi = "ListSourceApiAssociationsResponse";
511
- const _LT = "ListTypes";
512
- const _LTBA = "ListTypesByAssociation";
513
- const _LTBAR = "ListTypesByAssociationRequest";
514
- const _LTBARi = "ListTypesByAssociationResponse";
515
- const _LTFR = "ListTagsForResource";
516
- const _LTFRR = "ListTagsForResourceRequest";
517
- const _LTFRRi = "ListTagsForResourceResponse";
518
- const _LTR = "ListTypesRequest";
519
- const _LTRi = "ListTypesResponse";
520
- const _NFE = "NotFoundException";
521
- const _OIDCC = "OpenIDConnectConfig";
522
- const _OSSDSC = "OpenSearchServiceDataSourceConfig";
523
- const _PC = "PipelineConfig";
524
- const _PGAEV = "PutGraphqlApiEnvironmentVariables";
525
- const _PGAEVR = "PutGraphqlApiEnvironmentVariablesRequest";
526
- const _PGAEVRu = "PutGraphqlApiEnvironmentVariablesResponse";
527
- const _R = "Resolver";
528
- const _RDAC = "RdsDataApiConfig";
529
- const _RDDSC = "RelationalDatabaseDataSourceConfig";
530
- const _RHEC = "RdsHttpEndpointConfig";
531
- const _Re = "Resolvers";
532
- const _SAA = "SourceApiAssociation";
533
- const _SAAC = "SourceApiAssociationConfig";
534
- const _SAAS = "SourceApiAssociationSummary";
535
- const _SAASL = "SourceApiAssociationSummaryList";
536
- const _SC = "SyncConfig";
537
- const _SDSI = "StartDataSourceIntrospection";
538
- const _SDSIR = "StartDataSourceIntrospectionRequest";
539
- const _SDSIRt = "StartDataSourceIntrospectionResponse";
540
- const _SQEE = "ServiceQuotaExceededException";
541
- const _SSC = "StartSchemaCreation";
542
- const _SSCR = "StartSchemaCreationRequest";
543
- const _SSCRt = "StartSchemaCreationResponse";
544
- const _SSM = "StartSchemaMerge";
545
- const _SSMR = "StartSchemaMergeRequest";
546
- const _SSMRt = "StartSchemaMergeResponse";
547
- const _T = "Type";
548
- const _TL = "TypeList";
549
- const _TR = "TagResource";
550
- const _TRR = "TagResourceRequest";
551
- const _TRRa = "TagResourceResponse";
552
- const _UA = "UpdateApi";
553
- const _UAC = "UpdateApiCache";
554
- const _UACR = "UpdateApiCacheRequest";
555
- const _UACRp = "UpdateApiCacheResponse";
556
- const _UAK = "UpdateApiKey";
557
- const _UAKR = "UpdateApiKeyRequest";
558
- const _UAKRp = "UpdateApiKeyResponse";
559
- const _UAR = "UpdateApiRequest";
560
- const _UARp = "UpdateApiResponse";
561
- const _UCN = "UpdateChannelNamespace";
562
- const _UCNR = "UpdateChannelNamespaceRequest";
563
- const _UCNRp = "UpdateChannelNamespaceResponse";
564
- const _UDN = "UpdateDomainName";
565
- const _UDNR = "UpdateDomainNameRequest";
566
- const _UDNRp = "UpdateDomainNameResponse";
567
- const _UDS = "UpdateDataSource";
568
- const _UDSR = "UpdateDataSourceRequest";
569
- const _UDSRp = "UpdateDataSourceResponse";
570
- const _UE = "UnauthorizedException";
571
- const _UF = "UpdateFunction";
572
- const _UFR = "UpdateFunctionRequest";
573
- const _UFRp = "UpdateFunctionResponse";
574
- const _UGA = "UpdateGraphqlApi";
575
- const _UGAR = "UpdateGraphqlApiRequest";
576
- const _UGARp = "UpdateGraphqlApiResponse";
577
- const _UPC = "UserPoolConfig";
578
- const _UR = "UntagResource";
579
- const _URR = "UntagResourceRequest";
580
- const _URRn = "UntagResourceResponse";
581
- const _URRp = "UpdateResolverRequest";
582
- const _URRpd = "UpdateResolverResponse";
583
- const _URp = "UpdateResolver";
584
- const _USAA = "UpdateSourceApiAssociation";
585
- const _USAAR = "UpdateSourceApiAssociationRequest";
586
- const _USAARp = "UpdateSourceApiAssociationResponse";
587
- const _UT = "UpdateType";
588
- const _UTR = "UpdateTypeRequest";
589
- const _UTRp = "UpdateTypeResponse";
590
- const _a = "api";
591
- const _aA = "apiArn";
592
- const _aAP = "additionalAuthenticationProviders";
593
- const _aAp = "apiAssociation";
594
- const _aAs = "associationArn";
595
- const _aC = "apiCache";
596
- const _aCB = "apiCachingBehavior";
597
- const _aCu = "authorizationConfig";
598
- const _aDN = "appsyncDomainName";
599
- const _aI = "apiId";
600
- const _aIC = "awsIamConfig";
601
- const _aICR = "appIdClientRegex";
602
- const _aIs = "associationId";
603
- const _aK = "apiKey";
604
- const _aKp = "apiKeys";
605
- const _aP = "authProviders";
606
- const _aR = "awsRegion";
607
- const _aREE = "atRestEncryptionEnabled";
608
- const _aRTIS = "authorizerResultTtlInSeconds";
609
- const _aS = "associationStatus";
610
- const _aSSA = "awsSecretStoreArn";
611
- const _aT = "authenticationType";
612
- const _aTTL = "authTTL";
613
- const _aTp = "apiType";
614
- const _aTu = "authType";
615
- const _aTut = "authorizationType";
616
- const _aU = "authorizerUri";
617
- const _ap = "apis";
618
- const _ar = "arn";
619
- const _b = "behavior";
620
- const _bTTTL = "baseTableTTL";
621
- const _c = "client";
622
- const _cA = "certificateArn";
623
- const _cAM = "connectionAuthModes";
624
- const _cC = "cognitoConfig";
625
- const _cCa = "cachingConfig";
626
- const _cD = "conflictDetection";
627
- const _cE = "codeErrors";
628
- const _cH = "codeHandlers";
629
- const _cHo = "conflictHandler";
630
- const _cI = "clientId";
631
- const _cK = "cachingKeys";
632
- const _cN = "channelNamespace";
633
- const _cNA = "channelNamespaceArn";
634
- const _cNh = "channelNamespaces";
635
- const _cWLRA = "cloudWatchLogsRoleArn";
636
- const _co = "column";
637
- const _cod = "code";
638
- const _con = "context";
639
- const _cr = "created";
640
- const _d = "dns";
641
- const _dA = "defaultAction";
642
- const _dC = "dynamodbConfig";
643
- const _dCI = "dbClusterIdentifier";
644
- const _dD = "deploymentDetail";
645
- const _dN = "domainName";
646
- const _dNA = "domainNameArn";
647
- const _dNC = "domainNameConfig";
648
- const _dNCo = "domainNameConfigs";
649
- const _dNa = "databaseName";
650
- const _dPAM = "defaultPublishAuthModes";
651
- const _dS = "dataSource";
652
- const _dSA = "dataSourceArn";
653
- const _dSAM = "defaultSubscribeAuthModes";
654
- const _dSC = "deltaSyncConfig";
655
- const _dSLMB = "dataSourceLevelMetricsBehavior";
656
- const _dSN = "dataSourceName";
657
- const _dSTN = "deltaSyncTableName";
658
- const _dSTTTL = "deltaSyncTableTTL";
659
- const _dSa = "dataSources";
660
- const _de = "description";
661
- const _def = "definition";
662
- const _del = "deletes";
663
- const _det = "detail";
664
- const _deta = "details";
665
- const _e = "error";
666
- const _eBA = "eventBusArn";
667
- const _eBC = "eventBridgeConfig";
668
- const _eC = "eventConfig";
669
- const _eCl = "elasticsearchConfig";
670
- const _eMC = "enhancedMetricsConfig";
671
- const _eR = "evaluationResult";
672
- const _eT = "errorType";
673
- const _eV = "environmentVariables";
674
- const _eVC = "excludeVerboseContent";
675
- const _en = "endpoint";
676
- const _ex = "expires";
677
- const _f = "format";
678
- const _fA = "functionArn";
679
- const _fC = "functionConfiguration";
680
- const _fI = "functionId";
681
- const _fLL = "fieldLogLevel";
682
- const _fN = "fieldName";
683
- const _fV = "functionVersion";
684
- const _fi = "fields";
685
- const _fu = "function";
686
- const _fun = "functions";
687
- const _gA = "graphqlApi";
688
- const _gAr = "graphqlApis";
689
- const _h = "http";
690
- const _hC = "handlerConfigs";
691
- const _hCt = "httpConfig";
692
- const _hE = "httpError";
693
- const _hMC = "healthMetricsConfig";
694
- const _hQ = "httpQuery";
695
- const _hZI = "hostedZoneId";
696
- const _i = "id";
697
- const _iC = "introspectionConfig";
698
- const _iD = "includeDirectives";
699
- const _iI = "introspectionId";
700
- const _iMSDL = "includeModelsSDL";
701
- const _iR = "introspectionResult";
702
- const _iS = "introspectionStatus";
703
- const _iSD = "introspectionStatusDetail";
704
- const _iT = "invokeType";
705
- const _iTTL = "iatTTL";
706
- const _iVE = "identityValidationExpression";
707
- const _in = "indexes";
708
- const _int = "integration";
709
- const _is = "issuer";
710
- const _k = "kind";
711
- const _l = "location";
712
- const _lAC = "lambdaAuthorizerConfig";
713
- const _lC = "lambdaConfig";
714
- const _lCHA = "lambdaConflictHandlerArn";
715
- const _lCHC = "lambdaConflictHandlerConfig";
716
- const _lCo = "logConfig";
717
- const _lFA = "lambdaFunctionArn";
718
- const _lL = "logLevel";
719
- const _lM = "lastModified";
720
- const _lSMD = "lastSuccessfulMergeDate";
721
- const _le = "length";
722
- const _li = "line";
723
- const _lo = "logs";
724
- const _m = "message";
725
- const _mAA = "mergedApiArn";
726
- const _mAERA = "mergedApiExecutionRoleArn";
727
- const _mAI = "mergedApiIdentifier";
728
- const _mAIe = "mergedApiId";
729
- const _mBS = "maxBatchSize";
730
- const _mC = "metricsConfig";
731
- const _mR = "maxResults";
732
- const _mT = "mergeType";
733
- const _mo = "models";
734
- const _n = "name";
735
- const _nT = "nextToken";
736
- const _o = "owner";
737
- const _oC = "ownerContact";
738
- const _oE = "outErrors";
739
- const _oIDCC = "openIDConnectConfig";
740
- const _oLMC = "operationLevelMetricsConfig";
741
- const _oP = "onPublish";
742
- const _oS = "onSubscribe";
743
- const _oSSC = "openSearchServiceConfig";
744
- const _pAM = "publishAuthModes";
745
- const _pC = "pipelineConfig";
746
- const _pK = "primaryKey";
747
- const _qDL = "queryDepthLimit";
748
- const _r = "reason";
749
- const _rA = "resourceArn";
750
- const _rAe = "resolverArn";
751
- const _rCL = "resolverCountLimit";
752
- const _rDAC = "rdsDataApiConfig";
753
- const _rDC = "relationalDatabaseConfig";
754
- const _rDST = "relationalDatabaseSourceType";
755
- const _rHEC = "rdsHttpEndpointConfig";
756
- const _rLMB = "resolverLevelMetricsBehavior";
757
- const _rMT = "requestMappingTemplate";
758
- const _rMTe = "responseMappingTemplate";
759
- const _rV = "runtimeVersion";
760
- const _re = "resolver";
761
- const _res = "resolvers";
762
- const _ru = "runtime";
763
- const _s = "status";
764
- const _sA = "secretArn";
765
- const _sAA = "sourceApiAssociation";
766
- const _sAAC = "sourceApiAssociationConfig";
767
- const _sAAS = "sourceApiAssociationStatus";
768
- const _sAASD = "sourceApiAssociationStatusDetail";
769
- const _sAASo = "sourceApiAssociationSummaries";
770
- const _sAAo = "sourceApiArn";
771
- const _sAI = "sourceApiIdentifier";
772
- const _sAIo = "sourceApiId";
773
- const _sAM = "subscribeAuthModes";
774
- const _sC = "syncConfig";
775
- const _sR = "signingRegion";
776
- const _sRA = "serviceRoleArn";
777
- const _sSN = "signingServiceName";
778
- const _sc = "schema";
779
- const _sd = "sdl";
780
- const _se = "server";
781
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appsync";
782
- const _sp = "span";
783
- const _st = "stash";
784
- const _t = "tags";
785
- const _tEE = "transitEncryptionEnabled";
786
- const _tK = "tagKeys";
787
- const _tN = "typeName";
788
- const _tNa = "tableName";
789
- const _te = "template";
790
- const _tt = "ttl";
791
- const _ty = "type";
792
- const _typ = "types";
793
- const _u = "uris";
794
- const _uCC = "useCallerCredentials";
795
- const _uPC = "userPoolConfig";
796
- const _uPI = "userPoolId";
797
- const _v = "value";
798
- const _va = "values";
799
- const _ve = "versioned";
800
- const _vi = "visibility";
801
- const _wWAA = "wafWebAclArn";
802
- const _xE = "xrayEnabled";
803
- const n0 = "com.amazonaws.appsync";
804
- var AccessDeniedException$ = [-3, n0, _ADE,
805
- { [_e]: _c, [_hE]: 403 },
806
- [_m],
807
- [0]
808
- ];
809
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
810
- var AdditionalAuthenticationProvider$ = [3, n0, _AAP,
811
- 0,
812
- [_aT, _oIDCC, _uPC, _lAC],
813
- [0, () => OpenIDConnectConfig$, () => CognitoUserPoolConfig$, () => LambdaAuthorizerConfig$]
814
- ];
815
- var Api$ = [3, n0, _A,
816
- 0,
817
- [_aI, _n, _oC, _t, _d, _aA, _cr, _xE, _wWAA, _eC],
818
- [0, 0, 0, 128 | 0, 128 | 0, 0, 4, 2, 0, () => EventConfig$]
819
- ];
820
- var ApiAssociation$ = [3, n0, _AA,
821
- 0,
822
- [_dN, _aI, _aS, _dD],
823
- [0, 0, 0, 0]
824
- ];
825
- var ApiCache$ = [3, n0, _AC,
826
- 0,
827
- [_tt, _aCB, _tEE, _aREE, _ty, _s, _hMC],
828
- [1, 0, 2, 2, 0, 0, 0]
829
- ];
830
- var ApiKey$ = [3, n0, _AK,
831
- 0,
832
- [_i, _de, _ex, _del],
833
- [0, 0, 1, 1]
834
- ];
835
- var ApiKeyLimitExceededException$ = [-3, n0, _AKLEE,
836
- { [_e]: _c, [_hE]: 400 },
837
- [_m],
838
- [0]
839
- ];
840
- schema.TypeRegistry.for(n0).registerError(ApiKeyLimitExceededException$, ApiKeyLimitExceededException);
841
- var ApiKeyValidityOutOfBoundsException$ = [-3, n0, _AKVOOBE,
842
- { [_e]: _c, [_hE]: 400 },
843
- [_m],
844
- [0]
845
- ];
846
- schema.TypeRegistry.for(n0).registerError(ApiKeyValidityOutOfBoundsException$, ApiKeyValidityOutOfBoundsException);
847
- var ApiLimitExceededException$ = [-3, n0, _ALEE,
848
- { [_e]: _c, [_hE]: 400 },
849
- [_m],
850
- [0]
851
- ];
852
- schema.TypeRegistry.for(n0).registerError(ApiLimitExceededException$, ApiLimitExceededException);
853
- var AppSyncRuntime$ = [3, n0, _ASR,
854
- 0,
855
- [_n, _rV],
856
- [0, 0], 2
857
- ];
858
- var AssociateApiRequest$ = [3, n0, _AAR,
859
- 0,
860
- [_dN, _aI],
861
- [[0, 1], 0], 2
862
- ];
863
- var AssociateApiResponse$ = [3, n0, _AARs,
864
- 0,
865
- [_aAp],
866
- [() => ApiAssociation$]
867
- ];
868
- var AssociateMergedGraphqlApiRequest$ = [3, n0, _AMGAR,
869
- 0,
870
- [_sAI, _mAI, _de, _sAAC],
871
- [[0, 1], 0, 0, () => SourceApiAssociationConfig$], 2
872
- ];
873
- var AssociateMergedGraphqlApiResponse$ = [3, n0, _AMGARs,
874
- 0,
875
- [_sAA],
876
- [() => SourceApiAssociation$]
877
- ];
878
- var AssociateSourceGraphqlApiRequest$ = [3, n0, _ASGAR,
879
- 0,
880
- [_mAI, _sAI, _de, _sAAC],
881
- [[0, 1], 0, 0, () => SourceApiAssociationConfig$], 2
882
- ];
883
- var AssociateSourceGraphqlApiResponse$ = [3, n0, _ASGARs,
884
- 0,
885
- [_sAA],
886
- [() => SourceApiAssociation$]
887
- ];
888
- var AuthMode$ = [3, n0, _AM,
889
- 0,
890
- [_aTu],
891
- [0], 1
892
- ];
893
- var AuthorizationConfig$ = [3, n0, _ACu,
894
- 0,
895
- [_aTut, _aIC],
896
- [0, () => AwsIamConfig$], 1
897
- ];
898
- var AuthProvider$ = [3, n0, _AP,
899
- 0,
900
- [_aTu, _cC, _oIDCC, _lAC],
901
- [0, () => CognitoConfig$, () => OpenIDConnectConfig$, () => LambdaAuthorizerConfig$], 1
902
- ];
903
- var AwsIamConfig$ = [3, n0, _AIC,
904
- 0,
905
- [_sR, _sSN],
906
- [0, 0]
907
- ];
908
- var BadRequestDetail$ = [3, n0, _BRD,
909
- 0,
910
- [_cE],
911
- [() => CodeErrors]
912
- ];
913
- var BadRequestException$ = [-3, n0, _BRE,
914
- { [_e]: _c, [_hE]: 400 },
915
- [_m, _r, _det],
916
- [0, 0, () => BadRequestDetail$]
917
- ];
918
- schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
919
- var CachingConfig$ = [3, n0, _CC,
920
- 0,
921
- [_tt, _cK],
922
- [1, 64 | 0], 1
923
- ];
924
- var ChannelNamespace$ = [3, n0, _CN,
925
- 0,
926
- [_aI, _n, _sAM, _pAM, _cH, _t, _cNA, _cr, _lM, _hC],
927
- [0, 0, () => AuthModes, () => AuthModes, 0, 128 | 0, 0, 4, 4, () => HandlerConfigs$]
928
- ];
929
- var CodeError$ = [3, n0, _CE,
930
- 0,
931
- [_eT, _v, _l],
932
- [0, 0, () => CodeErrorLocation$]
933
- ];
934
- var CodeErrorLocation$ = [3, n0, _CEL,
935
- 0,
936
- [_li, _co, _sp],
937
- [1, 1, 1]
938
- ];
939
- var CognitoConfig$ = [3, n0, _CCo,
940
- 0,
941
- [_uPI, _aR, _aICR],
942
- [0, 0, 0], 2
943
- ];
944
- var CognitoUserPoolConfig$ = [3, n0, _CUPC,
945
- 0,
946
- [_uPI, _aR, _aICR],
947
- [0, 0, 0], 2
948
- ];
949
- var ConcurrentModificationException$ = [-3, n0, _CME,
950
- { [_e]: _c, [_hE]: 409 },
951
- [_m],
952
- [0]
953
- ];
954
- schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
955
- var ConflictException$ = [-3, n0, _CEo,
956
- { [_e]: _c, [_hE]: 409 },
957
- [_m],
958
- [0]
959
- ];
960
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
961
- var CreateApiCacheRequest$ = [3, n0, _CACR,
962
- 0,
963
- [_aI, _tt, _aCB, _ty, _tEE, _aREE, _hMC],
964
- [[0, 1], 1, 0, 0, 2, 2, 0], 4
965
- ];
966
- var CreateApiCacheResponse$ = [3, n0, _CACRr,
967
- 0,
968
- [_aC],
969
- [() => ApiCache$]
970
- ];
971
- var CreateApiKeyRequest$ = [3, n0, _CAKR,
972
- 0,
973
- [_aI, _de, _ex],
974
- [[0, 1], 0, 1], 1
975
- ];
976
- var CreateApiKeyResponse$ = [3, n0, _CAKRr,
977
- 0,
978
- [_aK],
979
- [() => ApiKey$]
980
- ];
981
- var CreateApiRequest$ = [3, n0, _CAR,
982
- 0,
983
- [_n, _eC, _oC, _t],
984
- [0, () => EventConfig$, 0, 128 | 0], 2
985
- ];
986
- var CreateApiResponse$ = [3, n0, _CARr,
987
- 0,
988
- [_a],
989
- [() => Api$]
990
- ];
991
- var CreateChannelNamespaceRequest$ = [3, n0, _CCNR,
992
- 0,
993
- [_aI, _n, _sAM, _pAM, _cH, _t, _hC],
994
- [[0, 1], 0, () => AuthModes, () => AuthModes, 0, 128 | 0, () => HandlerConfigs$], 2
995
- ];
996
- var CreateChannelNamespaceResponse$ = [3, n0, _CCNRr,
997
- 0,
998
- [_cN],
999
- [() => ChannelNamespace$]
1000
- ];
1001
- var CreateDataSourceRequest$ = [3, n0, _CDSR,
1002
- 0,
1003
- [_aI, _n, _ty, _de, _sRA, _dC, _lC, _eCl, _oSSC, _hCt, _rDC, _eBC, _mC],
1004
- [[0, 1], 0, 0, 0, 0, () => DynamodbDataSourceConfig$, () => LambdaDataSourceConfig$, () => ElasticsearchDataSourceConfig$, () => OpenSearchServiceDataSourceConfig$, () => HttpDataSourceConfig$, () => RelationalDatabaseDataSourceConfig$, () => EventBridgeDataSourceConfig$, 0], 3
1005
- ];
1006
- var CreateDataSourceResponse$ = [3, n0, _CDSRr,
1007
- 0,
1008
- [_dS],
1009
- [() => DataSource$]
1010
- ];
1011
- var CreateDomainNameRequest$ = [3, n0, _CDNR,
1012
- 0,
1013
- [_dN, _cA, _de, _t],
1014
- [0, 0, 0, 128 | 0], 2
1015
- ];
1016
- var CreateDomainNameResponse$ = [3, n0, _CDNRr,
1017
- 0,
1018
- [_dNC],
1019
- [() => DomainNameConfig$]
1020
- ];
1021
- var CreateFunctionRequest$ = [3, n0, _CFR,
1022
- 0,
1023
- [_aI, _n, _dSN, _de, _rMT, _rMTe, _fV, _sC, _mBS, _ru, _cod],
1024
- [[0, 1], 0, 0, 0, 0, 0, 0, () => SyncConfig$, 1, () => AppSyncRuntime$, 0], 3
1025
- ];
1026
- var CreateFunctionResponse$ = [3, n0, _CFRr,
1027
- 0,
1028
- [_fC],
1029
- [() => FunctionConfiguration$]
1030
- ];
1031
- var CreateGraphqlApiRequest$ = [3, n0, _CGAR,
1032
- 0,
1033
- [_n, _aT, _lCo, _uPC, _oIDCC, _t, _aAP, _xE, _lAC, _aTp, _mAERA, _vi, _oC, _iC, _qDL, _rCL, _eMC],
1034
- [0, 0, () => LogConfig$, () => UserPoolConfig$, () => OpenIDConnectConfig$, 128 | 0, () => AdditionalAuthenticationProviders, 2, () => LambdaAuthorizerConfig$, 0, 0, 0, 0, 0, 1, 1, () => EnhancedMetricsConfig$], 2
1035
- ];
1036
- var CreateGraphqlApiResponse$ = [3, n0, _CGARr,
1037
- 0,
1038
- [_gA],
1039
- [() => GraphqlApi$]
1040
- ];
1041
- var CreateResolverRequest$ = [3, n0, _CRR,
1042
- 0,
1043
- [_aI, _tN, _fN, _dSN, _rMT, _rMTe, _k, _pC, _sC, _cCa, _mBS, _ru, _cod, _mC],
1044
- [[0, 1], [0, 1], 0, 0, 0, 0, 0, () => PipelineConfig$, () => SyncConfig$, () => CachingConfig$, 1, () => AppSyncRuntime$, 0, 0], 3
1045
- ];
1046
- var CreateResolverResponse$ = [3, n0, _CRRr,
1047
- 0,
1048
- [_re],
1049
- [() => Resolver$]
1050
- ];
1051
- var CreateTypeRequest$ = [3, n0, _CTR,
1052
- 0,
1053
- [_aI, _def, _f],
1054
- [[0, 1], 0, 0], 3
1055
- ];
1056
- var CreateTypeResponse$ = [3, n0, _CTRr,
1057
- 0,
1058
- [_ty],
1059
- [() => Type$]
1060
- ];
1061
- var DataSource$ = [3, n0, _DS,
1062
- 0,
1063
- [_dSA, _n, _de, _ty, _sRA, _dC, _lC, _eCl, _oSSC, _hCt, _rDC, _eBC, _mC],
1064
- [0, 0, 0, 0, 0, () => DynamodbDataSourceConfig$, () => LambdaDataSourceConfig$, () => ElasticsearchDataSourceConfig$, () => OpenSearchServiceDataSourceConfig$, () => HttpDataSourceConfig$, () => RelationalDatabaseDataSourceConfig$, () => EventBridgeDataSourceConfig$, 0]
1065
- ];
1066
- var DataSourceIntrospectionModel$ = [3, n0, _DSIM,
1067
- 0,
1068
- [_n, _fi, _pK, _in, _sd],
1069
- [0, () => DataSourceIntrospectionModelFields, () => DataSourceIntrospectionModelIndex$, () => DataSourceIntrospectionModelIndexes, 0]
1070
- ];
1071
- var DataSourceIntrospectionModelField$ = [3, n0, _DSIMF,
1072
- 0,
1073
- [_n, _ty, _le],
1074
- [0, () => DataSourceIntrospectionModelFieldType$, 1]
1075
- ];
1076
- var DataSourceIntrospectionModelFieldType$ = [3, n0, _DSIMFT,
1077
- 0,
1078
- [_k, _n, _ty, _va],
1079
- [0, 0, () => DataSourceIntrospectionModelFieldType$, 64 | 0]
1080
- ];
1081
- var DataSourceIntrospectionModelIndex$ = [3, n0, _DSIMI,
1082
- 0,
1083
- [_n, _fi],
1084
- [0, 64 | 0]
1085
- ];
1086
- var DataSourceIntrospectionResult$ = [3, n0, _DSIR,
1087
- 0,
1088
- [_mo, _nT],
1089
- [() => DataSourceIntrospectionModels, 0]
1090
- ];
1091
- var DeleteApiCacheRequest$ = [3, n0, _DACR,
1092
- 0,
1093
- [_aI],
1094
- [[0, 1]], 1
1095
- ];
1096
- var DeleteApiCacheResponse$ = [3, n0, _DACRe,
1097
- 0,
1098
- [],
1099
- []
1100
- ];
1101
- var DeleteApiKeyRequest$ = [3, n0, _DAKR,
1102
- 0,
1103
- [_aI, _i],
1104
- [[0, 1], [0, 1]], 2
1105
- ];
1106
- var DeleteApiKeyResponse$ = [3, n0, _DAKRe,
1107
- 0,
1108
- [],
1109
- []
1110
- ];
1111
- var DeleteApiRequest$ = [3, n0, _DAR,
1112
- 0,
1113
- [_aI],
1114
- [[0, 1]], 1
1115
- ];
1116
- var DeleteApiResponse$ = [3, n0, _DARe,
1117
- 0,
1118
- [],
1119
- []
1120
- ];
1121
- var DeleteChannelNamespaceRequest$ = [3, n0, _DCNR,
1122
- 0,
1123
- [_aI, _n],
1124
- [[0, 1], [0, 1]], 2
1125
- ];
1126
- var DeleteChannelNamespaceResponse$ = [3, n0, _DCNRe,
1127
- 0,
1128
- [],
1129
- []
1130
- ];
1131
- var DeleteDataSourceRequest$ = [3, n0, _DDSR,
1132
- 0,
1133
- [_aI, _n],
1134
- [[0, 1], [0, 1]], 2
1135
- ];
1136
- var DeleteDataSourceResponse$ = [3, n0, _DDSRe,
1137
- 0,
1138
- [],
1139
- []
1140
- ];
1141
- var DeleteDomainNameRequest$ = [3, n0, _DDNR,
1142
- 0,
1143
- [_dN],
1144
- [[0, 1]], 1
1145
- ];
1146
- var DeleteDomainNameResponse$ = [3, n0, _DDNRe,
1147
- 0,
1148
- [],
1149
- []
1150
- ];
1151
- var DeleteFunctionRequest$ = [3, n0, _DFR,
1152
- 0,
1153
- [_aI, _fI],
1154
- [[0, 1], [0, 1]], 2
1155
- ];
1156
- var DeleteFunctionResponse$ = [3, n0, _DFRe,
1157
- 0,
1158
- [],
1159
- []
1160
- ];
1161
- var DeleteGraphqlApiRequest$ = [3, n0, _DGAR,
1162
- 0,
1163
- [_aI],
1164
- [[0, 1]], 1
1165
- ];
1166
- var DeleteGraphqlApiResponse$ = [3, n0, _DGARe,
1167
- 0,
1168
- [],
1169
- []
1170
- ];
1171
- var DeleteResolverRequest$ = [3, n0, _DRR,
1172
- 0,
1173
- [_aI, _tN, _fN],
1174
- [[0, 1], [0, 1], [0, 1]], 3
1175
- ];
1176
- var DeleteResolverResponse$ = [3, n0, _DRRe,
1177
- 0,
1178
- [],
1179
- []
1180
- ];
1181
- var DeleteTypeRequest$ = [3, n0, _DTR,
1182
- 0,
1183
- [_aI, _tN],
1184
- [[0, 1], [0, 1]], 2
1185
- ];
1186
- var DeleteTypeResponse$ = [3, n0, _DTRe,
1187
- 0,
1188
- [],
1189
- []
1190
- ];
1191
- var DeltaSyncConfig$ = [3, n0, _DSC,
1192
- 0,
1193
- [_bTTTL, _dSTN, _dSTTTL],
1194
- [1, 0, 1]
1195
- ];
1196
- var DisassociateApiRequest$ = [3, n0, _DARi,
1197
- 0,
1198
- [_dN],
1199
- [[0, 1]], 1
1200
- ];
1201
- var DisassociateApiResponse$ = [3, n0, _DARis,
1202
- 0,
1203
- [],
1204
- []
1205
- ];
1206
- var DisassociateMergedGraphqlApiRequest$ = [3, n0, _DMGAR,
1207
- 0,
1208
- [_sAI, _aIs],
1209
- [[0, 1], [0, 1]], 2
1210
- ];
1211
- var DisassociateMergedGraphqlApiResponse$ = [3, n0, _DMGARi,
1212
- 0,
1213
- [_sAAS],
1214
- [0]
1215
- ];
1216
- var DisassociateSourceGraphqlApiRequest$ = [3, n0, _DSGAR,
1217
- 0,
1218
- [_mAI, _aIs],
1219
- [[0, 1], [0, 1]], 2
1220
- ];
1221
- var DisassociateSourceGraphqlApiResponse$ = [3, n0, _DSGARi,
1222
- 0,
1223
- [_sAAS],
1224
- [0]
1225
- ];
1226
- var DomainNameConfig$ = [3, n0, _DNC,
1227
- 0,
1228
- [_dN, _de, _cA, _aDN, _hZI, _t, _dNA],
1229
- [0, 0, 0, 0, 0, 128 | 0, 0]
1230
- ];
1231
- var DynamodbDataSourceConfig$ = [3, n0, _DDSC,
1232
- 0,
1233
- [_tNa, _aR, _uCC, _dSC, _ve],
1234
- [0, 0, 2, () => DeltaSyncConfig$, 2], 2
1235
- ];
1236
- var ElasticsearchDataSourceConfig$ = [3, n0, _EDSC,
1237
- 0,
1238
- [_en, _aR],
1239
- [0, 0], 2
1240
- ];
1241
- var EnhancedMetricsConfig$ = [3, n0, _EMC,
1242
- 0,
1243
- [_rLMB, _dSLMB, _oLMC],
1244
- [0, 0, 0], 3
1245
- ];
1246
- var ErrorDetail$ = [3, n0, _ED,
1247
- 0,
1248
- [_m],
1249
- [0]
1250
- ];
1251
- var EvaluateCodeErrorDetail$ = [3, n0, _ECED,
1252
- 0,
1253
- [_m, _cE],
1254
- [0, () => CodeErrors]
1255
- ];
1256
- var EvaluateCodeRequest$ = [3, n0, _ECR,
1257
- 0,
1258
- [_ru, _cod, _con, _fu],
1259
- [() => AppSyncRuntime$, 0, 0, 0], 3
1260
- ];
1261
- var EvaluateCodeResponse$ = [3, n0, _ECRv,
1262
- 0,
1263
- [_eR, _e, _lo, _st, _oE],
1264
- [0, () => EvaluateCodeErrorDetail$, 64 | 0, 0, 0]
1265
- ];
1266
- var EvaluateMappingTemplateRequest$ = [3, n0, _EMTR,
1267
- 0,
1268
- [_te, _con],
1269
- [0, 0], 2
1270
- ];
1271
- var EvaluateMappingTemplateResponse$ = [3, n0, _EMTRv,
1272
- 0,
1273
- [_eR, _e, _lo, _st, _oE],
1274
- [0, () => ErrorDetail$, 64 | 0, 0, 0]
1275
- ];
1276
- var EventBridgeDataSourceConfig$ = [3, n0, _EBDSC,
1277
- 0,
1278
- [_eBA],
1279
- [0], 1
1280
- ];
1281
- var EventConfig$ = [3, n0, _EC,
1282
- 0,
1283
- [_aP, _cAM, _dPAM, _dSAM, _lCo],
1284
- [() => AuthProviders, () => AuthModes, () => AuthModes, () => AuthModes, () => EventLogConfig$], 4
1285
- ];
1286
- var EventLogConfig$ = [3, n0, _ELC,
1287
- 0,
1288
- [_lL, _cWLRA],
1289
- [0, 0], 2
1290
- ];
1291
- var FlushApiCacheRequest$ = [3, n0, _FACR,
1292
- 0,
1293
- [_aI],
1294
- [[0, 1]], 1
1295
- ];
1296
- var FlushApiCacheResponse$ = [3, n0, _FACRl,
1297
- 0,
1298
- [],
1299
- []
1300
- ];
1301
- var FunctionConfiguration$ = [3, n0, _FC,
1302
- 0,
1303
- [_fI, _fA, _n, _de, _dSN, _rMT, _rMTe, _fV, _sC, _mBS, _ru, _cod],
1304
- [0, 0, 0, 0, 0, 0, 0, 0, () => SyncConfig$, 1, () => AppSyncRuntime$, 0]
1305
- ];
1306
- var GetApiAssociationRequest$ = [3, n0, _GAAR,
1307
- 0,
1308
- [_dN],
1309
- [[0, 1]], 1
1310
- ];
1311
- var GetApiAssociationResponse$ = [3, n0, _GAARe,
1312
- 0,
1313
- [_aAp],
1314
- [() => ApiAssociation$]
1315
- ];
1316
- var GetApiCacheRequest$ = [3, n0, _GACR,
1317
- 0,
1318
- [_aI],
1319
- [[0, 1]], 1
1320
- ];
1321
- var GetApiCacheResponse$ = [3, n0, _GACRe,
1322
- 0,
1323
- [_aC],
1324
- [() => ApiCache$]
1325
- ];
1326
- var GetApiRequest$ = [3, n0, _GAR,
1327
- 0,
1328
- [_aI],
1329
- [[0, 1]], 1
1330
- ];
1331
- var GetApiResponse$ = [3, n0, _GARe,
1332
- 0,
1333
- [_a],
1334
- [() => Api$]
1335
- ];
1336
- var GetChannelNamespaceRequest$ = [3, n0, _GCNR,
1337
- 0,
1338
- [_aI, _n],
1339
- [[0, 1], [0, 1]], 2
1340
- ];
1341
- var GetChannelNamespaceResponse$ = [3, n0, _GCNRe,
1342
- 0,
1343
- [_cN],
1344
- [() => ChannelNamespace$]
1345
- ];
1346
- var GetDataSourceIntrospectionRequest$ = [3, n0, _GDSIR,
1347
- 0,
1348
- [_iI, _iMSDL, _nT, _mR],
1349
- [[0, 1], [2, { [_hQ]: _iMSDL }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1350
- ];
1351
- var GetDataSourceIntrospectionResponse$ = [3, n0, _GDSIRe,
1352
- 0,
1353
- [_iI, _iS, _iSD, _iR],
1354
- [0, 0, 0, () => DataSourceIntrospectionResult$]
1355
- ];
1356
- var GetDataSourceRequest$ = [3, n0, _GDSR,
1357
- 0,
1358
- [_aI, _n],
1359
- [[0, 1], [0, 1]], 2
1360
- ];
1361
- var GetDataSourceResponse$ = [3, n0, _GDSRe,
1362
- 0,
1363
- [_dS],
1364
- [() => DataSource$]
1365
- ];
1366
- var GetDomainNameRequest$ = [3, n0, _GDNR,
1367
- 0,
1368
- [_dN],
1369
- [[0, 1]], 1
1370
- ];
1371
- var GetDomainNameResponse$ = [3, n0, _GDNRe,
1372
- 0,
1373
- [_dNC],
1374
- [() => DomainNameConfig$]
1375
- ];
1376
- var GetFunctionRequest$ = [3, n0, _GFR,
1377
- 0,
1378
- [_aI, _fI],
1379
- [[0, 1], [0, 1]], 2
1380
- ];
1381
- var GetFunctionResponse$ = [3, n0, _GFRe,
1382
- 0,
1383
- [_fC],
1384
- [() => FunctionConfiguration$]
1385
- ];
1386
- var GetGraphqlApiEnvironmentVariablesRequest$ = [3, n0, _GGAEVR,
1387
- 0,
1388
- [_aI],
1389
- [[0, 1]], 1
1390
- ];
1391
- var GetGraphqlApiEnvironmentVariablesResponse$ = [3, n0, _GGAEVRe,
1392
- 0,
1393
- [_eV],
1394
- [128 | 0]
1395
- ];
1396
- var GetGraphqlApiRequest$ = [3, n0, _GGAR,
1397
- 0,
1398
- [_aI],
1399
- [[0, 1]], 1
1400
- ];
1401
- var GetGraphqlApiResponse$ = [3, n0, _GGARe,
1402
- 0,
1403
- [_gA],
1404
- [() => GraphqlApi$]
1405
- ];
1406
- var GetIntrospectionSchemaRequest$ = [3, n0, _GISR,
1407
- 0,
1408
- [_aI, _f, _iD],
1409
- [[0, 1], [0, { [_hQ]: _f }], [2, { [_hQ]: _iD }]], 2
1410
- ];
1411
- var GetIntrospectionSchemaResponse$ = [3, n0, _GISRe,
1412
- 0,
1413
- [_sc],
1414
- [[21, 16]]
1415
- ];
1416
- var GetResolverRequest$ = [3, n0, _GRR,
1417
- 0,
1418
- [_aI, _tN, _fN],
1419
- [[0, 1], [0, 1], [0, 1]], 3
1420
- ];
1421
- var GetResolverResponse$ = [3, n0, _GRRe,
1422
- 0,
1423
- [_re],
1424
- [() => Resolver$]
1425
- ];
1426
- var GetSchemaCreationStatusRequest$ = [3, n0, _GSCSR,
1427
- 0,
1428
- [_aI],
1429
- [[0, 1]], 1
1430
- ];
1431
- var GetSchemaCreationStatusResponse$ = [3, n0, _GSCSRe,
1432
- 0,
1433
- [_s, _deta],
1434
- [0, 0]
1435
- ];
1436
- var GetSourceApiAssociationRequest$ = [3, n0, _GSAAR,
1437
- 0,
1438
- [_mAI, _aIs],
1439
- [[0, 1], [0, 1]], 2
1440
- ];
1441
- var GetSourceApiAssociationResponse$ = [3, n0, _GSAARe,
1442
- 0,
1443
- [_sAA],
1444
- [() => SourceApiAssociation$]
1445
- ];
1446
- var GetTypeRequest$ = [3, n0, _GTR,
1447
- 0,
1448
- [_aI, _tN, _f],
1449
- [[0, 1], [0, 1], [0, { [_hQ]: _f }]], 3
1450
- ];
1451
- var GetTypeResponse$ = [3, n0, _GTRe,
1452
- 0,
1453
- [_ty],
1454
- [() => Type$]
1455
- ];
1456
- var GraphqlApi$ = [3, n0, _GA,
1457
- 0,
1458
- [_n, _aI, _aT, _lCo, _uPC, _oIDCC, _ar, _u, _t, _aAP, _xE, _wWAA, _lAC, _d, _vi, _aTp, _mAERA, _o, _oC, _iC, _qDL, _rCL, _eMC],
1459
- [0, 0, 0, () => LogConfig$, () => UserPoolConfig$, () => OpenIDConnectConfig$, 0, 128 | 0, 128 | 0, () => AdditionalAuthenticationProviders, 2, 0, () => LambdaAuthorizerConfig$, 128 | 0, 0, 0, 0, 0, 0, 0, 1, 1, () => EnhancedMetricsConfig$]
1460
- ];
1461
- var GraphQLSchemaException$ = [-3, n0, _GQLSE,
1462
- { [_e]: _c, [_hE]: 400 },
1463
- [_m],
1464
- [0]
1465
- ];
1466
- schema.TypeRegistry.for(n0).registerError(GraphQLSchemaException$, GraphQLSchemaException);
1467
- var HandlerConfig$ = [3, n0, _HC,
1468
- 0,
1469
- [_b, _int],
1470
- [0, () => Integration$], 2
1471
- ];
1472
- var HandlerConfigs$ = [3, n0, _HCa,
1473
- 0,
1474
- [_oP, _oS],
1475
- [() => HandlerConfig$, () => HandlerConfig$]
1476
- ];
1477
- var HttpDataSourceConfig$ = [3, n0, _HDSC,
1478
- 0,
1479
- [_en, _aCu],
1480
- [0, () => AuthorizationConfig$]
1481
- ];
1482
- var Integration$ = [3, n0, _I,
1483
- 0,
1484
- [_dSN, _lC],
1485
- [0, () => LambdaConfig$], 1
1486
- ];
1487
- var InternalFailureException$ = [-3, n0, _IFE,
1488
- { [_e]: _se, [_hE]: 500 },
1489
- [_m],
1490
- [0]
1491
- ];
1492
- schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
1493
- var LambdaAuthorizerConfig$ = [3, n0, _LAC,
1494
- 0,
1495
- [_aU, _aRTIS, _iVE],
1496
- [0, 1, 0], 1
1497
- ];
1498
- var LambdaConfig$ = [3, n0, _LC,
1499
- 0,
1500
- [_iT],
1501
- [0]
1502
- ];
1503
- var LambdaConflictHandlerConfig$ = [3, n0, _LCHC,
1504
- 0,
1505
- [_lCHA],
1506
- [0]
1507
- ];
1508
- var LambdaDataSourceConfig$ = [3, n0, _LDSC,
1509
- 0,
1510
- [_lFA],
1511
- [0], 1
1512
- ];
1513
- var LimitExceededException$ = [-3, n0, _LEE,
1514
- { [_e]: _c, [_hE]: 429 },
1515
- [_m],
1516
- [0]
1517
- ];
1518
- schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
1519
- var ListApiKeysRequest$ = [3, n0, _LAKR,
1520
- 0,
1521
- [_aI, _nT, _mR],
1522
- [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1523
- ];
1524
- var ListApiKeysResponse$ = [3, n0, _LAKRi,
1525
- 0,
1526
- [_aKp, _nT],
1527
- [() => ApiKeys, 0]
1528
- ];
1529
- var ListApisRequest$ = [3, n0, _LAR,
1530
- 0,
1531
- [_nT, _mR],
1532
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
1533
- ];
1534
- var ListApisResponse$ = [3, n0, _LARi,
1535
- 0,
1536
- [_ap, _nT],
1537
- [() => Apis, 0]
1538
- ];
1539
- var ListChannelNamespacesRequest$ = [3, n0, _LCNR,
1540
- 0,
1541
- [_aI, _nT, _mR],
1542
- [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1543
- ];
1544
- var ListChannelNamespacesResponse$ = [3, n0, _LCNRi,
1545
- 0,
1546
- [_cNh, _nT],
1547
- [() => ChannelNamespaces, 0]
1548
- ];
1549
- var ListDataSourcesRequest$ = [3, n0, _LDSR,
1550
- 0,
1551
- [_aI, _nT, _mR],
1552
- [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1553
- ];
1554
- var ListDataSourcesResponse$ = [3, n0, _LDSRi,
1555
- 0,
1556
- [_dSa, _nT],
1557
- [() => DataSources, 0]
1558
- ];
1559
- var ListDomainNamesRequest$ = [3, n0, _LDNR,
1560
- 0,
1561
- [_nT, _mR],
1562
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
1563
- ];
1564
- var ListDomainNamesResponse$ = [3, n0, _LDNRi,
1565
- 0,
1566
- [_dNCo, _nT],
1567
- [() => DomainNameConfigs, 0]
1568
- ];
1569
- var ListFunctionsRequest$ = [3, n0, _LFR,
1570
- 0,
1571
- [_aI, _nT, _mR],
1572
- [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1573
- ];
1574
- var ListFunctionsResponse$ = [3, n0, _LFRi,
1575
- 0,
1576
- [_fun, _nT],
1577
- [() => Functions, 0]
1578
- ];
1579
- var ListGraphqlApisRequest$ = [3, n0, _LGAR,
1580
- 0,
1581
- [_nT, _mR, _aTp, _o],
1582
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _aTp }], [0, { [_hQ]: _o }]]
1583
- ];
1584
- var ListGraphqlApisResponse$ = [3, n0, _LGARi,
1585
- 0,
1586
- [_gAr, _nT],
1587
- [() => GraphqlApis, 0]
1588
- ];
1589
- var ListResolversByFunctionRequest$ = [3, n0, _LRBFR,
1590
- 0,
1591
- [_aI, _fI, _nT, _mR],
1592
- [[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
1593
- ];
1594
- var ListResolversByFunctionResponse$ = [3, n0, _LRBFRi,
1595
- 0,
1596
- [_res, _nT],
1597
- [() => Resolvers, 0]
1598
- ];
1599
- var ListResolversRequest$ = [3, n0, _LRR,
1600
- 0,
1601
- [_aI, _tN, _nT, _mR],
1602
- [[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
1603
- ];
1604
- var ListResolversResponse$ = [3, n0, _LRRi,
1605
- 0,
1606
- [_res, _nT],
1607
- [() => Resolvers, 0]
1608
- ];
1609
- var ListSourceApiAssociationsRequest$ = [3, n0, _LSAAR,
1610
- 0,
1611
- [_aI, _nT, _mR],
1612
- [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1613
- ];
1614
- var ListSourceApiAssociationsResponse$ = [3, n0, _LSAARi,
1615
- 0,
1616
- [_sAASo, _nT],
1617
- [() => SourceApiAssociationSummaryList, 0]
1618
- ];
1619
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1620
- 0,
1621
- [_rA],
1622
- [[0, 1]], 1
1623
- ];
1624
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1625
- 0,
1626
- [_t],
1627
- [128 | 0]
1628
- ];
1629
- var ListTypesByAssociationRequest$ = [3, n0, _LTBAR,
1630
- 0,
1631
- [_mAI, _aIs, _f, _nT, _mR],
1632
- [[0, 1], [0, 1], [0, { [_hQ]: _f }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 3
1633
- ];
1634
- var ListTypesByAssociationResponse$ = [3, n0, _LTBARi,
1635
- 0,
1636
- [_typ, _nT],
1637
- [() => TypeList, 0]
1638
- ];
1639
- var ListTypesRequest$ = [3, n0, _LTR,
1640
- 0,
1641
- [_aI, _f, _nT, _mR],
1642
- [[0, 1], [0, { [_hQ]: _f }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
1643
- ];
1644
- var ListTypesResponse$ = [3, n0, _LTRi,
1645
- 0,
1646
- [_typ, _nT],
1647
- [() => TypeList, 0]
1648
- ];
1649
- var LogConfig$ = [3, n0, _LCo,
1650
- 0,
1651
- [_fLL, _cWLRA, _eVC],
1652
- [0, 0, 2], 2
1653
- ];
1654
- var NotFoundException$ = [-3, n0, _NFE,
1655
- { [_e]: _c, [_hE]: 404 },
1656
- [_m],
1657
- [0]
1658
- ];
1659
- schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
1660
- var OpenIDConnectConfig$ = [3, n0, _OIDCC,
1661
- 0,
1662
- [_is, _cI, _iTTL, _aTTL],
1663
- [0, 0, 1, 1], 1
1664
- ];
1665
- var OpenSearchServiceDataSourceConfig$ = [3, n0, _OSSDSC,
1666
- 0,
1667
- [_en, _aR],
1668
- [0, 0], 2
1669
- ];
1670
- var PipelineConfig$ = [3, n0, _PC,
1671
- 0,
1672
- [_fun],
1673
- [64 | 0]
1674
- ];
1675
- var PutGraphqlApiEnvironmentVariablesRequest$ = [3, n0, _PGAEVR,
1676
- 0,
1677
- [_aI, _eV],
1678
- [[0, 1], 128 | 0], 2
1679
- ];
1680
- var PutGraphqlApiEnvironmentVariablesResponse$ = [3, n0, _PGAEVRu,
1681
- 0,
1682
- [_eV],
1683
- [128 | 0]
1684
- ];
1685
- var RdsDataApiConfig$ = [3, n0, _RDAC,
1686
- 0,
1687
- [_rA, _sA, _dNa],
1688
- [0, 0, 0], 3
1689
- ];
1690
- var RdsHttpEndpointConfig$ = [3, n0, _RHEC,
1691
- 0,
1692
- [_aR, _dCI, _dNa, _sc, _aSSA],
1693
- [0, 0, 0, 0, 0]
1694
- ];
1695
- var RelationalDatabaseDataSourceConfig$ = [3, n0, _RDDSC,
1696
- 0,
1697
- [_rDST, _rHEC],
1698
- [0, () => RdsHttpEndpointConfig$]
1699
- ];
1700
- var Resolver$ = [3, n0, _R,
1701
- 0,
1702
- [_tN, _fN, _dSN, _rAe, _rMT, _rMTe, _k, _pC, _sC, _cCa, _mBS, _ru, _cod, _mC],
1703
- [0, 0, 0, 0, 0, 0, 0, () => PipelineConfig$, () => SyncConfig$, () => CachingConfig$, 1, () => AppSyncRuntime$, 0, 0]
1704
- ];
1705
- var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
1706
- { [_e]: _c, [_hE]: 402 },
1707
- [_m],
1708
- [0]
1709
- ];
1710
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1711
- var SourceApiAssociation$ = [3, n0, _SAA,
1712
- 0,
1713
- [_aIs, _aAs, _sAIo, _sAAo, _mAA, _mAIe, _de, _sAAC, _sAAS, _sAASD, _lSMD],
1714
- [0, 0, 0, 0, 0, 0, 0, () => SourceApiAssociationConfig$, 0, 0, 4]
1715
- ];
1716
- var SourceApiAssociationConfig$ = [3, n0, _SAAC,
1717
- 0,
1718
- [_mT],
1719
- [0]
1720
- ];
1721
- var SourceApiAssociationSummary$ = [3, n0, _SAAS,
1722
- 0,
1723
- [_aIs, _aAs, _sAIo, _sAAo, _mAIe, _mAA, _de],
1724
- [0, 0, 0, 0, 0, 0, 0]
1725
- ];
1726
- var StartDataSourceIntrospectionRequest$ = [3, n0, _SDSIR,
1727
- 0,
1728
- [_rDAC],
1729
- [() => RdsDataApiConfig$]
1730
- ];
1731
- var StartDataSourceIntrospectionResponse$ = [3, n0, _SDSIRt,
1732
- 0,
1733
- [_iI, _iS, _iSD],
1734
- [0, 0, 0]
1735
- ];
1736
- var StartSchemaCreationRequest$ = [3, n0, _SSCR,
1737
- 0,
1738
- [_aI, _def],
1739
- [[0, 1], 21], 2
1740
- ];
1741
- var StartSchemaCreationResponse$ = [3, n0, _SSCRt,
1742
- 0,
1743
- [_s],
1744
- [0]
1745
- ];
1746
- var StartSchemaMergeRequest$ = [3, n0, _SSMR,
1747
- 0,
1748
- [_aIs, _mAI],
1749
- [[0, 1], [0, 1]], 2
1750
- ];
1751
- var StartSchemaMergeResponse$ = [3, n0, _SSMRt,
1752
- 0,
1753
- [_sAAS],
1754
- [0]
1755
- ];
1756
- var SyncConfig$ = [3, n0, _SC,
1757
- 0,
1758
- [_cHo, _cD, _lCHC],
1759
- [0, 0, () => LambdaConflictHandlerConfig$]
1760
- ];
1761
- var TagResourceRequest$ = [3, n0, _TRR,
1762
- 0,
1763
- [_rA, _t],
1764
- [[0, 1], 128 | 0], 2
1765
- ];
1766
- var TagResourceResponse$ = [3, n0, _TRRa,
1767
- 0,
1768
- [],
1769
- []
1770
- ];
1771
- var Type$ = [3, n0, _T,
1772
- 0,
1773
- [_n, _de, _ar, _def, _f],
1774
- [0, 0, 0, 0, 0]
1775
- ];
1776
- var UnauthorizedException$ = [-3, n0, _UE,
1777
- { [_e]: _c, [_hE]: 401 },
1778
- [_m],
1779
- [0]
1780
- ];
1781
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
1782
- var UntagResourceRequest$ = [3, n0, _URR,
1783
- 0,
1784
- [_rA, _tK],
1785
- [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1786
- ];
1787
- var UntagResourceResponse$ = [3, n0, _URRn,
1788
- 0,
1789
- [],
1790
- []
1791
- ];
1792
- var UpdateApiCacheRequest$ = [3, n0, _UACR,
1793
- 0,
1794
- [_aI, _tt, _aCB, _ty, _hMC],
1795
- [[0, 1], 1, 0, 0, 0], 4
1796
- ];
1797
- var UpdateApiCacheResponse$ = [3, n0, _UACRp,
1798
- 0,
1799
- [_aC],
1800
- [() => ApiCache$]
1801
- ];
1802
- var UpdateApiKeyRequest$ = [3, n0, _UAKR,
1803
- 0,
1804
- [_aI, _i, _de, _ex],
1805
- [[0, 1], [0, 1], 0, 1], 2
1806
- ];
1807
- var UpdateApiKeyResponse$ = [3, n0, _UAKRp,
1808
- 0,
1809
- [_aK],
1810
- [() => ApiKey$]
1811
- ];
1812
- var UpdateApiRequest$ = [3, n0, _UAR,
1813
- 0,
1814
- [_aI, _n, _eC, _oC],
1815
- [[0, 1], 0, () => EventConfig$, 0], 3
1816
- ];
1817
- var UpdateApiResponse$ = [3, n0, _UARp,
1818
- 0,
1819
- [_a],
1820
- [() => Api$]
1821
- ];
1822
- var UpdateChannelNamespaceRequest$ = [3, n0, _UCNR,
1823
- 0,
1824
- [_aI, _n, _sAM, _pAM, _cH, _hC],
1825
- [[0, 1], [0, 1], () => AuthModes, () => AuthModes, 0, () => HandlerConfigs$], 2
1826
- ];
1827
- var UpdateChannelNamespaceResponse$ = [3, n0, _UCNRp,
1828
- 0,
1829
- [_cN],
1830
- [() => ChannelNamespace$]
1831
- ];
1832
- var UpdateDataSourceRequest$ = [3, n0, _UDSR,
1833
- 0,
1834
- [_aI, _n, _ty, _de, _sRA, _dC, _lC, _eCl, _oSSC, _hCt, _rDC, _eBC, _mC],
1835
- [[0, 1], [0, 1], 0, 0, 0, () => DynamodbDataSourceConfig$, () => LambdaDataSourceConfig$, () => ElasticsearchDataSourceConfig$, () => OpenSearchServiceDataSourceConfig$, () => HttpDataSourceConfig$, () => RelationalDatabaseDataSourceConfig$, () => EventBridgeDataSourceConfig$, 0], 3
1836
- ];
1837
- var UpdateDataSourceResponse$ = [3, n0, _UDSRp,
1838
- 0,
1839
- [_dS],
1840
- [() => DataSource$]
1841
- ];
1842
- var UpdateDomainNameRequest$ = [3, n0, _UDNR,
1843
- 0,
1844
- [_dN, _de],
1845
- [[0, 1], 0], 1
1846
- ];
1847
- var UpdateDomainNameResponse$ = [3, n0, _UDNRp,
1848
- 0,
1849
- [_dNC],
1850
- [() => DomainNameConfig$]
1851
- ];
1852
- var UpdateFunctionRequest$ = [3, n0, _UFR,
1853
- 0,
1854
- [_aI, _n, _fI, _dSN, _de, _rMT, _rMTe, _fV, _sC, _mBS, _ru, _cod],
1855
- [[0, 1], 0, [0, 1], 0, 0, 0, 0, 0, () => SyncConfig$, 1, () => AppSyncRuntime$, 0], 4
1856
- ];
1857
- var UpdateFunctionResponse$ = [3, n0, _UFRp,
1858
- 0,
1859
- [_fC],
1860
- [() => FunctionConfiguration$]
1861
- ];
1862
- var UpdateGraphqlApiRequest$ = [3, n0, _UGAR,
1863
- 0,
1864
- [_aI, _n, _aT, _lCo, _uPC, _oIDCC, _aAP, _xE, _lAC, _mAERA, _oC, _iC, _qDL, _rCL, _eMC],
1865
- [[0, 1], 0, 0, () => LogConfig$, () => UserPoolConfig$, () => OpenIDConnectConfig$, () => AdditionalAuthenticationProviders, 2, () => LambdaAuthorizerConfig$, 0, 0, 0, 1, 1, () => EnhancedMetricsConfig$], 3
1866
- ];
1867
- var UpdateGraphqlApiResponse$ = [3, n0, _UGARp,
1868
- 0,
1869
- [_gA],
1870
- [() => GraphqlApi$]
1871
- ];
1872
- var UpdateResolverRequest$ = [3, n0, _URRp,
1873
- 0,
1874
- [_aI, _tN, _fN, _dSN, _rMT, _rMTe, _k, _pC, _sC, _cCa, _mBS, _ru, _cod, _mC],
1875
- [[0, 1], [0, 1], [0, 1], 0, 0, 0, 0, () => PipelineConfig$, () => SyncConfig$, () => CachingConfig$, 1, () => AppSyncRuntime$, 0, 0], 3
1876
- ];
1877
- var UpdateResolverResponse$ = [3, n0, _URRpd,
1878
- 0,
1879
- [_re],
1880
- [() => Resolver$]
1881
- ];
1882
- var UpdateSourceApiAssociationRequest$ = [3, n0, _USAAR,
1883
- 0,
1884
- [_aIs, _mAI, _de, _sAAC],
1885
- [[0, 1], [0, 1], 0, () => SourceApiAssociationConfig$], 2
1886
- ];
1887
- var UpdateSourceApiAssociationResponse$ = [3, n0, _USAARp,
1888
- 0,
1889
- [_sAA],
1890
- [() => SourceApiAssociation$]
1891
- ];
1892
- var UpdateTypeRequest$ = [3, n0, _UTR,
1893
- 0,
1894
- [_aI, _tN, _f, _def],
1895
- [[0, 1], [0, 1], 0, 0], 3
1896
- ];
1897
- var UpdateTypeResponse$ = [3, n0, _UTRp,
1898
- 0,
1899
- [_ty],
1900
- [() => Type$]
1901
- ];
1902
- var UserPoolConfig$ = [3, n0, _UPC,
1903
- 0,
1904
- [_uPI, _aR, _dA, _aICR],
1905
- [0, 0, 0, 0], 3
1906
- ];
1907
- var AppSyncServiceException$ = [-3, _sm, "AppSyncServiceException", 0, [], []];
1908
- schema.TypeRegistry.for(_sm).registerError(AppSyncServiceException$, AppSyncServiceException);
1909
- var AdditionalAuthenticationProviders = [1, n0, _AAPd,
1910
- 0, () => AdditionalAuthenticationProvider$
1911
- ];
1912
- var ApiKeys = [1, n0, _AKp,
1913
- 0, () => ApiKey$
1914
- ];
1915
- var Apis = [1, n0, _Ap,
1916
- 0, () => Api$
1917
- ];
1918
- var AuthModes = [1, n0, _AMu,
1919
- 0, () => AuthMode$
1920
- ];
1921
- var AuthProviders = [1, n0, _APu,
1922
- 0, () => AuthProvider$
1923
- ];
1924
- var ChannelNamespaces = [1, n0, _CNh,
1925
- 0, () => ChannelNamespace$
1926
- ];
1927
- var CodeErrors = [1, n0, _CEod,
1928
- 0, () => CodeError$
1929
- ];
1930
- var DataSourceIntrospectionModelFields = [1, n0, _DSIMFa,
1931
- 0, () => DataSourceIntrospectionModelField$
1932
- ];
1933
- var DataSourceIntrospectionModelIndexes = [1, n0, _DSIMIa,
1934
- 0, () => DataSourceIntrospectionModelIndex$
1935
- ];
1936
- var DataSourceIntrospectionModels = [1, n0, _DSIMa,
1937
- 0, () => DataSourceIntrospectionModel$
1938
- ];
1939
- var DataSources = [1, n0, _DSa,
1940
- 0, () => DataSource$
1941
- ];
1942
- var DomainNameConfigs = [1, n0, _DNCo,
1943
- 0, () => DomainNameConfig$
1944
- ];
1945
- var Functions = [1, n0, _F,
1946
- 0, () => FunctionConfiguration$
1947
- ];
1948
- var GraphqlApis = [1, n0, _GAr,
1949
- 0, () => GraphqlApi$
1950
- ];
1951
- var Resolvers = [1, n0, _Re,
1952
- 0, () => Resolver$
1953
- ];
1954
- var SourceApiAssociationSummaryList = [1, n0, _SAASL,
1955
- 0, () => SourceApiAssociationSummary$
1956
- ];
1957
- var TypeList = [1, n0, _TL,
1958
- 0, () => Type$
1959
- ];
1960
- var AssociateApi$ = [9, n0, _AAs,
1961
- { [_h]: ["POST", "/v1/domainnames/{domainName}/apiassociation", 200] }, () => AssociateApiRequest$, () => AssociateApiResponse$
1962
- ];
1963
- var AssociateMergedGraphqlApi$ = [9, n0, _AMGA,
1964
- { [_h]: ["POST", "/v1/sourceApis/{sourceApiIdentifier}/mergedApiAssociations", 200] }, () => AssociateMergedGraphqlApiRequest$, () => AssociateMergedGraphqlApiResponse$
1965
- ];
1966
- var AssociateSourceGraphqlApi$ = [9, n0, _ASGA,
1967
- { [_h]: ["POST", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations", 200] }, () => AssociateSourceGraphqlApiRequest$, () => AssociateSourceGraphqlApiResponse$
1968
- ];
1969
- var CreateApi$ = [9, n0, _CA,
1970
- { [_h]: ["POST", "/v2/apis", 200] }, () => CreateApiRequest$, () => CreateApiResponse$
1971
- ];
1972
- var CreateApiCache$ = [9, n0, _CAC,
1973
- { [_h]: ["POST", "/v1/apis/{apiId}/ApiCaches", 200] }, () => CreateApiCacheRequest$, () => CreateApiCacheResponse$
1974
- ];
1975
- var CreateApiKey$ = [9, n0, _CAK,
1976
- { [_h]: ["POST", "/v1/apis/{apiId}/apikeys", 200] }, () => CreateApiKeyRequest$, () => CreateApiKeyResponse$
1977
- ];
1978
- var CreateChannelNamespace$ = [9, n0, _CCN,
1979
- { [_h]: ["POST", "/v2/apis/{apiId}/channelNamespaces", 200] }, () => CreateChannelNamespaceRequest$, () => CreateChannelNamespaceResponse$
1980
- ];
1981
- var CreateDataSource$ = [9, n0, _CDS,
1982
- { [_h]: ["POST", "/v1/apis/{apiId}/datasources", 200] }, () => CreateDataSourceRequest$, () => CreateDataSourceResponse$
1983
- ];
1984
- var CreateDomainName$ = [9, n0, _CDN,
1985
- { [_h]: ["POST", "/v1/domainnames", 200] }, () => CreateDomainNameRequest$, () => CreateDomainNameResponse$
1986
- ];
1987
- var CreateFunction$ = [9, n0, _CF,
1988
- { [_h]: ["POST", "/v1/apis/{apiId}/functions", 200] }, () => CreateFunctionRequest$, () => CreateFunctionResponse$
1989
- ];
1990
- var CreateGraphqlApi$ = [9, n0, _CGA,
1991
- { [_h]: ["POST", "/v1/apis", 200] }, () => CreateGraphqlApiRequest$, () => CreateGraphqlApiResponse$
1992
- ];
1993
- var CreateResolver$ = [9, n0, _CR,
1994
- { [_h]: ["POST", "/v1/apis/{apiId}/types/{typeName}/resolvers", 200] }, () => CreateResolverRequest$, () => CreateResolverResponse$
1995
- ];
1996
- var CreateType$ = [9, n0, _CT,
1997
- { [_h]: ["POST", "/v1/apis/{apiId}/types", 200] }, () => CreateTypeRequest$, () => CreateTypeResponse$
1998
- ];
1999
- var DeleteApi$ = [9, n0, _DA,
2000
- { [_h]: ["DELETE", "/v2/apis/{apiId}", 200] }, () => DeleteApiRequest$, () => DeleteApiResponse$
2001
- ];
2002
- var DeleteApiCache$ = [9, n0, _DAC,
2003
- { [_h]: ["DELETE", "/v1/apis/{apiId}/ApiCaches", 200] }, () => DeleteApiCacheRequest$, () => DeleteApiCacheResponse$
2004
- ];
2005
- var DeleteApiKey$ = [9, n0, _DAK,
2006
- { [_h]: ["DELETE", "/v1/apis/{apiId}/apikeys/{id}", 200] }, () => DeleteApiKeyRequest$, () => DeleteApiKeyResponse$
2007
- ];
2008
- var DeleteChannelNamespace$ = [9, n0, _DCN,
2009
- { [_h]: ["DELETE", "/v2/apis/{apiId}/channelNamespaces/{name}", 200] }, () => DeleteChannelNamespaceRequest$, () => DeleteChannelNamespaceResponse$
2010
- ];
2011
- var DeleteDataSource$ = [9, n0, _DDS,
2012
- { [_h]: ["DELETE", "/v1/apis/{apiId}/datasources/{name}", 200] }, () => DeleteDataSourceRequest$, () => DeleteDataSourceResponse$
2013
- ];
2014
- var DeleteDomainName$ = [9, n0, _DDN,
2015
- { [_h]: ["DELETE", "/v1/domainnames/{domainName}", 200] }, () => DeleteDomainNameRequest$, () => DeleteDomainNameResponse$
2016
- ];
2017
- var DeleteFunction$ = [9, n0, _DF,
2018
- { [_h]: ["DELETE", "/v1/apis/{apiId}/functions/{functionId}", 200] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
2019
- ];
2020
- var DeleteGraphqlApi$ = [9, n0, _DGA,
2021
- { [_h]: ["DELETE", "/v1/apis/{apiId}", 200] }, () => DeleteGraphqlApiRequest$, () => DeleteGraphqlApiResponse$
2022
- ];
2023
- var DeleteResolver$ = [9, n0, _DR,
2024
- { [_h]: ["DELETE", "/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}", 200] }, () => DeleteResolverRequest$, () => DeleteResolverResponse$
2025
- ];
2026
- var DeleteType$ = [9, n0, _DT,
2027
- { [_h]: ["DELETE", "/v1/apis/{apiId}/types/{typeName}", 200] }, () => DeleteTypeRequest$, () => DeleteTypeResponse$
2028
- ];
2029
- var DisassociateApi$ = [9, n0, _DAi,
2030
- { [_h]: ["DELETE", "/v1/domainnames/{domainName}/apiassociation", 200] }, () => DisassociateApiRequest$, () => DisassociateApiResponse$
2031
- ];
2032
- var DisassociateMergedGraphqlApi$ = [9, n0, _DMGA,
2033
- { [_h]: ["DELETE", "/v1/sourceApis/{sourceApiIdentifier}/mergedApiAssociations/{associationId}", 200] }, () => DisassociateMergedGraphqlApiRequest$, () => DisassociateMergedGraphqlApiResponse$
2034
- ];
2035
- var DisassociateSourceGraphqlApi$ = [9, n0, _DSGA,
2036
- { [_h]: ["DELETE", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}", 200] }, () => DisassociateSourceGraphqlApiRequest$, () => DisassociateSourceGraphqlApiResponse$
2037
- ];
2038
- var EvaluateCode$ = [9, n0, _ECv,
2039
- { [_h]: ["POST", "/v1/dataplane-evaluatecode", 200] }, () => EvaluateCodeRequest$, () => EvaluateCodeResponse$
2040
- ];
2041
- var EvaluateMappingTemplate$ = [9, n0, _EMT,
2042
- { [_h]: ["POST", "/v1/dataplane-evaluatetemplate", 200] }, () => EvaluateMappingTemplateRequest$, () => EvaluateMappingTemplateResponse$
2043
- ];
2044
- var FlushApiCache$ = [9, n0, _FAC,
2045
- { [_h]: ["DELETE", "/v1/apis/{apiId}/FlushCache", 200] }, () => FlushApiCacheRequest$, () => FlushApiCacheResponse$
2046
- ];
2047
- var GetApi$ = [9, n0, _GAe,
2048
- { [_h]: ["GET", "/v2/apis/{apiId}", 200] }, () => GetApiRequest$, () => GetApiResponse$
2049
- ];
2050
- var GetApiAssociation$ = [9, n0, _GAA,
2051
- { [_h]: ["GET", "/v1/domainnames/{domainName}/apiassociation", 200] }, () => GetApiAssociationRequest$, () => GetApiAssociationResponse$
2052
- ];
2053
- var GetApiCache$ = [9, n0, _GAC,
2054
- { [_h]: ["GET", "/v1/apis/{apiId}/ApiCaches", 200] }, () => GetApiCacheRequest$, () => GetApiCacheResponse$
2055
- ];
2056
- var GetChannelNamespace$ = [9, n0, _GCN,
2057
- { [_h]: ["GET", "/v2/apis/{apiId}/channelNamespaces/{name}", 200] }, () => GetChannelNamespaceRequest$, () => GetChannelNamespaceResponse$
2058
- ];
2059
- var GetDataSource$ = [9, n0, _GDS,
2060
- { [_h]: ["GET", "/v1/apis/{apiId}/datasources/{name}", 200] }, () => GetDataSourceRequest$, () => GetDataSourceResponse$
2061
- ];
2062
- var GetDataSourceIntrospection$ = [9, n0, _GDSI,
2063
- { [_h]: ["GET", "/v1/datasources/introspections/{introspectionId}", 200] }, () => GetDataSourceIntrospectionRequest$, () => GetDataSourceIntrospectionResponse$
2064
- ];
2065
- var GetDomainName$ = [9, n0, _GDN,
2066
- { [_h]: ["GET", "/v1/domainnames/{domainName}", 200] }, () => GetDomainNameRequest$, () => GetDomainNameResponse$
2067
- ];
2068
- var GetFunction$ = [9, n0, _GF,
2069
- { [_h]: ["GET", "/v1/apis/{apiId}/functions/{functionId}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
2070
- ];
2071
- var GetGraphqlApi$ = [9, n0, _GGA,
2072
- { [_h]: ["GET", "/v1/apis/{apiId}", 200] }, () => GetGraphqlApiRequest$, () => GetGraphqlApiResponse$
2073
- ];
2074
- var GetGraphqlApiEnvironmentVariables$ = [9, n0, _GGAEV,
2075
- { [_h]: ["GET", "/v1/apis/{apiId}/environmentVariables", 200] }, () => GetGraphqlApiEnvironmentVariablesRequest$, () => GetGraphqlApiEnvironmentVariablesResponse$
2076
- ];
2077
- var GetIntrospectionSchema$ = [9, n0, _GIS,
2078
- { [_h]: ["GET", "/v1/apis/{apiId}/schema", 200] }, () => GetIntrospectionSchemaRequest$, () => GetIntrospectionSchemaResponse$
2079
- ];
2080
- var GetResolver$ = [9, n0, _GR,
2081
- { [_h]: ["GET", "/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}", 200] }, () => GetResolverRequest$, () => GetResolverResponse$
2082
- ];
2083
- var GetSchemaCreationStatus$ = [9, n0, _GSCS,
2084
- { [_h]: ["GET", "/v1/apis/{apiId}/schemacreation", 200] }, () => GetSchemaCreationStatusRequest$, () => GetSchemaCreationStatusResponse$
2085
- ];
2086
- var GetSourceApiAssociation$ = [9, n0, _GSAA,
2087
- { [_h]: ["GET", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}", 200] }, () => GetSourceApiAssociationRequest$, () => GetSourceApiAssociationResponse$
2088
- ];
2089
- var GetType$ = [9, n0, _GT,
2090
- { [_h]: ["GET", "/v1/apis/{apiId}/types/{typeName}", 200] }, () => GetTypeRequest$, () => GetTypeResponse$
2091
- ];
2092
- var ListApiKeys$ = [9, n0, _LAK,
2093
- { [_h]: ["GET", "/v1/apis/{apiId}/apikeys", 200] }, () => ListApiKeysRequest$, () => ListApiKeysResponse$
2094
- ];
2095
- var ListApis$ = [9, n0, _LA,
2096
- { [_h]: ["GET", "/v2/apis", 200] }, () => ListApisRequest$, () => ListApisResponse$
2097
- ];
2098
- var ListChannelNamespaces$ = [9, n0, _LCN,
2099
- { [_h]: ["GET", "/v2/apis/{apiId}/channelNamespaces", 200] }, () => ListChannelNamespacesRequest$, () => ListChannelNamespacesResponse$
2100
- ];
2101
- var ListDataSources$ = [9, n0, _LDS,
2102
- { [_h]: ["GET", "/v1/apis/{apiId}/datasources", 200] }, () => ListDataSourcesRequest$, () => ListDataSourcesResponse$
2103
- ];
2104
- var ListDomainNames$ = [9, n0, _LDN,
2105
- { [_h]: ["GET", "/v1/domainnames", 200] }, () => ListDomainNamesRequest$, () => ListDomainNamesResponse$
2106
- ];
2107
- var ListFunctions$ = [9, n0, _LF,
2108
- { [_h]: ["GET", "/v1/apis/{apiId}/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
2109
- ];
2110
- var ListGraphqlApis$ = [9, n0, _LGA,
2111
- { [_h]: ["GET", "/v1/apis", 200] }, () => ListGraphqlApisRequest$, () => ListGraphqlApisResponse$
2112
- ];
2113
- var ListResolvers$ = [9, n0, _LR,
2114
- { [_h]: ["GET", "/v1/apis/{apiId}/types/{typeName}/resolvers", 200] }, () => ListResolversRequest$, () => ListResolversResponse$
2115
- ];
2116
- var ListResolversByFunction$ = [9, n0, _LRBF,
2117
- { [_h]: ["GET", "/v1/apis/{apiId}/functions/{functionId}/resolvers", 200] }, () => ListResolversByFunctionRequest$, () => ListResolversByFunctionResponse$
2118
- ];
2119
- var ListSourceApiAssociations$ = [9, n0, _LSAA,
2120
- { [_h]: ["GET", "/v1/apis/{apiId}/sourceApiAssociations", 200] }, () => ListSourceApiAssociationsRequest$, () => ListSourceApiAssociationsResponse$
2121
- ];
2122
- var ListTagsForResource$ = [9, n0, _LTFR,
2123
- { [_h]: ["GET", "/v1/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
2124
- ];
2125
- var ListTypes$ = [9, n0, _LT,
2126
- { [_h]: ["GET", "/v1/apis/{apiId}/types", 200] }, () => ListTypesRequest$, () => ListTypesResponse$
2127
- ];
2128
- var ListTypesByAssociation$ = [9, n0, _LTBA,
2129
- { [_h]: ["GET", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}/types", 200] }, () => ListTypesByAssociationRequest$, () => ListTypesByAssociationResponse$
2130
- ];
2131
- var PutGraphqlApiEnvironmentVariables$ = [9, n0, _PGAEV,
2132
- { [_h]: ["PUT", "/v1/apis/{apiId}/environmentVariables", 200] }, () => PutGraphqlApiEnvironmentVariablesRequest$, () => PutGraphqlApiEnvironmentVariablesResponse$
2133
- ];
2134
- var StartDataSourceIntrospection$ = [9, n0, _SDSI,
2135
- { [_h]: ["POST", "/v1/datasources/introspections", 200] }, () => StartDataSourceIntrospectionRequest$, () => StartDataSourceIntrospectionResponse$
2136
- ];
2137
- var StartSchemaCreation$ = [9, n0, _SSC,
2138
- { [_h]: ["POST", "/v1/apis/{apiId}/schemacreation", 200] }, () => StartSchemaCreationRequest$, () => StartSchemaCreationResponse$
2139
- ];
2140
- var StartSchemaMerge$ = [9, n0, _SSM,
2141
- { [_h]: ["POST", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}/merge", 200] }, () => StartSchemaMergeRequest$, () => StartSchemaMergeResponse$
2142
- ];
2143
- var TagResource$ = [9, n0, _TR,
2144
- { [_h]: ["POST", "/v1/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
2145
- ];
2146
- var UntagResource$ = [9, n0, _UR,
2147
- { [_h]: ["DELETE", "/v1/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
2148
- ];
2149
- var UpdateApi$ = [9, n0, _UA,
2150
- { [_h]: ["POST", "/v2/apis/{apiId}", 200] }, () => UpdateApiRequest$, () => UpdateApiResponse$
2151
- ];
2152
- var UpdateApiCache$ = [9, n0, _UAC,
2153
- { [_h]: ["POST", "/v1/apis/{apiId}/ApiCaches/update", 200] }, () => UpdateApiCacheRequest$, () => UpdateApiCacheResponse$
2154
- ];
2155
- var UpdateApiKey$ = [9, n0, _UAK,
2156
- { [_h]: ["POST", "/v1/apis/{apiId}/apikeys/{id}", 200] }, () => UpdateApiKeyRequest$, () => UpdateApiKeyResponse$
2157
- ];
2158
- var UpdateChannelNamespace$ = [9, n0, _UCN,
2159
- { [_h]: ["POST", "/v2/apis/{apiId}/channelNamespaces/{name}", 200] }, () => UpdateChannelNamespaceRequest$, () => UpdateChannelNamespaceResponse$
2160
- ];
2161
- var UpdateDataSource$ = [9, n0, _UDS,
2162
- { [_h]: ["POST", "/v1/apis/{apiId}/datasources/{name}", 200] }, () => UpdateDataSourceRequest$, () => UpdateDataSourceResponse$
2163
- ];
2164
- var UpdateDomainName$ = [9, n0, _UDN,
2165
- { [_h]: ["POST", "/v1/domainnames/{domainName}", 200] }, () => UpdateDomainNameRequest$, () => UpdateDomainNameResponse$
2166
- ];
2167
- var UpdateFunction$ = [9, n0, _UF,
2168
- { [_h]: ["POST", "/v1/apis/{apiId}/functions/{functionId}", 200] }, () => UpdateFunctionRequest$, () => UpdateFunctionResponse$
2169
- ];
2170
- var UpdateGraphqlApi$ = [9, n0, _UGA,
2171
- { [_h]: ["POST", "/v1/apis/{apiId}", 200] }, () => UpdateGraphqlApiRequest$, () => UpdateGraphqlApiResponse$
2172
- ];
2173
- var UpdateResolver$ = [9, n0, _URp,
2174
- { [_h]: ["POST", "/v1/apis/{apiId}/types/{typeName}/resolvers/{fieldName}", 200] }, () => UpdateResolverRequest$, () => UpdateResolverResponse$
2175
- ];
2176
- var UpdateSourceApiAssociation$ = [9, n0, _USAA,
2177
- { [_h]: ["POST", "/v1/mergedApis/{mergedApiIdentifier}/sourceApiAssociations/{associationId}", 200] }, () => UpdateSourceApiAssociationRequest$, () => UpdateSourceApiAssociationResponse$
2178
- ];
2179
- var UpdateType$ = [9, n0, _UT,
2180
- { [_h]: ["POST", "/v1/apis/{apiId}/types/{typeName}", 200] }, () => UpdateTypeRequest$, () => UpdateTypeResponse$
2181
- ];
2182
-
2183
116
  class AssociateApiCommand extends smithyClient.Command
2184
117
  .classBuilder()
2185
118
  .ep(commonParams)
@@ -2188,7 +121,7 @@ class AssociateApiCommand extends smithyClient.Command
2188
121
  })
2189
122
  .s("AWSDeepdishControlPlaneService", "AssociateApi", {})
2190
123
  .n("AppSyncClient", "AssociateApiCommand")
2191
- .sc(AssociateApi$)
124
+ .sc(schemas_0.AssociateApi$)
2192
125
  .build() {
2193
126
  }
2194
127
 
@@ -2200,7 +133,7 @@ class AssociateMergedGraphqlApiCommand extends smithyClient.Command
2200
133
  })
2201
134
  .s("AWSDeepdishControlPlaneService", "AssociateMergedGraphqlApi", {})
2202
135
  .n("AppSyncClient", "AssociateMergedGraphqlApiCommand")
2203
- .sc(AssociateMergedGraphqlApi$)
136
+ .sc(schemas_0.AssociateMergedGraphqlApi$)
2204
137
  .build() {
2205
138
  }
2206
139
 
@@ -2212,7 +145,7 @@ class AssociateSourceGraphqlApiCommand extends smithyClient.Command
2212
145
  })
2213
146
  .s("AWSDeepdishControlPlaneService", "AssociateSourceGraphqlApi", {})
2214
147
  .n("AppSyncClient", "AssociateSourceGraphqlApiCommand")
2215
- .sc(AssociateSourceGraphqlApi$)
148
+ .sc(schemas_0.AssociateSourceGraphqlApi$)
2216
149
  .build() {
2217
150
  }
2218
151
 
@@ -2224,7 +157,7 @@ class CreateApiCacheCommand extends smithyClient.Command
2224
157
  })
2225
158
  .s("AWSDeepdishControlPlaneService", "CreateApiCache", {})
2226
159
  .n("AppSyncClient", "CreateApiCacheCommand")
2227
- .sc(CreateApiCache$)
160
+ .sc(schemas_0.CreateApiCache$)
2228
161
  .build() {
2229
162
  }
2230
163
 
@@ -2236,7 +169,7 @@ class CreateApiCommand extends smithyClient.Command
2236
169
  })
2237
170
  .s("AWSDeepdishControlPlaneService", "CreateApi", {})
2238
171
  .n("AppSyncClient", "CreateApiCommand")
2239
- .sc(CreateApi$)
172
+ .sc(schemas_0.CreateApi$)
2240
173
  .build() {
2241
174
  }
2242
175
 
@@ -2248,7 +181,7 @@ class CreateApiKeyCommand extends smithyClient.Command
2248
181
  })
2249
182
  .s("AWSDeepdishControlPlaneService", "CreateApiKey", {})
2250
183
  .n("AppSyncClient", "CreateApiKeyCommand")
2251
- .sc(CreateApiKey$)
184
+ .sc(schemas_0.CreateApiKey$)
2252
185
  .build() {
2253
186
  }
2254
187
 
@@ -2260,7 +193,7 @@ class CreateChannelNamespaceCommand extends smithyClient.Command
2260
193
  })
2261
194
  .s("AWSDeepdishControlPlaneService", "CreateChannelNamespace", {})
2262
195
  .n("AppSyncClient", "CreateChannelNamespaceCommand")
2263
- .sc(CreateChannelNamespace$)
196
+ .sc(schemas_0.CreateChannelNamespace$)
2264
197
  .build() {
2265
198
  }
2266
199
 
@@ -2272,7 +205,7 @@ class CreateDataSourceCommand extends smithyClient.Command
2272
205
  })
2273
206
  .s("AWSDeepdishControlPlaneService", "CreateDataSource", {})
2274
207
  .n("AppSyncClient", "CreateDataSourceCommand")
2275
- .sc(CreateDataSource$)
208
+ .sc(schemas_0.CreateDataSource$)
2276
209
  .build() {
2277
210
  }
2278
211
 
@@ -2284,7 +217,7 @@ class CreateDomainNameCommand extends smithyClient.Command
2284
217
  })
2285
218
  .s("AWSDeepdishControlPlaneService", "CreateDomainName", {})
2286
219
  .n("AppSyncClient", "CreateDomainNameCommand")
2287
- .sc(CreateDomainName$)
220
+ .sc(schemas_0.CreateDomainName$)
2288
221
  .build() {
2289
222
  }
2290
223
 
@@ -2296,7 +229,7 @@ class CreateFunctionCommand extends smithyClient.Command
2296
229
  })
2297
230
  .s("AWSDeepdishControlPlaneService", "CreateFunction", {})
2298
231
  .n("AppSyncClient", "CreateFunctionCommand")
2299
- .sc(CreateFunction$)
232
+ .sc(schemas_0.CreateFunction$)
2300
233
  .build() {
2301
234
  }
2302
235
 
@@ -2308,7 +241,7 @@ class CreateGraphqlApiCommand extends smithyClient.Command
2308
241
  })
2309
242
  .s("AWSDeepdishControlPlaneService", "CreateGraphqlApi", {})
2310
243
  .n("AppSyncClient", "CreateGraphqlApiCommand")
2311
- .sc(CreateGraphqlApi$)
244
+ .sc(schemas_0.CreateGraphqlApi$)
2312
245
  .build() {
2313
246
  }
2314
247
 
@@ -2320,7 +253,7 @@ class CreateResolverCommand extends smithyClient.Command
2320
253
  })
2321
254
  .s("AWSDeepdishControlPlaneService", "CreateResolver", {})
2322
255
  .n("AppSyncClient", "CreateResolverCommand")
2323
- .sc(CreateResolver$)
256
+ .sc(schemas_0.CreateResolver$)
2324
257
  .build() {
2325
258
  }
2326
259
 
@@ -2332,7 +265,7 @@ class CreateTypeCommand extends smithyClient.Command
2332
265
  })
2333
266
  .s("AWSDeepdishControlPlaneService", "CreateType", {})
2334
267
  .n("AppSyncClient", "CreateTypeCommand")
2335
- .sc(CreateType$)
268
+ .sc(schemas_0.CreateType$)
2336
269
  .build() {
2337
270
  }
2338
271
 
@@ -2344,7 +277,7 @@ class DeleteApiCacheCommand extends smithyClient.Command
2344
277
  })
2345
278
  .s("AWSDeepdishControlPlaneService", "DeleteApiCache", {})
2346
279
  .n("AppSyncClient", "DeleteApiCacheCommand")
2347
- .sc(DeleteApiCache$)
280
+ .sc(schemas_0.DeleteApiCache$)
2348
281
  .build() {
2349
282
  }
2350
283
 
@@ -2356,7 +289,7 @@ class DeleteApiCommand extends smithyClient.Command
2356
289
  })
2357
290
  .s("AWSDeepdishControlPlaneService", "DeleteApi", {})
2358
291
  .n("AppSyncClient", "DeleteApiCommand")
2359
- .sc(DeleteApi$)
292
+ .sc(schemas_0.DeleteApi$)
2360
293
  .build() {
2361
294
  }
2362
295
 
@@ -2368,7 +301,7 @@ class DeleteApiKeyCommand extends smithyClient.Command
2368
301
  })
2369
302
  .s("AWSDeepdishControlPlaneService", "DeleteApiKey", {})
2370
303
  .n("AppSyncClient", "DeleteApiKeyCommand")
2371
- .sc(DeleteApiKey$)
304
+ .sc(schemas_0.DeleteApiKey$)
2372
305
  .build() {
2373
306
  }
2374
307
 
@@ -2380,7 +313,7 @@ class DeleteChannelNamespaceCommand extends smithyClient.Command
2380
313
  })
2381
314
  .s("AWSDeepdishControlPlaneService", "DeleteChannelNamespace", {})
2382
315
  .n("AppSyncClient", "DeleteChannelNamespaceCommand")
2383
- .sc(DeleteChannelNamespace$)
316
+ .sc(schemas_0.DeleteChannelNamespace$)
2384
317
  .build() {
2385
318
  }
2386
319
 
@@ -2392,7 +325,7 @@ class DeleteDataSourceCommand extends smithyClient.Command
2392
325
  })
2393
326
  .s("AWSDeepdishControlPlaneService", "DeleteDataSource", {})
2394
327
  .n("AppSyncClient", "DeleteDataSourceCommand")
2395
- .sc(DeleteDataSource$)
328
+ .sc(schemas_0.DeleteDataSource$)
2396
329
  .build() {
2397
330
  }
2398
331
 
@@ -2404,7 +337,7 @@ class DeleteDomainNameCommand extends smithyClient.Command
2404
337
  })
2405
338
  .s("AWSDeepdishControlPlaneService", "DeleteDomainName", {})
2406
339
  .n("AppSyncClient", "DeleteDomainNameCommand")
2407
- .sc(DeleteDomainName$)
340
+ .sc(schemas_0.DeleteDomainName$)
2408
341
  .build() {
2409
342
  }
2410
343
 
@@ -2416,7 +349,7 @@ class DeleteFunctionCommand extends smithyClient.Command
2416
349
  })
2417
350
  .s("AWSDeepdishControlPlaneService", "DeleteFunction", {})
2418
351
  .n("AppSyncClient", "DeleteFunctionCommand")
2419
- .sc(DeleteFunction$)
352
+ .sc(schemas_0.DeleteFunction$)
2420
353
  .build() {
2421
354
  }
2422
355
 
@@ -2428,7 +361,7 @@ class DeleteGraphqlApiCommand extends smithyClient.Command
2428
361
  })
2429
362
  .s("AWSDeepdishControlPlaneService", "DeleteGraphqlApi", {})
2430
363
  .n("AppSyncClient", "DeleteGraphqlApiCommand")
2431
- .sc(DeleteGraphqlApi$)
364
+ .sc(schemas_0.DeleteGraphqlApi$)
2432
365
  .build() {
2433
366
  }
2434
367
 
@@ -2440,7 +373,7 @@ class DeleteResolverCommand extends smithyClient.Command
2440
373
  })
2441
374
  .s("AWSDeepdishControlPlaneService", "DeleteResolver", {})
2442
375
  .n("AppSyncClient", "DeleteResolverCommand")
2443
- .sc(DeleteResolver$)
376
+ .sc(schemas_0.DeleteResolver$)
2444
377
  .build() {
2445
378
  }
2446
379
 
@@ -2452,7 +385,7 @@ class DeleteTypeCommand extends smithyClient.Command
2452
385
  })
2453
386
  .s("AWSDeepdishControlPlaneService", "DeleteType", {})
2454
387
  .n("AppSyncClient", "DeleteTypeCommand")
2455
- .sc(DeleteType$)
388
+ .sc(schemas_0.DeleteType$)
2456
389
  .build() {
2457
390
  }
2458
391
 
@@ -2464,7 +397,7 @@ class DisassociateApiCommand extends smithyClient.Command
2464
397
  })
2465
398
  .s("AWSDeepdishControlPlaneService", "DisassociateApi", {})
2466
399
  .n("AppSyncClient", "DisassociateApiCommand")
2467
- .sc(DisassociateApi$)
400
+ .sc(schemas_0.DisassociateApi$)
2468
401
  .build() {
2469
402
  }
2470
403
 
@@ -2476,7 +409,7 @@ class DisassociateMergedGraphqlApiCommand extends smithyClient.Command
2476
409
  })
2477
410
  .s("AWSDeepdishControlPlaneService", "DisassociateMergedGraphqlApi", {})
2478
411
  .n("AppSyncClient", "DisassociateMergedGraphqlApiCommand")
2479
- .sc(DisassociateMergedGraphqlApi$)
412
+ .sc(schemas_0.DisassociateMergedGraphqlApi$)
2480
413
  .build() {
2481
414
  }
2482
415
 
@@ -2488,7 +421,7 @@ class DisassociateSourceGraphqlApiCommand extends smithyClient.Command
2488
421
  })
2489
422
  .s("AWSDeepdishControlPlaneService", "DisassociateSourceGraphqlApi", {})
2490
423
  .n("AppSyncClient", "DisassociateSourceGraphqlApiCommand")
2491
- .sc(DisassociateSourceGraphqlApi$)
424
+ .sc(schemas_0.DisassociateSourceGraphqlApi$)
2492
425
  .build() {
2493
426
  }
2494
427
 
@@ -2500,7 +433,7 @@ class EvaluateCodeCommand extends smithyClient.Command
2500
433
  })
2501
434
  .s("AWSDeepdishControlPlaneService", "EvaluateCode", {})
2502
435
  .n("AppSyncClient", "EvaluateCodeCommand")
2503
- .sc(EvaluateCode$)
436
+ .sc(schemas_0.EvaluateCode$)
2504
437
  .build() {
2505
438
  }
2506
439
 
@@ -2512,7 +445,7 @@ class EvaluateMappingTemplateCommand extends smithyClient.Command
2512
445
  })
2513
446
  .s("AWSDeepdishControlPlaneService", "EvaluateMappingTemplate", {})
2514
447
  .n("AppSyncClient", "EvaluateMappingTemplateCommand")
2515
- .sc(EvaluateMappingTemplate$)
448
+ .sc(schemas_0.EvaluateMappingTemplate$)
2516
449
  .build() {
2517
450
  }
2518
451
 
@@ -2524,7 +457,7 @@ class FlushApiCacheCommand extends smithyClient.Command
2524
457
  })
2525
458
  .s("AWSDeepdishControlPlaneService", "FlushApiCache", {})
2526
459
  .n("AppSyncClient", "FlushApiCacheCommand")
2527
- .sc(FlushApiCache$)
460
+ .sc(schemas_0.FlushApiCache$)
2528
461
  .build() {
2529
462
  }
2530
463
 
@@ -2536,7 +469,7 @@ class GetApiAssociationCommand extends smithyClient.Command
2536
469
  })
2537
470
  .s("AWSDeepdishControlPlaneService", "GetApiAssociation", {})
2538
471
  .n("AppSyncClient", "GetApiAssociationCommand")
2539
- .sc(GetApiAssociation$)
472
+ .sc(schemas_0.GetApiAssociation$)
2540
473
  .build() {
2541
474
  }
2542
475
 
@@ -2548,7 +481,7 @@ class GetApiCacheCommand extends smithyClient.Command
2548
481
  })
2549
482
  .s("AWSDeepdishControlPlaneService", "GetApiCache", {})
2550
483
  .n("AppSyncClient", "GetApiCacheCommand")
2551
- .sc(GetApiCache$)
484
+ .sc(schemas_0.GetApiCache$)
2552
485
  .build() {
2553
486
  }
2554
487
 
@@ -2560,7 +493,7 @@ class GetApiCommand extends smithyClient.Command
2560
493
  })
2561
494
  .s("AWSDeepdishControlPlaneService", "GetApi", {})
2562
495
  .n("AppSyncClient", "GetApiCommand")
2563
- .sc(GetApi$)
496
+ .sc(schemas_0.GetApi$)
2564
497
  .build() {
2565
498
  }
2566
499
 
@@ -2572,7 +505,7 @@ class GetChannelNamespaceCommand extends smithyClient.Command
2572
505
  })
2573
506
  .s("AWSDeepdishControlPlaneService", "GetChannelNamespace", {})
2574
507
  .n("AppSyncClient", "GetChannelNamespaceCommand")
2575
- .sc(GetChannelNamespace$)
508
+ .sc(schemas_0.GetChannelNamespace$)
2576
509
  .build() {
2577
510
  }
2578
511
 
@@ -2584,7 +517,7 @@ class GetDataSourceCommand extends smithyClient.Command
2584
517
  })
2585
518
  .s("AWSDeepdishControlPlaneService", "GetDataSource", {})
2586
519
  .n("AppSyncClient", "GetDataSourceCommand")
2587
- .sc(GetDataSource$)
520
+ .sc(schemas_0.GetDataSource$)
2588
521
  .build() {
2589
522
  }
2590
523
 
@@ -2596,7 +529,7 @@ class GetDataSourceIntrospectionCommand extends smithyClient.Command
2596
529
  })
2597
530
  .s("AWSDeepdishControlPlaneService", "GetDataSourceIntrospection", {})
2598
531
  .n("AppSyncClient", "GetDataSourceIntrospectionCommand")
2599
- .sc(GetDataSourceIntrospection$)
532
+ .sc(schemas_0.GetDataSourceIntrospection$)
2600
533
  .build() {
2601
534
  }
2602
535
 
@@ -2608,7 +541,7 @@ class GetDomainNameCommand extends smithyClient.Command
2608
541
  })
2609
542
  .s("AWSDeepdishControlPlaneService", "GetDomainName", {})
2610
543
  .n("AppSyncClient", "GetDomainNameCommand")
2611
- .sc(GetDomainName$)
544
+ .sc(schemas_0.GetDomainName$)
2612
545
  .build() {
2613
546
  }
2614
547
 
@@ -2620,7 +553,7 @@ class GetFunctionCommand extends smithyClient.Command
2620
553
  })
2621
554
  .s("AWSDeepdishControlPlaneService", "GetFunction", {})
2622
555
  .n("AppSyncClient", "GetFunctionCommand")
2623
- .sc(GetFunction$)
556
+ .sc(schemas_0.GetFunction$)
2624
557
  .build() {
2625
558
  }
2626
559
 
@@ -2632,7 +565,7 @@ class GetGraphqlApiCommand extends smithyClient.Command
2632
565
  })
2633
566
  .s("AWSDeepdishControlPlaneService", "GetGraphqlApi", {})
2634
567
  .n("AppSyncClient", "GetGraphqlApiCommand")
2635
- .sc(GetGraphqlApi$)
568
+ .sc(schemas_0.GetGraphqlApi$)
2636
569
  .build() {
2637
570
  }
2638
571
 
@@ -2644,7 +577,7 @@ class GetGraphqlApiEnvironmentVariablesCommand extends smithyClient.Command
2644
577
  })
2645
578
  .s("AWSDeepdishControlPlaneService", "GetGraphqlApiEnvironmentVariables", {})
2646
579
  .n("AppSyncClient", "GetGraphqlApiEnvironmentVariablesCommand")
2647
- .sc(GetGraphqlApiEnvironmentVariables$)
580
+ .sc(schemas_0.GetGraphqlApiEnvironmentVariables$)
2648
581
  .build() {
2649
582
  }
2650
583
 
@@ -2656,7 +589,7 @@ class GetIntrospectionSchemaCommand extends smithyClient.Command
2656
589
  })
2657
590
  .s("AWSDeepdishControlPlaneService", "GetIntrospectionSchema", {})
2658
591
  .n("AppSyncClient", "GetIntrospectionSchemaCommand")
2659
- .sc(GetIntrospectionSchema$)
592
+ .sc(schemas_0.GetIntrospectionSchema$)
2660
593
  .build() {
2661
594
  }
2662
595
 
@@ -2668,7 +601,7 @@ class GetResolverCommand extends smithyClient.Command
2668
601
  })
2669
602
  .s("AWSDeepdishControlPlaneService", "GetResolver", {})
2670
603
  .n("AppSyncClient", "GetResolverCommand")
2671
- .sc(GetResolver$)
604
+ .sc(schemas_0.GetResolver$)
2672
605
  .build() {
2673
606
  }
2674
607
 
@@ -2680,7 +613,7 @@ class GetSchemaCreationStatusCommand extends smithyClient.Command
2680
613
  })
2681
614
  .s("AWSDeepdishControlPlaneService", "GetSchemaCreationStatus", {})
2682
615
  .n("AppSyncClient", "GetSchemaCreationStatusCommand")
2683
- .sc(GetSchemaCreationStatus$)
616
+ .sc(schemas_0.GetSchemaCreationStatus$)
2684
617
  .build() {
2685
618
  }
2686
619
 
@@ -2692,7 +625,7 @@ class GetSourceApiAssociationCommand extends smithyClient.Command
2692
625
  })
2693
626
  .s("AWSDeepdishControlPlaneService", "GetSourceApiAssociation", {})
2694
627
  .n("AppSyncClient", "GetSourceApiAssociationCommand")
2695
- .sc(GetSourceApiAssociation$)
628
+ .sc(schemas_0.GetSourceApiAssociation$)
2696
629
  .build() {
2697
630
  }
2698
631
 
@@ -2704,7 +637,7 @@ class GetTypeCommand extends smithyClient.Command
2704
637
  })
2705
638
  .s("AWSDeepdishControlPlaneService", "GetType", {})
2706
639
  .n("AppSyncClient", "GetTypeCommand")
2707
- .sc(GetType$)
640
+ .sc(schemas_0.GetType$)
2708
641
  .build() {
2709
642
  }
2710
643
 
@@ -2716,7 +649,7 @@ class ListApiKeysCommand extends smithyClient.Command
2716
649
  })
2717
650
  .s("AWSDeepdishControlPlaneService", "ListApiKeys", {})
2718
651
  .n("AppSyncClient", "ListApiKeysCommand")
2719
- .sc(ListApiKeys$)
652
+ .sc(schemas_0.ListApiKeys$)
2720
653
  .build() {
2721
654
  }
2722
655
 
@@ -2728,7 +661,7 @@ class ListApisCommand extends smithyClient.Command
2728
661
  })
2729
662
  .s("AWSDeepdishControlPlaneService", "ListApis", {})
2730
663
  .n("AppSyncClient", "ListApisCommand")
2731
- .sc(ListApis$)
664
+ .sc(schemas_0.ListApis$)
2732
665
  .build() {
2733
666
  }
2734
667
 
@@ -2740,7 +673,7 @@ class ListChannelNamespacesCommand extends smithyClient.Command
2740
673
  })
2741
674
  .s("AWSDeepdishControlPlaneService", "ListChannelNamespaces", {})
2742
675
  .n("AppSyncClient", "ListChannelNamespacesCommand")
2743
- .sc(ListChannelNamespaces$)
676
+ .sc(schemas_0.ListChannelNamespaces$)
2744
677
  .build() {
2745
678
  }
2746
679
 
@@ -2752,7 +685,7 @@ class ListDataSourcesCommand extends smithyClient.Command
2752
685
  })
2753
686
  .s("AWSDeepdishControlPlaneService", "ListDataSources", {})
2754
687
  .n("AppSyncClient", "ListDataSourcesCommand")
2755
- .sc(ListDataSources$)
688
+ .sc(schemas_0.ListDataSources$)
2756
689
  .build() {
2757
690
  }
2758
691
 
@@ -2764,7 +697,7 @@ class ListDomainNamesCommand extends smithyClient.Command
2764
697
  })
2765
698
  .s("AWSDeepdishControlPlaneService", "ListDomainNames", {})
2766
699
  .n("AppSyncClient", "ListDomainNamesCommand")
2767
- .sc(ListDomainNames$)
700
+ .sc(schemas_0.ListDomainNames$)
2768
701
  .build() {
2769
702
  }
2770
703
 
@@ -2776,7 +709,7 @@ class ListFunctionsCommand extends smithyClient.Command
2776
709
  })
2777
710
  .s("AWSDeepdishControlPlaneService", "ListFunctions", {})
2778
711
  .n("AppSyncClient", "ListFunctionsCommand")
2779
- .sc(ListFunctions$)
712
+ .sc(schemas_0.ListFunctions$)
2780
713
  .build() {
2781
714
  }
2782
715
 
@@ -2788,7 +721,7 @@ class ListGraphqlApisCommand extends smithyClient.Command
2788
721
  })
2789
722
  .s("AWSDeepdishControlPlaneService", "ListGraphqlApis", {})
2790
723
  .n("AppSyncClient", "ListGraphqlApisCommand")
2791
- .sc(ListGraphqlApis$)
724
+ .sc(schemas_0.ListGraphqlApis$)
2792
725
  .build() {
2793
726
  }
2794
727
 
@@ -2800,7 +733,7 @@ class ListResolversByFunctionCommand extends smithyClient.Command
2800
733
  })
2801
734
  .s("AWSDeepdishControlPlaneService", "ListResolversByFunction", {})
2802
735
  .n("AppSyncClient", "ListResolversByFunctionCommand")
2803
- .sc(ListResolversByFunction$)
736
+ .sc(schemas_0.ListResolversByFunction$)
2804
737
  .build() {
2805
738
  }
2806
739
 
@@ -2812,7 +745,7 @@ class ListResolversCommand extends smithyClient.Command
2812
745
  })
2813
746
  .s("AWSDeepdishControlPlaneService", "ListResolvers", {})
2814
747
  .n("AppSyncClient", "ListResolversCommand")
2815
- .sc(ListResolvers$)
748
+ .sc(schemas_0.ListResolvers$)
2816
749
  .build() {
2817
750
  }
2818
751
 
@@ -2824,7 +757,7 @@ class ListSourceApiAssociationsCommand extends smithyClient.Command
2824
757
  })
2825
758
  .s("AWSDeepdishControlPlaneService", "ListSourceApiAssociations", {})
2826
759
  .n("AppSyncClient", "ListSourceApiAssociationsCommand")
2827
- .sc(ListSourceApiAssociations$)
760
+ .sc(schemas_0.ListSourceApiAssociations$)
2828
761
  .build() {
2829
762
  }
2830
763
 
@@ -2836,7 +769,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2836
769
  })
2837
770
  .s("AWSDeepdishControlPlaneService", "ListTagsForResource", {})
2838
771
  .n("AppSyncClient", "ListTagsForResourceCommand")
2839
- .sc(ListTagsForResource$)
772
+ .sc(schemas_0.ListTagsForResource$)
2840
773
  .build() {
2841
774
  }
2842
775
 
@@ -2848,7 +781,7 @@ class ListTypesByAssociationCommand extends smithyClient.Command
2848
781
  })
2849
782
  .s("AWSDeepdishControlPlaneService", "ListTypesByAssociation", {})
2850
783
  .n("AppSyncClient", "ListTypesByAssociationCommand")
2851
- .sc(ListTypesByAssociation$)
784
+ .sc(schemas_0.ListTypesByAssociation$)
2852
785
  .build() {
2853
786
  }
2854
787
 
@@ -2860,7 +793,7 @@ class ListTypesCommand extends smithyClient.Command
2860
793
  })
2861
794
  .s("AWSDeepdishControlPlaneService", "ListTypes", {})
2862
795
  .n("AppSyncClient", "ListTypesCommand")
2863
- .sc(ListTypes$)
796
+ .sc(schemas_0.ListTypes$)
2864
797
  .build() {
2865
798
  }
2866
799
 
@@ -2872,7 +805,7 @@ class PutGraphqlApiEnvironmentVariablesCommand extends smithyClient.Command
2872
805
  })
2873
806
  .s("AWSDeepdishControlPlaneService", "PutGraphqlApiEnvironmentVariables", {})
2874
807
  .n("AppSyncClient", "PutGraphqlApiEnvironmentVariablesCommand")
2875
- .sc(PutGraphqlApiEnvironmentVariables$)
808
+ .sc(schemas_0.PutGraphqlApiEnvironmentVariables$)
2876
809
  .build() {
2877
810
  }
2878
811
 
@@ -2884,7 +817,7 @@ class StartDataSourceIntrospectionCommand extends smithyClient.Command
2884
817
  })
2885
818
  .s("AWSDeepdishControlPlaneService", "StartDataSourceIntrospection", {})
2886
819
  .n("AppSyncClient", "StartDataSourceIntrospectionCommand")
2887
- .sc(StartDataSourceIntrospection$)
820
+ .sc(schemas_0.StartDataSourceIntrospection$)
2888
821
  .build() {
2889
822
  }
2890
823
 
@@ -2896,7 +829,7 @@ class StartSchemaCreationCommand extends smithyClient.Command
2896
829
  })
2897
830
  .s("AWSDeepdishControlPlaneService", "StartSchemaCreation", {})
2898
831
  .n("AppSyncClient", "StartSchemaCreationCommand")
2899
- .sc(StartSchemaCreation$)
832
+ .sc(schemas_0.StartSchemaCreation$)
2900
833
  .build() {
2901
834
  }
2902
835
 
@@ -2908,7 +841,7 @@ class StartSchemaMergeCommand extends smithyClient.Command
2908
841
  })
2909
842
  .s("AWSDeepdishControlPlaneService", "StartSchemaMerge", {})
2910
843
  .n("AppSyncClient", "StartSchemaMergeCommand")
2911
- .sc(StartSchemaMerge$)
844
+ .sc(schemas_0.StartSchemaMerge$)
2912
845
  .build() {
2913
846
  }
2914
847
 
@@ -2920,7 +853,7 @@ class TagResourceCommand extends smithyClient.Command
2920
853
  })
2921
854
  .s("AWSDeepdishControlPlaneService", "TagResource", {})
2922
855
  .n("AppSyncClient", "TagResourceCommand")
2923
- .sc(TagResource$)
856
+ .sc(schemas_0.TagResource$)
2924
857
  .build() {
2925
858
  }
2926
859
 
@@ -2932,7 +865,7 @@ class UntagResourceCommand extends smithyClient.Command
2932
865
  })
2933
866
  .s("AWSDeepdishControlPlaneService", "UntagResource", {})
2934
867
  .n("AppSyncClient", "UntagResourceCommand")
2935
- .sc(UntagResource$)
868
+ .sc(schemas_0.UntagResource$)
2936
869
  .build() {
2937
870
  }
2938
871
 
@@ -2944,7 +877,7 @@ class UpdateApiCacheCommand extends smithyClient.Command
2944
877
  })
2945
878
  .s("AWSDeepdishControlPlaneService", "UpdateApiCache", {})
2946
879
  .n("AppSyncClient", "UpdateApiCacheCommand")
2947
- .sc(UpdateApiCache$)
880
+ .sc(schemas_0.UpdateApiCache$)
2948
881
  .build() {
2949
882
  }
2950
883
 
@@ -2956,7 +889,7 @@ class UpdateApiCommand extends smithyClient.Command
2956
889
  })
2957
890
  .s("AWSDeepdishControlPlaneService", "UpdateApi", {})
2958
891
  .n("AppSyncClient", "UpdateApiCommand")
2959
- .sc(UpdateApi$)
892
+ .sc(schemas_0.UpdateApi$)
2960
893
  .build() {
2961
894
  }
2962
895
 
@@ -2968,7 +901,7 @@ class UpdateApiKeyCommand extends smithyClient.Command
2968
901
  })
2969
902
  .s("AWSDeepdishControlPlaneService", "UpdateApiKey", {})
2970
903
  .n("AppSyncClient", "UpdateApiKeyCommand")
2971
- .sc(UpdateApiKey$)
904
+ .sc(schemas_0.UpdateApiKey$)
2972
905
  .build() {
2973
906
  }
2974
907
 
@@ -2980,7 +913,7 @@ class UpdateChannelNamespaceCommand extends smithyClient.Command
2980
913
  })
2981
914
  .s("AWSDeepdishControlPlaneService", "UpdateChannelNamespace", {})
2982
915
  .n("AppSyncClient", "UpdateChannelNamespaceCommand")
2983
- .sc(UpdateChannelNamespace$)
916
+ .sc(schemas_0.UpdateChannelNamespace$)
2984
917
  .build() {
2985
918
  }
2986
919
 
@@ -2992,7 +925,7 @@ class UpdateDataSourceCommand extends smithyClient.Command
2992
925
  })
2993
926
  .s("AWSDeepdishControlPlaneService", "UpdateDataSource", {})
2994
927
  .n("AppSyncClient", "UpdateDataSourceCommand")
2995
- .sc(UpdateDataSource$)
928
+ .sc(schemas_0.UpdateDataSource$)
2996
929
  .build() {
2997
930
  }
2998
931
 
@@ -3004,7 +937,7 @@ class UpdateDomainNameCommand extends smithyClient.Command
3004
937
  })
3005
938
  .s("AWSDeepdishControlPlaneService", "UpdateDomainName", {})
3006
939
  .n("AppSyncClient", "UpdateDomainNameCommand")
3007
- .sc(UpdateDomainName$)
940
+ .sc(schemas_0.UpdateDomainName$)
3008
941
  .build() {
3009
942
  }
3010
943
 
@@ -3016,7 +949,7 @@ class UpdateFunctionCommand extends smithyClient.Command
3016
949
  })
3017
950
  .s("AWSDeepdishControlPlaneService", "UpdateFunction", {})
3018
951
  .n("AppSyncClient", "UpdateFunctionCommand")
3019
- .sc(UpdateFunction$)
952
+ .sc(schemas_0.UpdateFunction$)
3020
953
  .build() {
3021
954
  }
3022
955
 
@@ -3028,7 +961,7 @@ class UpdateGraphqlApiCommand extends smithyClient.Command
3028
961
  })
3029
962
  .s("AWSDeepdishControlPlaneService", "UpdateGraphqlApi", {})
3030
963
  .n("AppSyncClient", "UpdateGraphqlApiCommand")
3031
- .sc(UpdateGraphqlApi$)
964
+ .sc(schemas_0.UpdateGraphqlApi$)
3032
965
  .build() {
3033
966
  }
3034
967
 
@@ -3040,7 +973,7 @@ class UpdateResolverCommand extends smithyClient.Command
3040
973
  })
3041
974
  .s("AWSDeepdishControlPlaneService", "UpdateResolver", {})
3042
975
  .n("AppSyncClient", "UpdateResolverCommand")
3043
- .sc(UpdateResolver$)
976
+ .sc(schemas_0.UpdateResolver$)
3044
977
  .build() {
3045
978
  }
3046
979
 
@@ -3052,7 +985,7 @@ class UpdateSourceApiAssociationCommand extends smithyClient.Command
3052
985
  })
3053
986
  .s("AWSDeepdishControlPlaneService", "UpdateSourceApiAssociation", {})
3054
987
  .n("AppSyncClient", "UpdateSourceApiAssociationCommand")
3055
- .sc(UpdateSourceApiAssociation$)
988
+ .sc(schemas_0.UpdateSourceApiAssociation$)
3056
989
  .build() {
3057
990
  }
3058
991
 
@@ -3064,7 +997,7 @@ class UpdateTypeCommand extends smithyClient.Command
3064
997
  })
3065
998
  .s("AWSDeepdishControlPlaneService", "UpdateType", {})
3066
999
  .n("AppSyncClient", "UpdateTypeCommand")
3067
- .sc(UpdateType$)
1000
+ .sc(schemas_0.UpdateType$)
3068
1001
  .build() {
3069
1002
  }
3070
1003
 
@@ -3374,423 +1307,120 @@ Object.defineProperty(exports, "__Client", {
3374
1307
  enumerable: true,
3375
1308
  get: function () { return smithyClient.Client; }
3376
1309
  });
3377
- exports.AccessDeniedException = AccessDeniedException;
3378
- exports.AccessDeniedException$ = AccessDeniedException$;
3379
- exports.AdditionalAuthenticationProvider$ = AdditionalAuthenticationProvider$;
3380
- exports.Api$ = Api$;
3381
- exports.ApiAssociation$ = ApiAssociation$;
3382
- exports.ApiCache$ = ApiCache$;
1310
+ Object.defineProperty(exports, "AppSyncServiceException", {
1311
+ enumerable: true,
1312
+ get: function () { return AppSyncServiceException.AppSyncServiceException; }
1313
+ });
3383
1314
  exports.ApiCacheStatus = ApiCacheStatus;
3384
1315
  exports.ApiCacheType = ApiCacheType;
3385
1316
  exports.ApiCachingBehavior = ApiCachingBehavior;
3386
- exports.ApiKey$ = ApiKey$;
3387
- exports.ApiKeyLimitExceededException = ApiKeyLimitExceededException;
3388
- exports.ApiKeyLimitExceededException$ = ApiKeyLimitExceededException$;
3389
- exports.ApiKeyValidityOutOfBoundsException = ApiKeyValidityOutOfBoundsException;
3390
- exports.ApiKeyValidityOutOfBoundsException$ = ApiKeyValidityOutOfBoundsException$;
3391
- exports.ApiLimitExceededException = ApiLimitExceededException;
3392
- exports.ApiLimitExceededException$ = ApiLimitExceededException$;
3393
1317
  exports.AppSync = AppSync;
3394
1318
  exports.AppSyncClient = AppSyncClient;
3395
- exports.AppSyncRuntime$ = AppSyncRuntime$;
3396
- exports.AppSyncServiceException = AppSyncServiceException;
3397
- exports.AppSyncServiceException$ = AppSyncServiceException$;
3398
- exports.AssociateApi$ = AssociateApi$;
3399
1319
  exports.AssociateApiCommand = AssociateApiCommand;
3400
- exports.AssociateApiRequest$ = AssociateApiRequest$;
3401
- exports.AssociateApiResponse$ = AssociateApiResponse$;
3402
- exports.AssociateMergedGraphqlApi$ = AssociateMergedGraphqlApi$;
3403
1320
  exports.AssociateMergedGraphqlApiCommand = AssociateMergedGraphqlApiCommand;
3404
- exports.AssociateMergedGraphqlApiRequest$ = AssociateMergedGraphqlApiRequest$;
3405
- exports.AssociateMergedGraphqlApiResponse$ = AssociateMergedGraphqlApiResponse$;
3406
- exports.AssociateSourceGraphqlApi$ = AssociateSourceGraphqlApi$;
3407
1321
  exports.AssociateSourceGraphqlApiCommand = AssociateSourceGraphqlApiCommand;
3408
- exports.AssociateSourceGraphqlApiRequest$ = AssociateSourceGraphqlApiRequest$;
3409
- exports.AssociateSourceGraphqlApiResponse$ = AssociateSourceGraphqlApiResponse$;
3410
1322
  exports.AssociationStatus = AssociationStatus;
3411
- exports.AuthMode$ = AuthMode$;
3412
- exports.AuthProvider$ = AuthProvider$;
3413
1323
  exports.AuthenticationType = AuthenticationType;
3414
- exports.AuthorizationConfig$ = AuthorizationConfig$;
3415
1324
  exports.AuthorizationType = AuthorizationType;
3416
- exports.AwsIamConfig$ = AwsIamConfig$;
3417
- exports.BadRequestDetail$ = BadRequestDetail$;
3418
- exports.BadRequestException = BadRequestException;
3419
- exports.BadRequestException$ = BadRequestException$;
3420
1325
  exports.BadRequestReason = BadRequestReason;
3421
1326
  exports.CacheHealthMetricsConfig = CacheHealthMetricsConfig;
3422
- exports.CachingConfig$ = CachingConfig$;
3423
- exports.ChannelNamespace$ = ChannelNamespace$;
3424
- exports.CodeError$ = CodeError$;
3425
- exports.CodeErrorLocation$ = CodeErrorLocation$;
3426
- exports.CognitoConfig$ = CognitoConfig$;
3427
- exports.CognitoUserPoolConfig$ = CognitoUserPoolConfig$;
3428
- exports.ConcurrentModificationException = ConcurrentModificationException;
3429
- exports.ConcurrentModificationException$ = ConcurrentModificationException$;
3430
1327
  exports.ConflictDetectionType = ConflictDetectionType;
3431
- exports.ConflictException = ConflictException;
3432
- exports.ConflictException$ = ConflictException$;
3433
1328
  exports.ConflictHandlerType = ConflictHandlerType;
3434
- exports.CreateApi$ = CreateApi$;
3435
- exports.CreateApiCache$ = CreateApiCache$;
3436
1329
  exports.CreateApiCacheCommand = CreateApiCacheCommand;
3437
- exports.CreateApiCacheRequest$ = CreateApiCacheRequest$;
3438
- exports.CreateApiCacheResponse$ = CreateApiCacheResponse$;
3439
1330
  exports.CreateApiCommand = CreateApiCommand;
3440
- exports.CreateApiKey$ = CreateApiKey$;
3441
1331
  exports.CreateApiKeyCommand = CreateApiKeyCommand;
3442
- exports.CreateApiKeyRequest$ = CreateApiKeyRequest$;
3443
- exports.CreateApiKeyResponse$ = CreateApiKeyResponse$;
3444
- exports.CreateApiRequest$ = CreateApiRequest$;
3445
- exports.CreateApiResponse$ = CreateApiResponse$;
3446
- exports.CreateChannelNamespace$ = CreateChannelNamespace$;
3447
1332
  exports.CreateChannelNamespaceCommand = CreateChannelNamespaceCommand;
3448
- exports.CreateChannelNamespaceRequest$ = CreateChannelNamespaceRequest$;
3449
- exports.CreateChannelNamespaceResponse$ = CreateChannelNamespaceResponse$;
3450
- exports.CreateDataSource$ = CreateDataSource$;
3451
1333
  exports.CreateDataSourceCommand = CreateDataSourceCommand;
3452
- exports.CreateDataSourceRequest$ = CreateDataSourceRequest$;
3453
- exports.CreateDataSourceResponse$ = CreateDataSourceResponse$;
3454
- exports.CreateDomainName$ = CreateDomainName$;
3455
1334
  exports.CreateDomainNameCommand = CreateDomainNameCommand;
3456
- exports.CreateDomainNameRequest$ = CreateDomainNameRequest$;
3457
- exports.CreateDomainNameResponse$ = CreateDomainNameResponse$;
3458
- exports.CreateFunction$ = CreateFunction$;
3459
1335
  exports.CreateFunctionCommand = CreateFunctionCommand;
3460
- exports.CreateFunctionRequest$ = CreateFunctionRequest$;
3461
- exports.CreateFunctionResponse$ = CreateFunctionResponse$;
3462
- exports.CreateGraphqlApi$ = CreateGraphqlApi$;
3463
1336
  exports.CreateGraphqlApiCommand = CreateGraphqlApiCommand;
3464
- exports.CreateGraphqlApiRequest$ = CreateGraphqlApiRequest$;
3465
- exports.CreateGraphqlApiResponse$ = CreateGraphqlApiResponse$;
3466
- exports.CreateResolver$ = CreateResolver$;
3467
1337
  exports.CreateResolverCommand = CreateResolverCommand;
3468
- exports.CreateResolverRequest$ = CreateResolverRequest$;
3469
- exports.CreateResolverResponse$ = CreateResolverResponse$;
3470
- exports.CreateType$ = CreateType$;
3471
1338
  exports.CreateTypeCommand = CreateTypeCommand;
3472
- exports.CreateTypeRequest$ = CreateTypeRequest$;
3473
- exports.CreateTypeResponse$ = CreateTypeResponse$;
3474
- exports.DataSource$ = DataSource$;
3475
- exports.DataSourceIntrospectionModel$ = DataSourceIntrospectionModel$;
3476
- exports.DataSourceIntrospectionModelField$ = DataSourceIntrospectionModelField$;
3477
- exports.DataSourceIntrospectionModelFieldType$ = DataSourceIntrospectionModelFieldType$;
3478
- exports.DataSourceIntrospectionModelIndex$ = DataSourceIntrospectionModelIndex$;
3479
- exports.DataSourceIntrospectionResult$ = DataSourceIntrospectionResult$;
3480
1339
  exports.DataSourceIntrospectionStatus = DataSourceIntrospectionStatus;
3481
1340
  exports.DataSourceLevelMetricsBehavior = DataSourceLevelMetricsBehavior;
3482
1341
  exports.DataSourceLevelMetricsConfig = DataSourceLevelMetricsConfig;
3483
1342
  exports.DataSourceType = DataSourceType;
3484
1343
  exports.DefaultAction = DefaultAction;
3485
- exports.DeleteApi$ = DeleteApi$;
3486
- exports.DeleteApiCache$ = DeleteApiCache$;
3487
1344
  exports.DeleteApiCacheCommand = DeleteApiCacheCommand;
3488
- exports.DeleteApiCacheRequest$ = DeleteApiCacheRequest$;
3489
- exports.DeleteApiCacheResponse$ = DeleteApiCacheResponse$;
3490
1345
  exports.DeleteApiCommand = DeleteApiCommand;
3491
- exports.DeleteApiKey$ = DeleteApiKey$;
3492
1346
  exports.DeleteApiKeyCommand = DeleteApiKeyCommand;
3493
- exports.DeleteApiKeyRequest$ = DeleteApiKeyRequest$;
3494
- exports.DeleteApiKeyResponse$ = DeleteApiKeyResponse$;
3495
- exports.DeleteApiRequest$ = DeleteApiRequest$;
3496
- exports.DeleteApiResponse$ = DeleteApiResponse$;
3497
- exports.DeleteChannelNamespace$ = DeleteChannelNamespace$;
3498
1347
  exports.DeleteChannelNamespaceCommand = DeleteChannelNamespaceCommand;
3499
- exports.DeleteChannelNamespaceRequest$ = DeleteChannelNamespaceRequest$;
3500
- exports.DeleteChannelNamespaceResponse$ = DeleteChannelNamespaceResponse$;
3501
- exports.DeleteDataSource$ = DeleteDataSource$;
3502
1348
  exports.DeleteDataSourceCommand = DeleteDataSourceCommand;
3503
- exports.DeleteDataSourceRequest$ = DeleteDataSourceRequest$;
3504
- exports.DeleteDataSourceResponse$ = DeleteDataSourceResponse$;
3505
- exports.DeleteDomainName$ = DeleteDomainName$;
3506
1349
  exports.DeleteDomainNameCommand = DeleteDomainNameCommand;
3507
- exports.DeleteDomainNameRequest$ = DeleteDomainNameRequest$;
3508
- exports.DeleteDomainNameResponse$ = DeleteDomainNameResponse$;
3509
- exports.DeleteFunction$ = DeleteFunction$;
3510
1350
  exports.DeleteFunctionCommand = DeleteFunctionCommand;
3511
- exports.DeleteFunctionRequest$ = DeleteFunctionRequest$;
3512
- exports.DeleteFunctionResponse$ = DeleteFunctionResponse$;
3513
- exports.DeleteGraphqlApi$ = DeleteGraphqlApi$;
3514
1351
  exports.DeleteGraphqlApiCommand = DeleteGraphqlApiCommand;
3515
- exports.DeleteGraphqlApiRequest$ = DeleteGraphqlApiRequest$;
3516
- exports.DeleteGraphqlApiResponse$ = DeleteGraphqlApiResponse$;
3517
- exports.DeleteResolver$ = DeleteResolver$;
3518
1352
  exports.DeleteResolverCommand = DeleteResolverCommand;
3519
- exports.DeleteResolverRequest$ = DeleteResolverRequest$;
3520
- exports.DeleteResolverResponse$ = DeleteResolverResponse$;
3521
- exports.DeleteType$ = DeleteType$;
3522
1353
  exports.DeleteTypeCommand = DeleteTypeCommand;
3523
- exports.DeleteTypeRequest$ = DeleteTypeRequest$;
3524
- exports.DeleteTypeResponse$ = DeleteTypeResponse$;
3525
- exports.DeltaSyncConfig$ = DeltaSyncConfig$;
3526
- exports.DisassociateApi$ = DisassociateApi$;
3527
1354
  exports.DisassociateApiCommand = DisassociateApiCommand;
3528
- exports.DisassociateApiRequest$ = DisassociateApiRequest$;
3529
- exports.DisassociateApiResponse$ = DisassociateApiResponse$;
3530
- exports.DisassociateMergedGraphqlApi$ = DisassociateMergedGraphqlApi$;
3531
1355
  exports.DisassociateMergedGraphqlApiCommand = DisassociateMergedGraphqlApiCommand;
3532
- exports.DisassociateMergedGraphqlApiRequest$ = DisassociateMergedGraphqlApiRequest$;
3533
- exports.DisassociateMergedGraphqlApiResponse$ = DisassociateMergedGraphqlApiResponse$;
3534
- exports.DisassociateSourceGraphqlApi$ = DisassociateSourceGraphqlApi$;
3535
1356
  exports.DisassociateSourceGraphqlApiCommand = DisassociateSourceGraphqlApiCommand;
3536
- exports.DisassociateSourceGraphqlApiRequest$ = DisassociateSourceGraphqlApiRequest$;
3537
- exports.DisassociateSourceGraphqlApiResponse$ = DisassociateSourceGraphqlApiResponse$;
3538
- exports.DomainNameConfig$ = DomainNameConfig$;
3539
- exports.DynamodbDataSourceConfig$ = DynamodbDataSourceConfig$;
3540
- exports.ElasticsearchDataSourceConfig$ = ElasticsearchDataSourceConfig$;
3541
- exports.EnhancedMetricsConfig$ = EnhancedMetricsConfig$;
3542
- exports.ErrorDetail$ = ErrorDetail$;
3543
- exports.EvaluateCode$ = EvaluateCode$;
3544
1357
  exports.EvaluateCodeCommand = EvaluateCodeCommand;
3545
- exports.EvaluateCodeErrorDetail$ = EvaluateCodeErrorDetail$;
3546
- exports.EvaluateCodeRequest$ = EvaluateCodeRequest$;
3547
- exports.EvaluateCodeResponse$ = EvaluateCodeResponse$;
3548
- exports.EvaluateMappingTemplate$ = EvaluateMappingTemplate$;
3549
1358
  exports.EvaluateMappingTemplateCommand = EvaluateMappingTemplateCommand;
3550
- exports.EvaluateMappingTemplateRequest$ = EvaluateMappingTemplateRequest$;
3551
- exports.EvaluateMappingTemplateResponse$ = EvaluateMappingTemplateResponse$;
3552
- exports.EventBridgeDataSourceConfig$ = EventBridgeDataSourceConfig$;
3553
- exports.EventConfig$ = EventConfig$;
3554
- exports.EventLogConfig$ = EventLogConfig$;
3555
1359
  exports.EventLogLevel = EventLogLevel;
3556
1360
  exports.FieldLogLevel = FieldLogLevel;
3557
- exports.FlushApiCache$ = FlushApiCache$;
3558
1361
  exports.FlushApiCacheCommand = FlushApiCacheCommand;
3559
- exports.FlushApiCacheRequest$ = FlushApiCacheRequest$;
3560
- exports.FlushApiCacheResponse$ = FlushApiCacheResponse$;
3561
- exports.FunctionConfiguration$ = FunctionConfiguration$;
3562
- exports.GetApi$ = GetApi$;
3563
- exports.GetApiAssociation$ = GetApiAssociation$;
3564
1362
  exports.GetApiAssociationCommand = GetApiAssociationCommand;
3565
- exports.GetApiAssociationRequest$ = GetApiAssociationRequest$;
3566
- exports.GetApiAssociationResponse$ = GetApiAssociationResponse$;
3567
- exports.GetApiCache$ = GetApiCache$;
3568
1363
  exports.GetApiCacheCommand = GetApiCacheCommand;
3569
- exports.GetApiCacheRequest$ = GetApiCacheRequest$;
3570
- exports.GetApiCacheResponse$ = GetApiCacheResponse$;
3571
1364
  exports.GetApiCommand = GetApiCommand;
3572
- exports.GetApiRequest$ = GetApiRequest$;
3573
- exports.GetApiResponse$ = GetApiResponse$;
3574
- exports.GetChannelNamespace$ = GetChannelNamespace$;
3575
1365
  exports.GetChannelNamespaceCommand = GetChannelNamespaceCommand;
3576
- exports.GetChannelNamespaceRequest$ = GetChannelNamespaceRequest$;
3577
- exports.GetChannelNamespaceResponse$ = GetChannelNamespaceResponse$;
3578
- exports.GetDataSource$ = GetDataSource$;
3579
1366
  exports.GetDataSourceCommand = GetDataSourceCommand;
3580
- exports.GetDataSourceIntrospection$ = GetDataSourceIntrospection$;
3581
1367
  exports.GetDataSourceIntrospectionCommand = GetDataSourceIntrospectionCommand;
3582
- exports.GetDataSourceIntrospectionRequest$ = GetDataSourceIntrospectionRequest$;
3583
- exports.GetDataSourceIntrospectionResponse$ = GetDataSourceIntrospectionResponse$;
3584
- exports.GetDataSourceRequest$ = GetDataSourceRequest$;
3585
- exports.GetDataSourceResponse$ = GetDataSourceResponse$;
3586
- exports.GetDomainName$ = GetDomainName$;
3587
1368
  exports.GetDomainNameCommand = GetDomainNameCommand;
3588
- exports.GetDomainNameRequest$ = GetDomainNameRequest$;
3589
- exports.GetDomainNameResponse$ = GetDomainNameResponse$;
3590
- exports.GetFunction$ = GetFunction$;
3591
1369
  exports.GetFunctionCommand = GetFunctionCommand;
3592
- exports.GetFunctionRequest$ = GetFunctionRequest$;
3593
- exports.GetFunctionResponse$ = GetFunctionResponse$;
3594
- exports.GetGraphqlApi$ = GetGraphqlApi$;
3595
1370
  exports.GetGraphqlApiCommand = GetGraphqlApiCommand;
3596
- exports.GetGraphqlApiEnvironmentVariables$ = GetGraphqlApiEnvironmentVariables$;
3597
1371
  exports.GetGraphqlApiEnvironmentVariablesCommand = GetGraphqlApiEnvironmentVariablesCommand;
3598
- exports.GetGraphqlApiEnvironmentVariablesRequest$ = GetGraphqlApiEnvironmentVariablesRequest$;
3599
- exports.GetGraphqlApiEnvironmentVariablesResponse$ = GetGraphqlApiEnvironmentVariablesResponse$;
3600
- exports.GetGraphqlApiRequest$ = GetGraphqlApiRequest$;
3601
- exports.GetGraphqlApiResponse$ = GetGraphqlApiResponse$;
3602
- exports.GetIntrospectionSchema$ = GetIntrospectionSchema$;
3603
1372
  exports.GetIntrospectionSchemaCommand = GetIntrospectionSchemaCommand;
3604
- exports.GetIntrospectionSchemaRequest$ = GetIntrospectionSchemaRequest$;
3605
- exports.GetIntrospectionSchemaResponse$ = GetIntrospectionSchemaResponse$;
3606
- exports.GetResolver$ = GetResolver$;
3607
1373
  exports.GetResolverCommand = GetResolverCommand;
3608
- exports.GetResolverRequest$ = GetResolverRequest$;
3609
- exports.GetResolverResponse$ = GetResolverResponse$;
3610
- exports.GetSchemaCreationStatus$ = GetSchemaCreationStatus$;
3611
1374
  exports.GetSchemaCreationStatusCommand = GetSchemaCreationStatusCommand;
3612
- exports.GetSchemaCreationStatusRequest$ = GetSchemaCreationStatusRequest$;
3613
- exports.GetSchemaCreationStatusResponse$ = GetSchemaCreationStatusResponse$;
3614
- exports.GetSourceApiAssociation$ = GetSourceApiAssociation$;
3615
1375
  exports.GetSourceApiAssociationCommand = GetSourceApiAssociationCommand;
3616
- exports.GetSourceApiAssociationRequest$ = GetSourceApiAssociationRequest$;
3617
- exports.GetSourceApiAssociationResponse$ = GetSourceApiAssociationResponse$;
3618
- exports.GetType$ = GetType$;
3619
1376
  exports.GetTypeCommand = GetTypeCommand;
3620
- exports.GetTypeRequest$ = GetTypeRequest$;
3621
- exports.GetTypeResponse$ = GetTypeResponse$;
3622
1377
  exports.GraphQLApiIntrospectionConfig = GraphQLApiIntrospectionConfig;
3623
1378
  exports.GraphQLApiType = GraphQLApiType;
3624
1379
  exports.GraphQLApiVisibility = GraphQLApiVisibility;
3625
- exports.GraphQLSchemaException = GraphQLSchemaException;
3626
- exports.GraphQLSchemaException$ = GraphQLSchemaException$;
3627
- exports.GraphqlApi$ = GraphqlApi$;
3628
1380
  exports.HandlerBehavior = HandlerBehavior;
3629
- exports.HandlerConfig$ = HandlerConfig$;
3630
- exports.HandlerConfigs$ = HandlerConfigs$;
3631
- exports.HttpDataSourceConfig$ = HttpDataSourceConfig$;
3632
- exports.Integration$ = Integration$;
3633
- exports.InternalFailureException = InternalFailureException;
3634
- exports.InternalFailureException$ = InternalFailureException$;
3635
1381
  exports.InvokeType = InvokeType;
3636
- exports.LambdaAuthorizerConfig$ = LambdaAuthorizerConfig$;
3637
- exports.LambdaConfig$ = LambdaConfig$;
3638
- exports.LambdaConflictHandlerConfig$ = LambdaConflictHandlerConfig$;
3639
- exports.LambdaDataSourceConfig$ = LambdaDataSourceConfig$;
3640
- exports.LimitExceededException = LimitExceededException;
3641
- exports.LimitExceededException$ = LimitExceededException$;
3642
- exports.ListApiKeys$ = ListApiKeys$;
3643
1382
  exports.ListApiKeysCommand = ListApiKeysCommand;
3644
- exports.ListApiKeysRequest$ = ListApiKeysRequest$;
3645
- exports.ListApiKeysResponse$ = ListApiKeysResponse$;
3646
- exports.ListApis$ = ListApis$;
3647
1383
  exports.ListApisCommand = ListApisCommand;
3648
- exports.ListApisRequest$ = ListApisRequest$;
3649
- exports.ListApisResponse$ = ListApisResponse$;
3650
- exports.ListChannelNamespaces$ = ListChannelNamespaces$;
3651
1384
  exports.ListChannelNamespacesCommand = ListChannelNamespacesCommand;
3652
- exports.ListChannelNamespacesRequest$ = ListChannelNamespacesRequest$;
3653
- exports.ListChannelNamespacesResponse$ = ListChannelNamespacesResponse$;
3654
- exports.ListDataSources$ = ListDataSources$;
3655
1385
  exports.ListDataSourcesCommand = ListDataSourcesCommand;
3656
- exports.ListDataSourcesRequest$ = ListDataSourcesRequest$;
3657
- exports.ListDataSourcesResponse$ = ListDataSourcesResponse$;
3658
- exports.ListDomainNames$ = ListDomainNames$;
3659
1386
  exports.ListDomainNamesCommand = ListDomainNamesCommand;
3660
- exports.ListDomainNamesRequest$ = ListDomainNamesRequest$;
3661
- exports.ListDomainNamesResponse$ = ListDomainNamesResponse$;
3662
- exports.ListFunctions$ = ListFunctions$;
3663
1387
  exports.ListFunctionsCommand = ListFunctionsCommand;
3664
- exports.ListFunctionsRequest$ = ListFunctionsRequest$;
3665
- exports.ListFunctionsResponse$ = ListFunctionsResponse$;
3666
- exports.ListGraphqlApis$ = ListGraphqlApis$;
3667
1388
  exports.ListGraphqlApisCommand = ListGraphqlApisCommand;
3668
- exports.ListGraphqlApisRequest$ = ListGraphqlApisRequest$;
3669
- exports.ListGraphqlApisResponse$ = ListGraphqlApisResponse$;
3670
- exports.ListResolvers$ = ListResolvers$;
3671
- exports.ListResolversByFunction$ = ListResolversByFunction$;
3672
1389
  exports.ListResolversByFunctionCommand = ListResolversByFunctionCommand;
3673
- exports.ListResolversByFunctionRequest$ = ListResolversByFunctionRequest$;
3674
- exports.ListResolversByFunctionResponse$ = ListResolversByFunctionResponse$;
3675
1390
  exports.ListResolversCommand = ListResolversCommand;
3676
- exports.ListResolversRequest$ = ListResolversRequest$;
3677
- exports.ListResolversResponse$ = ListResolversResponse$;
3678
- exports.ListSourceApiAssociations$ = ListSourceApiAssociations$;
3679
1391
  exports.ListSourceApiAssociationsCommand = ListSourceApiAssociationsCommand;
3680
- exports.ListSourceApiAssociationsRequest$ = ListSourceApiAssociationsRequest$;
3681
- exports.ListSourceApiAssociationsResponse$ = ListSourceApiAssociationsResponse$;
3682
- exports.ListTagsForResource$ = ListTagsForResource$;
3683
1392
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3684
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
3685
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
3686
- exports.ListTypes$ = ListTypes$;
3687
- exports.ListTypesByAssociation$ = ListTypesByAssociation$;
3688
1393
  exports.ListTypesByAssociationCommand = ListTypesByAssociationCommand;
3689
- exports.ListTypesByAssociationRequest$ = ListTypesByAssociationRequest$;
3690
- exports.ListTypesByAssociationResponse$ = ListTypesByAssociationResponse$;
3691
1394
  exports.ListTypesCommand = ListTypesCommand;
3692
- exports.ListTypesRequest$ = ListTypesRequest$;
3693
- exports.ListTypesResponse$ = ListTypesResponse$;
3694
- exports.LogConfig$ = LogConfig$;
3695
1395
  exports.MergeType = MergeType;
3696
- exports.NotFoundException = NotFoundException;
3697
- exports.NotFoundException$ = NotFoundException$;
3698
- exports.OpenIDConnectConfig$ = OpenIDConnectConfig$;
3699
- exports.OpenSearchServiceDataSourceConfig$ = OpenSearchServiceDataSourceConfig$;
3700
1396
  exports.OperationLevelMetricsConfig = OperationLevelMetricsConfig;
3701
1397
  exports.OutputType = OutputType;
3702
1398
  exports.Ownership = Ownership;
3703
- exports.PipelineConfig$ = PipelineConfig$;
3704
- exports.PutGraphqlApiEnvironmentVariables$ = PutGraphqlApiEnvironmentVariables$;
3705
1399
  exports.PutGraphqlApiEnvironmentVariablesCommand = PutGraphqlApiEnvironmentVariablesCommand;
3706
- exports.PutGraphqlApiEnvironmentVariablesRequest$ = PutGraphqlApiEnvironmentVariablesRequest$;
3707
- exports.PutGraphqlApiEnvironmentVariablesResponse$ = PutGraphqlApiEnvironmentVariablesResponse$;
3708
- exports.RdsDataApiConfig$ = RdsDataApiConfig$;
3709
- exports.RdsHttpEndpointConfig$ = RdsHttpEndpointConfig$;
3710
- exports.RelationalDatabaseDataSourceConfig$ = RelationalDatabaseDataSourceConfig$;
3711
1400
  exports.RelationalDatabaseSourceType = RelationalDatabaseSourceType;
3712
- exports.Resolver$ = Resolver$;
3713
1401
  exports.ResolverKind = ResolverKind;
3714
1402
  exports.ResolverLevelMetricsBehavior = ResolverLevelMetricsBehavior;
3715
1403
  exports.ResolverLevelMetricsConfig = ResolverLevelMetricsConfig;
3716
1404
  exports.RuntimeName = RuntimeName;
3717
1405
  exports.SchemaStatus = SchemaStatus;
3718
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3719
- exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
3720
- exports.SourceApiAssociation$ = SourceApiAssociation$;
3721
- exports.SourceApiAssociationConfig$ = SourceApiAssociationConfig$;
3722
1406
  exports.SourceApiAssociationStatus = SourceApiAssociationStatus;
3723
- exports.SourceApiAssociationSummary$ = SourceApiAssociationSummary$;
3724
- exports.StartDataSourceIntrospection$ = StartDataSourceIntrospection$;
3725
1407
  exports.StartDataSourceIntrospectionCommand = StartDataSourceIntrospectionCommand;
3726
- exports.StartDataSourceIntrospectionRequest$ = StartDataSourceIntrospectionRequest$;
3727
- exports.StartDataSourceIntrospectionResponse$ = StartDataSourceIntrospectionResponse$;
3728
- exports.StartSchemaCreation$ = StartSchemaCreation$;
3729
1408
  exports.StartSchemaCreationCommand = StartSchemaCreationCommand;
3730
- exports.StartSchemaCreationRequest$ = StartSchemaCreationRequest$;
3731
- exports.StartSchemaCreationResponse$ = StartSchemaCreationResponse$;
3732
- exports.StartSchemaMerge$ = StartSchemaMerge$;
3733
1409
  exports.StartSchemaMergeCommand = StartSchemaMergeCommand;
3734
- exports.StartSchemaMergeRequest$ = StartSchemaMergeRequest$;
3735
- exports.StartSchemaMergeResponse$ = StartSchemaMergeResponse$;
3736
- exports.SyncConfig$ = SyncConfig$;
3737
- exports.TagResource$ = TagResource$;
3738
1410
  exports.TagResourceCommand = TagResourceCommand;
3739
- exports.TagResourceRequest$ = TagResourceRequest$;
3740
- exports.TagResourceResponse$ = TagResourceResponse$;
3741
- exports.Type$ = Type$;
3742
1411
  exports.TypeDefinitionFormat = TypeDefinitionFormat;
3743
- exports.UnauthorizedException = UnauthorizedException;
3744
- exports.UnauthorizedException$ = UnauthorizedException$;
3745
- exports.UntagResource$ = UntagResource$;
3746
1412
  exports.UntagResourceCommand = UntagResourceCommand;
3747
- exports.UntagResourceRequest$ = UntagResourceRequest$;
3748
- exports.UntagResourceResponse$ = UntagResourceResponse$;
3749
- exports.UpdateApi$ = UpdateApi$;
3750
- exports.UpdateApiCache$ = UpdateApiCache$;
3751
1413
  exports.UpdateApiCacheCommand = UpdateApiCacheCommand;
3752
- exports.UpdateApiCacheRequest$ = UpdateApiCacheRequest$;
3753
- exports.UpdateApiCacheResponse$ = UpdateApiCacheResponse$;
3754
1414
  exports.UpdateApiCommand = UpdateApiCommand;
3755
- exports.UpdateApiKey$ = UpdateApiKey$;
3756
1415
  exports.UpdateApiKeyCommand = UpdateApiKeyCommand;
3757
- exports.UpdateApiKeyRequest$ = UpdateApiKeyRequest$;
3758
- exports.UpdateApiKeyResponse$ = UpdateApiKeyResponse$;
3759
- exports.UpdateApiRequest$ = UpdateApiRequest$;
3760
- exports.UpdateApiResponse$ = UpdateApiResponse$;
3761
- exports.UpdateChannelNamespace$ = UpdateChannelNamespace$;
3762
1416
  exports.UpdateChannelNamespaceCommand = UpdateChannelNamespaceCommand;
3763
- exports.UpdateChannelNamespaceRequest$ = UpdateChannelNamespaceRequest$;
3764
- exports.UpdateChannelNamespaceResponse$ = UpdateChannelNamespaceResponse$;
3765
- exports.UpdateDataSource$ = UpdateDataSource$;
3766
1417
  exports.UpdateDataSourceCommand = UpdateDataSourceCommand;
3767
- exports.UpdateDataSourceRequest$ = UpdateDataSourceRequest$;
3768
- exports.UpdateDataSourceResponse$ = UpdateDataSourceResponse$;
3769
- exports.UpdateDomainName$ = UpdateDomainName$;
3770
1418
  exports.UpdateDomainNameCommand = UpdateDomainNameCommand;
3771
- exports.UpdateDomainNameRequest$ = UpdateDomainNameRequest$;
3772
- exports.UpdateDomainNameResponse$ = UpdateDomainNameResponse$;
3773
- exports.UpdateFunction$ = UpdateFunction$;
3774
1419
  exports.UpdateFunctionCommand = UpdateFunctionCommand;
3775
- exports.UpdateFunctionRequest$ = UpdateFunctionRequest$;
3776
- exports.UpdateFunctionResponse$ = UpdateFunctionResponse$;
3777
- exports.UpdateGraphqlApi$ = UpdateGraphqlApi$;
3778
1420
  exports.UpdateGraphqlApiCommand = UpdateGraphqlApiCommand;
3779
- exports.UpdateGraphqlApiRequest$ = UpdateGraphqlApiRequest$;
3780
- exports.UpdateGraphqlApiResponse$ = UpdateGraphqlApiResponse$;
3781
- exports.UpdateResolver$ = UpdateResolver$;
3782
1421
  exports.UpdateResolverCommand = UpdateResolverCommand;
3783
- exports.UpdateResolverRequest$ = UpdateResolverRequest$;
3784
- exports.UpdateResolverResponse$ = UpdateResolverResponse$;
3785
- exports.UpdateSourceApiAssociation$ = UpdateSourceApiAssociation$;
3786
1422
  exports.UpdateSourceApiAssociationCommand = UpdateSourceApiAssociationCommand;
3787
- exports.UpdateSourceApiAssociationRequest$ = UpdateSourceApiAssociationRequest$;
3788
- exports.UpdateSourceApiAssociationResponse$ = UpdateSourceApiAssociationResponse$;
3789
- exports.UpdateType$ = UpdateType$;
3790
1423
  exports.UpdateTypeCommand = UpdateTypeCommand;
3791
- exports.UpdateTypeRequest$ = UpdateTypeRequest$;
3792
- exports.UpdateTypeResponse$ = UpdateTypeResponse$;
3793
- exports.UserPoolConfig$ = UserPoolConfig$;
3794
1424
  exports.paginateListApiKeys = paginateListApiKeys;
3795
1425
  exports.paginateListApis = paginateListApis;
3796
1426
  exports.paginateListChannelNamespaces = paginateListChannelNamespaces;
@@ -3803,3 +1433,15 @@ exports.paginateListResolversByFunction = paginateListResolversByFunction;
3803
1433
  exports.paginateListSourceApiAssociations = paginateListSourceApiAssociations;
3804
1434
  exports.paginateListTypes = paginateListTypes;
3805
1435
  exports.paginateListTypesByAssociation = paginateListTypesByAssociation;
1436
+ Object.keys(schemas_0).forEach(function (k) {
1437
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1438
+ enumerable: true,
1439
+ get: function () { return schemas_0[k]; }
1440
+ });
1441
+ });
1442
+ Object.keys(errors).forEach(function (k) {
1443
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1444
+ enumerable: true,
1445
+ get: function () { return errors[k]; }
1446
+ });
1447
+ });